/* Allura website — premium dark / neon-glam / watch-to-earn.
   Vibe: midnight + neon brand gradient cyan → violet → magenta → orange.
   Token: AlluraCoins 💎. Domain: allura.one.
   Display: Outfit · Body: Plus Jakarta Sans. */

:root {
  /* Brand kit (project_allura_vibe) */
  --midnight:  #070B23;
  --indigo:    #101735;
  --violet:    #4B2BFF;
  --magenta:   #FF3FB9;
  --orange:    #FF8A1E;
  --gold:      #FFB629;
  --cyan:      #1EDCFF;

  /* Surfaces */
  --bg:        #070B23;
  --bg-2:      #0B1130;
  --surface:   rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.07);
  --glass:     rgba(11, 17, 48, 0.55);
  --border:    rgba(255, 255, 255, 0.10);
  --border-2:  rgba(255, 63, 185, 0.45);
  --border-cy: rgba(30, 220, 255, 0.40);

  /* Text */
  --text:       #FFFFFF;
  --text-muted: #B9BEE6;
  --text-dim:   #767CA8;

  /* Signature gradients */
  --grad:        linear-gradient(110deg, #1EDCFF 0%, #4B2BFF 34%, #FF3FB9 66%, #FF8A1E 100%);
  --grad-warm:   linear-gradient(110deg, #FF3FB9 0%, #FF8A1E 100%);
  --grad-cool:   linear-gradient(135deg, #1EDCFF 0%, #4B2BFF 100%);
  --grad-violet: linear-gradient(135deg, #4B2BFF, #FF3FB9);

  --max-width: 1180px;
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 34px;

  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shadow-sm:   0 6px 20px rgba(0, 0, 0, 0.40);
  --shadow-md:   0 16px 40px rgba(0, 0, 0, 0.50);
  --shadow-lg:   0 34px 80px rgba(0, 0, 0, 0.60);
  --glow-violet: 0 18px 50px rgba(75, 43, 255, 0.55);
  --glow-magenta:0 18px 50px rgba(255, 63, 185, 0.50);
  --glow-cyan:   0 18px 50px rgba(30, 220, 255, 0.42);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Living neon mesh behind everything */
body::before {
  content: "";
  position: fixed; inset: -20% -10% auto -10%; height: 130vh; z-index: -2;
  background:
    radial-gradient(38% 40% at 12% 8%,  rgba(75, 43, 255, 0.40) 0%, transparent 60%),
    radial-gradient(34% 38% at 88% 4%,  rgba(255, 63, 185, 0.34) 0%, transparent 60%),
    radial-gradient(45% 42% at 50% 0%,  rgba(30, 220, 255, 0.16) 0%, transparent 55%),
    var(--bg);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, #000 0%, transparent 80%);
          mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, #000 0%, transparent 80%);
}

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

a { color: var(--magenta); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; color: var(--text);
}
h1 { font-size: clamp(40px, 6vw, 64px); margin-bottom: 16px; }
h2 { font-size: clamp(28px, 4.5vw, 44px); margin-bottom: 16px; }
h3 { font-size: 20px; margin-bottom: 8px; font-weight: 600; }
h4 { font-size: 14px; margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase; }

p { margin-bottom: 12px; }
ul, ol { padding-left: 20px; margin-bottom: 12px; }
li { margin-bottom: 6px; }

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

.gradient-text {
  background: var(--grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: hue 7s linear infinite;
}
@keyframes hue { to { background-position: 200% center; } }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 11, 35, 0.62);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 800; font-size: 25px;
  letter-spacing: -0.03em; color: var(--text);
}
.logo:hover { color: var(--text); }
.logo img { width: auto; height: 42px; filter: drop-shadow(0 4px 14px rgba(255,63,185,0.45)); }
.logo span {
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: var(--text-muted); font-weight: 600; font-size: 15px; }
.main-nav a:hover { color: #fff; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; color: #fff; font-size: 20px; cursor: pointer;
  align-items: center; justify-content: center;
}

/* ── Gradient pill CTA (shimmer) ────────────────────────── */
.btn-play {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 26px; font-family: var(--font-body); font-weight: 700; font-size: 14px;
  border-radius: 999px; background: var(--grad); background-size: 220% 220%; background-position: 0% 50%;
  border: none; color: #fff; box-shadow: var(--glow-violet);
  cursor: not-allowed; user-select: none;
  transition: transform 0.25s, box-shadow 0.25s, background-position 0.7s;
}
.btn-play::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg); animation: shimmer 3.4s ease-in-out infinite;
}
@keyframes shimmer { 0% { left: -120%; } 55%, 100% { left: 160%; } }
.btn-play[aria-disabled="false"] { cursor: pointer; }
.btn-play:hover { transform: translateY(-2px); box-shadow: var(--glow-magenta); background-position: 100% 50%; }
.btn-play svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; position: relative; z-index: 1; }
.btn-play .btn-play-label { display: flex; flex-direction: column; line-height: 1.15; text-align: left; position: relative; z-index: 1; }
.btn-play .btn-play-top { font-size: 10px; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }
.btn-play .btn-play-bottom { font-size: 15px; color: #fff; font-weight: 800; letter-spacing: 0.01em; }

/* Tag / pill badge */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  color: #fff; background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 7px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.1em;
}
.tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad-warm); box-shadow: 0 0 10px rgba(255,63,185,0.9); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.7); } }

/* ── Hero ────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 84px 0 78px; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 40px; }
.hero-tag-row { margin-bottom: 22px; }
.hero h1 { font-size: clamp(46px, 5.6vw, 82px); font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; margin-bottom: 22px; }
.hero .lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--text-muted); max-width: 520px; margin-bottom: 30px; }
.hero .lede .coin { color: var(--gold); font-weight: 700; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 26px; }
.hero-note { font-size: 13px; color: var(--text-muted); letter-spacing: 0.02em; }
.hero-note strong { color: #fff; font-weight: 700; }

/* live earnings ticker chip */
.live-chip {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
  padding: 9px 16px 9px 12px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--border-cy);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 8px 24px rgba(30,220,255,0.12);
  font-size: 13px; font-weight: 600; color: var(--text-muted); backdrop-filter: blur(8px);
}
.live-chip .pellet { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-cool); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; box-shadow: 0 0 14px rgba(30,220,255,0.6); }
.live-chip b { color: var(--cyan); font-family: var(--font-display); font-weight: 800; font-variant-numeric: tabular-nums; }

/* Hero visual — phone + orbiting objects */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 580px; }
.hero-visual::before {
  content: ""; position: absolute; width: 540px; height: 540px;
  background: conic-gradient(from 0deg, var(--cyan), var(--violet), var(--magenta), var(--orange), var(--cyan));
  filter: blur(110px); opacity: 0.42; border-radius: 50%; z-index: 0; animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* orbit ring */
.hero-visual .orbit {
  position: absolute; width: 480px; height: 480px; border-radius: 50%; z-index: 1;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 60px rgba(75,43,255,0.18);
}
.hero-phone {
  position: relative; z-index: 3; width: clamp(300px, 36vw, 460px);
  filter: drop-shadow(0 50px 80px rgba(75, 43, 255, 0.5));
  animation: floaty 6s ease-in-out infinite;
}
.hero-obj { position: absolute; z-index: 4; animation: floaty 5s ease-in-out infinite; }
.hero-obj.coin-1 { width: 132px; right: 0%;  top: 8%;   animation-duration: 5.2s; filter: drop-shadow(0 14px 26px rgba(255,178,41,0.5)); }
.hero-obj.coin-2 { width: 78px;  left: 2%;   bottom: 14%; animation-duration: 6.1s; animation-delay: 0.8s; filter: drop-shadow(0 14px 26px rgba(255,178,41,0.45)); }
.hero-obj.gem-1  { width: 96px;  left: -2%;  top: 14%;  animation-duration: 5.7s; animation-delay: 0.4s; filter: drop-shadow(0 14px 26px rgba(255,63,185,0.5)); }
.hero-obj.gem-2  { width: 64px;  right: 6%;  bottom: 10%; animation-duration: 6.6s; animation-delay: 1.4s; filter: drop-shadow(0 14px 26px rgba(75,43,255,0.5)); }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-22px) rotate(5deg); } }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee {
  position: relative; padding: 20px 0; background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden;
}
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee-track {
  display: flex; gap: 52px; width: max-content; animation: marquee 32s linear infinite;
  font-family: var(--font-display); font-weight: 800; font-size: 23px; letter-spacing: -0.01em;
  color: var(--text-dim); text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 52px; }
.marquee-track span::after { content: "✦"; color: var(--magenta); font-size: 16px; margin-left: 52px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Value pillars strip ─────────────────────────────────── */
.stats { padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stats-grid > div {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.stats-grid > div:hover { transform: translateY(-5px); border-color: var(--border-2); box-shadow: var(--glow-magenta); }
.stats-grid .value-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 18px; font-size: 30px; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(75,43,255,0.3), rgba(255,63,185,0.3));
  border: 1px solid var(--border-2); box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.stats-grid h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; }
.stats-grid p { color: var(--text-muted); font-size: 15px; margin: 0; line-height: 1.6; }
.stats-grid em { color: var(--gold); font-style: normal; font-weight: 700; }

/* ── Generic section ─────────────────────────────────────── */
.section { padding: 92px 0; position: relative; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 700px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 800; letter-spacing: -0.035em; margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 18px; }
.section-eyebrow { display: inline-block; font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta); margin-bottom: 14px; }

/* ── Bento features grid ─────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(212px, auto); gap: 20px; }
.bento-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.bento-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; pointer-events: none;
  background: radial-gradient(ellipse at top right, rgba(75, 43, 255, 0.22), transparent 58%);
}
.bento-card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad); opacity: 0; transition: opacity 0.3s; }
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.bento-card:hover::before, .bento-card:hover::after { opacity: 1; }
.bento-card > * { position: relative; }

.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-3 { grid-column: span 3; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-6 { grid-column: span 6; }

.bento-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(75,43,255,0.28), rgba(255,63,185,0.28));
  border: 1px solid var(--border-2); font-size: 27px; margin-bottom: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.bento-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.bento-card p { color: var(--text-muted); font-size: 15px; margin: 0; line-height: 1.6; }

/* ── Screens showcase ────────────────────────────────────── */
.screens { display: flex; justify-content: center; align-items: flex-end; gap: 26px; flex-wrap: wrap; }
.screens figure { margin: 0; text-align: center; max-width: 230px; }
.screens .shot {
  border-radius: 28px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); background: var(--indigo);
  transition: transform 0.3s, box-shadow 0.3s;
}
.screens figure:nth-child(2) .shot { transform: translateY(-22px) scale(1.04); box-shadow: var(--glow-magenta); }
.screens figure:hover .shot { transform: translateY(-10px) scale(1.03); box-shadow: var(--glow-violet); }
.screens figcaption { color: var(--text-muted); font-size: 14px; font-weight: 600; margin-top: 16px; }

/* ── How it works (timeline) ─────────────────────────────── */
.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 21px; top: 10px; bottom: 10px; width: 3px; background: var(--grad); border-radius: 3px; opacity: 0.95; }
.timeline-step { position: relative; padding: 6px 0 44px 28px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  position: absolute; left: -40px; top: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 6px var(--bg), var(--glow-violet);
}
.section-alt .timeline-num { box-shadow: 0 0 0 6px var(--bg-2), var(--glow-violet); }
.timeline-step h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.timeline-step p { color: var(--text-muted); font-size: 16px; margin: 0; max-width: 560px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 960px; margin: 0 auto; }
.faq-grid details, .faq-stream details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-grid details[open], .faq-stream details[open] { border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.faq-grid summary, .faq-stream summary {
  padding: 20px 22px; cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 16px; color: #fff;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-grid summary::-webkit-details-marker, .faq-stream summary::-webkit-details-marker { display: none; }
.faq-grid summary::after, .faq-stream summary::after {
  content: ""; width: 10px; height: 10px; flex-shrink: 0;
  border-right: 2.5px solid var(--magenta); border-bottom: 2.5px solid var(--magenta); transform: rotate(45deg); transition: transform 0.2s;
}
.faq-grid details[open] summary::after, .faq-stream details[open] summary::after { transform: rotate(-135deg); margin-top: 6px; }
.faq-grid .faq-body, .faq-stream .faq-body { padding: 0 22px 20px; color: var(--text-muted); font-size: 15px; line-height: 1.65; }
.faq-grid .faq-body p, .faq-stream .faq-body p { color: var(--text-muted); margin-bottom: 8px; }
.faq-link { text-align: center; margin-top: 34px; font-size: 15px; font-weight: 600; }
.faq-stream { max-width: 820px; margin: 0 auto; }
.faq-stream details { margin-bottom: 12px; }
.faq-category { font-family: var(--font-display); font-weight: 800; margin: 44px 0 18px; font-size: 14px; color: var(--magenta); text-transform: uppercase; letter-spacing: 0.14em; }

/* ── Final CTA card ──────────────────────────────────────── */
.cta-card {
  position: relative; max-width: 860px; margin: 0 auto; padding: 60px 40px; text-align: center;
  border-radius: var(--radius-xl); overflow: hidden; color: #fff;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(30,220,255,0.5), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(255,138,30,0.5), transparent 55%),
    linear-gradient(135deg, #4B2BFF, #FF3FB9);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
}
.cta-card h2 { color: #fff; margin-bottom: 12px; font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
.cta-card p { color: rgba(255,255,255,0.94); font-size: 18px; margin-bottom: 28px; }
.cta-card .btn-play { background: #fff; color: var(--violet); box-shadow: var(--shadow-md); }
.cta-card .btn-play::after { background: linear-gradient(100deg, transparent, rgba(75,43,255,0.18), transparent); }
.cta-card .btn-play svg { fill: var(--violet); }
.cta-card .btn-play .btn-play-top { color: var(--magenta); }
.cta-card .btn-play .btn-play-bottom { color: var(--violet); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: #050818; border-top: 1px solid var(--border); padding: 76px 0 36px; }
.footer-brand-row { text-align: center; margin-bottom: 52px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
.footer-brand-row .logo { justify-content: center; margin-bottom: 16px; color: #fff; }
.footer-brand-row .logo img { height: 46px; }
.footer-brand-row p { color: var(--text-muted); max-width: 500px; margin: 0 auto; font-size: 15px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-family: var(--font-display); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 14px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; color: var(--text-dim); font-size: 13px; }

/* ── Doc pages ───────────────────────────────────────────── */
.doc { max-width: 800px; margin: 0 auto; padding: 76px 24px 92px; }
.doc h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; letter-spacing: -0.035em; margin-bottom: 12px; }
.doc .doc-meta { color: var(--text-dim); font-size: 13px; margin-bottom: 40px; letter-spacing: 0.03em; font-weight: 500; line-height: 1.7; }
.doc h2 { font-size: 26px; font-weight: 700; margin: 48px 0 14px; padding-left: 16px; border-left: 4px solid transparent; border-image: var(--grad) 1; }
.doc h3 { font-size: 18px; margin: 28px 0 10px; font-family: var(--font-body); font-weight: 700; color: #fff; }
.doc p, .doc li { color: var(--text-muted); }
.doc strong { color: #fff; font-weight: 700; }
.doc a { color: var(--magenta); font-weight: 600; }
.doc a:hover { color: var(--orange); text-decoration: underline; }
.doc .card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; margin: 24px 0; }
.doc .callout { background: linear-gradient(135deg, rgba(75,43,255,0.18), rgba(255,63,185,0.16)); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 20px 24px; margin: 24px 0; }
.doc .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 28px 0; }
.doc .contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.doc .contact-card:hover { transform: translateY(-3px); border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.doc .contact-card strong { display: block; font-family: var(--font-display); font-weight: 800; margin-bottom: 8px; font-size: 12px; color: var(--magenta); text-transform: uppercase; letter-spacing: 0.1em; }
.doc .contact-card a { font-size: 15px; font-weight: 700; color: #fff; }
.doc .contact-card a:hover { color: var(--gold); }

/* ── 404 ─────────────────────────────────────────────────── */
.error-page { text-align: center; padding: 140px 24px; }
.error-page h1 { font-size: clamp(110px, 20vw, 210px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.85; margin-bottom: 8px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.error-page p { color: var(--text-muted); font-size: 18px; margin-bottom: 32px; }

/* ── Mobile overlay menu ─────────────────────────────────── */
body.nav-open { overflow: hidden; }
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 90;
  background: rgba(7, 11, 35, 0.97); backdrop-filter: blur(26px); -webkit-backdrop-filter: blur(26px);
  flex-direction: column; align-items: center; justify-content: center; gap: 26px; padding: 80px 24px 32px;
}
body.nav-open .nav-overlay { display: flex; }
.nav-overlay a { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; color: #fff; }
.nav-overlay a:hover { color: var(--magenta); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .hero .lede { margin-left: auto; margin-right: auto; }
  .hero-cta, .live-chip { justify-content: center; }
  .hero-visual { min-height: 420px; order: -1; }
  .hero-visual .orbit { width: 360px; height: 360px; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento-card.span-2 { grid-column: span 2; }
  .bento-card.span-3 { grid-column: span 2; }
  .bento-card.span-4 { grid-column: span 4; }
  .bento-card.span-6 { grid-column: span 4; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card.span-2, .bento-card.span-3, .bento-card.span-4, .bento-card.span-6 { grid-column: span 1; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .marquee-track { font-size: 19px; gap: 38px; }
  .marquee-track span { gap: 38px; }
  .marquee-track span::after { margin-left: 38px; }
  .hero-obj.coin-1 { width: 96px; }
  .hero-obj.gem-1 { width: 70px; }
}
@media (max-width: 600px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header .container { height: 66px; }
  .timeline { padding-left: 34px; }
  .timeline-num { left: -34px; width: 36px; height: 36px; font-size: 15px; }
  .timeline::before { left: 16px; }
  .doc { padding: 48px 20px 64px; }
  .screens figure:nth-child(2) .shot { transform: none; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── A11y focus ──────────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--magenta); outline-offset: 3px; border-radius: 8px; }
