:root {
  --ink: #121212;
  --paper: #e8e5dc;
  --paper-2: #d7d3c9;
  --red: #b63131;
  --ice: #dfe9ed;
  --blue: #6e8994;
  --muted: #77736b;
  --line: rgba(18,18,18,.23);
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
body.colder { filter: saturate(.74) contrast(1.05); }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--paper); background: var(--red); }

#snow { position: fixed; inset: 0; z-index: 70; width: 100%; height: 100%; pointer-events: none; mix-blend-mode: screen; }
.paper-noise {
  position: fixed; inset: 0; z-index: 80; pointer-events: none; opacity: .17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.snow-flash { position: fixed; inset: 0; z-index: 69; pointer-events: none; background: white; opacity: 0; transition: opacity .25s ease; }
.snow-flash.on { opacity: .16; }

.weather-bar { position: relative; z-index: 10; overflow: hidden; height: 34px; color: var(--paper); background: var(--red); border-bottom: 2px solid var(--ink); font: 900 10px/34px Arial, sans-serif; letter-spacing: .14em; white-space: nowrap; }
.weather-track { display: inline-flex; gap: 20px; min-width: max-content; animation: crawl 24s linear infinite; }
.weather-track i { font-style: normal; opacity: .45; }
@keyframes crawl { to { transform: translateX(-50%); } }

.site-header { position: sticky; top: 0; z-index: 60; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 78px; padding: 12px clamp(18px, 4vw, 62px); background: rgba(232,229,220,.91); border-bottom: 2px solid var(--ink); backdrop-filter: blur(12px); }
.logo { display: flex; align-items: center; gap: 12px; width: max-content; text-decoration: none; font-size: 17px; font-weight: 1000; letter-spacing: -.04em; }
.logo-mark { display: grid; place-items: center; width: 42px; height: 42px; color: var(--paper); background: var(--ink); border-radius: 50%; font-size: 12px; letter-spacing: -.06em; transform: rotate(-8deg); }
.logo small { display: block; margin-top: 3px; color: var(--red); font: 900 7px/1 monospace; letter-spacing: .16em; }
.site-header nav { display: flex; gap: 8px; }
.site-header nav a { padding: 10px 13px; text-decoration: none; border: 1px solid transparent; font: 900 10px/1 monospace; letter-spacing: .13em; }
.site-header nav a:hover { border-color: var(--ink); background: var(--paper-2); }
.cold-button { justify-self: end; padding: 13px 16px; color: var(--paper); background: var(--ink); border: 0; cursor: pointer; font: 900 9px/1 monospace; letter-spacing: .12em; box-shadow: 4px 4px 0 var(--red); transition: transform .16s ease, box-shadow .16s ease; }
.cold-button:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--red); }

.hero { position: relative; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(390px,.9fr) 170px; gap: clamp(22px, 3vw, 50px); max-width: var(--max); min-height: 820px; margin: 0 auto; padding: clamp(55px, 7vw, 110px) clamp(20px, 4vw, 62px) 90px; border-inline: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, transparent 49.94%, rgba(18,18,18,.08) 50%, transparent 50.06%); background-size: 110px 100%; }
.hero-type { position: relative; z-index: 2; align-self: center; }
.issue-line { display: flex; flex-wrap: wrap; gap: 16px 28px; margin-bottom: 32px; padding-bottom: 13px; border-bottom: 1px solid var(--ink); font: 900 9px/1 monospace; letter-spacing: .13em; }
.issue-line span:last-child { margin-left: auto; }
.hero h1 { margin: 0; font-size: clamp(93px, 12.2vw, 190px); line-height: .67; letter-spacing: -.095em; text-transform: uppercase; }
.hero h1 span { display: block; }
.word-doom { position: relative; z-index: 1; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; transform: scaleX(1.04); transform-origin: left; }
.word-cat { position: relative; z-index: 0; margin-left: .35em; color: var(--red); font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 700; text-shadow: 4px 4px 0 var(--ink); }
.hero-deck { max-width: 690px; margin: 46px 0 0; padding-left: 24px; border-left: 7px solid var(--red); font: 700 clamp(17px, 1.6vw, 23px)/1.35 Georgia, serif; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 55px; padding: 0 22px; border: 2px solid var(--ink); text-decoration: none; font: 1000 10px/1 monospace; letter-spacing: .12em; transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--ink); }
.btn-red { color: var(--paper); background: var(--red); }
.btn-paper { background: transparent; }
.contract-slip { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 13px; max-width: 690px; margin-top: 25px; padding: 12px 12px 12px 16px; border: 1px dashed var(--ink); background: rgba(255,255,255,.25); transform: rotate(-.25deg); }
.contract-slip span { font: 900 8px/1 monospace; letter-spacing: .12em; }
.contract-slip code { overflow: hidden; color: #4f4d48; text-overflow: ellipsis; white-space: nowrap; font: 700 10px/1.2 monospace; }
.contract-slip button { padding: 10px 13px; color: var(--paper); background: var(--ink); border: 0; cursor: pointer; font: 900 8px/1 monospace; letter-spacing: .13em; }

.hero-photo-wrap { position: relative; z-index: 3; align-self: center; min-height: 620px; display: grid; place-items: center; }
.photo-red-block { position: absolute; right: -17px; bottom: 42px; width: 88%; height: 82%; background: var(--red); transform: rotate(4deg); border: 2px solid var(--ink); }
.hero-photo { position: relative; z-index: 2; width: min(100%, 490px); margin: 0; padding: 15px 15px 42px; background: #f2f0e9; border: 2px solid var(--ink); box-shadow: 14px 16px 0 rgba(18,18,18,.2); transform: rotate(-2.2deg); transition: transform .25s ease; }
.hero-photo:hover { transform: rotate(0deg) translateY(-6px); }
.hero-photo img { display: block; width: 100%; aspect-ratio: .95; object-fit: cover; filter: grayscale(.35) contrast(1.05); border: 1px solid var(--ink); }
.photo-scan { position: absolute; top: 15px; left: 15px; right: 15px; height: 2px; background: rgba(255,255,255,.7); mix-blend-mode: screen; animation: scan 4s linear infinite; }
@keyframes scan { 0% { transform: translateY(0); opacity: 0; } 10% { opacity: .8; } 90% { opacity: .55; } 100% { transform: translateY(480px); opacity: 0; } }
.hero-photo figcaption { display: flex; justify-content: space-between; gap: 10px; margin-top: 13px; font: 900 8px/1 monospace; letter-spacing: .1em; }
.stamp { position: absolute; z-index: 4; display: grid; place-items: center; width: 105px; aspect-ratio: 1; color: var(--red); border: 5px double var(--red); border-radius: 50%; font: 1000 15px/.9 Impact, sans-serif; letter-spacing: .06em; text-align: center; transform: rotate(15deg); mix-blend-mode: multiply; }
.stamp-top { top: 7%; right: -8%; }
.polaroid-note { position: absolute; z-index: 5; left: -10%; bottom: 3%; padding: 16px 18px; color: var(--paper); background: var(--ink); border: 2px solid var(--paper); font: italic 700 16px/1.2 Georgia, serif; transform: rotate(3deg); box-shadow: 7px 7px 0 var(--red); }

.hero-aside { position: relative; z-index: 2; align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; gap: 18px; padding-block: 20px; }
.forecast-card { padding: 18px; color: var(--paper); background: var(--ink); border: 2px solid var(--ink); box-shadow: 7px 7px 0 var(--red); }
.label { font: 900 8px/1 monospace; letter-spacing: .13em; }
.forecast-card strong { display: block; margin: 12px 0 0; color: var(--ice); font: 1000 62px/.95 Impact, sans-serif; }
.forecast-card p { margin: 16px 0 0; color: #cac7be; font: 700 13px/1.45 monospace; }
.signal-card { display: flex; align-items: center; gap: 12px; padding: 14px; border: 2px solid var(--ink); background: rgba(255,255,255,.25); }
.signal-dot { width: 12px; height: 12px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 0 rgba(182,49,49,.55); animation: pulse 1.5s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(182,49,49,0); } 100% { box-shadow: 0 0 0 0 rgba(182,49,49,0); } }
.signal-card small, .signal-card b { display: block; font-family: monospace; }
.signal-card small { font-size: 7px; letter-spacing: .13em; }.signal-card b { margin-top: 2px; font-size: 13px; }

.manifesto-strip { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 4vw, 60px); min-height: 94px; padding: 20px; color: var(--paper); background: var(--ink); border-block: 2px solid var(--ink); text-align: center; }
.manifesto-strip p { margin: 0; font: 1000 clamp(13px, 1.8vw, 24px)/1 Impact, sans-serif; letter-spacing: .055em; }
.manifesto-strip span { color: var(--red); font-size: 26px; }

.section-shell { max-width: var(--max); margin: 0 auto; padding: clamp(80px, 10vw, 150px) clamp(20px, 4vw, 62px); border-inline: 1px solid var(--line); }
.section-kicker { display: flex; align-items: center; gap: 13px; margin-bottom: 42px; font: 900 9px/1 monospace; letter-spacing: .15em; }
.section-kicker b { display: grid; place-items: center; width: 35px; height: 35px; color: var(--paper); background: var(--red); border-radius: 50%; font-size: 10px; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px, 8vw, 120px); }
.story-lead h2, .roadmap-head h2, .chart-head h2 { margin: 0; font: 1000 clamp(49px, 6vw, 95px)/.87 Impact, sans-serif; letter-spacing: -.025em; }
.story-lead em, .join h2 em { color: var(--red); font-family: Georgia, serif; font-weight: 700; }
.case-file { align-self: start; border: 2px solid var(--ink); background: #f1efe8; box-shadow: 11px 12px 0 var(--ink); transform: rotate(.45deg); }
.case-head { display: flex; justify-content: space-between; padding: 12px 16px; color: var(--paper); background: var(--ink); font: 900 8px/1 monospace; letter-spacing: .12em; }
.case-file > p { margin: 0; padding: 24px 28px 0; font: 16px/1.62 Georgia, serif; }
.case-file .lead { font-size: 20px; font-weight: 700; }
.redaction { margin: 26px 28px 0; overflow: hidden; color: var(--ink); font: 900 10px/1 monospace; letter-spacing: .1em; white-space: nowrap; }
.case-file blockquote { margin: 26px 0 0; padding: 25px 28px; color: var(--paper); background: var(--red); font: 1000 29px/1 Impact, sans-serif; letter-spacing: .05em; }
.evidence-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 90px; border: 2px solid var(--ink); }
.evidence { position: relative; min-height: 245px; padding: 27px; border-right: 1px solid var(--ink); background: rgba(255,255,255,.13); }
.evidence:last-child { border-right: 0; }
.evidence > span { color: var(--red); font: 900 8px/1 monospace; letter-spacing: .14em; }
.evidence h3 { margin: 65px 0 10px; font: 1000 30px/1 Impact, sans-serif; letter-spacing: .04em; }
.evidence p { margin: 0; color: #4f4d48; font: 15px/1.5 Georgia, serif; }

.broadcast { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 650px; color: var(--paper); background: var(--red); border-block: 2px solid var(--ink); }
.broadcast-photo { overflow: hidden; border-right: 2px solid var(--ink); }
.broadcast-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.3); mix-blend-mode: multiply; transform: scale(1.03); }
.broadcast-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 8vw, 130px); background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px); background-size: 17px 17px; }
.broadcast-tag { width: max-content; padding: 8px 11px; color: var(--red); background: var(--paper); font: 900 8px/1 monospace; letter-spacing: .13em; }
.broadcast-copy h2 { margin: 32px 0 20px; font: 1000 clamp(47px, 6vw, 92px)/.88 Impact, sans-serif; letter-spacing: -.02em; }
.broadcast-copy p { min-height: 48px; max-width: 690px; margin: 0; font: italic 700 21px/1.4 Georgia, serif; }
.broadcast-copy button { width: max-content; margin-top: 35px; padding: 15px 18px; color: var(--paper); background: var(--ink); border: 2px solid var(--paper); cursor: pointer; font: 900 9px/1 monospace; letter-spacing: .13em; }

.roadmap-head { display: flex; justify-content: space-between; gap: 45px; align-items: end; }
.roadmap-head p { max-width: 280px; margin: 0 0 7px; font: italic 700 19px/1.3 Georgia, serif; }
.rail-map { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; margin-top: 90px; }
.rail-line { position: absolute; top: 28px; left: 8%; right: 8%; height: 8px; background: var(--ink); }
.station { position: relative; z-index: 1; }
.station-dot { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 33px; color: var(--paper); background: var(--ink); border: 8px solid var(--paper); outline: 3px solid var(--ink); border-radius: 50%; font: 900 10px/1 monospace; }
.station.active .station-dot { background: var(--red); }
.station-card { min-height: 280px; padding: 22px; border: 2px solid var(--ink); background: rgba(255,255,255,.2); }
.station-card small { color: var(--red); font: 900 8px/1 monospace; letter-spacing: .12em; }
.station-card h3 { margin: 36px 0 13px; font: 1000 27px/1 Impact, sans-serif; letter-spacing: .04em; }
.station-card p { margin: 0; color: #514f4a; font: 15px/1.52 Georgia, serif; }
.station-card b { display: block; width: max-content; margin-top: 25px; padding: 7px 8px; color: var(--paper); background: var(--ink); font: 900 7px/1 monospace; letter-spacing: .12em; }
.station.active .station-card { color: var(--paper); background: var(--red); }
.station.active .station-card small, .station.active .station-card p { color: var(--paper); }

.how { padding-top: 0; }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.how-card { position: relative; min-height: 330px; padding: 28px; overflow: hidden; color: var(--paper); background: var(--ink); border: 2px solid var(--ink); }
.how-card:nth-child(2) { color: var(--ink); background: var(--paper-2); }
.how-card:nth-child(3) { background: var(--red); }
.how-card > span { position: absolute; right: 12px; top: -10px; color: rgba(255,255,255,.12); font: 1000 125px/1 Impact, sans-serif; }
.how-card:nth-child(2) > span { color: rgba(18,18,18,.1); }
.how-card h3 { position: relative; margin: 170px 0 13px; font: 1000 34px/1 Impact, sans-serif; letter-spacing: .04em; }
.how-card p { position: relative; max-width: 340px; margin: 0; color: inherit; opacity: .72; font: 15px/1.5 Georgia, serif; }

.chart-section { color: var(--paper); background: var(--ink); max-width: none; border-inline: 0; }
.chart-section > * { max-width: calc(var(--max) - 124px); margin-inline: auto; }
.chart-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.chart-head .section-kicker b { color: var(--ink); background: var(--paper); }
.text-link { padding-bottom: 8px; border-bottom: 1px solid var(--paper); text-decoration: none; font: 900 9px/1 monospace; letter-spacing: .13em; }
.chart-shell { position: relative; min-height: 650px; margin-top: 58px; border: 2px solid var(--paper); background: #0a0a0a; box-shadow: 12px 12px 0 var(--red); overflow: hidden; }
.chart-topline { display: flex; justify-content: space-between; gap: 20px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.35); font: 900 8px/1 monospace; letter-spacing: .13em; }
.chart-pulse { color: #ff6b6b; }
#dexFrame { display: block; width: 100%; height: 610px; border: 0; }
.chart-placeholder { position: absolute; inset: 43px 0 0; display: grid; place-items: center; background: #0a0a0a; overflow: hidden; }
.chart-placeholder[hidden] { display: none; }
.placeholder-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 60px 60px; transform: perspective(500px) rotateX(56deg) scale(1.5); transform-origin: bottom; }
.placeholder-copy { position: relative; z-index: 1; text-align: center; }
.placeholder-copy span { color: var(--red); font: 900 9px/1 monospace; letter-spacing: .15em; }
.placeholder-copy strong { display: block; margin: 20px 0; font: 1000 clamp(31px,4vw,60px)/.95 Impact, sans-serif; }
.placeholder-copy small { color: #888; font: 700 8px/1.4 monospace; letter-spacing: .12em; }

.join { padding-top: 95px; padding-bottom: 95px; }
.join-card { display: grid; grid-template-columns: 1.05fr .95fr; border: 2px solid var(--ink); background: var(--paper-2); box-shadow: 14px 14px 0 var(--red); }
.join-copy { padding: clamp(35px,6vw,85px); border-right: 2px solid var(--ink); }
.join-copy > span { font: 900 8px/1 monospace; letter-spacing: .14em; }
.join h2 { margin: 33px 0 0; font: 1000 clamp(46px,5vw,78px)/.88 Impact, sans-serif; }
.social-stack { display: grid; }
.social-stack a { display: flex; flex-direction: column; justify-content: center; min-height: 145px; padding: 25px 35px; border-bottom: 2px solid var(--ink); text-decoration: none; transition: color .15s ease, background .15s ease; }
.social-stack a:last-child { border-bottom: 0; }
.social-stack a:hover { color: var(--paper); background: var(--red); }
.social-stack span { font: 900 8px/1 monospace; letter-spacing: .14em; opacity: .65; }
.social-stack b { margin-top: 13px; font: 1000 23px/1 Impact, sans-serif; letter-spacing: .04em; }

footer { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 35px; align-items: end; padding: 55px clamp(20px,4vw,62px); color: var(--paper); background: var(--red); border-top: 2px solid var(--ink); }
.footer-logo { font: 1000 clamp(38px,6vw,90px)/.75 Impact, sans-serif; letter-spacing: -.02em; }
footer p { max-width: 600px; margin: 0; font: 12px/1.5 monospace; opacity: .75; }
footer > div:last-child { font: 900 8px/1 monospace; letter-spacing: .12em; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 28px; padding: 13px 18px; color: var(--paper); background: var(--ink); border: 2px solid var(--paper); box-shadow: 5px 5px 0 var(--red); opacity: 0; pointer-events: none; transform: translate(-50%,20px); transition: .2s ease; font: 900 9px/1 monospace; letter-spacing: .12em; }
.toast.show { opacity: 1; transform: translate(-50%,0); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease var(--delay,0ms), transform .65s cubic-bezier(.2,.75,.2,1) var(--delay,0ms); }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1.1fr .9fr; min-height: auto; }
  .hero-aside { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
  .forecast-card { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 20px; }.forecast-card strong,.forecast-card p { margin: 0; }
  .rail-map { grid-template-columns: repeat(2,1fr); }.rail-line { display:none; }.station-dot { margin-left: 20px; }
  .chart-section > * { max-width: calc(100% - 70px); }
}

@media (max-width: 780px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 67px; padding-inline: 16px; }.site-header nav { display: none; }.cold-button { font-size: 7px; padding: 12px; }.logo-mark { width: 36px; height: 36px; }
  .hero { grid-template-columns: 1fr; padding: 55px 18px 70px; overflow: hidden; }.hero::before { display:none; }.hero h1 { font-size: clamp(88px,26vw,150px); }.word-cat { margin-left: .12em; }.hero-deck { margin-top: 36px; }.issue-line span:last-child { margin-left: 0; }.contract-slip { grid-template-columns: 1fr auto; }.contract-slip span { grid-column:1/-1; }.hero-photo-wrap { min-height: 520px; margin-top: 25px; }.hero-photo { width: 85%; }.photo-red-block { right: 2%; }.stamp-top { right: 0; }.polaroid-note { left: 0; }.hero-aside { grid-template-columns:1fr; }.forecast-card { grid-template-columns:1fr auto; }.forecast-card p { grid-column:1/-1; }
  .manifesto-strip { align-items:flex-start; gap:12px; flex-direction:column; }.manifesto-strip span { display:none; }
  .section-shell { padding: 85px 18px; }.story-grid,.broadcast,.join-card { grid-template-columns:1fr; }.story-lead h2,.roadmap-head h2,.chart-head h2 { font-size: clamp(48px,15vw,76px); }.case-file { margin-right: 9px; }.evidence-grid { grid-template-columns:1fr; }.evidence { border-right:0; border-bottom:1px solid var(--ink); min-height:200px; }.evidence:last-child { border-bottom:0; }.evidence h3 { margin-top:45px; }
  .broadcast-photo { min-height:390px; border-right:0; border-bottom:2px solid var(--ink); }.broadcast-copy { padding:65px 22px; }.broadcast-copy h2 { font-size: clamp(45px,15vw,72px); }
  .roadmap-head,.chart-head { align-items:flex-start; flex-direction:column; }.rail-map,.how-grid { grid-template-columns:1fr; }.station-dot { margin-left:28px; }.station-card { min-height:230px; }.chart-section > * { max-width: calc(100% - 36px); }.chart-shell { min-height:540px; }.chart-topline span:nth-child(2) { display:none; }#dexFrame { height:520px; }
  .join-copy { border-right:0; border-bottom:2px solid var(--ink); }.social-stack a { min-height:115px; }.join-card { margin-right:10px; }
  footer { grid-template-columns:1fr; align-items:start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }.weather-track,.photo-scan,.signal-dot { animation:none; }.reveal { opacity:1; transform:none; transition:none; }
}
