/* ── Hoodlums — terminal ledger theme ───────────────────────────── */
:root {
  --bg: #0d0d0c;
  --surface: #131311;
  --surface-2: #1a1a17;
  --line: #29291f;
  --line-soft: #201f1a;
  --ink: #ece9df;
  --ink-2: #a6a294;
  --ink-3: #6b675c;
  --accent: #ff7300;
  --accent-ink: #0d0d0c;
  --accent-soft: rgba(255, 115, 0, 0.09);
  --green: #35c46f;
  --green-soft: rgba(53, 196, 111, 0.09);
  --red: #e5533d;
  /* validated categorical series (dark surface) */
  --s1: #3987e5;
  --s2: #d95926;
  --s3: #199e70;
  --s4: #c98500;
  --s5: #d55181;
  --display: "Archivo", sans-serif;
  --body: "IBM Plex Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { image-rendering: pixelated; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); line-height: 1.05; letter-spacing: -0.015em; }
.mono { font-family: var(--mono); }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ── announcement bar ── */
.annbar {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 8px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 12px;
  flex-wrap: wrap; text-align: center;
}
.annbar-tag {
  font-size: 10px; letter-spacing: 0.08em; color: var(--accent-ink);
  background: var(--accent); padding: 2px 7px;
}
.annbar-text { color: var(--ink-2); }
.annbar-link { color: var(--accent); white-space: nowrap; }
.annbar-link:hover { text-decoration: underline; }

/* ── nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 13px 28px;
  background: rgba(13, 13, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 11px; }
.nav-mark { width: 32px; height: 32px; border: 1px solid var(--line); }
.nav-word {
  font-family: var(--display); font-weight: 800; font-size: 17px;
  letter-spacing: 0.06em;
}
.nav-links {
  display: flex; gap: 24px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-2); text-transform: uppercase;
}
.nav-links a:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-icon { width: 18px; height: 18px; color: var(--ink-3); }
.nav-icon:hover { color: var(--ink); }
.nav-icon svg { width: 100%; height: 100%; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 18px; border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-big { font-size: 13px; padding: 15px 24px; }
.btn-mint { background: var(--accent); color: var(--accent-ink); }
.btn-mint:hover { background: #ff8a26; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-shimmer { background: var(--accent); color: var(--accent-ink); cursor: default; }

/* ── ticker tape ── */
.tape {
  overflow: hidden; border-bottom: 1px solid var(--line);
  background: #0a0a09; padding: 9px 0;
  font-family: var(--mono); font-size: 12.5px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.tape-track { display: flex; gap: 34px; width: max-content; animation: tape 60s linear infinite; }
@keyframes tape { to { transform: translateX(-50%); } }
.tape-item { display: inline-flex; gap: 8px; align-items: baseline; white-space: nowrap; }
.tape-sym { color: var(--ink); font-weight: 600; }
.tape-price { color: var(--ink-2); }
.up { color: var(--green); }
.down { color: var(--red); }
.tape-soon { color: var(--accent); }

/* ── hero ── */
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
  align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 88px 28px 64px;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: center top;
}
.eyebrow {
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
  letter-spacing: 0.16em; text-transform: uppercase; flex-wrap: wrap;
}
.dot { width: 7px; height: 7px; background: var(--accent); }
.dot-gold { background: var(--accent); }
.dot-green { background: var(--green); }
.hero h1 { font-size: clamp(46px, 7vw, 88px); font-weight: 800; margin-bottom: 24px; }
.hl { color: var(--accent); }
.hl-gold { color: var(--accent); }
.hl-green { color: var(--green); }
.lede { color: var(--ink-2); font-size: 17px; max-width: 480px; margin-bottom: 34px; }
.lede em { color: var(--ink); }
.byline {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  color: var(--ink-3); margin: -16px 0 30px;
}
.byline a { color: var(--ink); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
.byline a:hover { color: var(--accent); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-note { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); }

/* deck of NFT cards */
.hero-art { display: flex; justify-content: center; }
.deck { position: relative; width: min(340px, 80vw); aspect-ratio: 1; }
.deck-card { position: absolute; width: 82%; border: 1px solid var(--line); }
.deck-back2 { top: 0; right: -6%; transform: rotate(5deg); opacity: 0.35; }
.deck-back1 { top: 4%; left: -8%; transform: rotate(-4deg); opacity: 0.55; }
.deck-front {
  position: absolute; inset: 8% 4% auto; width: 92%;
  background: var(--surface); border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.deck-front img { display: block; width: 100%; transition: opacity 0.35s ease; }
.deck-plate {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
}
.plate-status { color: var(--accent); }

/* ── stats strip ── */
.stats {
  display: grid; grid-template-columns: repeat(5, 1fr);
  max-width: 1200px; margin: 0 auto 72px;
  border: 1px solid var(--line);
}
.stat { padding: 22px 12px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat-n { display: block; font-family: var(--display); font-weight: 700; font-size: 30px; }
.stat-l {
  font-family: var(--mono); font-size: 10.5px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.1em;
}
@media (min-width: 1001px) { .stats { margin-left: auto; margin-right: auto; width: calc(100% - 56px); } }

/* ── nft wall ── */
.wall {
  padding: 34px 0 84px; border-top: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.wall-track {
  display: flex; gap: 14px; width: max-content;
  animation: tape 70s linear infinite;
  padding: 8px 0 14px;
}
.wall-track.rev { animation-direction: reverse; padding-bottom: 44px; }
.wall-nft {
  width: 148px; border: 1px solid var(--line);
  position: relative; overflow: hidden; flex-shrink: 0;
  transition: border-color 0.15s ease;
}
.wall-nft:hover { border-color: var(--accent); }
.wall-nft img { display: block; width: 100%; }
.wall-nft span {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-family: var(--mono); font-size: 10px; text-align: center;
  padding: 4px 0; background: rgba(13, 13, 12, 0.82);
}
.wall-caption { max-width: 760px; margin: 0 auto; padding: 0 28px; text-align: center; }
.wall-caption .eyebrow { justify-content: center; }
.wall-caption h2 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 16px; }
.body-copy { color: var(--ink-2); font-size: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 26px; }
.chip {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em;
  padding: 6px 12px; border: 1px solid var(--line); color: var(--ink-2);
}
.chip b { color: var(--accent); font-weight: 500; }

/* ── mint desk ── */
.mint-gif {
  display: block; width: 100%; border: 1px solid var(--line); border-radius: 3px;
  margin-bottom: 20px; image-rendering: auto;
}
.mint-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px; }
.mint-info { display: flex; flex-direction: column; }
.supply-bar {
  height: 10px; background: var(--surface-2); border: 1px solid var(--line);
  margin-top: 18px; overflow: hidden;
}
.supply-fill {
  height: 100%; width: 0%; transition: width 0.6s ease;
  background: repeating-linear-gradient(45deg, var(--accent) 0 8px, #d95f00 8px 16px);
  background-size: 22.6px 22.6px;
  animation: stripes 1.4s linear infinite;
}
@keyframes stripes { to { background-position: 22.6px 0; } }
.mint-box {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  justify-content: center; text-align: center;
  border-color: rgba(255, 115, 0, 0.45);
  box-shadow: 0 0 34px rgba(255, 115, 0, 0.07), inset 0 0 24px rgba(255, 115, 0, 0.03);
}
.qty-row { display: flex; align-items: center; gap: 20px; }
.qty-btn {
  width: 44px; height: 44px; font-family: var(--mono); font-size: 20px;
  background: var(--surface-2); color: var(--ink); border: 1px solid var(--line);
  border-radius: 2px; cursor: pointer;
}
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-num { font-family: var(--display); font-weight: 700; font-size: 30px; min-width: 44px; }
.mint-cta { width: 100%; }
.mint-cta:disabled { opacity: 0.55; cursor: not-allowed; }
.mint-msg { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); max-width: 320px; }
.mint-msg a { color: var(--accent); }

/* ── most wanted ── */
.wanted-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wanted-card {
  display: flex; gap: 16px; align-items: stretch;
  background: var(--surface); border: 1px solid var(--line); border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.wanted-card:hover { border-color: var(--accent); }
.wanted-card img { width: 116px; height: 116px; align-self: center; margin-left: 14px; border: 1px solid var(--line); }
.wanted-info { padding: 18px 16px 16px 0; min-width: 0; }
.wanted-rank { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; color: var(--accent); }
.wanted-info h3 { font-size: 17px; margin: 6px 0 6px; }
.wanted-trait { font-size: 13.5px; color: var(--ink-2); }
.wanted-street { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin-top: 6px; }

/* ── market status bar ── */
.mkt-bar {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-3);
}
.mkt-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-3); }
.mkt-dot[data-state="live"] { background: var(--green); }
.mkt-dot[data-state="demo"] { background: var(--accent); }

/* ── contracts ── */
.contracts-ticks { margin-top: 22px; max-width: 640px; }

/* ── faq ── */
.faq-list { max-width: 820px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 20px 4px;
  font-family: var(--display); font-weight: 700; font-size: 18px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--accent); }
.faq-x { font-family: var(--mono); font-weight: 400; color: var(--ink-3); transition: transform 0.2s ease; }
.faq-list details[open] .faq-x { transform: rotate(45deg); color: var(--accent); }
.faq-list details p { padding: 0 4px 22px; color: var(--ink-2); font-size: 15px; max-width: 700px; }

/* ── generic sections ── */
.section { max-width: 1200px; margin: 0 auto; padding: 92px 28px; border-top: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 50px; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 18px; }
.badge {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  padding: 3px 8px; vertical-align: middle;
}
.badge-draft { color: var(--accent); border: 1px solid var(--accent); background: var(--accent-soft); }
.badge-road { color: var(--green); border: 1px solid var(--green); background: var(--green-soft); }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: 3px; padding: 26px; }
.card h3 { font-size: 19px; margin-bottom: 16px; }
.card-head-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.card-head-row h3 { margin-bottom: 12px; }

/* ── token section ── */
.token-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 640px; }
.ca-box {
  width: 100%; text-align: left; cursor: pointer;
  background: var(--surface-2); border: 1px dashed var(--ink-3); border-radius: 2px;
  padding: 15px 17px; color: inherit; font-family: var(--mono);
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color 0.15s ease;
}
.ca-box:hover { border-color: var(--accent); }
.ca-mono { font-size: 13.5px; font-weight: 600; color: var(--accent); overflow-wrap: anywhere; }
.ca-hint { font-size: 11.5px; color: var(--ink-3); }
.ca-buy { margin-top: 14px; width: 100%; }
.tick-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.tick-list li { padding-left: 24px; position: relative; color: var(--ink-2); font-size: 14.5px; }
.tick-list li::before {
  content: "→"; position: absolute; left: 0; color: var(--accent);
  font-family: var(--mono);
}

/* allocation bar (single composition bar, 2px gaps, legend carries values) */
.alloc-bar { display: flex; gap: 2px; height: 32px; margin: 14px 0 18px; }
.seg { display: flex; align-items: center; justify-content: center; min-width: 0; }
.seg b { font-family: var(--mono); font-size: 11.5px; font-weight: 600; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.alloc-legend {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px;
  font-size: 14px; color: var(--ink-2);
}
.alloc-legend li { display: flex; align-items: center; gap: 10px; }
.alloc-legend i { width: 11px; height: 11px; flex-shrink: 0; }
.alloc-legend b { margin-left: auto; color: var(--ink); font-weight: 600; font-family: var(--mono); font-size: 13px; }

/* ── stocks section ── */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: 3px; padding: 24px; }
.step-n { font-family: var(--mono); font-size: 12px; color: var(--green); letter-spacing: 0.1em; }
.step h3 { font-size: 18px; margin: 12px 0 8px; }
.step p { font-size: 14.5px; color: var(--ink-2); }

.stock-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stock-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 3px;
  padding: 18px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.15s ease;
}
.stock-card:hover { border-color: var(--ink-3); }
.stock-top { display: flex; align-items: center; gap: 12px; }
.stock-logo {
  width: 38px; height: 38px; border-radius: 2px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--line);
}
.stock-logo svg { width: 20px; height: 20px; }
.stock-logo .txt-badge { font-family: var(--mono); font-weight: 600; font-size: 11px; letter-spacing: 0.02em; }
.stock-names { min-width: 0; }
.stock-sym { font-family: var(--mono); font-weight: 600; font-size: 14.5px; }
.stock-name { font-size: 12px; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stock-quote { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; font-family: var(--mono); }
.stock-price { font-size: 17px; font-weight: 600; }
.stock-chg { font-size: 12.5px; font-weight: 600; }
.spark { width: 100%; height: 32px; }
.spark polyline { fill: none; stroke-width: 1.5; }
.fineprint { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); margin-top: 26px; max-width: 780px; }

/* ── roadmap ── */
.phases { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.phase { background: var(--surface); border: 1px solid var(--line); border-radius: 3px; padding: 24px; }
.phase.is-next { border-color: var(--accent); }
.phase-tag { font-family: var(--mono); font-size: 10px; color: var(--ink-3); letter-spacing: 0.12em; }
.phase.is-next .phase-tag { color: var(--accent); }
.phase h3 { font-size: 18px; margin: 14px 0 8px; }
.phase p { font-size: 14.5px; color: var(--ink-2); }

/* ── network ── */
.net-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 20px; }
.net-rows { display: flex; flex-direction: column; }
.net-row {
  display: flex; justify-content: space-between; gap: 18px; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px;
}
.net-row span { font-family: var(--mono); font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }
.net-row b { font-family: var(--mono); font-weight: 600; font-size: 13.5px; text-align: right; overflow-wrap: anywhere; }
.net-row a { color: var(--accent); }
#add-chain { margin-top: 18px; align-self: flex-start; }
.net-badges { display: flex; align-items: center; justify-content: space-around; gap: 12px; }
.net-badge {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  font-family: var(--mono); font-size: 11px; color: var(--ink-2);
}
.net-badge svg { width: 36px; height: 36px; }

/* ── footer ── */
.footer { border-top: 1px solid var(--line); background: #0a0a09; padding: 46px 28px 30px; }
.footer-top {
  max-width: 1200px; margin: 0 auto 30px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-by { font-family: var(--mono); font-size: 12px; color: var(--ink-3); }
.footer-by a { color: var(--ink-2); border-bottom: 1px solid var(--accent); }
.footer-by a:hover { color: var(--accent); }
.footer-links {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; color: var(--ink-2);
}
.footer-links a:hover { color: var(--accent); }
.footer-legal { max-width: 1200px; margin: 0 auto; font-size: 12px; color: var(--ink-3); }
.footer-legal p { margin-bottom: 14px; }
.footer-line { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; }
.online-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; }

/* ── toast ── */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(90px);
  background: var(--surface-2); border: 1px solid var(--accent); color: var(--ink);
  padding: 12px 20px; border-radius: 2px;
  font-family: var(--mono); font-size: 12.5px; z-index: 200;
  transition: transform 0.25s ease; max-width: 90vw; text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── responsive ── */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .wanted-grid { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; padding-top: 56px; text-align: center; }
  .hero .eyebrow { justify-content: center; }
  .lede { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .stats { grid-template-columns: repeat(3, 1fr); margin-inline: 28px; }
  .stat:nth-child(4) { border-left: none; }
  .stat:nth-child(n+4) { border-top: 1px solid var(--line); }
  .token-grid, .net-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stock-grid { grid-template-columns: repeat(2, 1fr); }
  .phases { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(4) { border-left: 1px solid var(--line); }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .stock-grid { grid-template-columns: 1fr; }
  .phases { grid-template-columns: 1fr; }
  .alloc-legend { grid-template-columns: 1fr; }
}

/* ── final polish ── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-3); }
.card, .stock-card, .step, .phase, .wanted-card { transition: border-color 0.15s ease, transform 0.15s ease; }
.stock-card:hover, .wanted-card:hover, .phase:hover { transform: translateY(-2px); }
.deck { transition: transform 0.3s ease; }
.deck:hover { transform: scale(1.015) rotate(-0.4deg); }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #12b862;
  display: inline-block; margin-right: 7px;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }
h1, h2 { text-wrap: balance; }
.body-copy, .lede { text-wrap: pretty; }

/* ── reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .tape-track, .wall-track, .supply-fill, .live-dot { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
