/* ==========================================================================
   RaiseHood — design tokens + landing styles
   System: "Robinhood after-hours" (REBRAND_SPEC.md §3) + §7 "fun pass".
   Dark-only. This file is the shared design-token source: other pages import
   or copy the :root block below. Token names are canonical — do not rename.
   ========================================================================== */

/* --- Design tokens (canonical — REBRAND_SPEC §3 + §7 fun palette) -------- */
:root {
  --bg:      #0B0B0C;   /* page */
  --bg-2:    #131315;   /* raised panels */
  --bg-3:    #1A1B1E;   /* hover / deeper panel */
  --ink:     #F5F4EE;   /* primary text, warm off-white */
  --ink-2:   #9B9A93;   /* secondary */
  --ink-3:   #6E6D67;   /* faint */
  --neon:    #CCFF00;   /* Robin Neon — primary accent */
  --neon-dim: rgba(204,255,0,.14);  /* accent washes */
  --on-neon: #0B0B0C;   /* text on neon buttons */
  --danger:  #FF5C5C;
  --gold:    #D9B25F;   /* SPARINGLY: premium/"gold" moments only */
  --cyan:    #4DE1FF;   /* §7 fun pass — links / info accents */
  --cyan-dim:  rgba(77,225,255,.12);
  --coral:   #FF7A59;   /* §7 fun pass — hot / live moments */
  --coral-dim: rgba(255,122,89,.12);
  --line:    rgba(245,244,238,.10);
  --line-2:  rgba(245,244,238,.22);
  --radius:  16px;      /* cards */
  --radius-pill: 999px; /* buttons, pills, chips */
  --maxw:    1160px;

  /* Type roles: Newsreader display (italic accents) · Inter body · JetBrains Mono data */
  --font-display: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease-out: cubic-bezier(.19, 1, .22, 1);  /* monopo signature curve — smooth long landings */
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);  /* §7 — playful CTA spring */
}

/* --- Base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--neon); color: var(--on-neon); }

h1, h2, h3, p, ol { margin: 0; }

a { color: inherit; text-decoration: none; }

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* belt-and-suspenders against accidental horizontal overflow */
html, body { overflow-x: clip; }

:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--neon);
  color: var(--on-neon);
  border-radius: var(--radius-pill);
  font: 600 14px var(--font-body);
  transition: top .18s var(--ease-out);
}
.skip:focus { top: 12px; }

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

/* Aurora canvas (aurora.js) sits fixed at z-index 0 — real content stays above */
main, .foot { position: relative; z-index: 1; }

/* --- Buttons (pill) ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font: 600 15px var(--font-body);
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .3s var(--ease-bounce), background .18s var(--ease-out),
              border-color .18s var(--ease-out), color .18s var(--ease-out),
              box-shadow .18s var(--ease-out);
}
.btn-primary {
  background: var(--neon);
  color: var(--on-neon);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 10px 34px rgba(204, 255, 0, .30);
}
.btn-primary:active { transform: translateY(0) scale(.96); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: var(--neon);
  color: var(--neon);
}
.btn-ghost:active { transform: scale(.97); }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* --- Topbar ------------------------------------------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.topbar-in {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 66px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}
.brand .mark { display: block; border-radius: 22%; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -.01em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  padding: 8px 13px;
  font: 500 14.5px var(--font-body);
  color: var(--ink-2);
  border-radius: var(--radius-pill);
  transition: color .15s var(--ease-out);
}
.nav a:hover { color: var(--cyan); }
.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .18s var(--ease-out);
}
.topbar.nav-open .nav-toggle span:first-child { transform: translateY(3.25px) rotate(45deg); }
.topbar.nav-open .nav-toggle span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* --- Hero (full viewport — feather panel LEFT, copy right) --------------- */
.hero {
  min-height: clamp(620px, calc(100vh - 67px), 1000px);
  min-height: clamp(620px, calc(100svh - 67px), 1000px);
  padding-top: clamp(64px, 9vh, 110px);
  padding-bottom: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
}
.hero > .wrap { flex: none; }
.hero > .hero-grid { flex: 1 0 auto; }
.hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  align-content: center;
}
/* Inverted layout: the feather panel renders LEFT of the copy. DOM keeps
   copy first for reading order; order:-1 applies only to the 2-col grid. */
.hero-3d-panel { order: -1; }
.hero h1 {
  margin: 30px 0 22px;
  max-width: 940px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 1.02;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(94deg, var(--neon) 15%, var(--cyan) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* Hero 3D panel — WebGL feather (landing.js) over a soft three-accent glow.
   Crisper frame: brighter hairline, slightly lifted backdrop, subtle inner glow. */
.hero-3d-panel {
  position: relative;
  height: clamp(320px, 36vw, 460px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 90% at 72% 18%, rgba(204, 255, 0, .16), transparent 60%),
    radial-gradient(100% 100% at 18% 88%, rgba(77, 225, 255, .13), transparent 55%),
    radial-gradient(80% 80% at 50% 55%, rgba(255, 122, 89, .07), transparent 60%),
    radial-gradient(70% 70% at 50% 45%, rgba(245, 244, 238, .05), transparent 65%),
    var(--bg-3);
  box-shadow:
    inset 0 0 0 1px rgba(245, 244, 238, .04),
    inset 0 0 64px rgba(204, 255, 0, .06),
    0 12px 40px rgba(0, 0, 0, .45);
  overflow: hidden;
}
.hero-3d {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-3d svg {
  width: 52%;
  height: 66%;
  filter: drop-shadow(0 0 26px rgba(204, 255, 0, .45));
}
.hero-3d canvas { display: block; }

/* Hero chart — decorative sparkline, tick axis, hairline grid.
   Lives inside the hero as the ambient strip along its bottom edge. */
.chart {
  position: relative;
  margin-top: clamp(48px, 6vw, 72px);
  padding: 20px 20px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.chart-tag {
  position: absolute;
  top: -9px;
  left: 24px;
  padding: 0 10px;
  background: var(--bg);
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--ink-3);
}
.spark-box { position: relative; }
.spark-svg {
  display: block;
  width: 100%;
  height: clamp(150px, 21vw, 240px);
}
.grid {
  stroke: var(--line);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.axis {
  stroke: var(--line-2);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.tick { stroke: var(--line-2); stroke-width: 1.5; }
.spark {
  fill: none;
  stroke: var(--neon);
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(204, 255, 0, .45));
}
.spark-tip {
  fill: var(--neon);
  filter: drop-shadow(0 0 5px rgba(204, 255, 0, .8));
  animation: tip-pulse 2.4s var(--ease-out) infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes tip-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: .75; }
}

/* --- Ticker tape (illustrative marquee) --------------------------------- */
.tape {
  position: relative;
  margin-top: clamp(40px, 6vw, 64px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  background: rgba(11, 11, 12, .55);
}
.tape-tag {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 2;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--bg);
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--ink-3);
}
/* tickers scroll out from behind the label — soft fades on both edges */
.tape::before,
.tape::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}
.tape::before {
  left: 0;
  width: 320px;
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 62%, rgba(11, 11, 12, .85) 78%, transparent 100%);
}
.tape::after {
  right: 0;
  width: 72px;
  background: linear-gradient(-90deg, var(--bg) 0%, transparent 100%);
}
.tape-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: tape-scroll 32s linear infinite;
}
.tape:hover .tape-track { animation-play-state: paused; }
.tape-set {
  display: flex;
  align-items: center;
  gap: 52px;
  padding-right: 52px;
}
@keyframes tape-scroll {
  to { transform: translateX(-50%); }
}
.tk {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  white-space: nowrap;
  font-size: 13.5px;
  letter-spacing: .04em;
  color: var(--ink-2);
}
.tk b { font-weight: 700; font-size: 12px; }
.tk .up { color: var(--neon); }
.tk .down { color: var(--coral); }

/* --- Sections shared ---------------------------------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--ink-3);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--neon);
}
h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.015em;
}
h2 em { font-style: italic; }
.section-sub {
  margin-top: 16px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}
.banded { border-top: 1px solid var(--line); }

/* --- Desk preview (static watchlist mock — sample rows link to /evm/) ----
   Mirrors the /evm/ trading-desk table (plan B2): token avatar+ticker+name ·
   sparkline · price · raised+quote dot · fill% pill · status chip · chevron.
   Status hues: LIVE neon · UPCOMING cyan · ENDED muted · CANCELLED coral. */
.desk { padding: clamp(72px, 10vw, 112px) 0; }
.desk-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 28px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 42px);
}
.wl {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}
.wl-tag {
  position: absolute;
  top: -9px;
  left: 24px;
  z-index: 2;
  padding: 0 10px;
  background: var(--bg);
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--ink-3);
}
.wl-head, .wl-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 110px 100px 150px 100px 116px 28px;
  column-gap: 18px;
  align-items: center;
}
.wl-head {
  padding: 15px 22px 13px;
  border-bottom: 1px solid var(--line);
  font-size: 10.5px;
  letter-spacing: .13em;
  color: var(--ink-3);
}
.wl-head .r { text-align: right; }
.wl-row {
  padding: 13px 22px;
  border-top: 1px solid var(--line);
  border-left: 2px solid transparent;
  transition: background .15s var(--ease-out), border-color .15s var(--ease-out);
}
.wl-body .wl-row:first-child { border-top: none; }
.wl-row:hover { background: var(--bg-3); border-left-color: var(--row-acc, var(--neon)); }
.wl-row > span { display: flex; align-items: center; min-width: 0; }
.wl-row .r { justify-content: flex-end; }
.is-upcoming { --row-acc: var(--cyan); }
.is-ended { --row-acc: var(--ink-3); }
.is-cancelled { --row-acc: var(--coral); }
.wl-coin { gap: 12px; }
.wl-ava {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(var(--ac, 245,244,238), .14);
  border: 1px solid rgba(var(--ac, 245,244,238), .42);
  color: rgb(var(--ac, 245,244,238));
  font: 700 12px var(--font-mono);
}
.wl-row .wl-id { flex-direction: column; align-items: flex-start; gap: 1px; }
.wl-tick {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}
.wl-name {
  font-style: normal;
  font-size: 12px;
  color: var(--ink-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.wl-spark svg {
  display: block;
  width: 96px;
  max-width: 100%;
  height: 28px;
}
.wl-spark path {
  fill: none;
  stroke: var(--neon);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wl-spark.down path { stroke: var(--coral); }
.wl-spark.flat path { stroke: var(--ink-3); stroke-dasharray: 2 5; }
.wl-price, .wl-raised { font-size: 13px; color: var(--ink); }
.wl-raised { gap: 8px; white-space: nowrap; }
.qdot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(var(--qc, 155,154,147));
}
.fill-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 24px;
  padding: 0 10px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.fill-pill i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(var(--p, 0) * 1%);
  background: var(--neon-dim);
}
.is-ended .fill-pill i { background: rgba(245, 244, 238, .10); }
.is-cancelled .fill-pill i { background: var(--coral-dim); }
.fill-pill b {
  position: relative;
  font: 500 11px var(--font-mono);
  color: var(--ink);
}
.st {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  font-size: 10.5px;
  letter-spacing: .12em;
  white-space: nowrap;
}
.st-live {
  color: var(--neon);
  border-color: rgba(204, 255, 0, .40);
  background: var(--neon-dim);
}
.st-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  animation: ping 2.4s var(--ease-out) infinite;
}
.st-upcoming {
  color: var(--cyan);
  border-color: rgba(77, 225, 255, .40);
  background: var(--cyan-dim);
}
.st-ended { color: var(--ink-3); background: rgba(245, 244, 238, .05); }
.st-cancelled {
  color: var(--coral);
  border-color: rgba(255, 122, 89, .40);
  background: var(--coral-dim);
}
.wl-chev {
  justify-content: flex-end;
  font-size: 18px;
  color: var(--ink-3);
  transition: color .15s var(--ease-out), transform .15s var(--ease-out);
}
.wl-row:hover .wl-chev { color: var(--neon); transform: translateX(3px); }

/* Per-item accent palettes as CLASSES — the CSP style-src has no
   'unsafe-inline', so HTML style="" attributes are blocked page-wide.
   (The /evm/ app may set the same --ac/--qc/--p/--pc vars via JS CSSOM,
   which CSP does not restrict; static markup must use these classes.) */
.ac-neon  { --ac: 204, 255, 0; }
.ac-cyan  { --ac: 77, 225, 255; }
.ac-gold  { --ac: 217, 178, 95; }
.ac-coral { --ac: 255, 122, 89; }
.ac-ink   { --ac: 245, 244, 238; }
.qc-eth  { --qc: 155, 154, 147; }  /* neutral — native ETH */
.qc-tsla { --qc: 255, 122, 89; }   /* TSLA coral */
.qc-usdg { --qc: 217, 178, 95; }   /* USDG gold */
.qc-aapl { --qc: 245, 244, 238; }  /* AAPL ink */
.p0   { --p: 0; }
.p18  { --p: 18; }
.p31  { --p: 31; }
.p62  { --p: 62; }
.p100 { --p: 100; }
.pc-usdg { --pc: 217, 178, 95; }   /* USDG gold */
.pc-tsla { --pc: 255, 122, 89; }   /* TSLA coral */
.pc-aapl { --pc: 245, 244, 238; }  /* AAPL ink */
.pc-nvda { --pc: 204, 255, 0; }    /* NVDA neon */
.pc-amzn { --pc: 77, 225, 255; }   /* AMZN cyan */
.pc-meta { --pc: 122, 162, 255; }  /* META blue */

/* --- Stats strip -------------------------------------------------------- */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-eyebrow {
  grid-column: 1 / -1;
  padding: 15px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ink-3);
}
.stat {
  padding: 38px 28px 42px;
  border-left: 1px solid var(--line);
}
.stat:first-of-type { border-left: none; }
.stat-n {
  display: block;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--ink);
  transition: color .18s var(--ease-out);
}
.stat:nth-of-type(1):hover .stat-n { color: var(--neon); }
.stat:nth-of-type(2):hover .stat-n { color: var(--cyan); }
.stat:nth-of-type(3):hover .stat-n { color: var(--gold); }
.stat:nth-of-type(4):hover .stat-n { color: var(--coral); }
.stat-l {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-2);
}

/* --- How a launch flows ------------------------------------------------- */
.how { padding: clamp(72px, 10vw, 112px) 0; }
.steps {
  list-style: none;
  padding: 0;
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.steps li {
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
}
.step-n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--ink-3);
}
.steps h3 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.01em;
}
.steps p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* --- Anti-rug cards ----------------------------------------------------- */
.why { padding: clamp(72px, 10vw, 112px) 0; }
.cards {
  margin-top: clamp(40px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  --acc: var(--neon);
  --acc-rgb: 204, 255, 0;
  position: relative;
  padding: 26px 24px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .16s var(--ease-out), border-color .18s var(--ease-out),
              background .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.card-cyan  { --acc: var(--cyan);  --acc-rgb: 77, 225, 255; }
.card-gold  { --acc: var(--gold);  --acc-rgb: 217, 178, 95; }
.card-coral { --acc: var(--coral); --acc-rgb: 255, 122, 89; }
.card:hover {
  background: var(--bg-3);
  border-color: rgba(var(--acc-rgb), .55);
  box-shadow: 0 16px 44px rgba(var(--acc-rgb), .16), 0 14px 40px rgba(0, 0, 0, .45);
}
.card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 13px;
  font-size: 21px;
  background: linear-gradient(135deg, rgba(var(--acc-rgb), .20), rgba(var(--acc-rgb), .05));
  border: 1px solid rgba(var(--acc-rgb), .38);
}
.card-k {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ink-3);
  transition: color .18s var(--ease-out);
}
.card:hover .card-k { color: var(--acc); }
.card h3 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -.01em;
}
.card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* --- Pairs strip (quote assets — monogram chips link to /evm/) ---------- */
.pairs { padding: clamp(64px, 9vw, 104px) 0; }
.pairs-in {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.pairs-note {
  margin-top: 24px;
  max-width: 460px;
  font-size: 11.5px;
  line-height: 1.7;
  letter-spacing: .05em;
  color: var(--ink-3);
}
.pairs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.pair-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  background: var(--bg-2);
  transition: transform .18s var(--ease-out), border-color .18s var(--ease-out),
              box-shadow .18s var(--ease-out);
}
.pair-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--pc), .60);
  box-shadow: 0 10px 26px rgba(var(--pc), .16);
}
.pair-m {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgb(var(--pc));
  color: var(--on-neon);
  font: 700 11.5px var(--font-mono);
  letter-spacing: .02em;
}
.pair-t {
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--ink);
}

/* --- Footer ------------------------------------------------------------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 40px 0 48px;
}
.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
}
.foot-brand .mark { display: block; border-radius: 22%; }
.foot-tag { color: var(--ink-2); font-size: 14.5px; }
.foot-chain {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--ink-3);
}
.foot-legal {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-3);
}
.foot-legal span { max-width: min(520px, 100%); }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 960px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  /* desk table: spark column drops first */
  .wl-head, .wl-row {
    grid-template-columns: minmax(170px, 1fr) 100px 150px 100px 116px 28px;
  }
  .wl-head > :nth-child(2), .wl-row > .wl-spark { display: none; }
  .pairs-in { grid-template-columns: 1fr; }
  .pairs-chips { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .topbar-in { gap: 16px; }
  .js .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 18px;
    background: var(--bg);
    border-bottom: 1px solid var(--line-2);
  }
  .js .topbar.nav-open .nav { display: flex; }
  .js .nav a {
    padding: 14px 2px;
    font-size: 17px;
    border-top: 1px solid var(--line);
    border-radius: 0;
  }
  .js .nav-toggle { display: inline-flex; }
  /* No-JS fallback: nav stays inline and wraps. */
  .nav { flex-wrap: wrap; row-gap: 0; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-3d-panel { order: 0; }
  .hero h1 { max-width: 640px; }
  .hero-3d-panel { height: clamp(280px, 78vw, 380px); }
}

@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 22px 32px; border-left: none; border-top: 1px solid var(--line); }
  /* children: [eyebrow, s1, s2, s3, s4] — top row of stats has no top border */
  .stat:nth-child(2), .stat:nth-child(3) { border-top: none; }
  .stat:nth-child(3), .stat:nth-child(5) { border-left: 1px solid var(--line); }
}

@media (max-width: 700px) {
  /* desk table: price column drops next */
  .wl-head, .wl-row {
    grid-template-columns: minmax(150px, 1fr) 140px 96px 110px 24px;
    column-gap: 14px;
  }
  .wl-head > :nth-child(3), .wl-row > .wl-price { display: none; }
}

@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .hero-sub { font-size: 16.5px; }
  .chip { font-size: 10px; letter-spacing: .09em; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .cards { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-ctas { gap: 12px; }
  .top-actions .btn { width: auto; }
  .tape-set { gap: 34px; padding-right: 34px; }
  .foot-legal { flex-direction: column; gap: 8px; }
}

@media (max-width: 560px) {
  /* desk table: long names + chevron drop; token truncates, tracks fit content */
  .wl-head, .wl-row {
    grid-template-columns: minmax(80px, 1.1fr) auto auto auto;
    column-gap: 12px;
  }
  .wl-head { padding: 13px 14px 11px; }
  .wl-row { padding: 12px 14px; }
  .wl-head > :nth-child(7), .wl-row > .wl-chev { display: none; }
  .wl-name { display: none; }
  .wl-row > span { overflow: hidden; }
  .wl-tick { display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .wl-ava { width: 26px; height: 26px; font-size: 11px; }
  .wl-raised { font-size: 12px; gap: 6px; }
  .st { padding: 4px 9px; font-size: 10px; }
  .fill-pill { min-width: 56px; height: 22px; }
  .wl-tag { left: 14px; }
}

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

/* Pair chips: glyph icons inside the colored circles */
.pair-m svg { width: 15px; height: 15px; }
.pair-m { display: inline-flex; align-items: center; justify-content: center; }

/* craft pass: soften the neon button halo */
.btn-primary:hover { box-shadow: 0 0 0 3px var(--neon-dim); }

/* Pair chips: real logos on a neutral disc */
.pair-m-img { background: #F5F4EE; }
.pair-m img { width: 74%; height: 74%; object-fit: contain; }

/* ---------- terminal verify panel (anti-rug section) ---------- */
.term { margin-top: 34px; border: 1px solid var(--line-2); border-radius: var(--radius); background: #0E0F10; overflow: hidden; box-shadow: 0 24px 60px -30px rgba(0,0,0,.8); }
.term-bar { display: flex; align-items: center; gap: 7px; padding: 10px 14px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.term-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2); }
.term-dot:nth-child(1) { background: rgba(255,92,92,.55); }
.term-dot:nth-child(2) { background: rgba(217,178,95,.55); }
.term-dot:nth-child(3) { background: rgba(204,255,0,.45); }
.term-title { margin-left: 8px; font-size: 10.5px; letter-spacing: .08em; color: var(--ink-3); }
.term-body { padding: 18px 20px 16px; font-size: 13.5px; line-height: 2.05; }
.term-cmd { color: var(--ink-2); margin: 0 0 6px; }
.term-prompt { color: var(--neon); margin-right: 8px; }
.term-line { margin: 0; color: var(--ink-2); opacity: 0; transform: translateX(-8px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.term-line b { color: var(--ink); font-weight: 600; }
.term-check { display: inline-block; width: 22px; color: var(--neon); font-weight: 700; opacity: 0; transform: scale(.2); transition: opacity .35s var(--ease-bounce), transform .35s var(--ease-bounce); }
.term.run .term-line { opacity: 1; transform: none; }
.term.run .term-line .term-check { opacity: 1; transform: scale(1); }
.term.run .term-line:nth-of-type(2), .term.run .term-line:nth-of-type(2) .term-check { transition-delay: .55s; }
.term.run .term-line:nth-of-type(3), .term.run .term-line:nth-of-type(3) .term-check { transition-delay: 1.1s; }
.term.run .term-line:nth-of-type(4), .term.run .term-line:nth-of-type(4) .term-check { transition-delay: 1.65s; }
.term.run .term-line:nth-of-type(5), .term.run .term-line:nth-of-type(5) .term-check { transition-delay: 2.2s; }
.term-foot { margin: 10px 0 0; color: var(--ink-3); font-size: 12px; opacity: 0; transition: opacity .7s ease 2.7s; }
.term.run .term-foot { opacity: 1; }
.term-ok { color: var(--neon); }
.term-cursor { display: inline-block; width: 8px; height: 15px; margin-left: 6px; background: var(--neon); vertical-align: -2px; animation: blink 1.1s steps(2) infinite; }
@media (prefers-reduced-motion: reduce) {
  .term-line, .term-check, .term-foot { opacity: 1 !important; transform: none !important; transition: none !important; }
  .term-cursor { animation: none; }
}

@media (max-width: 430px) {
  /* desk table: free the width for tickers on the smallest phones */
  .wl-ava { display: none; }
}

/* X social link in footer */
.foot-x { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: 1px solid var(--line-2); border-radius: 50%; color: var(--ink-2); transition: color .18s var(--ease-out), border-color .18s var(--ease-out), transform .18s var(--ease-out); }
.foot-x:hover { color: var(--neon); border-color: var(--neon); transform: translateY(-1px); }

.foot-docs { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line-2); border-radius: var(--radius-pill, 999px); padding: 5px 14px; transition: color .18s var(--ease-out), border-color .18s var(--ease-out), transform .18s var(--ease-out); }
.foot-docs:hover { color: var(--neon); border-color: var(--neon); transform: translateY(-1px); }
