/* ═══════════════════════════════════════════════════════════════════════════
   Gladiator Sports — Marketing Website Design System
   ───────────────────────────────────────────────────────────────────────────
   Mirrors the in-app brand language (styles.tokens.js / login.html):
     · Warm-black canvas, radial gold glow, 1px gold top rule
     · Cinzel (Roman display) + Cormorant Garamond (body)
     · Gold-gradient primary action
   Extended for marketing with an EMBER underworld accent so the palette
   literally tells the "Underworld → Olympus" story (ember rising to gold).
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design tokens ───────────────────────────────────────────────────────── */
:root {
  /* Olympus — gold */
  --gold:        #C9A84C;
  --gold-light:  #F0D080;
  --gold-bright: #F7E29A;
  --gold-deep:   #A07018;
  --gold-grad-a: #E8C45E;
  --gold-grad-b: #A07018;

  /* Underworld — ember */
  --ember:       #C85A3C;
  --ember-light: #E8814F;
  --crimson:     #7E2A1E;

  /* Canvas & surfaces */
  --black:       #060605;
  --black-2:     #0A0907;
  --surface:     #100E0A;
  --surface-2:   #0C0A06;
  --surface-3:   #16120B;
  --border:      #1D1913;
  --border-warm: #2A2010;
  --border-gold: rgba(201,168,76,0.26);

  /* Ink */
  --ink:        #F6F1E8;
  --ink-soft:   #E9E1D0;
  --muted:      #B2A992;
  --muted-2:    #8C846F;
  --label:      #C7AC68;
  --faint:      #5A5040;

  /* Type */
  --display: 'Cinzel', Georgia, 'Times New Roman', serif;
  --serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  /* Rhythm */
  --maxw: 1200px;
  --gut:  clamp(20px, 5vw, 48px);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --shadow-card: 0 24px 60px rgba(0,0,0,0.55), inset 0 1px 0 rgba(201,168,76,0.06);
  --shadow-gold: 0 14px 40px rgba(201,168,76,0.28);
}

/* ── Reset / base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100dvh;
  background: var(--black);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--gold-light); }
::selection { background: rgba(201,168,76,0.28); color: #fff; }

/* ── Fixed atmosphere layers ─────────────────────────────────────────────── */
.atmos { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.atmos__base {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 620px at 50% -8%, rgba(201,168,76,0.10), transparent 60%),
    radial-gradient(900px 600px at 88% 12%, rgba(200,90,60,0.07), transparent 60%),
    linear-gradient(180deg, #0C0A07 0%, var(--black) 46%, #050504 100%);
}
.atmos__grain {
  position: absolute; inset: -50%;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.top-rule { position: fixed; inset: 0 0 auto 0; height: 1px; z-index: 60;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.55) 22%, rgba(232,129,79,0.55) 50%, rgba(201,168,76,0.55) 78%, transparent); }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 820px; }
main { position: relative; z-index: 1; }
.section { padding-block: clamp(72px, 11vw, 132px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 92px); }

/* Skip link (a11y) */
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--gold); color: #080808; padding: 10px 18px; border-radius: 6px;
  font-family: var(--display); font-size: 12px; letter-spacing: 1.5px; z-index: 200;
  transition: top .15s ease;
}
.skip-link:focus { top: 10px; }

/* ── Typography helpers ──────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(10px, 1.4vw, 12px); letter-spacing: .28em; text-transform: uppercase;
  color: var(--label); margin: 0 0 18px;
}
.eyebrow::before { content: "◆"; color: var(--gold); font-size: .7em; }
.eyebrow--center { justify-content: center; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; color: var(--ink); margin: 0; line-height: 1.08; }
.h-display {
  font-weight: 900; letter-spacing: .01em;
  font-size: clamp(40px, 7.4vw, 92px);
}
.section-title { font-size: clamp(30px, 4.6vw, 54px); letter-spacing: .015em; }
.lead { font-size: clamp(19px, 2.2vw, 23px); color: var(--ink-soft); line-height: 1.66; margin: 0; }
.muted { color: var(--muted); }
.gold-text {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ember-text {
  background: linear-gradient(120deg, var(--ember-light), var(--ember));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
p { margin: 0 0 1.05em; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure--tight { max-width: 52ch; }

/* Decorative diamond divider */
.rule-diamond { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 22px 0; }
.rule-diamond span { height: 1px; width: clamp(40px, 14vw, 110px); background: linear-gradient(90deg, transparent, var(--border-gold)); }
.rule-diamond span.r { background: linear-gradient(90deg, var(--border-gold), transparent); }
.rule-diamond i { color: var(--gold); font-style: normal; font-size: 11px; }

/* ── Brand lockup (logo) ─────────────────────────────────────────────────── */
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand__mark { width: 38px; height: 38px; flex: 0 0 auto; filter: drop-shadow(0 3px 10px rgba(201,168,76,0.35)); }
.brand__name {
  font-family: var(--display); font-weight: 900; color: var(--gold);
  font-size: 21px; letter-spacing: .12em; line-height: 1;
}
.brand__name small {
  display: block; font-size: 9.5px; letter-spacing: .42em; color: var(--ink-soft);
  font-weight: 600; margin-top: 4px; padding-left: 2px;
}

/* ── Header / nav ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(8,7,5,0.82);
  backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--border-warm);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 78px; }
.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  font-family: var(--display); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); padding: 10px 14px; border-radius: 8px; position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--ember)); transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--gold); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--border-warm);
  background: var(--surface-2); border-radius: 10px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--gold); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after  { transform: translateY(4px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-1.5px) translateX(1px); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; cursor: pointer;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  padding: 15px 26px; border-radius: 10px; border: 1px solid transparent;
  min-height: 50px; transition: transform .12s ease, box-shadow .18s ease, filter .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--gold-grad-a), var(--gold-grad-b));
  color: #100B02; box-shadow: var(--shadow-gold);
}
.btn--primary:hover { filter: brightness(1.07); box-shadow: 0 18px 50px rgba(201,168,76,0.42); color: #100B02; }
.btn--ghost { background: rgba(255,255,255,0.02); color: var(--ink); border-color: var(--border-warm); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,168,76,0.06); }
.btn--small { padding: 11px 18px; min-height: 42px; font-size: 11.5px; }
.btn--block { width: 100%; }
.btn__arrow { transition: transform .2s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: clamp(620px, 92vh, 940px); display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; transform: scale(1.06); animation: heroPan 26s ease-in-out infinite alternate; }
@keyframes heroPan { from { transform: scale(1.06) translateY(0); } to { transform: scale(1.14) translateY(-14px); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,5,4,0.94) 0%, rgba(5,5,4,0.78) 38%, rgba(5,5,4,0.34) 72%, rgba(120,42,30,0.18) 100%),
    linear-gradient(0deg, var(--black) 4%, transparent 42%, transparent 72%, rgba(5,5,4,0.55) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: 120px 90px; }
.hero__content { max-width: 760px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px;
  padding: 8px 16px; border: 1px solid var(--border-gold); border-radius: 100px;
  background: rgba(201,168,76,0.06); backdrop-filter: blur(4px);
  font-family: var(--display); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light);
}
.hero__kicker .pip { width: 7px; height: 7px; border-radius: 50%; background: var(--ember-light); box-shadow: 0 0 12px var(--ember-light); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* Plain-text kicker — same label cadence as the badges but no pill, border, blur,
   or glowing pip. Used where we want a quiet line of text instead of a button. */
.plain-kicker {
  display: inline-block; margin-bottom: 26px;
  font-family: var(--display); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light);
}
.hero h1 { margin-bottom: 22px; text-shadow: 0 4px 40px rgba(0,0,0,0.5); }
.hero__sub { font-size: clamp(20px, 2.4vw, 26px); color: var(--ink-soft); line-height: 1.55; max-width: 56ch; margin-bottom: 16px; }
.hero__slogan { font-style: italic; color: var(--gold-light); font-size: clamp(18px, 2.2vw, 22px); letter-spacing: .04em; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-family: var(--display); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll .line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: .3; transform: scaleY(.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ── Marquee strip ───────────────────────────────────────────────────────── */
.strip { border-block: 1px solid var(--border-warm); background: var(--surface-2); overflow: hidden; }
.strip__row { display: flex; gap: 0; padding: 0; margin: 0; list-style: none; white-space: nowrap; width: max-content; animation: marquee 38s linear infinite; }
.strip:hover .strip__row { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.strip__item {
  display: inline-flex; align-items: center; gap: 16px; padding: 18px 34px;
  font-family: var(--display); font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.strip__item::after { content: "◆"; color: var(--gold); font-size: 8px; }

/* ── Section header block ────────────────────────────────────────────────── */
.s-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.s-head--center { margin-inline: auto; text-align: center; }

/* ── Feature cards ───────────────────────────────────────────────────────── */
.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; padding: clamp(24px, 3vw, 34px); border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(22,18,11,0.9), rgba(12,10,6,0.9));
  border: 1px solid var(--border-warm); overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--ember)); opacity: 0; transition: opacity .3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-gold); box-shadow: var(--shadow-card); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 56px; height: 56px; border-radius: 13px; display: grid; place-content: center; margin-bottom: 20px;
  background: radial-gradient(circle at 30% 25%, rgba(201,168,76,0.22), rgba(201,168,76,0.04));
  border: 1px solid var(--border-gold); color: var(--gold);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 22px; letter-spacing: .01em; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 17.5px; margin: 0; line-height: 1.6; }

/* ── Stats ───────────────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 40px); }
.stat { text-align: center; padding: 12px; }
.stat__num { font-family: var(--display); font-weight: 900; font-size: clamp(36px, 5vw, 60px); line-height: 1; }
.stat__label { display: block; margin-top: 12px; font-family: var(--display); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ── Split media section ─────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-warm); box-shadow: var(--shadow-card); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.split__media:hover img { transform: scale(1.05); }
.split__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,6,5,0.5)); pointer-events: none; }
.split__tag {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  font-family: var(--display); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light);
  padding: 8px 14px; border-radius: 8px; background: rgba(6,6,5,0.6); border: 1px solid var(--border-gold); backdrop-filter: blur(6px);
}

/* numbered list inside splits */
.points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 20px; }
.points li { display: flex; gap: 16px; align-items: flex-start; }
.points .n {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; display: grid; place-content: center;
  font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--gold);
  background: rgba(201,168,76,0.08); border: 1px solid var(--border-gold);
}
.points h4 { font-size: 18px; margin-bottom: 4px; }
.points p { margin: 0; color: var(--muted); font-size: 16.5px; }

/* ── Sport showcase ──────────────────────────────────────────────────────── */
.sports { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: clamp(12px, 1.6vw, 18px); }
.sport { position: relative; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border-warm); }
.sport.span2c { grid-column: span 2; }
.sport.span2r { grid-row: span 2; }
.sport img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.sport::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,6,5,0.1) 30%, rgba(6,6,5,0.86)); transition: background .3s ease; }
.sport:hover img { transform: scale(1.08); }
.sport:hover::after { background: linear-gradient(180deg, rgba(120,42,30,0.18) 20%, rgba(6,6,5,0.82)); }
.sport__label { position: absolute; left: 18px; bottom: 16px; z-index: 2; }
.sport__label b { display: block; font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: .04em; color: var(--ink); }
.sport__label span { font-size: 14px; color: var(--gold-light); letter-spacing: .04em; }

/* ── Earnings / income band ──────────────────────────────────────────────── */
.band { position: relative; overflow: hidden; }
.band__media { position: absolute; inset: 0; z-index: 0; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(6,6,5,0.96) 30%, rgba(6,6,5,0.7) 65%, rgba(126,42,30,0.34)); }
.band .wrap { position: relative; z-index: 2; }
/* Full-cover variant: keeps overlaid text legible across the WHOLE width
   (use when content spans both columns over a light photo). */
.band--cover .band__scrim {
  background:
    linear-gradient(90deg, rgba(6,6,5,0.93) 0%, rgba(8,7,5,0.9) 55%, rgba(92,32,24,0.86) 100%),
    linear-gradient(180deg, rgba(6,6,5,0.35), rgba(6,6,5,0.55));
}

/* ── Quote / testimonial ─────────────────────────────────────────────────── */
.quote { text-align: center; max-width: 920px; margin-inline: auto; }
.quote__mark { font-family: var(--display); font-size: 90px; line-height: .5; color: var(--gold); opacity: .5; }
.quote blockquote { margin: 0; font-size: clamp(24px, 3.4vw, 38px); font-style: italic; line-height: 1.4; color: var(--ink); }
.quote cite { display: block; margin-top: 26px; font-style: normal; font-family: var(--display); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--label); }

/* ── CTA section ─────────────────────────────────────────────────────────── */
.cta { position: relative; overflow: hidden; text-align: center; }
.cta__media { position: absolute; inset: 0; z-index: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.cta__scrim { position: absolute; inset: 0; z-index: 1; background: radial-gradient(120% 120% at 50% 0%, rgba(6,6,5,0.7), rgba(6,6,5,0.95)); }
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(34px, 6vw, 72px); margin-bottom: 20px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ── Interior page hero ──────────────────────────────────────────────────── */
.page-hero { position: relative; padding-block: clamp(120px, 18vw, 200px) clamp(56px, 8vw, 96px); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(6,6,5,0.7), rgba(6,6,5,0.9) 60%, var(--black)); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(40px, 7vw, 84px); font-weight: 900; margin-bottom: 18px; }

/* ── About: timeline ─────────────────────────────────────────────────────── */
.timeline { position: relative; margin-top: 20px; padding-left: 4px; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 1.5px; background: linear-gradient(var(--gold), var(--ember), transparent); }
.tl-item { position: relative; padding: 0 0 38px 60px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .dot {
  position: absolute; left: 9px; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--black); border: 2px solid var(--gold); display: grid; place-content: center;
}
.tl-item .dot::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.tl-item .when { font-family: var(--display); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ember-light); margin-bottom: 6px; }
.tl-item h3 { font-size: 22px; margin-bottom: 8px; }
.tl-item p { color: var(--muted); margin: 0; font-size: 17px; }

/* ── Value cards (about) ─────────────────────────────────────────────────── */
.value { padding: 30px; border-radius: var(--r-md); border: 1px solid var(--border-warm); background: var(--surface-2); }
.value .k { font-family: var(--display); font-weight: 900; font-size: 30px; color: var(--gold); display: block; margin-bottom: 10px; }
.value h3 { font-size: 20px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 16.5px; margin: 0; }

/* ── Coming-soon (app / contact placeholders) ────────────────────────────── */
.soon { text-align: center; max-width: 720px; margin-inline: auto; padding-block: clamp(40px, 8vw, 80px); }
.soon__badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px;
  padding: 9px 18px; border-radius: 100px; border: 1px solid var(--border-gold); background: rgba(201,168,76,0.06);
  font-family: var(--display); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-light);
}
.soon__badge .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--ember-light); box-shadow: 0 0 12px var(--ember-light); animation: pulse 2.4s ease-in-out infinite; }
.soon h1 { font-size: clamp(38px, 7vw, 76px); font-weight: 900; margin-bottom: 20px; }
.notify { display: flex; gap: 10px; max-width: 460px; margin: 34px auto 0; }
.notify input {
  flex: 1; background: var(--surface); color: var(--ink); border: 1px solid var(--border-warm); border-radius: 10px;
  padding: 14px 16px; font-family: var(--serif); font-size: 17px; outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.notify input::placeholder { color: var(--faint); }
.notify input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.16); }
.note { font-size: 14px; color: var(--muted-2); margin-top: 14px; }

/* store badges */
.stores { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 20px; border-radius: 12px;
  border: 1px solid var(--border-warm); background: var(--surface-2); color: var(--ink-soft); min-width: 200px;
}
.store-badge:hover { border-color: var(--border-gold); color: var(--ink); }
.store-badge svg { width: 26px; height: 26px; flex: 0 0 auto; color: var(--gold); }
.store-badge .t { text-align: left; line-height: 1.2; }
.store-badge .t small { display: block; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.store-badge .t b { font-family: var(--display); font-size: 17px; letter-spacing: .02em; }

/* ── Contact info rows ───────────────────────────────────────────────────── */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; border: 1px solid var(--border-warm); border-radius: var(--r-md); background: var(--surface-2); }
.info-list .ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 11px; display: grid; place-content: center; background: rgba(201,168,76,0.08); border: 1px solid var(--border-gold); color: var(--gold); }
.info-list .ic svg { width: 22px; height: 22px; }
.info-list b { font-family: var(--display); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--label); display: block; margin-bottom: 3px; }
.info-list span, .info-list a { color: var(--ink-soft); font-size: 17px; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { position: relative; z-index: 1; border-top: 1px solid var(--border-warm); background: var(--surface-2); padding-block: clamp(48px, 7vw, 80px) 30px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 5vw, 56px); }
.footer-col h4 { font-family: var(--display); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--label); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--muted); font-size: 16px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-about p { color: var(--muted); font-size: 16px; max-width: 34ch; margin: 18px 0 22px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-content: center; border: 1px solid var(--border-warm); background: var(--surface); color: var(--muted); }
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  margin-top: clamp(36px, 5vw, 56px); padding-top: 26px; border-top: 1px solid var(--border); }
.footer-bottom p { margin: 0; font-size: 13.5px; color: var(--muted-2); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 13.5px; color: var(--muted-2); }
.footer-legal a:hover { color: var(--gold-light); }

/* ── Scroll reveal ───────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ── Focus visibility (a11y) ─────────────────────────────────────────────── */
:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(201,168,76,0.55); border-radius: 8px; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media img { aspect-ratio: 16/10; }
  .sports { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .sport.span2c { grid-column: span 1; }
  .sport.span2r { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  body { font-size: 18px; }
  .nav__links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(8,7,5,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-warm);
    padding: 14px var(--gut) 24px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s ease, transform .22s ease; max-height: calc(100dvh - 78px); overflow-y: auto;
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: 14px 12px; font-size: 14px; border-radius: 10px; }
  .nav__link::after { display: none; }
  .nav__link:hover, .nav__link[aria-current="page"] { background: rgba(201,168,76,0.07); }
  .nav__toggle { display: inline-flex; }
  .nav__cta .btn--ghost { display: none; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .sports { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .hero__media img { object-position: center 28%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  /* Keep the header uncluttered on tiny screens — the menu carries the CTA. */
  .nav__cta .btn--primary { display: none; }
}
@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .notify { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Waitlist page ───────────────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips--center { justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: 100px;
  border: 1px solid var(--border-gold); background: rgba(201,168,76,0.06);
  font-family: var(--display); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light);
}
.chip::before { content: "◆"; font-size: 7px; color: var(--gold); }

/* Big signup card (waitlist capture) */
.signup {
  position: relative; max-width: 720px; margin-inline: auto; text-align: center;
  padding: clamp(26px, 4vw, 44px); border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(180deg, rgba(24,19,11,0.92), rgba(12,10,6,0.92));
  border: 1px solid var(--border-gold); box-shadow: var(--shadow-card);
}
.signup::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--ember), var(--gold), var(--ember)); }
.signup h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 12px; }
.signup .notify { max-width: 520px; margin-top: 26px; }
.signup .notify input { font-size: 18px; padding: 16px 18px; }

/* Waitlist signup with entry type (individual / team) + conditional team name */
.signup-form { max-width: 520px; margin: 26px auto 0; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.signup-form__row { display: flex; gap: 10px; }
.signup-form input[type=email], .signup-form__team {
  flex: 1; width: 100%; background: var(--surface); color: var(--ink);
  border: 1px solid var(--border-warm); border-radius: 10px;
  padding: 16px 18px; font-family: var(--serif); font-size: 18px; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.signup-form input[type=email]::placeholder, .signup-form__team::placeholder { color: var(--faint); }
.signup-form input[type=email]:focus, .signup-form__team:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.16); }
/* Team-name field only shows once "I'm entering a team" is chosen. site.js
   toggles .show-team on change (a plain class beats :has(:checked) for cross-
   browser reliability with radio groups). */
.signup-form__team { display: none; }
.signup-form.show-team .signup-form__team { display: block; }
.entry-pick { border: 0; margin: 0; padding: 0; display: flex; gap: 10px; }
.entry-pick__opt {
  flex: 1; position: relative; display: flex; align-items: center; justify-content: center; gap: 9px; cursor: pointer;
  padding: 13px 14px; border-radius: 10px; border: 1px solid var(--border-warm); background: var(--surface-2);
  font-family: var(--display); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-soft);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.entry-pick__opt:hover { border-color: var(--border-gold); color: var(--ink); }
.entry-pick__opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.entry-pick__opt.is-selected { border-color: var(--gold); background: rgba(201,168,76,0.07); color: var(--gold-light); }
.entry-pick__opt input:focus-visible ~ span { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 4px; }
@media (max-width: 420px) { .signup-form__row { flex-direction: column; } .entry-pick { flex-direction: column; } }

/* Draw / fixtures cards */
.draw-card { text-align: center; }
.draw-card .day {
  font-family: var(--display); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--ember-light); margin-bottom: 10px;
}
.draw-card .big { font-family: var(--display); font-weight: 900; font-size: clamp(40px, 6vw, 64px); line-height: 1; color: var(--gold); }
.draw-card .sub { display: block; margin-top: 8px; color: var(--muted); font-size: 16px; }
.draw-card .vs { margin-top: 14px; font-style: italic; color: var(--gold-light); }

/* ── Next-sport vote ─────────────────────────────────────────────────────── */
.vote { max-width: 760px; margin: 38px auto 0; }
.vote__options { border: 0; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.vote__opt {
  position: relative; display: flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 16px 18px; border-radius: var(--r-md); border: 1px solid var(--border-warm); background: var(--surface-2);
  font-family: var(--display); font-size: 13px; letter-spacing: .06em; color: var(--ink-soft);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.vote__opt:hover { border-color: var(--border-gold); color: var(--ink); }
.vote__opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.vote__opt .dot { flex: 0 0 auto; width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--border-gold); display: inline-block; transition: border-color .15s ease, box-shadow .15s ease; }
.vote__opt input:checked ~ .dot { border-color: var(--gold); background: radial-gradient(circle, var(--gold) 0 42%, transparent 46%); box-shadow: 0 0 0 3px rgba(201,168,76,0.16); }
.vote__opt:has(input:checked) { border-color: var(--gold); background: rgba(201,168,76,0.07); color: var(--ink); }
.vote__opt input:focus-visible ~ .dot { box-shadow: 0 0 0 3px rgba(201,168,76,0.55); }
.vote__row { display: flex; gap: 10px; max-width: 520px; margin: 22px auto 0; }
.vote__row input[type=email] {
  flex: 1; background: var(--surface); color: var(--ink); border: 1px solid var(--border-warm); border-radius: 10px;
  padding: 14px 16px; font-family: var(--serif); font-size: 17px; outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.vote__row input::placeholder { color: var(--faint); }
.vote__row input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.16); }
.vote .note { text-align: center; }

/* ── City expansion request ──────────────────────────────────────────────── */
.notify--city { flex-direction: column; max-width: 460px; }
.notify--city input {
  width: 100%; background: var(--surface); color: var(--ink); border: 1px solid var(--border-warm); border-radius: 10px;
  padding: 14px 16px; font-family: var(--serif); font-size: 17px; outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.notify--city input::placeholder { color: var(--faint); }
.notify--city input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.16); }
.notify--city .btn { width: 100%; }

/* Vote responsiveness — placed after the base .vote rules above so these win the
   cascade (equal specificity, later source order). */
@media (max-width: 720px) { .vote__options { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .vote__options { grid-template-columns: 1fr; } .vote__row { flex-direction: column; } }

/* Knockout bracket teaser */
.bracket { display: flex; gap: clamp(10px, 2vw, 26px); align-items: center; justify-content: center; flex-wrap: wrap; }
.bracket .col { display: grid; gap: 12px; }
.bracket .seed {
  min-width: 120px; padding: 12px 16px; border-radius: 10px; text-align: center;
  border: 1px dashed var(--border-warm); background: var(--surface-2);
  font-family: var(--display); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.bracket .seed.win { border-style: solid; border-color: var(--border-gold); color: var(--gold-light); background: rgba(201,168,76,0.06); }
.bracket .cup { width: 60px; height: 60px; display: grid; place-content: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-grad-a), var(--gold-grad-b)); color: #100B02; box-shadow: var(--shadow-gold); }
.bracket .cup svg { width: 30px; height: 30px; }

/* ── Esports launch (Rocket League debut) ────────────────────────────────────
   Boost-blue vs boost-orange arena accents layered onto the gold/black brand.
   Scoped to .esport-* / .launchday / .launch-card so nothing else shifts. */
:root {
  --boost-blue: #3FA7F5;
  --boost-orange: #F8842C;
}

/* Hero kicker: twin boost dots flanking the launch line */
.esport-kicker { display: inline-flex; align-items: center; gap: 10px; }
.esport-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.esport-dot--blue { background: var(--boost-blue); box-shadow: 0 0 12px rgba(63,167,245,.8); }
.esport-dot--orange { background: var(--boost-orange); box-shadow: 0 0 12px rgba(248,132,44,.8); }

/* Marquee: highlight the live title */
.strip__item--hot { color: var(--boost-blue); }

/* Launch-day schedule band */
.launchday { position: relative; overflow: hidden; }
.launchday__media { position: absolute; inset: 0; z-index: -2; }
.launchday__media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.launchday__scrim { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--bg, #060605) 0%, rgba(6,6,5,.62) 35%, rgba(6,6,5,.78) 100%); }
.launchday__grid { margin-top: 40px; }
.launchday__note { text-align: center; margin-top: 26px; color: var(--muted); }

.launch-card { position: relative; backdrop-filter: blur(2px); background: rgba(10,10,9,.72); }
.launch-card__time {
  display: inline-block; margin-bottom: 14px; padding: 6px 12px; border-radius: 999px;
  font-family: var(--display); font-size: 12px; letter-spacing: .14em;
  border: 1px solid; background: rgba(8,12,20,.7);
}
.launch-card__time--blue { color: var(--boost-blue); border-color: rgba(63,167,245,.45); }
.launch-card__time--mix { color: var(--gold-light); border-color: var(--border-gold); }
.launch-card__time--orange { color: var(--boost-orange); border-color: rgba(248,132,44,.45); }
.launch-card__mode { font-family: var(--display); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: -4px 0 10px; }
.launch-card__jackpot { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--gold-light); margin: 0 0 10px; }
.launch-card__jackpot span { font-family: var(--serif); font-weight: 400; font-size: 14px; color: var(--muted); }

/* Footer eligibility (state availability) */
.footer-eligibility { max-width: 760px; font-size: 13px; line-height: 1.6; color: var(--faint); margin-bottom: 10px; }

/* ── Reduced motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__media img { animation: none; transform: scale(1.04); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REGISTRATION + AUTH (added for the website tournament-registration lane)
   Form system, tier tabs, jackpot display, player cards, status chips.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Form system ─────────────────────────────────────────────────────────── */
.form-card {
  background: var(--surface); border: 1px solid var(--border-warm);
  border-radius: 16px; padding: clamp(22px, 3.4vw, 36px); position: relative;
}
.form-card--accent::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--ember), var(--gold), var(--ember));
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field > label {
  font-family: var(--display); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-light);
}
.field .hint { font-size: 14px; color: var(--muted-2); margin: 0; }
.field .err { font-size: 14px; color: var(--ember-light); margin: 0; }
.input {
  width: 100%; background: var(--bg, #0B0A07); color: var(--ink);
  border: 1px solid var(--border-warm); border-radius: 10px;
  padding: 13px 15px; font-size: 17px; font-family: var(--body, inherit);
}
.input::placeholder { color: var(--faint); }
.input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.16); }
.input[aria-invalid="true"] { border-color: var(--ember); }
select.input {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 49%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 51%);
  background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%;
  background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px;
}
.check { display: flex; gap: 12px; align-items: flex-start; margin: 12px 0; font-size: 16px; color: var(--ink-soft); }
.check input[type="checkbox"], .check input[type="radio"] {
  flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--gold);
}
.check a { text-decoration: underline; text-underline-offset: 3px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-status { margin-top: 14px; font-size: 16px; min-height: 1.4em; }
.form-status[data-tone="err"] { color: var(--ember-light); }
.form-status[data-tone="ok"] { color: var(--gold-light); }
fieldset.bare { border: 0; padding: 0; margin: 0; min-width: 0; }
fieldset.bare > legend {
  font-family: var(--display); font-size: 13px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); padding: 0; margin-bottom: 12px;
}

/* ── Auth tabs + alerts ──────────────────────────────────────────────────── */
.auth-wrap { max-width: 560px; margin-inline: auto; }
.seg { display: flex; border: 1px solid var(--border-warm); border-radius: 12px; overflow: hidden; margin-bottom: 24px; }
.seg button {
  flex: 1; padding: 14px 10px; background: transparent; border: 0; cursor: pointer;
  font-family: var(--display); font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2);
}
.seg button[aria-selected="true"] { background: rgba(201,168,76,0.12); color: var(--gold-light); }
.seg button:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.alert {
  border: 1px solid var(--border-warm); border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.06); border-radius: 10px;
  padding: 14px 16px; font-size: 16px; color: var(--ink-soft); margin: 0 0 18px;
}
.alert--err { border-left-color: var(--ember); background: rgba(200,90,60,0.08); }
.alert--ok { border-left-color: var(--gold-light); }
.alert a { text-decoration: underline; text-underline-offset: 3px; }

/* ── Tier tabs (register page) ───────────────────────────────────────────── */
.tier-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 26px 0 0; }
.tier-tab {
  flex: 1 1 180px; text-align: left; cursor: pointer;
  background: var(--surface); border: 1px solid var(--border-warm); border-radius: 14px;
  padding: 16px 18px; color: var(--ink-soft); transition: border-color .18s ease, background .18s ease;
}
.tier-tab .t-name { display: block; font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--ink); }
.tier-tab .t-meta { display: block; font-size: 13.5px; color: var(--muted-2); margin-top: 4px; }
.tier-tab .t-time {
  display: inline-block; font-family: var(--display); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px;
}
.tier-tab[aria-selected="true"] { border-color: var(--gold); background: rgba(201,168,76,0.08); box-shadow: 0 0 0 1px var(--gold) inset; }
.tier-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── Jackpot display ─────────────────────────────────────────────────────── */
.jackpot {
  position: relative; text-align: center; margin: 26px auto 8px; padding: 30px 18px 26px;
  border: 1px solid var(--border-gold); border-radius: 18px; overflow: hidden;
  background:
    radial-gradient(ellipse 75% 120% at 50% -20%, rgba(201,168,76,0.22), transparent 60%),
    var(--surface);
}
.jackpot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, transparent 42%, rgba(247,226,154,0.16) 50%, transparent 58%);
  background-size: 250% 100%; animation: jackpotSheen 3.2s ease-in-out infinite;
}
.jackpot__label {
  font-family: var(--display); font-size: 12px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--ember-light); display: block; margin-bottom: 6px;
}
.jackpot__amount {
  font-family: var(--display); font-weight: 900; line-height: 1;
  font-size: clamp(54px, 9vw, 96px);
  background: linear-gradient(160deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 26px rgba(201,168,76,0.35));
}
.jackpot__sub { font-size: 15px; color: var(--muted-2); margin-top: 10px; }
.jackpot__sub strong { color: var(--gold-light); font-weight: 600; }
@keyframes jackpotSheen { 0%, 100% { background-position: 125% 0; } 50% { background-position: -25% 0; } }
@media (prefers-reduced-motion: reduce) { .jackpot::after { animation: none; display: none; } }

/* ── Capacity meter ──────────────────────────────────────────────────────── */
.meter { margin: 18px 0 4px; }
.meter__bar { height: 10px; border-radius: 6px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-warm); overflow: hidden; }
.meter__fill { height: 100%; width: 0%; border-radius: 6px; background: linear-gradient(90deg, var(--ember), var(--gold)); transition: width .8s ease; }
.meter__text { font-size: 14.5px; color: var(--ink-soft); margin-top: 8px; }
.meter__text strong { color: var(--gold-light); }

/* ── Player cards ────────────────────────────────────────────────────────── */
.player-card {
  border: 1px solid var(--border-warm); border-radius: 14px; padding: 18px;
  margin-bottom: 16px; background: rgba(255,255,255,0.015);
}
.player-card > legend {
  font-family: var(--display); font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); padding: 0 8px; margin-left: -8px;
}
.minor-extra { border-left: 2px solid var(--ember); padding-left: 14px; margin-top: 10px; }

/* ── Entry-mode picker (reuses .entry-pick look, standalone) ─────────────── */
.mode-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
@media (max-width: 640px) { .mode-pick { grid-template-columns: 1fr; } }
.mode-pick label {
  display: block; cursor: pointer; border: 1px solid var(--border-warm); border-radius: 12px;
  padding: 14px 16px; color: var(--ink-soft); font-size: 16px;
}
.mode-pick label.is-selected { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.mode-pick input { accent-color: var(--gold); margin-right: 8px; }
.mode-pick .sub { display: block; font-size: 13.5px; color: var(--muted-2); margin-top: 4px; }

/* ── Status chips / badges ───────────────────────────────────────────────── */
.chiplet {
  display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 999px;
  font-family: var(--display); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--border-warm); color: var(--muted-2);
}
.chiplet::before { content: "●"; font-size: 9px; }
.chiplet--paid { color: var(--gold-light); border-color: var(--border-gold); }
.chiplet--paid::before { color: var(--gold); }
.chiplet--pending { color: var(--ember-light); }
.chiplet--pending::before { color: var(--ember); }

/* ── Code display (waiver / squad codes) ─────────────────────────────────── */
.code-display {
  font-family: var(--display); font-weight: 700; font-size: clamp(30px, 6vw, 44px);
  letter-spacing: .35em; color: var(--gold-bright); text-align: center;
  border: 1px dashed var(--border-gold); border-radius: 14px; padding: 22px 12px 22px 22px;
  background: rgba(201,168,76,0.05); margin: 18px 0;
}

/* ── Account page rows ───────────────────────────────────────────────────── */
.entry-row {
  display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; justify-content: space-between;
  border: 1px solid var(--border-warm); border-radius: 12px; padding: 14px 16px; margin-bottom: 12px;
}
.entry-row .who { font-size: 16.5px; color: var(--ink); }
.entry-row .what { font-size: 14px; color: var(--muted-2); }

/* ── Legal page ──────────────────────────────────────────────────────────── */
.legal-toc { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 30px; }
.legal-body h3 { margin: 34px 0 10px; font-size: 21px; }
.legal-body h4 { margin: 22px 0 8px; font-size: 17.5px; color: var(--gold-light); }
.legal-body p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.75; margin: 0 0 12px; }
.legal-body .eff { color: var(--muted-2); font-style: italic; }

/* ── "Register" hot link in the nav ──────────────────────────────────────── */
.nav__link--hot::after { display: none; }
.nav__link--hot {
  color: var(--gold-bright);
  text-shadow: 0 0 14px rgba(201,168,76,0.45);
}

/* Inline text buttons (forgot password, show password) */
.linklike {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--gold); font: inherit; text-decoration: underline; text-underline-offset: 3px;
}
.linklike:hover { color: var(--gold-light); }
.linklike:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Launch-day card jackpot emphasis + live counts */
.launch-card__prize { margin: 14px 0 6px; }
.launch-card__amount {
  display: block; font-family: var(--display); font-weight: 900; line-height: 1;
  font-size: clamp(38px, 4.6vw, 52px);
  background: linear-gradient(160deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 18px rgba(201,168,76,0.35));
}
.launch-card__tag {
  display: block; margin-top: 6px; font-family: var(--display); font-size: 10.5px;
  letter-spacing: .26em; text-transform: uppercase; color: var(--ember-light);
}
.launch-card__count { font-size: 14.5px; color: var(--gold-light); margin: 4px 0 8px; }

/* The header now carries Register + Sign In + the CTA — collapse the link row
   into the menu earlier so nothing overflows between 720px and ~1100px. */
@media (max-width: 1100px) {
  .nav__links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(8,7,5,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-warm);
    padding: 14px var(--gut) 24px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s ease, transform .22s ease; max-height: calc(100dvh - 78px); overflow-y: auto;
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: 14px 12px; font-size: 14px; border-radius: 10px; }
  .nav__link::after { display: none; }
  .nav__link:hover, .nav__link[aria-current="page"] { background: rgba(201,168,76,0.07); }
  .nav__toggle { display: inline-flex; }
}

/* Keep the header auth link on one line */
.nav__cta .nav__link { white-space: nowrap; }
