/* ==========================================================================
   BATON SEASON — $BATONSZN
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root{
  --navy-950:#02050f;
  --navy-900:#040c1e;
  --navy-850:#061532;
  --navy-800:#0a2049;
  --navy-700:#0e2f6e;
  --blue-600:#1d71b7;
  --cyan-400:#0eb2cf;
  --cyan-300:#4fd9f2;
  --green-500:#3b995f;
  --green-400:#4fd087;
  --tan-500:#c8734f;
  --cream-100:#eef1ef;
  --cream-300:#d0c9c6;
  --ink-900:#080b14;
  --ink-800:#0c101c;
  --white:#f6f9fb;
  --red-500:#e5484d;

  --grad-brand: linear-gradient(90deg, var(--cyan-400), var(--green-400));
  --grad-brand-soft: linear-gradient(135deg, rgba(14,178,207,.18), rgba(79,208,135,.10));

  --font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  --container: 1180px;
  --radius: 18px;
  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{
  scroll-behavior:smooth;
  scroll-padding-top:90px;
}
html,body{
  margin:0;
  padding:0;
  background:var(--navy-950);
  color:var(--cream-100);
  font-family:var(--font-display);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
body{
  min-height:100vh;
  position:relative;
}
body.no-scroll{ overflow:hidden; height:100vh; }

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
::selection{ background:var(--cyan-400); color:var(--navy-950); }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* subtle grain overlay across whole page */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:url('../img/noise.png');
  background-size:180px;
  opacity:.5;
  mix-blend-mode:overlay;
  pointer-events:none;
  z-index:9990;
}

/* ==========================================================================
   Scanline / grid ambient background (reused site-wide)
   ========================================================================== */
.grid-field{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(79,217,242,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,217,242,.07) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:radial-gradient(ellipse at 50% 30%, #000 0%, transparent 75%);
  pointer-events:none;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader{
  position:fixed;
  inset:0;
  z-index:10000;
  background:var(--navy-950) url('../img/bg-vignette.jpg') center/cover no-repeat;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:28px;
  transition:transform .9s var(--ease), opacity .8s ease;
}
#preloader::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(2,5,15,.55), rgba(2,5,15,.92));
}
#preloader.done{
  transform:translateY(-100%);
  opacity:.4;
  pointer-events:none;
}
.preloader-inner{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
}
.preloader-badge{
  width:96px;height:96px;border-radius:50%;
  overflow:hidden;
  border:2px solid transparent;
  background:
    linear-gradient(var(--navy-950),var(--navy-950)) padding-box,
    var(--grad-brand) border-box;
  box-shadow:0 0 40px rgba(14,178,207,.45);
  animation:pulseRing 2.2s ease-in-out infinite;
}
.preloader-badge img{ width:100%; height:100%; object-fit:cover; }
@keyframes pulseRing{
  0%,100%{ box-shadow:0 0 24px rgba(14,178,207,.35); }
  50%{ box-shadow:0 0 52px rgba(79,208,135,.55); }
}
.preloader-word{
  font-size:clamp(28px,6vw,54px);
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  display:flex; gap:.35em;
}
.preloader-word span{ opacity:0; transform:translateY(14px); animation:wordIn .6s var(--ease) forwards; }
.preloader-word span:nth-child(2){ animation-delay:.12s; background:var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }
@keyframes wordIn{ to{ opacity:1; transform:translateY(0); } }

.preloader-track{
  width:min(320px,70vw);
  height:6px;
  border-radius:99px;
  background:rgba(255,255,255,.08);
  position:relative;
  overflow:hidden;
}
.preloader-fill{
  position:absolute; inset:0 100% 0 0;
  background:var(--grad-brand);
  border-radius:99px;
  transition:right .18s linear;
}
.preloader-baton{
  position:absolute;
  top:50%;
  left:0%;
  translate:-50% -50%;
  font-size:18px;
  transition:left .18s linear;
  filter:drop-shadow(0 0 6px rgba(14,178,207,.8));
}
.preloader-pct{
  font-family:var(--font-mono);
  font-size:13px;
  letter-spacing:.15em;
  color:var(--cyan-300);
  opacity:.85;
}

/* ==========================================================================
   Header
   ========================================================================== */
header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:500;
  padding:16px 0;
  transition:background .35s ease, box-shadow .35s ease, padding .35s ease;
}
header.scrolled{
  padding:10px 0;
  background:rgba(4,10,24,.78);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  box-shadow:0 1px 0 rgba(79,217,242,.12), 0 10px 30px rgba(0,0,0,.35);
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:700; letter-spacing:.02em; font-size:16px;
  white-space:nowrap;
}
.brand-badge{
  width:38px;height:38px;border-radius:50%;
  border:2px solid transparent;
  background:linear-gradient(var(--navy-950),var(--navy-950)) padding-box, var(--grad-brand) border-box;
  overflow:hidden;
  flex:none;
}
.brand-badge img{ width:100%;height:100%;object-fit:cover; }
.brand small{
  display:block;
  font-family:var(--font-mono);
  font-weight:500;
  font-size:10px;
  letter-spacing:.14em;
  color:var(--cyan-300);
  opacity:.85;
}

.nav-links{
  display:flex; align-items:center; gap:28px;
  font-size:14px; font-weight:500;
  color:var(--cream-300);
}
.nav-links a{
  position:relative;
  padding:6px 0;
  transition:color .25s ease;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:0;
  height:2px; background:var(--grad-brand);
  transition:right .3s var(--ease);
}
.nav-links a:hover{ color:var(--white); }
.nav-links a:hover::after{ right:0; }

.nav-actions{ display:flex; align-items:center; gap:10px; }

.icon-btn{
  width:38px;height:38px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  border:1px solid rgba(79,217,242,.35);
  background:rgba(14,178,207,.06);
  color:var(--white);
  transition:transform .25s var(--ease), border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.icon-btn svg{ width:17px; height:17px; }
.icon-btn:hover{
  transform:translateY(-2px);
  border-color:var(--cyan-300);
  background:rgba(14,178,207,.16);
  box-shadow:0 6px 18px rgba(14,178,207,.25);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:11px 22px;
  border-radius:99px;
  font-weight:700;
  font-size:14px;
  letter-spacing:.01em;
  border:1px solid transparent;
  white-space:nowrap;
  transition:transform .25s var(--ease), box-shadow .25s ease, filter .25s ease, background .25s ease, border-color .25s ease;
}
.btn:active{ transform:translateY(1px) scale(.99); }
.btn-primary{
  background:var(--grad-brand);
  color:var(--navy-950);
  box-shadow:0 8px 24px rgba(14,178,207,.28);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 30px rgba(79,208,135,.4); filter:brightness(1.05); }
.btn-outline{
  background:rgba(255,255,255,.03);
  border-color:rgba(79,217,242,.4);
  color:var(--white);
}
.btn-outline:hover{ border-color:var(--cyan-300); background:rgba(14,178,207,.12); transform:translateY(-2px); }
.btn-ghost{
  background:transparent; border-color:rgba(255,255,255,.18); color:var(--cream-300);
}
.btn-ghost:hover{ border-color:rgba(255,255,255,.4); color:var(--white); }
.btn-lg{ padding:16px 30px; font-size:15px; }

.burger{
  display:none;
  width:40px;height:40px;
  border-radius:10px;
  border:1px solid rgba(79,217,242,.3);
  background:rgba(14,178,207,.06);
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.burger span{ width:18px;height:2px;background:var(--white); border-radius:2px; transition:.3s; }
.burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:140px 0 90px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background:url('../img/bg-vignette.jpg') center 20%/cover no-repeat;
  transform:scale(1.08);
}
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(14,178,207,.16), transparent 60%),
    linear-gradient(180deg, rgba(2,5,15,.55) 0%, rgba(2,5,15,.55) 40%, var(--navy-950) 96%);
}
.hero-grid{ position:absolute; inset:0; z-index:1; }

.hero-inner{
  position:relative; z-index:3;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:40px;
  width:100%;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono);
  font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--cyan-300);
  background:rgba(14,178,207,.08);
  border:1px solid rgba(79,217,242,.3);
  padding:7px 14px; border-radius:99px;
  margin-bottom:22px;
}
.eyebrow .dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--green-400);
  box-shadow:0 0 10px var(--green-400);
  animation:blink 1.6s ease-in-out infinite;
}
@keyframes blink{ 0%,100%{opacity:1;} 50%{opacity:.25;} }

.hero h1{
  font-size:clamp(46px, 7.4vw, 96px);
  line-height:.96;
  font-weight:700;
  margin:0 0 20px;
  letter-spacing:-.01em;
  text-transform:uppercase;
}
.hero h1 .line2{
  display:block;
  background:var(--grad-brand);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero p.sub{
  font-size:clamp(16px,1.9vw,19px);
  color:var(--cream-300);
  max-width:46ch;
  margin:0 0 34px;
}
.hero p.sub strong{ color:var(--white); }

.cta-row{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:30px; }

.ca-pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 10px 10px 18px;
  border-radius:99px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--cream-300);
  max-width:100%;
}
.ca-pill .ca-label{ color:var(--cyan-300); font-weight:600; letter-spacing:.05em; font-size:11px; text-transform:uppercase; }
.ca-pill .ca-val{
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
  max-width:150px;
}
.copy-btn{
  display:flex; align-items:center; justify-content:center;
  width:34px;height:34px; border-radius:50%;
  background:var(--grad-brand);
  color:var(--navy-950);
  flex:none;
  transition:transform .2s var(--ease);
  position:relative;
}
.copy-btn:hover{ transform:scale(1.08); }
.copy-btn svg{ width:15px;height:15px; }
.copy-toast{
  position:absolute; top:-34px; right:0;
  background:var(--ink-900); border:1px solid var(--green-400);
  color:var(--green-400);
  font-size:11px; font-family:var(--font-mono);
  padding:4px 10px; border-radius:8px;
  opacity:0; transform:translateY(6px);
  transition:.25s var(--ease);
  pointer-events:none;
  white-space:nowrap;
}
.copy-toast.show{ opacity:1; transform:translateY(0); }

.hero-stats{ display:flex; gap:28px; flex-wrap:wrap; }
.hero-stats div{ font-family:var(--font-mono); }
.hero-stats b{ display:block; font-size:20px; color:var(--white); }
.hero-stats span{ font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--cream-300); opacity:.7; }

/* Hero visual / 3D tilt */
.hero-visual{
  position:relative;
  perspective:1200px;
  display:flex; justify-content:center;
}
.tilt-card{
  position:relative;
  width:min(430px, 90%);
  aspect-ratio:1/1;
  border-radius:28px;
  transform-style:preserve-3d;
  transition:transform .25s ease-out;
  animation:floaty 5s ease-in-out infinite;
}
@keyframes floaty{ 0%,100%{ transform:translateY(0px) rotateX(0) rotateY(0);} 50%{ transform:translateY(-14px) rotateX(0) rotateY(0);} }
.tilt-card img{
  width:100%; height:100%; object-fit:cover;
  border-radius:28px;
  transform:translateZ(30px);
  box-shadow:0 30px 70px rgba(2,6,16,.65), 0 0 0 1px rgba(79,217,242,.18);
}
.tilt-ring{
  position:absolute; inset:-18px;
  border-radius:38px;
  border:1px dashed rgba(79,217,242,.35);
  transform:translateZ(0px) rotate(0deg);
  animation:spin 26s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.tilt-chip{
  position:absolute;
  padding:9px 14px;
  border-radius:14px;
  background:rgba(6,15,32,.85);
  border:1px solid rgba(79,217,242,.35);
  backdrop-filter:blur(6px);
  font-family:var(--font-mono);
  font-size:12px;
  font-weight:600;
  transform:translateZ(70px);
  box-shadow:0 12px 30px rgba(0,0,0,.4);
}
.tilt-chip.chip-up{ top:8%; left:-8%; color:var(--green-400); }
.tilt-chip.chip-tag{ bottom:9%; right:-10%; color:var(--cyan-300); }
.tilt-chip .arrow{ margin-right:4px; }

.scroll-cue{
  position:absolute; bottom:26px; left:50%; translate:-50% 0;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  z-index:3;
  font-family:var(--font-mono); font-size:10px; letter-spacing:.2em;
  color:var(--cream-300); opacity:.7;
}
.scroll-cue .stick{ width:1px; height:34px; background:linear-gradient(var(--cyan-300), transparent); position:relative; overflow:hidden; }
.scroll-cue .stick::after{ content:""; position:absolute; top:-30px; left:0; width:100%; height:30px; background:var(--white); animation:dropline 1.8s ease-in-out infinite; }
@keyframes dropline{ to{ top:110%; } }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee-wrap{
  position:relative;
  padding:16px 0;
  background:var(--ink-900);
  border-top:1px solid rgba(79,217,242,.16);
  border-bottom:1px solid rgba(79,217,242,.16);
  overflow:hidden;
}
.marquee-wrap.reverse{ background:var(--navy-900); }
.marquee-track{
  display:flex;
  width:max-content;
  gap:14px;
  animation:scrollLeft 34s linear infinite;
}
.marquee-wrap.reverse .marquee-track{ animation:scrollRight 40s linear infinite; }
@keyframes scrollLeft{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
@keyframes scrollRight{ from{ transform:translateX(-50%);} to{ transform:translateX(0);} }

.ticker-chip{
  display:flex; align-items:center; gap:8px;
  padding:9px 18px;
  border-radius:99px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.02);
  font-family:var(--font-mono);
  font-weight:600;
  font-size:14px;
  color:var(--cream-300);
  white-space:nowrap;
}
.ticker-chip .up{ color:var(--green-400); }
.ticker-chip .down{ color:var(--red-500); }
.ticker-chip.hero-chip{
  color:var(--navy-950);
  background:var(--grad-brand);
  border-color:transparent;
  font-weight:700;
}

/* ==========================================================================
   Section shell
   ========================================================================== */
section{ position:relative; padding:120px 0; }
.section-bg{
  position:absolute; inset:0;
  background:url('../img/bg-duotone.jpg') center/cover no-repeat;
  opacity:.5;
  z-index:0;
}
.section-bg.solid{ background:var(--navy-900); opacity:1; }
section > .container{ position:relative; z-index:2; }

.kicker{
  font-family:var(--font-mono);
  font-size:12px; letter-spacing:.2em; text-transform:uppercase;
  color:var(--green-400);
  display:flex; align-items:center; gap:10px;
  margin-bottom:14px;
}
.kicker::before{ content:""; width:26px; height:1px; background:var(--green-400); }

h2.section-title{
  font-size:clamp(32px,5vw,54px);
  font-weight:700;
  text-transform:uppercase;
  line-height:1.02;
  margin:0 0 18px;
  max-width:16ch;
}
.section-lede{
  color:var(--cream-300);
  max-width:56ch;
  font-size:16px;
  margin-bottom:0;
}
.section-head{ margin-bottom:56px; }
.section-head.center{ text-align:center; margin-left:auto; margin-right:auto; }
.section-head.center .kicker{ justify-content:center; }
.section-head.center h2{ max-width:none; }
.section-head.center .section-lede{ margin-left:auto; margin-right:auto; }

.reveal{ opacity:0; transform:translateY(36px); }

/* ==========================================================================
   How to buy
   ========================================================================== */
.buy-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  perspective:1400px;
}
.buy-card{
  position:relative;
  padding:30px 22px 26px;
  border-radius:20px;
  background:linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.09);
  transition:transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
  transform-style:preserve-3d;
}
.buy-card:hover{
  border-color:rgba(79,217,242,.4);
  box-shadow:0 24px 48px rgba(2,6,16,.5);
}
.buy-num{
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--navy-950);
  background:var(--grad-brand);
  width:30px;height:30px;
  border-radius:9px;
  display:flex; align-items:center; justify-content:center;
  font-weight:700;
  margin-bottom:18px;
}
.buy-icon{ font-size:30px; margin-bottom:14px; display:block; }
.buy-card h3{ font-size:17px; margin:0 0 8px; text-transform:uppercase; letter-spacing:.02em; }
.buy-card p{ font-size:13.5px; color:var(--cream-300); margin:0; line-height:1.55; }

/* ==========================================================================
   Lore
   ========================================================================== */
.lore-section{ overflow:hidden; }
.lore-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:60px;
  align-items:center;
}
.lore-frame{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(79,217,242,.25);
  box-shadow:0 30px 70px rgba(2,6,16,.55);
}
.lore-frame img{ width:100%; display:block; }
.lore-frame::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 55%, rgba(2,6,16,.85));
}
.lore-frame .frame-tag{
  position:absolute; left:16px; bottom:16px; z-index:2;
  font-family:var(--font-mono); font-size:11px; letter-spacing:.12em;
  color:var(--cyan-300); text-transform:uppercase;
}
.terminal{
  background:var(--ink-900);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  overflow:hidden;
}
.terminal-bar{
  display:flex; gap:6px;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.terminal-bar span{ width:10px;height:10px;border-radius:50%; background:rgba(255,255,255,.15); }
.terminal-bar span:nth-child(1){ background:#e5484d; }
.terminal-bar span:nth-child(2){ background:#e2b93b; }
.terminal-bar span:nth-child(3){ background:#3b995f; }
.terminal-body{ padding:22px 24px; font-family:var(--font-mono); font-size:14.5px; line-height:1.9; color:var(--cream-300); }
.terminal-body .accent{ color:var(--green-400); }
.terminal-body .accent2{ color:var(--cyan-300); }
.terminal-cursor{ display:inline-block; width:8px; height:16px; background:var(--cyan-300); vertical-align:middle; animation:blink 1s step-end infinite; }

/* ==========================================================================
   Chart
   ========================================================================== */
.chart-frame{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(79,217,242,.3);
  background:var(--ink-900);
  box-shadow:0 30px 70px rgba(2,6,16,.55), 0 0 0 1px rgba(255,255,255,.03) inset;
  position:relative;
}
.chart-frame .bar{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 20px;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--cream-300);
}
.chart-frame .bar .live{ display:flex; align-items:center; gap:8px; color:var(--green-400); }
.chart-frame .bar .live .dot{ width:7px;height:7px;border-radius:50%; background:var(--green-400); box-shadow:0 0 8px var(--green-400); animation:blink 1.4s ease-in-out infinite; }
.chart-embed{ position:relative; width:100%; aspect-ratio:16/9; background:var(--navy-950); }
.chart-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.chart-fallback{
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
  text-align:center; padding:20px;
  background:radial-gradient(ellipse at 50% 40%, rgba(14,178,207,.1), transparent 60%), var(--navy-950);
}
.chart-fallback p{ color:var(--cream-300); font-size:14px; max-width:38ch; margin:0; }

/* ==========================================================================
   Roadmap
   ========================================================================== */
.race-track{ position:relative; padding-top:20px; }
.race-line{
  position:absolute;
  top:38px; left:0; right:0;
  height:2px;
  background:repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 10px, transparent 10px 20px);
}
.race-line-fill{
  position:absolute; top:38px; left:0;
  height:2px; width:0%;
  background:var(--grad-brand);
  box-shadow:0 0 12px rgba(14,178,207,.6);
}
.legs{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.leg{
  position:relative;
  padding-top:56px;
}
.leg-flag{
  position:absolute; top:0; left:0;
  width:34px;height:34px;
  border-radius:50%;
  background:var(--ink-900);
  border:2px solid rgba(79,217,242,.4);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-weight:700; font-size:13px;
  color:var(--cyan-300);
  z-index:2;
}
.leg.active .leg-flag{
  background:var(--grad-brand); color:var(--navy-950); border-color:transparent;
  box-shadow:0 0 22px rgba(79,208,135,.55);
}
.leg-card{
  background:linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.09);
  border-radius:18px;
  padding:24px 22px;
  height:100%;
}
.leg-card .tag{
  display:inline-block; font-family:var(--font-mono); font-size:11px; letter-spacing:.12em;
  text-transform:uppercase; color:var(--green-400); margin-bottom:10px;
}
.leg-card h3{ font-size:19px; text-transform:uppercase; margin:0 0 10px; }
.leg-card ul{ display:flex; flex-direction:column; gap:9px; }
.leg-card li{
  font-size:13.5px; color:var(--cream-300);
  display:flex; gap:9px; align-items:flex-start; line-height:1.5;
}
.leg-card li::before{ content:"›"; color:var(--cyan-300); font-weight:700; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-cta{
  text-align:center;
  padding-bottom:70px;
}
.footer-cta h2{
  font-size:clamp(34px,6vw,64px);
  text-transform:uppercase;
  margin:0 0 26px;
}
.footer-links{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
  margin:50px 0 46px;
}
.footer-link-btn{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  padding:22px 10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.02);
  font-size:12.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  color:var(--cream-300);
  transition:.3s var(--ease);
}
.footer-link-btn span.ico{ font-size:20px; }
.footer-link-btn:hover{
  color:var(--white);
  border-color:rgba(79,217,242,.5);
  background:rgba(14,178,207,.08);
  transform:translateY(-4px);
}
.footer-socials{ display:flex; justify-content:center; gap:14px; margin-bottom:36px; }
.footer-socials .btn{ min-width:150px; }

footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:34px 0;
}
.footer-bottom{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  flex-wrap:wrap;
}
.footer-brand{ display:flex; align-items:center; gap:10px; font-weight:700; font-size:14px; }
.footer-brand .brand-badge{ width:30px;height:30px; }
.footer-ca{
  font-family:var(--font-mono); font-size:12px; color:var(--cream-300);
  display:flex; align-items:center; gap:8px;
}
.disclaimer{
  font-size:11.5px; color:rgba(238,241,239,.45);
  max-width:900px; margin:22px auto 0; text-align:center; line-height:1.6;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; text-align:center; }
  .hero p.sub{ margin-left:auto; margin-right:auto; }
  .cta-row{ justify-content:center; }
  .hero-stats{ justify-content:center; }
  .hero-visual{ order:-1; margin-bottom:10px; }
  .buy-grid{ grid-template-columns:repeat(2,1fr); }
  .lore-grid{ grid-template-columns:1fr; }
  .legs{ grid-template-columns:1fr; }
  .race-line, .race-line-fill{ display:none; }
  .footer-links{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 760px){
  .nav-links{ display:none; }
  header .nav-actions{ display:none; }
  .burger{ display:flex; }
}
@media (max-width: 520px){
  .buy-grid{ grid-template-columns:1fr; }
  .footer-links{ grid-template-columns:repeat(2,1fr); }
  section{ padding:80px 0; }
  .ca-pill .ca-val{ max-width:100px; }
}

/* mobile nav drawer */
.mobile-nav{
  position:fixed; inset:0; z-index:400;
  background:var(--navy-950);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:28px;
  transform:translateY(-100%);
  transition:transform .45s var(--ease);
}
.mobile-nav.open{ transform:translateY(0); }
.mobile-nav a{ font-size:22px; font-weight:600; text-transform:uppercase; letter-spacing:.04em; }
.mobile-nav .nav-actions{ margin-top:10px; }
