/* =====================================================================
   PUMPnDUMP — Astreides Foundation
   "Asterrvn" webpunk design system. Electric-blue brand neon over
   near-black, with PUMP-green / DUMP-red as the semantic trading accents.
   Self-contained: pixel fonts (Press Start 2P + VT323) ship in /assets/fonts.
   ===================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Press Start 2P";
  src: url("../fonts/PressStart2P-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "VT323";
  src: url("../fonts/VT323-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* surfaces */
  --bg:        #05060a;
  --bg-2:      #0a0b12;
  --panel:     #0c1019;
  --panel-2:   #10151f;
  --well:      #080a11;
  --border:    #1b2740;
  --border-hi: #2b3c63;

  /* brand neon (Asterrvn electric blue / cyan) */
  --blue:      #2e9bff;
  --blue-hi:   #7dc4ff;
  --cyan:      #00e5ff;

  /* semantic trading accents */
  --pump:      #00ff87;
  --pump-dim:  #00cc6c;
  --dump:      #ff2d55;
  --gold:      #ffd24a;
  --purple:    #c77dff;

  /* text */
  --text:      #eaeaf5;
  --muted:     #9aa6c4;
  --faint:     #5e6a89;

  /* type */
  --font-display: "Press Start 2P", "VT323", monospace;
  --font-mono:    "VT323", "Courier New", monospace;
  --font-body:    system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* layout */
  --maxw: 1160px;
  --radius: 4px;

  /* glows */
  --glow-blue: 0 0 12px rgba(46,155,255,.55), 0 0 30px rgba(46,155,255,.25);
  --glow-pump: 0 0 12px rgba(0,255,135,.5), 0 0 28px rgba(0,255,135,.22);
  --glow-dump: 0 0 12px rgba(255,45,85,.5), 0 0 28px rgba(255,45,85,.22);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
::selection { background: var(--blue); color: #02040a; }

/* ---------- Ambient background layers (fixed) ---------- */
.fx { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.fx--grid {
  background:
    linear-gradient(rgba(46,155,255,.045) 1px, transparent 1px) 0 0 / 100% 46px,
    linear-gradient(90deg, rgba(46,155,255,.045) 1px, transparent 1px) 0 0 / 46px 100%;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
  animation: gridShift 24s linear infinite;
}
@keyframes gridShift { to { background-position: 0 46px, 46px 0; } }
.fx--aurora {
  background:
    radial-gradient(60% 50% at 18% 8%, rgba(46,155,255,.22), transparent 60%),
    radial-gradient(50% 45% at 88% 4%, rgba(0,229,255,.15), transparent 60%),
    radial-gradient(60% 60% at 50% 110%, rgba(123,77,255,.10), transparent 60%);
  filter: blur(8px);
}
.fx--scan {
  background: repeating-linear-gradient(to bottom, rgba(0,0,0,0) 0 2px, rgba(0,0,0,.18) 2px 4px);
  mix-blend-mode: multiply;
  opacity: .5;
}
.fx--vignette { box-shadow: inset 0 0 200px 40px rgba(0,0,0,.9); }
@media (prefers-reduced-motion: reduce) {
  .fx--grid { animation: none; }
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; position: relative; z-index: 1; }
.section { padding: 92px 0; position: relative; z-index: 1; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }
.grid { display: grid; gap: 18px; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--blue-hi);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--blue); box-shadow: var(--glow-blue); }

h1,h2,h3 { font-family: var(--font-display); line-height: 1.25; letter-spacing: .5px; }
.h-xl { font-size: clamp(28px, 6.4vw, 60px); line-height: 1.12; }
.h-lg { font-size: clamp(22px, 3.6vw, 34px); }
.h-md { font-size: clamp(15px, 2vw, 20px); }
.lead { font-size: clamp(16px, 2.1vw, 20px); color: var(--muted); max-width: 60ch; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { margin: 14px 0 16px; }

.mono { font-family: var(--font-mono); }
.t-pump { color: var(--pump); }
.t-dump { color: var(--dump); }
.t-blue { color: var(--blue-hi); }
.t-gold { color: var(--gold); }

/* ---------- Glitch text ---------- */
.glitch { position: relative; display: inline-block; color: var(--text); }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  pointer-events: none; opacity: .9;
}
.glitch::before { color: var(--cyan); animation: glitchA 3.4s infinite steps(2,end); }
.glitch::after  { color: var(--dump); animation: glitchB 2.8s infinite steps(2,end); }
@keyframes glitchA {
  0%,92%,100% { transform: none; clip-path: inset(0 0 0 0); opacity: 0; }
  93% { transform: translate(-2px,-1px); clip-path: inset(0 0 62% 0); opacity:.8; }
  96% { transform: translate(2px,1px);  clip-path: inset(40% 0 0 0); opacity:.8; }
}
@keyframes glitchB {
  0%,90%,100% { transform: none; clip-path: inset(0 0 0 0); opacity: 0; }
  91% { transform: translate(2px,1px);  clip-path: inset(0 0 55% 0); opacity:.7; }
  94% { transform: translate(-2px,-2px); clip-path: inset(55% 0 0 0); opacity:.7; }
}
@media (prefers-reduced-motion: reduce) {
  .glitch::before, .glitch::after { animation: none; opacity: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 20px;
  border: 1px solid var(--border-hi);
  background: var(--panel-2);
  color: var(--text);
  border-radius: var(--radius);
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); border-color: var(--blue); box-shadow: var(--glow-blue); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: linear-gradient(180deg, #1577e0, #0f5bbf);
  border-color: #57abff;
  color: #f3f9ff;
  box-shadow: 0 0 0 1px rgba(46,155,255,.25), var(--glow-blue);
}
.btn--primary:hover { box-shadow: 0 0 18px rgba(46,155,255,.7), 0 0 40px rgba(46,155,255,.3); }
.btn--pump {
  background: linear-gradient(180deg, #00d873, #00a85a);
  border-color: #4dffae; color: #02160d;
  box-shadow: var(--glow-pump);
}
.btn--pump:hover { border-color: var(--pump); box-shadow: 0 0 18px rgba(0,255,135,.75), 0 0 42px rgba(0,255,135,.35); }
.btn--ghost { background: transparent; }
.btn--lg { padding: 18px 26px; font-size: 12px; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Pixel candle bullet ---------- */
.tick { display:inline-block; width:9px; height:9px; background: var(--blue); box-shadow: var(--glow-blue); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,6,10,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: 18px; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 13px; letter-spacing: .5px; }
.brand img { width: 30px; height: 30px; }
.brand b { color: var(--text); }
.brand .nd { color: var(--dump); }
.brand .pp { color: var(--pump); }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-mono); font-size: 19px; letter-spacing: .5px;
  color: var(--muted); transition: color .15s, text-shadow .15s;
}
.nav-links a:hover { color: var(--blue-hi); text-shadow: var(--glow-blue); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--border-hi); border-radius: var(--radius); color: var(--text); padding: 9px 11px; }
.nav-toggle span { display:block; width:20px; height:2px; background: var(--text); margin: 4px 0; }

/* ---------- Retro "window" card ---------- */
.win {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.win__bar {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 12px;
  background: linear-gradient(180deg, #121a2c, #0c1320);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 16px; color: var(--muted); letter-spacing: 1px;
}
.win__dots { display: flex; gap: 6px; }
.win__dots i { width: 9px; height: 9px; border-radius: 50%; display:block; }
.win__dots i:nth-child(1){ background:#ff5f57; }
.win__dots i:nth-child(2){ background:#febc2e; }
.win__dots i:nth-child(3){ background:#28c840; }
.win__title { margin-left: 4px; }
.win__title b { color: var(--blue-hi); font-weight: 400; }
.win__body { padding: 22px; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 56px; position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.hero__kicker { margin-bottom: 22px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .sub { display:block; color: var(--muted); font-size: clamp(13px,2vw,18px); margin-top: 16px; letter-spacing: 1px; }
.hero .lead { margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 22px 30px; font-family: var(--font-mono); font-size: 18px; color: var(--muted); }
.hero__meta b { color: var(--text); }
.hero__media { position: relative; }
.hero__media .win__body { padding: 0; background: #000; }
.hero__media video, .hero__media img { width: 100%; height: auto; display:block; }
.hero__badge {
  position: absolute; right: -8px; bottom: -12px;
  font-family: var(--font-display); font-size: 10px; letter-spacing: 1px;
  background: var(--well); border: 1px solid var(--blue); color: var(--blue-hi);
  padding: 9px 12px; border-radius: var(--radius); box-shadow: var(--glow-blue);
  transform: rotate(-2deg);
}

/* ---------- Ticker ---------- */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--well);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ticker__track {
  display: inline-flex; gap: 40px; align-items: center;
  white-space: nowrap; padding: 12px 0;
  font-family: var(--font-mono); font-size: 19px; letter-spacing: 1px;
  will-change: transform;
  animation: marquee 38s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.tk { display: inline-flex; align-items: baseline; gap: 9px; }
.tk b { color: var(--text); letter-spacing: 2px; }
.tk .px { color: var(--muted); }
.tk .up { color: var(--pump); }
.tk .dn { color: var(--dump); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ---------- Feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: transform .15s ease, border-color .2s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-hi); box-shadow: 0 14px 40px -20px rgba(46,155,255,.5); }
.card__ico {
  width: 48px; height: 48px; display: grid; place-items: center;
  border: 1px solid var(--border-hi); border-radius: var(--radius);
  background: var(--well); margin-bottom: 16px; color: var(--blue-hi);
  box-shadow: inset 0 0 18px rgba(46,155,255,.12);
}
.card__ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 13px; margin-bottom: 10px; color: var(--text); }
.card p { color: var(--muted); font-size: 15.5px; }
.card--pump .card__ico { color: var(--pump); box-shadow: inset 0 0 18px rgba(0,255,135,.14); }
.card--dump .card__ico { color: var(--dump); box-shadow: inset 0 0 18px rgba(255,45,85,.14); }
.card--pump:hover { border-color: var(--pump); box-shadow: 0 14px 40px -20px rgba(0,255,135,.55); }
.card--dump:hover { border-color: var(--dump); box-shadow: 0 14px 40px -20px rgba(255,45,85,.55); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; padding: 24px 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel); }
.step__n { font-family: var(--font-display); font-size: 13px; color: var(--blue-hi); margin-bottom: 14px; }
.step h3 { font-size: 12px; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Split / info rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.list-check li { display: flex; gap: 12px; padding: 9px 0; color: var(--muted); font-size: 16px; border-bottom: 1px dashed var(--border); }
.list-check li b { color: var(--text); }
.list-check li::before { content: "▸"; color: var(--pump); font-family: var(--font-mono); }

/* ---------- Order-type chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-display); font-size: 10px; letter-spacing: 1px;
  border: 1px solid var(--border-hi); border-radius: 999px; padding: 10px 14px;
  color: var(--muted); background: var(--well);
}
.chip.is-limit { border-color: #3d9bff; color: #9ccbff; }
.chip.is-stop  { border-color: var(--purple); color: #ddc2ff; }
.chip.is-sltp  { border-color: var(--gold); color: var(--gold); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.stat { text-align: center; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 14px; background: var(--panel); }
.stat .num { font-family: var(--font-display); font-size: clamp(18px,3vw,26px); color: var(--text); }
.stat .lbl { font-family: var(--font-mono); font-size: 16px; color: var(--muted); letter-spacing: 1px; margin-top: 8px; }

/* ---------- Roadmap ---------- */
.road { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.road__col { border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel); padding: 22px 18px; }
.road__phase { font-family: var(--font-display); font-size: 10px; letter-spacing: 1px; color: var(--blue-hi); margin-bottom: 6px; }
.road__col h3 { font-size: 13px; margin-bottom: 14px; }
.road__col li { display: flex; gap: 9px; padding: 7px 0; color: var(--muted); font-size: 15px; }
.road__col li .s { font-family: var(--font-mono); }
.s--done { color: var(--pump); }
.s--now  { color: var(--gold); }
.s--next { color: var(--faint); }
.road__col.is-now { border-color: var(--border-hi); box-shadow: 0 0 0 1px rgba(46,155,255,.18), 0 18px 50px -30px rgba(46,155,255,.6); }

/* ---------- Tokenomics ---------- */
.token-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.alloc { display: grid; gap: 16px; }
.alloc__row .top { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 18px; margin-bottom: 7px; }
.alloc__row .top .pct { color: var(--blue-hi); }
.bar { height: 12px; background: var(--well); border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.bar > i { display:block; height: 100%; border-radius: 999px; }
.bar > i.fill-blue { background: linear-gradient(90deg, #1577e0, var(--cyan)); box-shadow: var(--glow-blue); }
.bar > i.fill-pump { background: linear-gradient(90deg, var(--pump-dim), var(--pump)); }
.bar > i.fill-gold { background: linear-gradient(90deg, #b8860b, var(--gold)); }
.kv { display: grid; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.kv__row { display: flex; justify-content: space-between; gap: 14px; padding: 13px 16px; font-family: var(--font-mono); font-size: 18px; border-bottom: 1px solid var(--border); }
.kv__row:last-child { border-bottom: 0; }
.kv__row .k { color: var(--muted); }
.kv__row .v { color: var(--text); text-align: right; }

/* address line */
.addr { display:flex; align-items:center; gap:10px; flex-wrap: wrap; margin-top: 18px; }
.addr code {
  font-family: var(--font-mono); font-size: 16px; color: var(--blue-hi);
  background: var(--well); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 9px 12px; word-break: break-all; flex: 1; min-width: 220px;
}
.copy-btn { font-family: var(--font-display); font-size: 9px; letter-spacing: 1px; padding: 10px 12px; border: 1px solid var(--border-hi); background: var(--panel-2); color: var(--text); border-radius: var(--radius); }
.copy-btn:hover { border-color: var(--blue); box-shadow: var(--glow-blue); }
.copy-btn.copied { border-color: var(--pump); color: var(--pump); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; z-index: 1; }
.cta-band .win__body { padding: 0; }
.cta-inner { display: grid; grid-template-columns: 1.1fr .9fr; }
.cta-copy { padding: 44px; }
.cta-copy h2 { margin-bottom: 16px; }
.cta-copy p { color: var(--muted); margin-bottom: 26px; }
.cta-art { position: relative; min-height: 280px; background: #000; }
.cta-art video, .cta-art img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Foundation note ---------- */
.note { border-left: 2px solid var(--blue); padding: 4px 0 4px 18px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); position: relative; z-index: 1; padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 36px; }
.footer-brand p { color: var(--muted); font-size: 15px; margin-top: 16px; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-display); font-size: 10px; letter-spacing: 1px; color: var(--blue-hi); margin-bottom: 16px; text-transform: uppercase; }
.footer-col a { display: block; font-family: var(--font-mono); font-size: 18px; color: var(--muted); padding: 5px 0; }
.footer-col a:hover { color: var(--blue-hi); text-shadow: var(--glow-blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 22px; font-family: var(--font-mono); font-size: 16px; color: var(--faint); }
.footer-bottom .risk { max-width: 70ch; }

/* ---------- Status badge ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 9px; letter-spacing: 1px;
  text-transform: uppercase; padding: 7px 11px; border-radius: 999px;
  border: 1px solid var(--border-hi); color: var(--muted); background: var(--well);
}
.badge--live { border-color: var(--pump); color: var(--pump); }
.badge--live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pump); box-shadow: var(--glow-pump); animation: pulse 1.8s ease-in-out infinite; }
.badge--soon { border-color: var(--border-hi); color: var(--faint); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .badge--live .dot { animation: none; } }

/* ---------- Two-up grid (products / portfolio) ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.product-card { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.product-card .card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-card h3 { font-size: 14px; }
.product-card .grow { flex: 1; }
.product-card .actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
@media (max-width: 760px) { .duo { grid-template-columns: 1fr; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- 404 ---------- */
.signal { min-height: 72vh; display: grid; place-items: center; text-align: center; position: relative; z-index: 1; }
.signal h1 { font-size: clamp(30px,9vw,84px); margin-bottom: 18px; }
.signal p { color: var(--muted); margin-bottom: 28px; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__media { order: -1; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .road { grid-template-columns: repeat(2,1fr); }
  .split, .token-split, .cta-inner { grid-template-columns: 1fr; }
  .cta-art { min-height: 220px; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
    position: absolute; top: 66px; left: 0; right: 0;
    background: rgba(7,9,14,.97); border-bottom: 1px solid var(--border);
    padding: 16px 22px; margin: 0;
  }
  .nav.open .nav-links a { font-size: 22px; padding: 8px 0; }
}
@media (max-width: 520px) {
  .cards, .steps, .stats, .road { grid-template-columns: 1fr; }
  .cta-copy { padding: 30px 22px; }
  .hero__badge { position: static; transform: none; display: inline-block; margin-top: 14px; }
}
