/* ============================================
   BASEMAXXING — dark glow looksmaxxing
   ============================================ */

:root {
  --bg: #050810;
  --bg-2: #0A0E1A;
  --panel: #0F1525;
  --line: rgba(110, 160, 255, 0.15);
  --line-strong: rgba(110, 160, 255, 0.35);
  --blue: #2D7AFF;
  --blue-glow: #4D8FFF;
  --cyan: #7DC9FF;
  --ice: #E8F1FF;
  --dim: rgba(232, 241, 255, 0.55);
  --text: #E8F1FF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(ellipse at 70% 0%, rgba(45, 122, 255, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(45, 122, 255, 0.12) 0%, transparent 50%),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

/* ============ FX OVERLAYS ============ */
.scanlines {
  position: fixed; inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(125, 201, 255, 0.025) 0px,
    rgba(125, 201, 255, 0.025) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: overlay;
}

.vignette {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 101;
}

/* ============ COMMON ============ */
.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  margin-bottom: 24px;
  opacity: 0.85;
}

.sec-head { max-width: 1100px; margin: 0 auto 60px; padding: 0 48px; }
.sec-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

section { padding: 100px 0; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 48px;
}

.hero-text .title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--ice) 0%, var(--cyan) 60%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(45, 122, 255, 0.35);
  margin-bottom: 32px;
}

.sub {
  font-size: 1.15rem;
  color: var(--dim);
  max-width: 440px;
  margin-bottom: 40px;
}

/* hero art */
.hero-art {
  display: grid;
  gap: 30px;
  justify-items: center;
}

.orb {
  width: clamp(280px, 36vw, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(125, 201, 255, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(45, 122, 255, 0.4) 0%, transparent 60%),
    var(--panel);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 0 1px var(--line),
    0 0 80px rgba(45, 122, 255, 0.4),
    inset 0 0 60px rgba(125, 201, 255, 0.15);
  animation: orb-pulse 6s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { box-shadow: 0 0 0 1px var(--line), 0 0 80px rgba(45, 122, 255, 0.4), inset 0 0 60px rgba(125, 201, 255, 0.15); }
  50%      { box-shadow: 0 0 0 1px var(--line), 0 0 120px rgba(45, 122, 255, 0.6), inset 0 0 80px rgba(125, 201, 255, 0.25); }
}

.orb img {
  width: 78%;
  filter: drop-shadow(0 0 20px rgba(125, 201, 255, 0.45));
  animation: orb-pulse-soft 5s ease-in-out infinite;
}
@keyframes orb-pulse-soft {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(125, 201, 255, 0.45)); }
  50%      { transform: scale(1.03); filter: drop-shadow(0 0 35px rgba(125, 201, 255, 0.7)); }
}

.hero-stats {
  width: 100%;
  max-width: 360px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.stat-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
}
.stat-line span {
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.stat-line b {
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

/* ============ BUTTONS ============ */
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.actions-large { gap: 20px; justify-content: center; margin-top: 40px; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ice);
  padding: 14px 26px;
  border: 1px solid var(--line-strong);
  background: rgba(15, 21, 37, 0.6);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  overflow: hidden;
}
.btn-icon {
  width: 16px;
  height: 16px;
  filter: invert(1) brightness(1.3);
  position: relative;
  z-index: 1;
}
.btn.primary .btn-icon { filter: invert(1) brightness(1.3); }
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(125, 201, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 30px rgba(45, 122, 255, 0.4);
  transform: translateY(-2px);
}
.btn:hover::before { opacity: 1; }
.btn span { position: relative; z-index: 1; }

.btn.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--ice);
  box-shadow: 0 0 40px rgba(45, 122, 255, 0.5);
}
.btn.primary:hover {
  background: var(--blue-glow);
  border-color: var(--cyan);
  box-shadow: 0 0 60px rgba(125, 201, 255, 0.7);
  color: var(--ice);
}
.btn.large { padding: 20px 38px; font-size: 0.95rem; }

/* ============ TIERS ============ */
.tiers { padding-bottom: 60px; }

.tier-table {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-bottom: none;
  background: rgba(15, 21, 37, 0.4);
  backdrop-filter: blur(6px);
  align-items: center;
  transition: background 0.3s ease;
}
.row:last-child { border-bottom: 1px solid var(--line); }
.row:hover { background: rgba(45, 122, 255, 0.08); }

.rank {
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  line-height: 1;
  text-align: center;
  padding: 16px 0;
  border-radius: 4px;
}
.row-s .rank { background: linear-gradient(180deg, var(--cyan), var(--blue)); color: var(--bg); box-shadow: 0 0 30px rgba(45, 122, 255, 0.5); }
.row-a .rank { background: rgba(125, 201, 255, 0.18); color: var(--cyan); border: 1px solid var(--line-strong); }
.row-b .rank { background: rgba(255, 255, 255, 0.04); color: var(--dim); border: 1px solid var(--line); }
.row-f .rank { background: rgba(255, 80, 80, 0.12); color: #FF7878; border: 1px solid rgba(255, 80, 80, 0.3); }

.ranked h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ranked p {
  color: var(--dim);
  font-size: 1.05rem;
  max-width: 640px;
}

/* ============ CREED ============ */
.creed {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 48px;
}

.creed-text {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.3;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--ice);
  text-shadow: 0 0 40px rgba(45, 122, 255, 0.3);
}

.creed-sign {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--dim);
  letter-spacing: 0.1em;
}

/* ============ FOOTER ============ */
footer {
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.footer-logo {
  max-width: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 0 18px rgba(125, 201, 255, 0.45));
  opacity: 0.95;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 60px; padding: 60px 24px; text-align: left; }
  .hero-art { order: -1; }
  .sec-head, .tier-table, .creed, .enrol { padding-left: 24px; padding-right: 24px; }
  .row { grid-template-columns: 80px 1fr; gap: 20px; padding: 24px 20px; }
  .rank { font-size: 2.4rem; padding: 10px 0; }
}
