/* =============================================================
   DropRadar — Premium Web3 Airdrop Landing
   Design System & Animations
============================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg-0:      #07030f;
  --bg-1:      #0d0620;
  --bg-2:      #150a2e;
  --surface:   #1a0f38;
  --panel:     #23134d;
  --line:      #3a2469;
  --line-2:    rgba(255,255,255,.06);

  --ink:       #ffffff;
  --ink-2:     #e5ddf5;
  --muted:     #a094c2;
  --muted-2:   #6f6191;

  --magenta:   #E946E9;
  --purple:    #B93FF5;
  --pink:      #FF3DD8;
  --violet:    #7C3AED;
  --cyan:      #00E5FF;
  --orange:    #FF7A00;
  --emerald:   #22F5A3;
  --gold:      #FFC845;

  --grad-primary: linear-gradient(135deg, #B93FF5 0%, #E946E9 55%, #FF3DD8 100%);
  --grad-cyber:   linear-gradient(135deg, #7C3AED 0%, #B93FF5 40%, #FF3DD8 100%);
  --grad-aurora:  radial-gradient(60% 60% at 20% 20%, rgba(233,70,233,.35), transparent 70%),
                  radial-gradient(70% 70% at 80% 30%, rgba(124,58,237,.35), transparent 70%),
                  radial-gradient(80% 80% at 50% 90%, rgba(0,229,255,.18), transparent 70%);
  --shadow-neon:  0 12px 60px -12px rgba(233,70,233,.55), 0 0 0 1px rgba(233,70,233,.25) inset;
  --shadow-neon-strong: 0 20px 80px -12px rgba(233,70,233,.85), 0 0 0 1px rgba(255,255,255,.15) inset;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --nav-h: 72px;
  --easing: cubic-bezier(.22,1,.36,1);
}

/* ---------- Reset / Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; background: var(--bg-0); color: var(--ink); }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'ss01','cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
  overscroll-behavior: none;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }
::selection { background: var(--magenta); color: #0a0514; }

/* ---------- Custom scrollbar ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(185,63,245,.35); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(185,63,245,.55); }

/* ---------- Typography helpers ---------- */
.font-display { font-family: 'Space Grotesk', 'Inter', sans-serif; letter-spacing: -0.02em; }
.font-mono    { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-gradient-cyber {
  background: linear-gradient(120deg, #ffffff 0%, #e5ddf5 30%, #E946E9 60%, #7C3AED 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-neon { color: var(--magenta); text-shadow: 0 0 24px rgba(233,70,233,.6); }
.uppercase-mono { font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .15em; font-size: 12px; color: var(--muted); }

/* =============================================================
   PRELOADER
============================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(circle at 50% 50%, #1a0f38 0%, #07030f 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 40px;
  transition: opacity .8s ease, visibility .8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-radar {
  position: relative; width: 220px; height: 220px;
}
.preloader-radar::before,
.preloader-radar::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(233,70,233,.25);
}
.preloader-radar::after {
  inset: 40px; border-color: rgba(233,70,233,.15);
}
.preloader-radar .inner {
  position: absolute; inset: 80px; border-radius: 50%;
  border: 1px solid rgba(233,70,233,.35);
  box-shadow: 0 0 40px rgba(233,70,233,.45), inset 0 0 20px rgba(233,70,233,.25);
}
.preloader-radar .sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(233,70,233,0) 0deg, rgba(233,70,233,.7) 60deg, rgba(255,61,216,0) 90deg);
  animation: sweep 1.4s linear infinite;
  mask: radial-gradient(circle, transparent 30%, black 30.5%);
}
.preloader-radar .core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: 0 0 40px rgba(233,70,233,.7), 0 0 80px rgba(185,63,245,.5);
  display: flex; align-items: center; justify-content: center;
  animation: pulse 1.6s ease-in-out infinite;
}
.preloader-radar .dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--magenta); box-shadow: 0 0 12px var(--magenta);
  animation: blip 1.8s ease-in-out infinite;
}
.preloader-radar .dot.d1 { top: 24%; left: 18%; animation-delay: .1s; }
.preloader-radar .dot.d2 { top: 60%; left: 78%; animation-delay: .6s; background: var(--purple); box-shadow: 0 0 12px var(--purple); }
.preloader-radar .dot.d3 { top: 82%; left: 42%; animation-delay: 1.1s; }
.preloader-radar .dot.d4 { top: 20%; left: 66%; animation-delay: 1.5s; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

@keyframes sweep { to { transform: rotate(360deg); } }
@keyframes blip {
  0%,100% { transform: scale(0.5); opacity: .3; }
  50%     { transform: scale(1.2); opacity: 1; }
}
@keyframes pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); box-shadow: 0 0 40px rgba(233,70,233,.7), 0 0 80px rgba(185,63,245,.5); }
  50%     { transform: translate(-50%,-50%) scale(1.08); box-shadow: 0 0 60px rgba(233,70,233,.9), 0 0 120px rgba(185,63,245,.7); }
}

.preloader-brand {
  text-align: center;
}
.preloader-brand h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 800; letter-spacing: 0.4em;
  color: #fff;
  text-shadow: 0 0 20px rgba(233,70,233,.5);
}
.preloader-brand h1 span { color: var(--magenta); }
.preloader-brand p {
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
}

.preloader-bar {
  width: 240px; height: 3px; background: rgba(255,255,255,.06);
  border-radius: 999px; overflow: hidden;
}
.preloader-bar .fill {
  height: 100%; width: 0%;
  background: var(--grad-primary);
  box-shadow: 0 0 12px rgba(233,70,233,.7);
  border-radius: 999px;
  transition: width .1s linear;
}
.preloader-percent {
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted); font-size: 12px; letter-spacing: .2em;
}

/* =============================================================
   GLOBAL DECORATIVE LAYERS
============================================================= */
.bg-layer { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

/* Aurora blobs */
.aurora {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .55; mix-blend-mode: screen;
  animation: aurora 18s ease-in-out infinite;
}
.aurora.a1 { top: -10%; left: -5%;  width: 520px; height: 520px; background: radial-gradient(circle, #B93FF5, transparent 70%); }
.aurora.a2 { top: 20%;  right: -10%; width: 620px; height: 620px; background: radial-gradient(circle, #E946E9, transparent 70%); animation-delay: -6s; }
.aurora.a3 { bottom: -10%; left: 25%; width: 720px; height: 720px; background: radial-gradient(circle, #7C3AED, transparent 70%); animation-delay: -12s; }
.aurora.a4 { top: 60%;  right: 20%;  width: 400px; height: 400px; background: radial-gradient(circle, #00E5FF, transparent 70%); opacity: .3; animation-delay: -3s; }
@keyframes aurora {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, -40px) scale(1.15); }
  66%      { transform: translate(-40px, 40px) scale(.95); }
}

/* Grid */
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

/* Circuit lines SVG canvas */
.circuit {
  position: absolute; inset: 0; opacity: .15;
}

/* Noise */
.noise {
  position: absolute; inset: 0; opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* =============================================================
   CUSTOM CURSOR (desktop)
============================================================= */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--magenta);
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, background .2s ease, border-color .2s ease;
  z-index: 9998; mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed; top: 0; left: 0; pointer-events: none;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--magenta); box-shadow: 0 0 10px var(--magenta);
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.cursor.hover { width: 60px; height: 60px; background: rgba(233,70,233,.15); }
@media (hover: none), (max-width: 900px) { .cursor, .cursor-dot { display: none; } }

/* =============================================================
   LAYOUT
============================================================= */
.container {
  max-width: 1280px; margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
  position: relative; z-index: 2;
}
@media (max-width: 640px) {
  .container { padding-left: 18px; padding-right: 18px; }
}

/* =============================================================
   NAVBAR
============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  backdrop-filter: blur(20px);
  background: rgba(7,3,15,.6);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-top: env(safe-area-inset-top);
  transition: transform .35s var(--easing), background .3s ease;
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner {
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand {
  display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: #fff;
}
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(233,70,233,.55), inset 0 0 0 1px rgba(255,255,255,.15);
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; inset: -4px; border-radius: 14px;
  background: var(--grad-primary); filter: blur(12px); opacity: .55; z-index: -1;
}
.brand-name span { color: var(--magenta); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 16px; border-radius: 999px; font-size: 14px; font-weight: 500;
  color: var(--muted); transition: color .2s ease, background .2s ease; position: relative;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.04); }
.nav-links a.active { color: #fff; background: rgba(233,70,233,.1); border: 1px solid rgba(233,70,233,.25); }

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

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(7,3,15,.85); backdrop-filter: blur(30px);
  display: flex; flex-direction: column; padding: 90px 24px 40px;
  gap: 6px;
  transform: translateX(100%); transition: transform .4s var(--easing);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  padding: 18px 20px; border-radius: 14px; font-size: 18px; font-weight: 600;
  color: #fff; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
}
.nav-drawer .btn-primary { margin-top: 20px; justify-content: center; }

/* =============================================================
   BUTTONS
============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 0 22px; height: 48px; border-radius: 999px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap; position: relative; isolation: isolate;
}
.btn:active { transform: translateY(1px) scale(.98); }

.btn-primary {
  color: #fff;
  background: var(--grad-primary);
  box-shadow: 0 10px 30px -6px rgba(233,70,233,.55), inset 0 0 0 1px rgba(255,255,255,.15);
}
.btn-primary::after {
  content: ""; position: absolute; inset: -6px; border-radius: inherit;
  background: var(--grad-primary); filter: blur(20px); opacity: .55; z-index: -1;
  transition: opacity .25s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -6px rgba(233,70,233,.7), inset 0 0 0 1px rgba(255,255,255,.2); }
.btn-primary:hover::after { opacity: .85; }

.btn-lg { height: 60px; padding: 0 32px; font-size: 16px; }
.btn-xl { height: 68px; padding: 0 40px; font-size: 17px; }

.btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }

.btn-outline {
  color: #fff; background: transparent; border: 1.5px solid var(--magenta);
  box-shadow: 0 0 0 3px rgba(233,70,233,.12);
}
.btn-outline:hover { background: rgba(233,70,233,.1); box-shadow: 0 0 0 6px rgba(233,70,233,.18); }

/* Pulse ring for primary CTAs */
.btn-pulse::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  border: 2px solid var(--magenta); animation: btnPulse 2.2s ease-out infinite; z-index: -1;
}
@keyframes btnPulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* =============================================================
   BADGES / CHIPS
============================================================= */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(233,70,233,.08); color: var(--magenta);
  border: 1px solid rgba(233,70,233,.25);
}
.chip .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald); box-shadow: 0 0 10px var(--emerald);
  animation: liveDot 1.4s ease-in-out infinite;
}
@keyframes liveDot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.chip.cyan  { background: rgba(0,229,255,.08); color: var(--cyan); border-color: rgba(0,229,255,.28); }
.chip.gold  { background: rgba(255,200,69,.08); color: var(--gold); border-color: rgba(255,200,69,.28); }
.chip.green { background: rgba(34,245,163,.08); color: var(--emerald); border-color: rgba(34,245,163,.28); }

/* =============================================================
   HERO
============================================================= */
.hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero-inner { text-align: center; position: relative; z-index: 3; width: 100%; }

.hero .chip { margin-bottom: 28px; }

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 8vw, 96px);
  line-height: .95; font-weight: 800; letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 4px 40px rgba(233,70,233,.3);
}
.hero h1 .stroke {
  -webkit-text-stroke: 1.5px rgba(255,255,255,.3);
  color: transparent;
  padding: 0 .08em;
}
.hero p.lead {
  margin: 28px auto 0;
  max-width: 640px;
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--muted);
  line-height: 1.65;
}
.hero-ctas {
  margin-top: 40px;
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.hero-trust {
  margin-top: 32px;
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { color: var(--magenta); }

/* Floating tokens (3D-ish CSS) */
.float-token {
  position: absolute; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 800;
  color: #fff;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.15);
  animation: floatY 6s ease-in-out infinite;
  z-index: 2;
}
.float-token::before {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  filter: blur(24px); z-index: -1; opacity: .8;
}
.float-token::after {
  content: ""; position: absolute; top: 8%; left: 12%; width: 40%; height: 40%; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 60%);
}
.ft-sol { background: linear-gradient(135deg, #14F195, #9945FF); font-size: 14px; }
.ft-sol::before { background: radial-gradient(circle, #9945FF, transparent 70%); }
.ft-eth { background: linear-gradient(135deg, #627EEA, #3C56D6); font-size: 13px; }
.ft-eth::before { background: radial-gradient(circle, #627EEA, transparent 70%); }
.ft-btc { background: linear-gradient(135deg, #F7931A, #FFC845); font-size: 14px; color: #1a0f38; }
.ft-btc::before { background: radial-gradient(circle, #F7931A, transparent 70%); }
.ft-mag { background: var(--grad-primary); font-size: 12px; }
.ft-mag::before { background: radial-gradient(circle, var(--magenta), transparent 70%); }
.ft-cyan { background: linear-gradient(135deg, #00E5FF, #7C3AED); font-size: 12px; }
.ft-cyan::before { background: radial-gradient(circle, #00E5FF, transparent 70%); }

.float-token.pos-1 { top: 18%; left: 6%;  width: 84px; height: 84px; animation-delay: 0s; }
.float-token.pos-2 { top: 28%; right: 7%; width: 100px; height: 100px; animation-delay: 1.2s; }
.float-token.pos-3 { bottom: 12%; left: 10%; width: 72px; height: 72px; animation-delay: 2.4s; }
.float-token.pos-4 { bottom: 18%; right: 10%; width: 78px; height: 78px; animation-delay: 3.2s; }
.float-token.pos-5 { top: 8%; left: 42%; width: 56px; height: 56px; animation-delay: .6s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-24px) rotate(8deg); }
}
@media (max-width: 720px) {
  .float-token.pos-1 { width: 56px; height: 56px; top: 6%; left: 4%; font-size: 11px; }
  .float-token.pos-2 { width: 64px; height: 64px; top: 8%; right: 4%; font-size: 11px; }
  .float-token.pos-3 { width: 52px; height: 52px; bottom: 6%; left: 4%; font-size: 10px; }
  .float-token.pos-4 { width: 56px; height: 56px; bottom: 8%; right: 4%; font-size: 10px; }
  .float-token.pos-5 { display: none; }
}

/* =============================================================
   LIVE AIRDROP BANNER
============================================================= */
.live-banner {
  margin: 40px auto 0;
  max-width: 720px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(233,70,233,.08), rgba(124,58,237,.08));
  border: 1px solid rgba(233,70,233,.25);
  box-shadow: 0 10px 40px -10px rgba(233,70,233,.35);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.live-banner .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-primary); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(233,70,233,.6);
}
.live-banner .info { flex: 1; min-width: 0; text-align: left; }
.live-banner .title { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--magenta); font-family: 'JetBrains Mono',monospace; font-weight: 700; }
.live-banner .name { font-size: 17px; font-weight: 800; color: #fff; margin-top: 2px; }
.live-banner .meta { font-size: 12px; color: var(--muted); margin-top: 4px; font-family: 'JetBrains Mono',monospace; }
.live-banner .countdown {
  display: flex; gap: 8px;
}
.countdown-box {
  padding: 8px 12px; border-radius: 10px;
  background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.08);
  text-align: center; min-width: 52px;
}
.countdown-box .n { font-family: 'JetBrains Mono',monospace; font-size: 18px; font-weight: 800; color: #fff; }
.countdown-box .l { font-size: 9px; letter-spacing: .15em; color: var(--muted); text-transform: uppercase; margin-top: 2px; }

/* =============================================================
   MISSION STEPPER
============================================================= */
.stepper {
  margin: 80px auto 0;
  max-width: 1000px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.stepper-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.stepper-head h3 { font-family: 'Space Grotesk',sans-serif; font-size: 18px; font-weight: 700; color: #fff; }
.stepper-head .pct { font-family: 'JetBrains Mono',monospace; font-size: 13px; color: var(--magenta); font-weight: 700; }
.stepper-progress {
  height: 6px; background: rgba(255,255,255,.06); border-radius: 999px; overflow: hidden; margin-bottom: 28px;
}
.stepper-progress .fill {
  height: 100%; width: 45%;
  background: var(--grad-primary); border-radius: 999px;
  box-shadow: 0 0 16px rgba(233,70,233,.6);
  transition: width 1s var(--easing);
}
.stepper-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative;
}
.stepper-steps::before {
  content: ""; position: absolute; top: 22px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--emerald) 0%, var(--emerald) 25%, var(--magenta) 25%, var(--magenta) 55%, rgba(255,255,255,.1) 55%, rgba(255,255,255,.1) 100%);
  z-index: 0;
}
.step {
  position: relative; z-index: 1; text-align: center;
}
.step-mark {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); border: 2px solid rgba(255,255,255,.08);
  font-family: 'JetBrains Mono',monospace; font-weight: 700; font-size: 14px; color: var(--muted);
  transition: all .3s ease;
}
.step.done .step-mark { background: var(--emerald); color: #07030f; border-color: var(--emerald); box-shadow: 0 0 20px rgba(34,245,163,.5); }
.step.active .step-mark { background: var(--grad-primary); color: #fff; border-color: var(--magenta); box-shadow: 0 0 24px rgba(233,70,233,.7); animation: activePulse 1.8s ease-in-out infinite; }
.step.locked .step-mark { opacity: .55; }
@keyframes activePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

.step-title { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .04em; }
.step-status { font-family: 'JetBrains Mono',monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; margin-top: 3px; color: var(--muted); }
.step.done .step-status { color: var(--emerald); }
.step.active .step-status { color: var(--magenta); }

@media (max-width: 640px) {
  .stepper { padding: 20px; }
  .stepper-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stepper-steps::before { display: none; }
  .step-mark { width: 40px; height: 40px; }
  .step-title { font-size: 12px; }
}

/* =============================================================
   SECTIONS (generic)
============================================================= */
.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.section-head h2 {
  font-family: 'Space Grotesk',sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.05;
  color: #fff;
}
.section-head p {
  margin-top: 18px; font-size: 17px; color: var(--muted); line-height: 1.6;
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
}

/* =============================================================
   MISSION / SURVEY BOARD
============================================================= */
.mission-board {
  display: grid; grid-template-columns: 1fr 320px; gap: 24px;
  align-items: start;
}
@media (max-width: 960px) {
  .mission-board { grid-template-columns: 1fr; }
}

.mission-card {
  position: relative;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(35,19,77,.65) 0%, rgba(21,10,46,.65) 100%);
  border: 1px solid rgba(233,70,233,.25);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(233,70,233,.08) inset;
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.mission-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(600px 300px at 50% -10%, rgba(233,70,233,.18), transparent 60%);
}
@media (max-width: 640px) { .mission-card { padding: 24px 20px; } }

.mission-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.mission-title {
  font-family: 'Space Grotesk',sans-serif;
  font-size: clamp(22px, 3.2vw, 30px); font-weight: 800; letter-spacing: -0.02em;
  color: #fff;
}
.mission-title .accent { color: var(--magenta); }

/* Screens (survey states) */
.screen { display: none; animation: screenIn .5s var(--easing) both; }
.screen.active { display: block; }
.screen.leaving { animation: screenOut .3s ease-in both; }
@keyframes screenIn  { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes screenOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-24px); } }

/* Question card */
.q-eyebrow { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.q-title { font-family: 'Space Grotesk',sans-serif; font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 24px; }

.options-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (max-width: 560px) { .options-grid { grid-template-columns: 1fr; } }

.opt {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  width: 100%; min-height: 72px; padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  border: 1.5px solid rgba(255,255,255,.08);
  color: #fff;
  font-size: 15px; font-weight: 600; text-align: left;
  transition: transform .18s ease, background .2s ease, border-color .2s ease, box-shadow .25s ease;
  cursor: pointer;
}
.opt:hover { border-color: rgba(233,70,233,.6); background: rgba(233,70,233,.05); transform: translateY(-2px); }
.opt:active { transform: translateY(0) scale(.99); }
.opt.selected {
  border-color: var(--magenta); background: rgba(233,70,233,.1);
  box-shadow: 0 0 0 4px rgba(233,70,233,.14), 0 10px 30px -8px rgba(233,70,233,.5);
}
.opt-letter {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  font-family: 'JetBrains Mono',monospace; font-weight: 800; font-size: 13px; color: var(--magenta);
}
.opt.selected .opt-letter { background: var(--grad-primary); color: #fff; border-color: transparent; }
.opt-label { flex: 1; }
.opt-check { opacity: 0; transform: scale(.5); transition: all .2s ease; color: var(--magenta); }
.opt.selected .opt-check { opacity: 1; transform: scale(1); }

/* Mission bar footer */
.mission-footer {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.q-progress { flex: 1; min-width: 200px; }
.q-progress-track { height: 6px; background: rgba(255,255,255,.06); border-radius: 999px; overflow: hidden; }
.q-progress-fill { height: 100%; width: 0%; background: var(--grad-primary); border-radius: 999px; transition: width .55s var(--easing); box-shadow: 0 0 12px rgba(233,70,233,.6); }
.q-progress-meta { display: flex; justify-content: space-between; font-family: 'JetBrains Mono',monospace; font-size: 11px; color: var(--muted); margin-top: 8px; letter-spacing: .1em; text-transform: uppercase; }

/* Player card (right side) */
.player-card {
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(35,19,77,.65) 0%, rgba(21,10,46,.65) 100%);
  border: 1px solid rgba(124,58,237,.35);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  backdrop-filter: blur(16px);
  text-align: center;
  position: sticky; top: calc(var(--nav-h) + 20px);
}
@media (max-width: 960px) { .player-card { position: static; } }
.avatar-wrap {
  position: relative; width: 140px; height: 140px; margin: 0 auto 18px;
}
.avatar {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--grad-cyber);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 40px -6px rgba(185,63,245,.6), inset 0 0 0 3px rgba(255,255,255,.15);
  position: relative;
  overflow: hidden;
}
.avatar::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--magenta), var(--purple), var(--cyan), var(--magenta));
  z-index: -1; filter: blur(18px); opacity: .6; animation: rotate 6s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.xp-badge {
  position: absolute; top: -6px; right: -6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--grad-primary);
  font-family: 'JetBrains Mono',monospace; font-weight: 800; font-size: 12px; color: #fff;
  box-shadow: 0 0 20px rgba(233,70,233,.7);
}
.player-name { font-family: 'Space Grotesk',sans-serif; font-size: 20px; font-weight: 700; color: #fff; }
.player-level { color: var(--magenta); font-family: 'JetBrains Mono',monospace; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; margin-top: 4px; }
.player-stats { margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pstat { padding: 10px 6px; border-radius: 12px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); }
.pstat .v { font-family: 'JetBrains Mono',monospace; font-weight: 800; font-size: 15px; color: #fff; }
.pstat .l { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 2px; }
.player-xpbar { margin-top: 18px; }
.player-xpbar .track { height: 6px; background: rgba(255,255,255,.06); border-radius: 999px; overflow: hidden; }
.player-xpbar .fill { height: 100%; width: 62%; background: var(--grad-primary); border-radius: 999px; box-shadow: 0 0 10px rgba(233,70,233,.5); }
.player-xpbar .meta { display: flex; justify-content: space-between; margin-top: 6px; font-family: 'JetBrains Mono',monospace; font-size: 10px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

/* =============================================================
   PROCESSING SCREEN (inside mission card)
============================================================= */
.processing-inner { text-align: center; padding: 20px 0; }
.processing-radar { position: relative; width: 200px; height: 200px; margin: 0 auto 28px; }
.processing-radar > * { position: absolute; }
.processing-radar .ring { inset: 0; border-radius: 50%; border: 1px solid rgba(233,70,233,.25); }
.processing-radar .ring.r2 { inset: 30px; border-color: rgba(233,70,233,.18); }
.processing-radar .ring.r3 { inset: 60px; border-color: rgba(233,70,233,.12); }
.processing-radar .sweep {
  inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(233,70,233,0) 0deg, rgba(233,70,233,.6) 60deg, rgba(255,61,216,0) 90deg);
  animation: sweep 1.6s linear infinite;
  mask: radial-gradient(circle, transparent 15%, black 15.5%);
}
.processing-radar .core {
  inset: 84px; border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: 0 0 40px rgba(233,70,233,.8);
  display: flex; align-items: center; justify-content: center;
}
.processing-radar .p-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 12px var(--magenta);
  animation: blip 1.8s ease-in-out infinite;
}
.processing-radar .p-dot.d1 { top: 22%; left: 18%; }
.processing-radar .p-dot.d2 { top: 68%; left: 76%; animation-delay: .5s; background: var(--purple); box-shadow: 0 0 12px var(--purple); }
.processing-radar .p-dot.d3 { top: 78%; left: 30%; animation-delay: 1s; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

.processing-title { font-family: 'Space Grotesk',sans-serif; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.processing-status { color: var(--muted); font-family: 'JetBrains Mono',monospace; font-size: 13px; letter-spacing: .05em; min-height: 20px; }
.processing-checks { margin: 30px auto 0; max-width: 320px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.pcheck {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px; font-size: 13px; color: var(--muted);
  opacity: .4; transition: opacity .4s ease, color .4s ease, border-color .4s ease;
}
.pcheck.done { opacity: 1; color: #fff; border-color: rgba(34,245,163,.25); background: rgba(34,245,163,.04); }
.pcheck .pcheck-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.pcheck.done .pcheck-icon { background: var(--emerald); border-color: var(--emerald); color: #07030f; }
.pcheck .spinner {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.1); border-top-color: var(--magenta);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Dots loading indicator */
.dots { display: inline-flex; gap: 4px; margin-left: 4px; }
.dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--magenta); animation: dotBounce 1.2s ease-in-out infinite; }
.dots span:nth-child(2) { animation-delay: .15s; }
.dots span:nth-child(3) { animation-delay: .3s; }
@keyframes dotBounce { 0%,80%,100% { transform: scale(.4); opacity: .3; } 40% { transform: scale(1); opacity: 1; } }

/* =============================================================
   SUCCESS / CAPTURE SCREEN
============================================================= */
.success-inner { text-align: center; padding: 12px 0; }
.trophy {
  width: 96px; height: 96px; border-radius: 24px; margin: 0 auto 22px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px -10px rgba(233,70,233,.7), inset 0 0 0 2px rgba(255,255,255,.2);
  position: relative;
  animation: trophyIn .8s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes trophyIn {
  from { transform: scale(.3) rotate(-15deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}
.trophy .tier-tag {
  position: absolute; top: -8px; right: -8px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--cyan); color: #07030f;
  font-family: 'JetBrains Mono',monospace; font-weight: 800; font-size: 10px; letter-spacing: .15em;
  box-shadow: 0 0 20px rgba(0,229,255,.6);
}

.success-inner h3 { font-family: 'Space Grotesk',sans-serif; font-size: clamp(24px, 4vw, 34px); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.02em; }
.success-inner p.sub { margin: 12px auto 0; max-width: 480px; color: var(--muted); font-size: 15px; }

.capture-form { margin: 28px auto 0; max-width: 460px; text-align: left; }
.field-wrap { position: relative; }
.field {
  width: 100%; height: 60px; padding: 0 20px 0 52px;
  background: rgba(255,255,255,.03);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 14px;
  color: #fff; font-size: 16px; font-weight: 500;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field:focus { border-color: var(--magenta); background: rgba(233,70,233,.05); box-shadow: 0 0 0 4px rgba(233,70,233,.15); }
.field::placeholder { color: #6b6b73; }
.field-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }

.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 14px; cursor: pointer; }
.consent input { margin-top: 2px; width: 18px; height: 18px; accent-color: var(--magenta); flex-shrink: 0; }
.consent span { font-size: 12px; color: var(--muted); line-height: 1.55; }
.consent a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.form-error { display: none; margin-top: 10px; padding: 10px 14px; border-radius: 10px; background: rgba(255,80,80,.08); border: 1px solid rgba(255,80,80,.25); color: #ff8080; font-size: 13px; }
.form-error.show { display: block; }

.social-proof {
  margin: 22px auto 0; max-width: 460px;
  padding: 14px 18px; border-radius: 14px;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: 12px; text-align: left;
}
.avatars { display: flex; }
.avatars > div {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg-1);
  margin-left: -8px; box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.avatars > div:first-child { margin-left: 0; }

/* Shake for form errors */
.shake { animation: shake .35s ease; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-8px)} 75%{transform:translateX(8px)} }

/* =============================================================
   FEATURED DROPS
============================================================= */
.drops-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 960px) { .drops-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .drops-grid { grid-template-columns: 1fr; } }

.drop-card {
  position: relative;
  padding: 24px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(35,19,77,.55) 0%, rgba(21,10,46,.55) 100%);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  transition: transform .3s var(--easing), border-color .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.drop-card:hover { transform: translateY(-6px); border-color: rgba(233,70,233,.4); box-shadow: 0 20px 50px -10px rgba(233,70,233,.35); }
.drop-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(500px 200px at 50% -20%, rgba(233,70,233,.25), transparent 60%);
  transition: opacity .3s ease; pointer-events: none;
}
.drop-card:hover::before { opacity: 1; }

.drop-logo {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono',monospace; font-weight: 800; font-size: 16px; color: #fff;
  box-shadow: 0 10px 24px -6px rgba(0,0,0,.5);
}
.drop-status {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 10px; border-radius: 999px;
  font-family: 'JetBrains Mono',monospace; font-size: 9px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
}
.drop-status.live { background: rgba(34,245,163,.12); color: var(--emerald); border: 1px solid rgba(34,245,163,.35); }
.drop-status.soon { background: rgba(0,229,255,.1); color: var(--cyan); border: 1px solid rgba(0,229,255,.3); }
.drop-status.hot { background: rgba(255,122,0,.12); color: var(--orange); border: 1px solid rgba(255,122,0,.35); }

.drop-name { font-family: 'Space Grotesk',sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.drop-chain { font-family: 'JetBrains Mono',monospace; font-size: 11px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.drop-meta { margin-top: 18px; display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.06); }
.drop-meta .v { font-family: 'JetBrains Mono',monospace; font-weight: 700; font-size: 14px; color: #fff; }
.drop-meta .l { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }

/* =============================================================
   LEADERBOARD
============================================================= */
.leaderboard {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(35,19,77,.55) 0%, rgba(21,10,46,.55) 100%);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.lb-head {
  display: grid; grid-template-columns: 60px 1fr 120px 100px;
  padding: 16px 24px;
  background: rgba(255,255,255,.02); border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: 'JetBrains Mono',monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
}
.lb-row {
  display: grid; grid-template-columns: 60px 1fr 120px 100px;
  padding: 16px 24px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .2s ease;
}
.lb-row:hover { background: rgba(233,70,233,.03); }
.lb-row:last-child { border-bottom: none; }
.lb-rank { font-family: 'JetBrains Mono',monospace; font-weight: 800; font-size: 14px; color: var(--muted); }
.lb-row.top-1 .lb-rank { color: var(--gold); text-shadow: 0 0 12px rgba(255,200,69,.5); }
.lb-row.top-2 .lb-rank { color: #d5d5e0; }
.lb-row.top-3 .lb-rank { color: #ff9a4a; }
.lb-user { display: flex; align-items: center; gap: 12px; min-width: 0; }
.lb-avatar { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,.4); }
.lb-name { font-weight: 600; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lb-name-badge { font-family: 'JetBrains Mono',monospace; font-size: 10px; padding: 2px 6px; border-radius: 4px; background: rgba(233,70,233,.1); color: var(--magenta); margin-left: 8px; letter-spacing: .05em; }
.lb-xp { font-family: 'JetBrains Mono',monospace; font-weight: 700; color: var(--magenta); font-size: 13px; }
.lb-rewards { font-family: 'JetBrains Mono',monospace; font-weight: 700; color: #fff; font-size: 13px; }

@media (max-width: 640px) {
  .lb-head, .lb-row { grid-template-columns: 40px 1fr 80px; padding: 14px 16px; gap: 10px; }
  .lb-head .lb-rewards-col, .lb-row .lb-rewards { display: none; }
}

/* =============================================================
   FAQ ACCORDION
============================================================= */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
.faq-item.open { border-color: rgba(233,70,233,.35); background: rgba(233,70,233,.03); }
.faq-q {
  width: 100%; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Space Grotesk',sans-serif;
  font-size: 16px; font-weight: 600; color: #fff; text-align: left;
}
.faq-q .plus { width: 28px; height: 28px; border-radius: 50%; background: rgba(233,70,233,.1); color: var(--magenta); display: flex; align-items: center; justify-content: center; transition: transform .3s var(--easing); flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--easing), padding .3s ease; padding: 0 24px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }

/* =============================================================
   STATS COUNTERS
============================================================= */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-card {
  padding: 32px 24px; border-radius: var(--radius-lg); text-align: center;
  background: linear-gradient(180deg, rgba(35,19,77,.55) 0%, rgba(21,10,46,.55) 100%);
  border: 1px solid rgba(255,255,255,.06); position: relative; overflow: hidden;
}
.stat-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(300px 120px at 50% 0%, rgba(233,70,233,.15), transparent 70%);
  pointer-events: none;
}
.stat-val {
  font-family: 'Space Grotesk',sans-serif; font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff; letter-spacing: -0.02em;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-lbl { margin-top: 8px; font-family: 'JetBrains Mono',monospace; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* =============================================================
   FOOTER
============================================================= */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 0 40px;
  margin-top: 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(7,3,15,.6) 100%);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 840px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 { font-family: 'JetBrains Mono',monospace; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: #d0c9e6; font-size: 14px; transition: color .2s ease; }
.footer ul a:hover { color: var(--magenta); }
.footer .brand-block p { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 320px; line-height: 1.6; }
.socials { margin-top: 20px; display: flex; gap: 8px; }
.socials a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .2s ease;
}
.socials a:hover { color: var(--magenta); border-color: rgba(233,70,233,.4); background: rgba(233,70,233,.05); }

.risk-box {
  padding: 20px 24px; border-radius: var(--radius);
  background: rgba(255,200,69,.05); border: 1px solid rgba(255,200,69,.2);
  margin-bottom: 24px;
}
.risk-box .risk-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.risk-box .risk-head span { font-family: 'JetBrains Mono',monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.risk-box p { font-size: 12px; color: var(--muted); line-height: 1.65; }

.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.04);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: #fff; }

/* =============================================================
   TICKER / MARQUEE
============================================================= */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  background: rgba(255,255,255,.015);
}
.marquee-track { display: flex; gap: 48px; animation: mmove 40s linear infinite; white-space: nowrap; }
@keyframes mmove { to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Space Grotesk',sans-serif; font-weight: 700; font-size: 20px; color: #fff;
  opacity: .75;
}
.marquee-item svg { color: var(--magenta); }
.marquee-item.dim { opacity: .35; }

/* =============================================================
   CONFETTI
============================================================= */
.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 60; overflow: hidden; }
.confetti span {
  position: absolute; top: -12px; width: 8px; height: 14px;
  opacity: 0; border-radius: 2px;
  animation: cfall linear forwards;
}
@keyframes cfall {
  0%   { opacity: 1; transform: translate3d(0,-10vh,0) rotate(0deg); }
  100% { opacity: 0; transform: translate3d(var(--x, 0), 110vh, 0) rotate(720deg); }
}

/* =============================================================
   TOAST
============================================================= */
.toast {
  position: fixed; left: 50%; bottom: 32px; transform: translateX(-50%) translateY(20px);
  z-index: 200; opacity: 0; pointer-events: none;
  padding: 14px 20px; border-radius: 14px;
  background: rgba(20,10,46,.95); backdrop-filter: blur(12px);
  border: 1px solid rgba(233,70,233,.35);
  color: #fff; font-size: 14px; font-weight: 600;
  box-shadow: 0 20px 60px -12px rgba(0,0,0,.6), 0 0 30px rgba(233,70,233,.25);
  display: flex; align-items: center; gap: 10px;
  transition: opacity .3s ease, transform .3s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =============================================================
   ANIMATION UTILITIES — CSS transition system (no GSAP dependency)
   IntersectionObserver adds .is-visible to trigger the transition.
   If JS fails entirely, the noscript fallback makes everything visible.
============================================================= */
.reveal-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.reveal-fade {
  opacity: 0;
  transition: opacity .8s ease;
}
.reveal-fade.is-visible { opacity: 1; }

.stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.stagger.is-visible > * { opacity: 1; transform: translateY(0); }

/* Stagger delays for children (applied via CSS) */
.stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: .06s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .12s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .18s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: .24s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: .30s; }
.stagger.is-visible > *:nth-child(7) { transition-delay: .36s; }
.stagger.is-visible > *:nth-child(8) { transition-delay: .42s; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Safe areas (iPhone notch) */
.pt-safe { padding-top: env(safe-area-inset-top); }
.pb-safe { padding-bottom: env(safe-area-inset-bottom); }

/* =============================================================
   COOKIE CONSENT BANNER
============================================================= */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 300;
  max-width: 720px; margin: 0 auto;
  padding: 20px 22px; border-radius: 18px;
  background: rgba(13,6,32,.94); backdrop-filter: blur(20px);
  border: 1px solid rgba(233,70,233,.3);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04) inset;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  transform: translateY(120%); transition: transform .5s var(--easing);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .cb-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(233,70,233,.15), rgba(124,58,237,.15));
  border: 1px solid rgba(233,70,233,.3);
  display: flex; align-items: center; justify-content: center; color: var(--magenta);
}
.cookie-banner .cb-text { flex: 1; min-width: 240px; font-size: 13px; color: var(--ink-2); line-height: 1.55; }
.cookie-banner .cb-text a { color: var(--magenta); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner .cb-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner .cb-actions .btn { height: 40px; padding: 0 16px; font-size: 13px; }

/* =============================================================
   AGE GATE MODAL
============================================================= */
.age-gate {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(4,1,10,.85); backdrop-filter: blur(24px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.age-gate.show { opacity: 1; visibility: visible; }
.age-gate .age-card {
  max-width: 420px; width: 100%;
  padding: 36px 28px; border-radius: 22px;
  background: linear-gradient(180deg, rgba(35,19,77,.9) 0%, rgba(13,6,32,.9) 100%);
  border: 1px solid rgba(233,70,233,.2);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.05) inset;
  text-align: center;
}
.age-gate .age-icon {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 18px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(233,70,233,.4);
}
.age-gate h2 { font-family: 'Space Grotesk',sans-serif; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; }
.age-gate p { color: var(--muted); font-size: 13px; line-height: 1.6; margin-bottom: 22px; }
.age-gate .age-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.age-gate .age-actions .btn { flex: 0 1 auto; min-width: 140px; max-width: 200px; height: 44px; font-size: 13px; }
.age-gate .age-actions .btn-ghost { border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.02); font-weight: 500; height: 42px; font-size: 12.5px; color: var(--muted); }
.age-gate .age-note { margin-top: 20px; font-size: 11px; color: var(--muted-2); line-height: 1.5; }
.age-gate .age-note a { color: var(--magenta); }

/* =============================================================
   INFO BOX (data illustration disclaimer)
============================================================= */
.info-box {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  font-size: 11px; color: var(--muted); font-family: 'JetBrains Mono',monospace;
  letter-spacing: .05em;
}
.info-box svg { color: var(--muted); flex-shrink: 0; }

/* Ad / editorial disclosure banner (top of relevant pages) */
.disclosure-bar {
  padding: 10px 16px; text-align: center;
  background: rgba(255,255,255,.02); border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 12px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace; letter-spacing: .05em;
}
.disclosure-bar strong { color: var(--ink-2); font-weight: 600; }

/* Business info block (footer) */
.biz-block {
  margin-top: 20px; padding-top: 20px; border-top: 1px dashed rgba(255,255,255,.08);
  font-size: 12px; color: var(--muted); line-height: 1.65;
}
.biz-block strong { color: var(--ink-2); }

/* =============================================================
   PROSE (legal pages)
============================================================= */
.prose { max-width: 780px; margin: 0 auto; }
.prose .doc-head { margin-bottom: 40px; }
.prose .doc-head .eyebrow { display: inline-block; margin-bottom: 12px; }
.prose .doc-head h1 {
  font-family: 'Space Grotesk',sans-serif;
  font-size: clamp(36px, 6vw, 60px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05;
  color: #fff;
}
.prose .doc-head .updated { color: var(--muted); font-size: 14px; margin-top: 12px; font-family: 'JetBrains Mono',monospace; }
.prose h2 {
  font-family: 'Space Grotesk',sans-serif;
  font-size: 22px; font-weight: 700; margin-top: 40px; margin-bottom: 12px; color: #fff; letter-spacing: -0.01em;
  position: relative; padding-left: 16px;
}
.prose h2::before {
  content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 3px;
  background: var(--grad-primary); border-radius: 2px;
}
.prose h3 { font-family: 'Space Grotesk',sans-serif; font-size: 17px; font-weight: 700; margin-top: 24px; margin-bottom: 10px; color: #fff; }
.prose p, .prose li { color: var(--ink-2); line-height: 1.75; font-size: 15.5px; }
.prose p + p, .prose ul + p, .prose ol + p { margin-top: 12px; }
.prose ul { list-style: none; padding-left: 0; margin: 12px 0; }
.prose ul li { position: relative; padding-left: 22px; margin-bottom: 8px; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--magenta); box-shadow: 0 0 8px rgba(233,70,233,.5);
}
.prose ol { padding-left: 22px; margin: 12px 0; }
.prose ol li { margin-bottom: 8px; }
.prose a { color: var(--magenta); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { text-shadow: 0 0 12px rgba(233,70,233,.6); }
.prose strong { color: #fff; font-weight: 700; }
.prose .callout {
  margin: 24px 0; padding: 20px 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(233,70,233,.08), rgba(124,58,237,.08));
  border: 1px solid rgba(233,70,233,.25);
}
.prose .callout p { color: #fff; font-size: 14px; }
.prose .doc-footer {
  margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; color: var(--muted);
}
.prose .doc-footer a { color: var(--muted); }
.prose .doc-footer a:hover { color: var(--magenta); }

/* =============================================================
   MOBILE SAFARI OPTIMIZATIONS — iOS-first layout fixes
============================================================= */
a, button, input, select, textarea, [role="button"] { touch-action: manipulation; }

@media (max-width: 520px) {
  .live-banner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 16px 18px; text-align: center; }
  .live-banner .icon { width: 38px; height: 38px; border-radius: 10px; align-self: center; }
  .live-banner .info { text-align: center; width: 100%; }
  .live-banner .title { font-size: 10px; letter-spacing: .15em; }
  .live-banner .name { font-size: 15px; line-height: 1.3; }
  .live-banner .meta { font-size: 11px; }
  .live-banner .countdown { width: 100%; justify-content: center; gap: 6px; }
  .countdown-box { padding: 6px 0; min-width: 0; flex: 1; max-width: 60px; }
  .countdown-box .n { font-size: 16px; }
  .countdown-box .l { font-size: 8px; letter-spacing: .1em; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(28px, 7vw, 42px); line-height: 1.08; letter-spacing: -0.03em; }
  .hero .lead { font-size: 14px; line-height: 1.6; padding: 0 8px; }
  .hero-ctas { flex-direction: column; gap: 10px; width: 100%; padding: 0 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 6px; font-size: 12px; align-items: center; }
  .hero-trust span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
}
@media (max-width: 420px) {
  .stepper { padding: 16px; margin-top: 50px; }
  .stepper-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .stepper-head h3 { font-size: 16px; }
  .stepper-steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .step-title { font-size: 11px; letter-spacing: .02em; }
  .step-mark { width: 36px; height: 36px; }
}
@media (max-width: 520px) {
  .drops-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .drop-card { padding: 18px; }
  .drop-name { font-size: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 20px 14px; }
  .stat-val { font-size: 28px; }
  .lb-head, .lb-row { grid-template-columns: 32px 1fr 70px 50px; gap: 6px; padding: 10px 12px; }
  .lb-rank { font-size: 13px; }
  .lb-name { font-size: 13px; }
  .lb-xp { font-size: 12px; }
  .lb-avatar { width: 28px; height: 28px; }
  .lb-name-badge { font-size: 9px; padding: 1px 5px; }
  .faq-q { padding: 16px; font-size: 14px; }
  .faq-a p { font-size: 13px; padding: 0 16px 16px; }
  .mission-card { padding: 20px 16px; border-radius: var(--radius); }
  .q-title { font-size: 18px; line-height: 1.3; }
  .q-eyebrow { flex-direction: column; gap: 8px; align-items: flex-start; }
  .mission-footer { flex-direction: column; gap: 14px; align-items: stretch; }
  .mission-footer .btn { width: 100%; justify-content: center; }
  .q-progress { min-width: auto; }
  .player-card { padding: 20px; border-radius: var(--radius); }
  .avatar-wrap .avatar { width: 64px; height: 64px; }
  .player-name { font-size: 16px; }
  .player-level { font-size: 12px; }
  .player-stats { gap: 16px; }
  .pstat .v { font-size: 18px; }
  .cookie-banner { flex-direction: column; gap: 12px; text-align: center; padding: 16px; }
  .cb-actions { flex-direction: column; width: 100%; gap: 8px; }
  .cb-actions .btn { width: 100%; justify-content: center; }
  .age-card { padding: 28px 22px; margin: 16px; max-width: calc(100vw - 32px); }
  .age-gate h2 { font-size: 20px; }
  .age-gate p { font-size: 12.5px; }
  .age-gate .age-actions { flex-direction: row; justify-content: center; gap: 8px; }
  .age-gate .age-actions .btn { min-width: 120px; max-width: 160px; height: 42px; font-size: 12.5px; }
  .age-gate .age-actions .btn-ghost { height: 40px; font-size: 12px; }
  .hero-ctas { max-width: 340px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; text-align: center; }
  .footer-grid .brand-block { text-align: center; }
  .footer-grid .socials { justify-content: center; }
  .biz-block { font-size: 11px; line-height: 1.7; padding: 16px 8px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 12px; }
  .risk-box { padding: 16px; }
  .risk-box p { font-size: 11px; line-height: 1.6; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(26px, 6vw, 40px); }
  .section-head p { font-size: 14px; line-height: 1.55; padding: 0 8px; }
  .nav-inner { padding: 0 16px; }
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer-bottom { padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
  .cookie-banner { padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
}
.aurora, .float-token, .preloader-radar, .processing-radar { will-change: transform; transform: translateZ(0); }
@media (max-width: 720px) {
  .aurora.a3, .aurora.a4 { display: none; }
  .circuit { opacity: .3; }
  .bg-grid { opacity: .15; }
  .noise { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
