/* NIUER (牛二): the second bull.
   Van-white stage, Orange Bull accent, sharp corners, deadpan underdog energy.
   Brand: #FF6B35 / #FF9F6B / #F5F5F0 / #E85D04 / #1A1A1A / #FFD93D (film link only).
   Fonts: Archivo (display, width axis), Geist Mono (facts), Noto Sans SC subset (Chinese wordmark). */

:root {
  --bg: #F5F5F0;
  --raised: #FFFFFF;
  --line: #E3E0D5;
  --text: #1A1A1A;
  --muted: #6E6A60;
  --accent: #FF6B35;
  --accent-deep: #E85D04;
  --peach: #FF9F6B;
  --film: #FFD93D;
  --on-accent: #1A1A1A;

  --f-sans: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
  --f-cjk: 'Noto Sans SC', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Source Han Sans SC', sans-serif;

  --wrap: 1400px;
  --gutter: clamp(20px, 5vw, 72px);
  --nav-h: 64px;
  --section-y: clamp(88px, 12vw, 160px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-nav: 50;
  --z-toast: 60;
  --z-stampede: 55;
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; background: var(--bg); scroll-padding-top: calc(var(--nav-h) + 16px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, p, ol, ul, figure, fieldset { margin: 0; padding: 0; }
ol, ul { list-style: none; }
fieldset { border: 0; min-width: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
::selection { background: var(--accent); color: var(--on-accent); }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.mono { font-family: var(--f-mono); font-variant-numeric: tabular-nums; letter-spacing: 0; }
.cjk { font-family: var(--f-cjk); font-weight: 900; }
.ic { width: 1.1em; height: 1.1em; flex: none; fill: currentColor; }
.ic--lg { width: 1.6em; height: 1.6em; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; padding: 8px 12px; background: var(--accent); color: var(--on-accent); }
.skip:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Type */
.h2 {
  font-stretch: 125%;
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.lead { color: var(--muted); max-width: 60ch; margin-top: -24px; margin-bottom: 40px; }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.dot { width: 8px; height: 8px; background: var(--accent); flex: none; }
@media (prefers-reduced-motion: no-preference) {
  .dot { animation: pulse 2.4s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
}

/* Buttons: sharp, one accent */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 22px;
  font-weight: 600; font-size: 16px; letter-spacing: -0.005em; white-space: nowrap;
  border: 1px solid transparent; border-radius: 0;
  transition: transform .18s var(--ease-out), background-color .18s, color .18s, border-color .18s;
}
.btn:active { transform: translateY(1px); }
.btn--sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn--primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn--primary:hover { background: var(--peach); }
.btn--primary:active { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--muted); }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 34px; padding: 0 12px;
  border: 1px solid var(--line); font-size: 13px; color: var(--text);
  transition: border-color .18s, background-color .18s;
}
.chip:hover { border-color: var(--muted); }
.chip[aria-pressed="true"] { background: var(--raised); border-color: var(--muted); }

/* Nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  height: var(--nav-h);
  background: transparent;
  transition: background-color .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(245, 245, 240, 0.9); border-bottom-color: var(--line); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.nav.is-open { background: var(--bg); border-bottom-color: var(--line); }
.nav__in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: baseline; gap: 10px; }
.brand__cjk { font-family: var(--f-cjk); font-weight: 900; font-size: 22px; color: var(--accent-deep); line-height: 1; }
.brand__latin { font-weight: 500; font-size: 15px; letter-spacing: 0.08em; }
.nav__links { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; }
.nav__links a { color: var(--muted); transition: color .18s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--line); }
.nav__toggle .ic { width: 22px; height: 22px; }
.sheet { display: none; }
@media (max-width: 1023px) {
  .nav__links { display: none; }
  .nav .btn--sm { height: 44px; }
  .nav__toggle { display: inline-flex; width: 44px; height: 44px; }
  .sheet[hidden] { display: none; }
  .sheet { display: block; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); }
  .sheet__links { display: flex; flex-direction: column; padding: 8px var(--gutter) 24px; }
  .sheet__links a { padding: 14px 0; border-top: 1px solid var(--line); font-size: 18px; font-weight: 500; }
  .sheet__links a:first-child { border-top: 0; }
}

/* Hero: the plinth */
.hero { position: relative; min-height: 100dvh; padding-top: calc(var(--nav-h) + 24px); padding-bottom: 96px; display: flex; align-items: center; overflow: hidden; }
.hero__light {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 55% at 68% 58%, rgba(255,159,107,0.22) 0%, rgba(255,159,107,0) 70%);
  opacity: 0;
}
.no-js .hero__light, .no-motion .hero__light { opacity: 1; }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) min(640px, 52%, calc(100dvh - 250px)); column-gap: 40px; align-items: end; }
.hero__copy { grid-column: 1; padding-bottom: clamp(24px, 6vh, 96px); align-self: center; }
.hero__title {
  font-stretch: 125%; font-weight: 800;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.96; letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line__in { display: inline-block; }
.js .line__in { transform: translateY(110%); }
.no-motion .line__in { transform: none; }
.hero__sub { font-size: 19px; color: var(--muted); max-width: 34ch; margin-bottom: 36px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.js .hero__sub, .js .hero__cta, .js .plinth__caption, .js .nav { opacity: 0; }
.no-motion .hero__sub, .no-motion .hero__cta, .no-motion .plinth__caption, .no-motion .nav { opacity: 1; }
.ca-copy .ca-copy__text { font-size: 15px; }
.ca-copy.is-copied { border-color: var(--accent); }

.plinth { grid-column: 2; display: flex; flex-direction: column; align-items: flex-end; }
.plinth__stage { position: relative; width: 100%; aspect-ratio: 1 / 1; }
.js .plinth__stage { opacity: 0; }
.no-motion .plinth__stage { opacity: 1; }
.plinth__stage::after { content: ''; position: absolute; left: -100vw; right: -100vw; bottom: 0; height: 1px; background: var(--line); }
.plinth__img { position: relative; z-index: 2; width: 100%; height: 100%; image-rendering: pixelated; image-rendering: crisp-edges; user-select: none; -webkit-user-drag: none; cursor: pointer; }
.plinth__reflection {
  position: absolute; left: 0; top: 100%; width: 100%; height: 100%; z-index: 1;
  transform: scaleY(-1);
  image-rendering: pixelated;
  opacity: 0.16;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 30%);
  mask-image: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 30%);
  pointer-events: none;
}
.truck { position: absolute; bottom: 0; left: 100%; width: 42%; z-index: 3; transform: translateX(60vw); pointer-events: none; }
.truck img { width: 100%; height: auto; image-rendering: pixelated; filter: drop-shadow(0 12px 24px rgba(26,26,26,0.28)); }
.plinth__caption { margin-top: 24%; font-size: 12.5px; color: var(--muted); text-align: right; }

@media (max-width: 1023px) {
  .hero { align-items: start; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 64px; }
  .hero__grid { grid-template-columns: 1fr; row-gap: 40px; }
  .hero__copy { grid-column: 1; padding-bottom: 0; }
  .plinth { grid-column: 1; align-items: stretch; }
  .plinth__stage { width: min(88vw, 640px); margin-inline: auto; }
  .plinth__reflection { display: none; }
  .plinth__caption { margin-top: 12px; text-align: center; }
  .truck { width: 36%; }
}

/* Live band */
.live { background: var(--raised); border-block: 1px solid var(--line); padding: 40px 0 36px; }
.live__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.live__link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); transition: color .18s; }
.live__link:hover { color: var(--text); }
.live__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 4px 24px 8px 0; border-left: 1px solid var(--line); padding-left: 24px; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__label { font-size: 13px; color: var(--muted); }
.stat__value { font-size: clamp(26px, 2.6vw, 40px); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; min-height: 1.1em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stat__delta { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 4px; min-height: 1.4em; }
.skel { display: block; width: 60%; height: 0.9em; margin-top: 0.1em; background: linear-gradient(90deg, var(--line) 0%, #F0EEE6 50%, var(--line) 100%); background-size: 200% 100%; }
@media (prefers-reduced-motion: no-preference) { .skel { animation: shimmer 1.4s linear infinite; } @keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } } }
.live__note { margin-top: 20px; font-size: 12px; color: var(--muted); min-height: 1.4em; }
@media (max-width: 767px) {
  .live__grid { grid-template-columns: 1fr 1fr; row-gap: 24px; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
}

/* Story: box office vs ape office */
.story { padding: var(--section-y) 0; }
.story__grid { display: grid; grid-template-columns: 7fr 5fr; column-gap: 48px; align-items: start; }
.beats { display: flex; flex-direction: column; }
.beat { min-height: 52vh; display: flex; align-items: center; padding-right: 8%; }
.beat p { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.3; font-weight: 500; letter-spacing: -0.01em; color: var(--muted); max-width: 26ch; transition: color .5s; }
.beat.is-active p { color: var(--text); }
.odometer { position: sticky; top: 28vh; text-align: right; }
.odometer__num {
  font-stretch: 125%; font-weight: 800; font-size: clamp(64px, 9vw, 160px);
  line-height: 0.95; letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
  white-space: nowrap; overflow: hidden; text-overflow: clip;
  transition: color .4s;
}
.odometer.is-live .odometer__num { color: var(--accent-deep); }
.odometer__unit { margin-top: 12px; font-size: 13px; color: var(--muted); }
@media (max-width: 767px) {
  .story__grid { grid-template-columns: 1fr; }
  .odometer { order: -1; top: var(--nav-h); z-index: 5; background: var(--bg); text-align: left; padding: 14px 0 12px; border-bottom: 1px solid var(--line); }
  .odometer__num { font-size: 44px; }
  .odometer__unit { margin-top: 4px; }
  .beat { min-height: 40vh; padding-right: 0; }
  .beat p { font-size: 22px; }
}

/* Two calves: the split the scroll wins */
.split { padding: var(--section-y) 0 0; }
.split__stage { position: relative; height: min(76vh, 720px); min-height: 460px; overflow: hidden; border-block: 1px solid var(--line); user-select: none; }
.pane { position: absolute; top: 0; bottom: 0; overflow: hidden; }
.pane--left { left: 0; width: var(--split); background: var(--bg); }
.pane--right { left: var(--split); right: 0; background: var(--accent); color: var(--on-accent); }
.pane__in { position: absolute; top: 50%; transform: translateY(-50%); padding: 0 40px; width: max-content; max-width: 90%; }
.pane--left .pane__in { right: 0; text-align: right; }
.pane--right .pane__in { left: 0; }
.pane__name { font-stretch: 125%; font-weight: 800; font-size: clamp(28px, 3.6vw, 52px); line-height: 1; letter-spacing: -0.02em; }
.pane__name .cjk { font-size: 1.05em; vertical-align: -0.02em; }
.pane--left .pane__name { color: var(--muted); }
.pane__quote { margin-top: 12px; font-size: clamp(18px, 1.8vw, 24px); }
.pane--left .pane__quote { color: var(--muted); }
.pane__meta { margin-top: 18px; font-size: 12.5px; opacity: 0.8; }
.pane__calf { position: absolute; right: 4%; bottom: 0; width: clamp(180px, 26vw, 360px); }
.pane__calf img { image-rendering: pixelated; filter: drop-shadow(0 16px 28px rgba(26,26,26,0.3)); }
.divider {
  position: absolute; top: 0; bottom: 0; left: var(--split); width: 2px; margin-left: -1px;
  background: var(--text); cursor: ew-resize; z-index: 3; touch-action: none;
}
.divider::before { content: ''; position: absolute; inset: 0 -14px; }
.divider__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 22px; height: 44px; background: var(--text); }
.divider__grip::before, .divider__grip::after { content: ''; position: absolute; top: 14px; bottom: 14px; width: 1px; background: var(--bg); left: 8px; }
.divider__grip::after { left: 13px; }
.split__line {
  font-stretch: 125%; font-weight: 800; font-size: clamp(30px, 4vw, 56px); letter-spacing: -0.02em; line-height: 1;
  padding: clamp(40px, 6vw, 80px) 0 var(--section-y);
}
@media (max-width: 767px) {
  .split__stage { height: auto; min-height: 0; }
  .pane { position: relative; height: auto; width: auto !important; left: auto !important; right: auto !important; padding: 44px 0; }
  .pane__in { position: static; transform: none; width: auto; max-width: none; padding: 0 var(--gutter); }
  .pane--left .pane__in { text-align: left; }
  .pane--right { padding-bottom: 0; }
  .pane__calf { position: static; width: 60%; margin: 24px 0 0 auto; }
  .divider { display: none; }
}

/* Manifesto: the underdog statement */
.manifesto { padding: var(--section-y) 0; border-top: 1px solid var(--line); background: var(--raised); }
.manifesto__kicker { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.manifesto__title { display: flex; flex-direction: column; gap: 6px; margin-bottom: 36px; }
.manifesto__l {
  font-stretch: 125%; font-weight: 800;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.02; letter-spacing: -0.02em;
}
.manifesto__l--accent { color: var(--accent-deep); padding-left: clamp(24px, 8vw, 140px); }
.manifesto__body { color: var(--muted); max-width: 62ch; font-size: 18px; }

/* How to buy: ledger rows */
.buy { padding: var(--section-y) 0; }
.ledger { border-top: 1px solid var(--line); }
.row { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.row__lead { display: flex; align-items: flex-start; gap: 20px; min-width: 0; }
.row__lead > .ic { margin-top: 4px; color: var(--muted); }
.row__title { font-stretch: 125%; font-weight: 800; font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -0.02em; line-height: 1.05; transition: transform .35s var(--ease-out); }
.row:hover .row__title { transform: translateX(6px); }
.row__note { margin-top: 8px; font-size: 12.5px; color: var(--muted); max-width: 60ch; }
.row__actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; flex: none; }
.buy__ca { display: flex; align-items: center; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
.buy__ca-label { font-size: 13px; color: var(--muted); }
.ca-full { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; padding: 12px 14px; border: 1px solid var(--line); word-break: break-all; text-align: left; transition: border-color .18s; }
.ca-full:hover { border-color: var(--muted); }
.ca-full.is-copied { border-color: var(--accent); }
@media (max-width: 767px) {
  .row { flex-direction: column; align-items: stretch; gap: 16px; }
  .row__actions { justify-content: flex-start; }
}

/* Meme studio */
.studio { padding: var(--section-y) 0; border-top: 1px solid var(--line); }
.studio__grid { display: grid; grid-template-columns: minmax(0, 560px) minmax(0, 1fr); gap: 48px; align-items: start; }
.studio__canvas { background: var(--raised); border: 1px solid var(--line); padding: 16px; }
#memeCanvas { width: 100%; height: auto; aspect-ratio: 1 / 1; image-rendering: pixelated; }
.studio__status { margin-top: 10px; font-size: 12px; color: var(--muted); min-height: 1.4em; }
.studio__form { display: flex; flex-direction: column; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--row { flex-direction: row; align-items: center; gap: 16px; }
.field__label { font-size: 13px; font-weight: 500; color: var(--text); }
.field__input {
  height: 52px; padding: 0 14px; background: var(--raised); border: 1px solid var(--line); color: var(--text);
  font: inherit; font-size: 17px; border-radius: 0; width: 100%;
}
.field__input::placeholder { color: var(--muted); }
.field__input:focus { outline: 2px solid var(--accent); outline-offset: 0; border-color: var(--accent); }
.field__help { font-size: 12px; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.range { -webkit-appearance: none; appearance: none; width: 220px; height: 2px; background: var(--line); outline: none; }
.range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; background: var(--text); border: 0; cursor: pointer; }
.range::-moz-range-thumb { width: 18px; height: 18px; background: var(--text); border: 0; border-radius: 0; cursor: pointer; }
.range:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
.seg { position: relative; }
.seg input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.seg span { display: inline-flex; align-items: center; height: 36px; padding: 0 14px; border: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.seg input:checked + span { color: var(--text); border-color: var(--text); }
.seg input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.studio__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
@media (max-width: 1023px) { .studio__grid { grid-template-columns: 1fr; } }

/* Roadmap: the route */
.route { padding: var(--section-y) 0; border-top: 1px solid var(--line); overflow: hidden; }
.road { position: relative; padding-top: 24px; }
.stops { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto 1px auto; column-gap: 32px; }
.stops::before { content: ''; grid-row: 2; grid-column: 1 / -1; height: 1px; background: var(--line); }
.stop { position: relative; }
.stop:nth-child(1) { grid-column: 1; } .stop:nth-child(2) { grid-column: 2; } .stop:nth-child(3) { grid-column: 3; } .stop:nth-child(4) { grid-column: 4; }
.stop:nth-child(odd) { grid-row: 1; align-self: end; padding-bottom: 56px; }
.stop:nth-child(even) { grid-row: 3; padding-top: 56px; }
.stop__mark { position: absolute; left: 0; width: 14px; height: 14px; border: 2px solid var(--muted); background: var(--bg); }
.stop:nth-child(odd) .stop__mark { bottom: -7px; }
.stop:nth-child(even) .stop__mark { top: -7px; }
.stop--done .stop__mark { background: var(--accent); border-color: var(--accent); }
.stop--film .stop__mark { background: var(--film); border-color: var(--film); }
.stop__title { font-stretch: 125%; font-weight: 800; font-size: 24px; letter-spacing: -0.02em; line-height: 1.1; }
.stop__text { margin-top: 10px; color: var(--muted); font-size: 15px; max-width: 30ch; }
.stop__meta { margin-top: 12px; font-size: 12.5px; color: var(--muted); }
.stop--done .stop__meta { color: var(--accent-deep); }
.road__calf { position: absolute; left: 0; top: 0; width: 84px; height: auto; image-rendering: pixelated; transform: translate(-20%, -58%); pointer-events: none; z-index: 2; }
@media (max-width: 767px) {
  .stops { grid-template-columns: 1fr; grid-template-rows: none; row-gap: 40px; padding-left: 40px; }
  .stop:nth-child(n) { grid-column: 1; grid-row: auto; padding: 0; align-self: auto; }
  .stop__mark { left: -40px; top: 6px !important; bottom: auto !important; }
  .stops::before { position: absolute; top: 0; bottom: 0; left: 6px; width: 1px; height: auto; grid-row: auto; grid-column: auto; }
  .road { padding-left: 4px; }
  .road__calf { width: 54px; opacity: 0.9; transform: translate(-64%, -50%); }
}

/* Coverage: the only marquee */
.coverage { padding: 56px 0 var(--section-y); border-top: 1px solid var(--line); }
.coverage .eyebrow { margin-bottom: 28px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 72px; width: max-content; padding-right: 72px; }
@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: marquee 40s linear infinite; }
  .marquee:hover .marquee__track { animation-play-state: paused; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .marquee__track { flex-wrap: wrap; width: auto; gap: 40px; padding: 0 var(--gutter); }
  .marquee__track .is-clone { display: none; }
}
.logo { color: var(--text); opacity: 0.6; transition: opacity .18s; display: inline-flex; }
.logo:hover { opacity: 1; }
.logo__svg { width: 36px; height: 36px; fill: currentColor; }
.coverage__more { margin-top: 28px; }
.more summary { cursor: pointer; font-size: 12.5px; color: var(--muted); list-style: none; display: inline-block; border-bottom: 1px solid var(--line); }
.more summary::-webkit-details-marker { display: none; }
.more[open] summary { color: var(--text); }
.more__list { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 14px; font-size: 13px; }
.more__list a { color: var(--muted); border-bottom: 1px solid transparent; }
.more__list a:hover { color: var(--text); border-bottom-color: var(--muted); }

/* Closing: the truckload */
.closing { position: relative; min-height: 88dvh; display: flex; align-items: flex-end; overflow: hidden; border-top: 1px solid var(--line); color: #F5F5F0; }
.closing__bg { position: absolute; inset: -4%; background: url('assets/niuer.webp') center 30% / cover no-repeat; image-rendering: pixelated; transform: scale(1.06); transform-origin: center; }
.closing__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,0.96) 0%, rgba(26,26,26,0.82) 32%, rgba(26,26,26,0.2) 70%, rgba(26,26,26,0.12) 100%); }
.closing__in { position: relative; padding: 160px 0 96px; }
.closing__cjk { font-size: clamp(28px, 4.2vw, 56px); color: var(--peach); line-height: 1.1; margin-bottom: 8px; }
.closing__title { font-stretch: 125%; font-weight: 800; font-size: clamp(40px, 6.4vw, 96px); letter-spacing: -0.03em; line-height: 0.95; max-width: 12ch; margin-bottom: 16px; }
.closing__sub { color: rgba(245,245,240,0.82); font-size: 18px; margin-bottom: 36px; }
.closing__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.closing .btn--ghost { backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); background: rgba(26,26,26,0.4); color: #F5F5F0; border-color: rgba(245,245,240,0.35); }
.closing .btn--ghost:hover { border-color: rgba(245,245,240,0.7); }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 56px 0 48px; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
.footer__disc { margin-top: 20px; color: var(--muted); font-size: 14px; max-width: 58ch; }
.footer__src { margin-top: 12px; font-size: 12px; color: var(--muted); }
.footer__links { display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: 14px; font-weight: 500; margin-bottom: 20px; }
.footer__links a { color: var(--muted); }
.footer__links a:hover { color: var(--text); }
@media (max-width: 767px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* Toast + stampede */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: var(--z-toast);
  transform: translate(-50%, 16px); opacity: 0; pointer-events: none;
  padding: 12px 16px; font-size: 13px;
  background: var(--raised); border: 1px solid var(--line); color: var(--text);
  transition: opacity .25s, transform .3s var(--ease-out);
  max-width: calc(100vw - 32px); text-align: center;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }
.stampede { position: fixed; left: 0; right: 0; bottom: 0; height: 160px; z-index: var(--z-stampede); pointer-events: none; overflow: visible; }
.stampede img { position: absolute; bottom: 8px; left: 0; width: 72px; height: auto; image-rendering: pixelated; transform: translateX(-120px); }
.stampede__line { position: absolute; left: 50%; bottom: 60px; transform: translateX(-50%); font-family: var(--f-cjk); font-weight: 900; font-size: clamp(28px, 6vw, 64px); color: var(--text); text-shadow: 0 2px 0 #1A1A1A, 0 0 18px rgba(26,26,26,0.55); opacity: 0; white-space: nowrap; }

/* Scroll reveals */
.js [data-reveal] { opacity: 0; transform: translateY(18px); }
.js [data-reveal].is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease-out), transform .8s var(--ease-out); }
.no-motion [data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .js .line__in, .js .hero__sub, .js .hero__cta, .js .plinth__caption, .js .nav, .js .plinth__stage, .js .hero__light { opacity: 1; transform: none; }
  .row__title, .btn, .chip { transition: none; }
}
