/* ==========================================================================
   NEXU AI · Coming Soon · Stylesheet
   Neural Consciousness Protocol — v1.0
   Palette: Obsidian black · Gold-amber · Silver-white · Plasma cyan accent
   ========================================================================== */

/* ---------- TOKENS ---------- */
:root {
  /* Surfaces */
  --bg-0: #06070b;
  --bg-1: #0a0c12;
  --bg-2: #0f1219;
  --bg-3: #161a23;

  /* Inks */
  --ink-100: #f8f5ec;
  --ink-90:  #ebe4d2;
  --ink-70:  #c2bba8;
  --ink-50:  #8b8576;
  --ink-30:  #5a5648;
  --ink-20:  #3a3729;

  /* Gold (logo coin) */
  --gold-50:  #fff7df;
  --gold-100: #f7e6a8;
  --gold-200: #f0c674;
  --gold-300: #d4a85e;
  --gold-400: #b18738;
  --gold-500: #7e5d1c;
  --gold-glow: rgba(240, 198, 116, .35);

  /* Silver (logo wings) */
  --silver-100: #ffffff;
  --silver-200: #e8ecf2;
  --silver-300: #c8cdd6;
  --silver-400: #8d94a3;

  /* Accent */
  --plasma: #6cf0d6;

  /* Strokes */
  --stroke-soft: rgba(240, 198, 116, .08);
  --stroke-mid:  rgba(240, 198, 116, .18);
  --stroke-strong: rgba(240, 198, 116, .32);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Motion */
  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-0);
  color: var(--ink-90);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.mono { font-family: var(--font-mono); letter-spacing: .02em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

::selection { background: var(--gold-200); color: var(--bg-0); }

/* ---------- BACKGROUND STACK ---------- */
.bg-stack {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
#neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .55;
  mix-blend-mode: screen;
}
.bg-mesh {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,  rgba(240,198,116,.15), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(108,240,214,.06), transparent 65%),
    radial-gradient(ellipse 60% 50% at 0% 80%,   rgba(212,168,94,.10), transparent 65%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(240,198,116,.06), transparent 70%);
  filter: blur(20px);
  animation: meshDrift 24s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  from { transform: translate3d(-2%, -2%, 0) scale(1); }
  to   { transform: translate3d(2%, 2%, 0) scale(1.05); }
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,198,116,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,198,116,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 90%);
}
.bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, transparent 50%, rgba(0,0,0,.65) 100%);
}
.bg-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .04;
  mix-blend-mode: overlay;
}

/* ---------- TOPBAR ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: linear-gradient(to bottom, rgba(6,7,11,.78) 0%, rgba(6,7,11,.35) 100%);
  border-bottom: 1px solid var(--stroke-soft);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  display: grid; place-items: center;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}
.brand-mark img { width: 130%; height: auto; transform: translateY(2px); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .12em;
  background: linear-gradient(180deg, var(--silver-100), var(--gold-200) 60%, var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 4px;
}

.status-pills { display: flex; gap: 8px; align-items: center; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  border: 1px solid var(--stroke-mid);
  background: rgba(240, 198, 116, .04);
  color: var(--ink-70);
}
.pill-live {
  color: var(--gold-100);
  border-color: rgba(240,198,116,.32);
  background: linear-gradient(180deg, rgba(240,198,116,.1), rgba(240,198,116,.02));
}
.pill-muted { color: var(--ink-50); }
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-200);
  box-shadow: 0 0 0 4px rgba(240,198,116,.15);
  animation: pulse 2.4s ease-in-out infinite;
}
.dot-amber { background: var(--gold-200); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,198,116,.45); }
  50%      { box-shadow: 0 0 0 6px rgba(240,198,116,0); }
}

/* ---------- HERO ---------- */
.main { position: relative; }
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  padding: 60px 24px 80px;
  display: grid;
  place-items: center;
}
.hero-inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  animation: fadeUp .9s var(--ease-out) .1s both;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  background: rgba(255,255,255,.02);
  border: 1px solid var(--stroke-soft);
  color: var(--ink-70);
}
.badge strong { color: var(--gold-200); font-weight: 500; }

/* Hero logo with halos & shimmer */
.hero-logo-wrap {
  position: relative;
  width: clamp(220px, 38vw, 360px);
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  animation: floaty 8s var(--ease-in-out) infinite, fadeUp 1.2s var(--ease-out) .15s both;
  margin: 8px 0;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-logo {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 10px 30px rgba(0,0,0,.6))
    drop-shadow(0 0 40px var(--gold-glow));
}
.hero-logo-reflection {
  position: absolute;
  bottom: -2%;
  left: 10%;
  right: 10%;
  height: 18%;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(240,198,116,.4), transparent 70%);
  filter: blur(14px);
  z-index: 1;
}
.halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.halo-1 {
  background: conic-gradient(from 0deg,
    transparent 0%,
    rgba(240,198,116,.18) 25%,
    transparent 50%,
    rgba(232,236,242,.12) 75%,
    transparent 100%);
  filter: blur(28px);
  animation: spin 22s linear infinite;
}
.halo-2 {
  inset: 8%;
  background: radial-gradient(circle, rgba(240,198,116,.18) 0%, transparent 65%);
  animation: pulseHalo 4.5s ease-in-out infinite;
}
.halo-3 {
  inset: -4%;
  border: 1px solid rgba(240,198,116,.18);
  border-radius: 50%;
  animation: ringPulse 4s ease-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulseHalo {
  0%, 100% { opacity: .8; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.06); }
}
@keyframes ringPulse {
  0%   { opacity: .8; transform: scale(1); }
  100% { opacity: 0;  transform: scale(1.25); }
}

/* Title */
.hero-title { display: flex; flex-direction: column; align-items: center; gap: 10px; margin: 0; animation: fadeUp 1s var(--ease-out) .2s both; }
.title-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--gold-200);
  padding-left: .55em;
}
.title-main {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 10vw, 120px);
  line-height: .9;
  letter-spacing: -.01em;
  background: linear-gradient(180deg,
    var(--silver-100) 0%,
    var(--silver-200) 30%,
    var(--gold-100) 55%,
    var(--gold-300) 80%,
    var(--gold-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-flex;
  align-items: center;
  gap: .15em;
  text-shadow: 0 0 60px rgba(240,198,116,.15);
}
.title-divider {
  font-size: .5em;
  color: var(--gold-300);
  -webkit-text-fill-color: var(--gold-300);
  transform: translateY(-.15em);
}
.title-sub {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.2vw, 13px);
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--ink-70);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink-100);
  margin: 0;
  max-width: 680px;
  animation: fadeUp 1s var(--ease-out) .35s both;
}
.hero-tagline em {
  color: var(--gold-200);
  font-style: italic;
  font-weight: 500;
}

.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0;
  padding: 16px 24px;
  border-top: 1px solid var(--stroke-soft);
  border-bottom: 1px solid var(--stroke-soft);
  max-width: 580px;
  animation: fadeUp 1s var(--ease-out) .45s both;
}

/* Countdown */
.countdown-wrap {
  width: 100%;
  max-width: 640px;
  margin-top: 8px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15,18,25,.7), rgba(10,12,18,.55));
  border: 1px solid var(--stroke-mid);
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 30px 80px -30px rgba(240,198,116,.18),
    0 0 0 1px rgba(240,198,116,.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeUp 1s var(--ease-out) .55s both;
}
.countdown-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.countdown-label .mono {
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--gold-200);
  text-transform: uppercase;
}
.countdown-target {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-70);
  font-size: 14px;
}
.countdown-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: end;
  gap: 6px;
}
.cd-cell { display: flex; flex-direction: column; align-items: center; }
.cd-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1;
  color: var(--ink-100);
  background: linear-gradient(180deg, var(--silver-100), var(--gold-200) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.cd-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 8px;
}
.cd-sep {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  color: var(--gold-300);
  opacity: .4;
  align-self: center;
  transform: translateY(-6px);
}

/* CTAs */
.cta-row {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 1s var(--ease-out) .65s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s, background .25s, border-color .25s, color .25s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-100) 0%, var(--gold-200) 50%, var(--gold-300) 100%);
  color: #1a1306;
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 1px 0 rgba(255,255,255,.4) inset,
    0 -8px 16px rgba(126,93,28,.4) inset,
    0 12px 30px -8px rgba(240,198,116,.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.5) inset,
    0 -8px 16px rgba(126,93,28,.45) inset,
    0 18px 40px -8px rgba(240,198,116,.7);
}
.btn-ghost {
  background: rgba(255,255,255,.02);
  color: var(--ink-90);
  border-color: var(--stroke-mid);
}
.btn-ghost:hover {
  background: rgba(240,198,116,.05);
  border-color: var(--stroke-strong);
  color: var(--gold-100);
  transform: translateY(-2px);
}

/* Notify form */
.notify-form {
  width: 100%;
  max-width: 520px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  margin-top: 6px;
  animation: fadeUp 1s var(--ease-out) .75s both;
}
.notify-field {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(15,18,25,.75);
  border: 1px solid var(--stroke-mid);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  transition: border-color .25s, box-shadow .25s;
}
.notify-field:focus-within {
  border-color: var(--gold-200);
  box-shadow: 0 0 0 4px rgba(240,198,116,.12);
}
.notify-field input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink-100);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 0;
  min-width: 0;
}
.notify-field input::placeholder { color: var(--ink-50); }
.btn-notify {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, var(--gold-100), var(--gold-300));
  color: #1a1306;
  border: 0;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s;
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset;
}
.btn-notify:hover { transform: translateX(2px); }
.notify-hint, .notify-success {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.notify-success {
  color: var(--gold-200);
  display: none;
}
.notify-form.is-success .notify-hint { display: none; }
.notify-form.is-success .notify-success { display: inline; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid var(--stroke-mid);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 6px;
  opacity: .8;
}
.scroll-cue span {
  display: block;
  width: 2px; height: 8px;
  border-radius: 2px;
  background: var(--gold-200);
  animation: scrollDot 1.6s var(--ease-in-out) infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---------- STATS STRIP ---------- */
.stats {
  border-top: 1px solid var(--stroke-soft);
  border-bottom: 1px solid var(--stroke-soft);
  padding: 36px 0;
  background: linear-gradient(180deg, rgba(10,12,18,.4), rgba(6,7,11,.6));
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 6px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--stroke-soft);
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  background: linear-gradient(180deg, var(--silver-100), var(--gold-200));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: .02em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.stat-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--ink-50);
}

/* ---------- SECTIONS ---------- */
section { position: relative; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  margin: 12px 0 16px;
  letter-spacing: -.01em;
  color: var(--ink-100);
}
.section-head p {
  color: var(--ink-70);
  font-size: 16px;
  margin: 0;
}
.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-200);
  padding: 4px 10px;
  border: 1px solid var(--stroke-mid);
  border-radius: 999px;
  background: rgba(240,198,116,.04);
}

/* ---------- PILLARS ---------- */
.pillars { padding: 100px 0; }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pillar {
  position: relative;
  padding: 28px 26px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15,18,25,.65), rgba(10,12,18,.45));
  border: 1px solid var(--stroke-soft);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240,198,116,.08), transparent 70%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-mid);
  box-shadow: 0 24px 60px -20px rgba(240,198,116,.18);
}
.pillar:hover::before { opacity: 1; }
.pillar-feature {
  background:
    linear-gradient(180deg, rgba(30,24,12,.6), rgba(10,12,18,.45)),
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(240,198,116,.12), transparent 70%);
  border-color: var(--stroke-mid);
}
.pillar-num {
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--gold-300);
  text-transform: uppercase;
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(240,198,116,.12), rgba(240,198,116,.02));
  border: 1px solid var(--stroke-mid);
  color: var(--gold-200);
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin: 0;
  color: var(--ink-100);
  letter-spacing: -.005em;
}
.pillar p {
  margin: 0;
  color: var(--ink-70);
  font-size: 14.5px;
  line-height: 1.65;
}
.pillar p em { color: var(--gold-200); font-style: italic; }
.pillar-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.pillar-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--ink-90);
  font-family: var(--font-mono);
  letter-spacing: .02em;
}
.pillar-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 1px;
  background: var(--gold-300);
}

/* ---------- ROADMAP ---------- */
.roadmap { padding: 100px 0; }
.phase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.phase {
  position: relative;
  padding: 24px 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(15,18,25,.55), rgba(10,12,18,.4));
  border: 1px solid var(--stroke-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .3s, transform .3s;
}
.phase:hover { border-color: var(--stroke-mid); transform: translateY(-2px); }
.phase-tag {
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold-300);
  text-transform: uppercase;
}
.phase-when {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-50);
  letter-spacing: .14em;
}
.phase h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 4px 0 2px;
  color: var(--ink-100);
}
.phase p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-70);
  line-height: 1.55;
}
.phase-done {
  opacity: .68;
}
.phase-done::before {
  content: "✓ Completed";
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.phase-active {
  background:
    linear-gradient(180deg, rgba(40,30,12,.55), rgba(10,12,18,.4)),
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(240,198,116,.12), transparent 70%);
  border-color: rgba(240,198,116,.32);
  box-shadow: 0 24px 60px -20px rgba(240,198,116,.22);
}
.phase-active::before {
  content: "● Live";
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-200);
  animation: pulse 2.4s ease-in-out infinite;
}
.phase-future {
  background: linear-gradient(180deg, rgba(15,18,25,.3), rgba(10,12,18,.2));
  border-style: dashed;
  border-color: var(--stroke-soft);
  opacity: .85;
}

/* ---------- WHITEPAPER ---------- */
.paper { padding: 80px 0; }
.paper-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(20,16,8,.7), rgba(10,12,18,.55)),
    radial-gradient(ellipse 80% 100% at 0% 50%, rgba(240,198,116,.1), transparent 60%);
  border: 1px solid var(--stroke-mid);
  box-shadow: 0 30px 80px -30px rgba(240,198,116,.18);
}
.paper-glyph {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--stroke-mid);
  overflow: hidden;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}
.paper-glyph img { width: 130%; }
.paper-body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  margin: 6px 0 4px;
  color: var(--ink-100);
}
.paper-body .kicker { margin-bottom: 0; }
.paper-body p {
  margin: 6px 0 8px;
  color: var(--ink-70);
  font-size: 14.5px;
  max-width: 520px;
}
.paper-meta {
  font-size: 11px;
  color: var(--ink-50);
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex; gap: 8px; align-items: center;
}
.dot-sep { color: var(--ink-30); }

/* ---------- COMMUNITY / SOCIAL ---------- */
.community { padding: 100px 0 80px; }
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.social-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(15,18,25,.6), rgba(10,12,18,.45));
  border: 1px solid var(--stroke-soft);
  transition: transform .3s var(--ease-out), border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 0% 50%, var(--card-glow, rgba(240,198,116,.12)), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.social-card:hover {
  transform: translateY(-2px);
  border-color: var(--stroke-mid);
}
.social-card:hover::after { opacity: 1; }
.social-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(240,198,116,.06);
  border: 1px solid var(--stroke-soft);
  color: var(--gold-100);
  transition: color .3s, background .3s;
}
.social-card:hover .social-icon { color: var(--gold-200); background: rgba(240,198,116,.12); }
.social-meta { display: flex; flex-direction: column; line-height: 1.2; gap: 2px; }
.social-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink-100);
  font-weight: 500;
}
.social-handle {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-50);
}
.social-action {
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--gold-200);
  text-transform: uppercase;
}

/* Per-platform color glows */
.social-discord  { --card-glow: rgba(88, 101, 242, .14); }
.social-x        { --card-glow: rgba(232, 236, 242, .12); }
.social-telegram { --card-glow: rgba(64, 158, 255, .14); }
.social-instagram{ --card-glow: rgba(225, 48, 108, .14); }
.social-facebook { --card-glow: rgba(24, 119, 242, .14); }
.social-tiktok   { --card-glow: rgba(255, 0, 80, .14); }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--stroke-soft);
  padding: 40px 0 60px;
  background: linear-gradient(180deg, rgba(6,7,11,0), rgba(0,0,0,.6));
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
}
.footer-logo {
  width: 48px;
  height: auto;
  filter: drop-shadow(0 0 10px var(--gold-glow));
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0;
  background: linear-gradient(180deg, var(--silver-100), var(--gold-200));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: .08em;
}
.footer-tag {
  margin: 4px 0 0;
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--ink-50);
  text-transform: uppercase;
}
.footer-meta { text-align: right; }
.footer-creed {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-90);
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.4;
}
.footer-fine {
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--ink-50);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.7;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .phase-list { grid-template-columns: repeat(2, 1fr); }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .stat:nth-child(2)::before, .stat:nth-child(4)::before { display: none; }
  .stat:nth-child(3)::before { display: block; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .paper-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .paper-cta { width: 100%; display: flex; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-meta { text-align: center; }
}
@media (max-width: 640px) {
  .phase-list { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .countdown-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px 6px;
  }
  .cd-sep { display: none; }
  .topbar-inner { flex-wrap: wrap; gap: 10px; }
  .pill { font-size: 10px; padding: 5px 10px; }
  .brand-sub { display: none; }
  .hero { padding: 40px 16px 60px; }
  .hero-quote { padding: 12px 16px; font-size: 14px; }
  .countdown-wrap { padding: 18px; }
  .countdown-label { flex-direction: column; gap: 6px; align-items: flex-start; }
}

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