:root {
  --orange: #ef5b24;
  --orange-light: #ff9f2f;
  --cream: #fff3d0;
  --paper: #f3e7c1;
  --green: #174d30;
  --red: #b7241b;
  --ink: #17120d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Mono", monospace; }
img, video { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.section-label { margin: 0; font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }

.country-control {
  position: fixed;
  z-index: 20;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .8rem;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--orange-light);
  box-shadow: 4px 4px 0 var(--ink);
  font: 500 .64rem/1 "DM Mono", monospace;
  cursor: pointer;
}
.country-control[hidden] { display: none; }
.country-control:hover, .country-control:focus-visible { color: var(--cream); background: var(--green); outline: none; }
.country-bars { display: flex; align-items: end; gap: 2px; width: 14px; height: 14px; }
.country-bars i { display: block; width: 3px; height: 35%; background: currentColor; animation: equalize .65s ease-in-out infinite alternate; }
.country-bars i:nth-child(2) { height: 100%; animation-delay: -.3s; }
.country-bars i:nth-child(3) { height: 65%; animation-delay: -.5s; }
.country-control.muted .country-bars i { height: 2px; animation: none; }

.broadcast { position: relative; min-height: 100svh; overflow: hidden; isolation: isolate; color: var(--cream); background: #090806; }
.broadcast video, .fallback { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.broadcast video { display: none; object-fit: contain; background: #090806; }
.broadcast.has-video video { display: block; }
.broadcast.has-video .fallback { display: none; }
.fallback { display: grid; place-items: center; background: var(--green); }
.fallback p { padding: 1rem; border: 3px solid var(--cream); box-shadow: 8px 8px 0 var(--orange); font-family: "Archivo Black", sans-serif; text-align: center; transform: rotate(-3deg); }
.noise { position: absolute; z-index: 2; inset: 0; pointer-events: none; opacity: .15; 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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.broadcast-top, .broadcast-bottom, .quote-wrap, .country-meter { position: absolute; z-index: 3; }
.broadcast-top { top: 0; left: 0; display: flex; justify-content: space-between; width: 100%; padding: clamp(1rem, 3vw, 2rem); font-size: .72rem; font-weight: 500; }
.station, .channel { padding: .48rem .65rem; color: var(--cream); background: rgba(23, 18, 13, .78); text-decoration: none; }
.live-dot { display: inline-block; width: .55rem; height: .55rem; margin-right: .35rem; border-radius: 50%; background: #ff3b21; animation: blink 1.1s steps(1) infinite; }
.quote-wrap { top: 16%; left: 50%; width: min(90%, 70rem); transform: translateX(-50%); text-align: center; pointer-events: none; }
.quote { display: inline; margin: 0; padding: .08em .22em; color: var(--cream); background: var(--orange); box-decoration-break: clone; -webkit-box-decoration-break: clone; font-family: "Archivo Black", sans-serif; font-size: clamp(1.3rem, 4.4vw, 4.8rem); line-height: 1.22; text-transform: uppercase; text-shadow: 3px 3px 0 var(--green); }
.quote.pop { animation: quote-pop .28s ease-out; }
.country-meter { top: 30%; right: clamp(1rem, 3vw, 2rem); width: min(22rem, 42vw); padding: .8rem; border: 2px solid var(--cream); background: rgba(23, 18, 13, .86); opacity: 0; transform: translateX(2rem) rotate(1deg); transition: opacity .2s, transform .2s; }
.country-meter.active { opacity: 1; transform: translateX(0) rotate(1deg); }
.meter-heading { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .55rem; font-size: .66rem; }
.meter-heading strong { color: var(--orange-light); }
.meter-track { height: .8rem; border: 1px solid var(--cream); background: var(--ink); }
.meter-track span { display: block; width: 8%; height: 100%; background: var(--orange); transition: width .7s cubic-bezier(.2, .8, .2, 1); }
.broadcast-bottom { right: 0; bottom: 0; left: 0; display: flex; align-items: end; justify-content: space-between; gap: 1rem; padding: clamp(1rem, 3vw, 2rem); background: linear-gradient(transparent, rgba(9, 8, 6, .92)); }
.eyebrow { margin: 0 0 .25rem; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, .manifesto-copy, blockquote, .cta strong { font-family: "Archivo Black", sans-serif; }
h1 { margin: 0; font-size: clamp(1.5rem, 4vw, 4rem); line-height: .82; }
.controls { display: flex; align-items: center; flex: 0 0 auto; gap: .55rem; }
.runtime { margin-right: .4rem; font-size: .68rem; font-variant-numeric: tabular-nums; }
.controls button { display: grid; width: 3rem; height: 3rem; padding: 0; border: 2px solid var(--cream); border-radius: 50%; color: var(--cream); background: rgba(23, 18, 13, .78); font: inherit; font-size: 1rem; cursor: pointer; }
.controls button span { place-self: center; }
.controls button:hover, .controls button:focus-visible { color: var(--ink); background: var(--cream); outline: none; }

.ticker { overflow: hidden; border-block: 3px solid var(--ink); color: var(--ink); background: var(--orange-light); font-family: "Archivo Black", sans-serif; }
.ticker-track { display: flex; width: max-content; padding: .72rem 0; animation: crawl 22s linear infinite; }
.ticker span, .ticker i { flex: 0 0 auto; font-style: normal; }
.ticker span { padding-inline: 1rem; }
.ticker i { color: var(--green); }

.manifesto { position: relative; display: grid; grid-template-columns: minmax(12rem, .55fr) minmax(20rem, 1.45fr); gap: clamp(2rem, 6vw, 8rem); min-height: 82svh; padding: clamp(4rem, 9vw, 9rem) clamp(1.25rem, 6vw, 7rem); color: var(--cream); background-color: var(--green); background-image: radial-gradient(rgba(255, 243, 208, .16) 1px, transparent 1px); background-size: 18px 18px; }
.manifesto-copy { max-width: 17ch; margin: 0; font-size: clamp(2.4rem, 5.6vw, 6rem); line-height: .98; }
.archive-stamp { position: absolute; right: 7vw; bottom: 3rem; display: grid; width: 11rem; aspect-ratio: 1; place-content: center; border: 4px double var(--orange-light); border-radius: 50%; color: var(--orange-light); text-align: center; transform: rotate(-8deg); }
.archive-stamp span, .archive-stamp small { font-size: .55rem; }
.archive-stamp strong { font-family: "Archivo Black", sans-serif; font-size: 4.5rem; line-height: .9; }

.evidence { padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 6rem); background-color: var(--paper); background-image: linear-gradient(rgba(23, 18, 13, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 18, 13, .08) 1px, transparent 1px); background-size: 24px 24px; }
.section-header { display: grid; grid-template-columns: .5fr 1.5fr; gap: 2rem; margin-bottom: clamp(3rem, 7vw, 7rem); }
.section-header h2, .transcript-heading h2 { max-width: 15ch; margin: 0; font-size: clamp(2.2rem, 5vw, 5rem); line-height: .96; }
.evidence-grid { display: grid; grid-template-columns: repeat(12, 1fr); align-items: start; gap: 2rem; }
.evidence-item { margin: 0; }
.portrait { grid-column: 1 / 5; transform: rotate(-2deg); }
.conviction { grid-column: 5 / 9; margin-top: 6rem; transform: rotate(1.5deg); }
.consumption { grid-column: 9 / 13; margin-top: 1rem; transform: rotate(-1deg); }
.photo-wrap { position: relative; padding: .7rem .7rem 2.8rem; background: #fffaf0; box-shadow: .8rem .8rem 0 rgba(23, 18, 13, .14); }
.photo-wrap img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: saturate(.9) contrast(1.06); }
.evidence-item figcaption { display: grid; gap: .45rem; padding: 1.4rem .4rem; }
.evidence-item figcaption span, .evidence-item figcaption small { font-size: .65rem; }
.evidence-item figcaption strong { font-family: "Archivo Black", sans-serif; font-size: clamp(1.2rem, 2vw, 2rem); line-height: 1.05; }
.callout { position: absolute; z-index: 1; padding: .35rem .45rem; color: var(--cream); background: var(--red); font-size: clamp(.45rem, .8vw, .65rem); font-weight: 500; white-space: nowrap; }
.callout::after { content: ""; position: absolute; width: 2.5rem; border-top: 2px solid var(--red); transform-origin: left; }
.callout-peel { top: 48%; left: -1.5rem; }
.callout-peel::after { top: 50%; left: 100%; transform: rotate(-18deg); }
.callout-zero { right: -1.2rem; bottom: 27%; }
.callout-zero::after { top: 50%; right: 100%; transform: rotate(198deg); }

.claims { padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 5vw, 6rem); color: var(--cream); background: var(--green); }
.claim-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2rem; border-block: 2px solid var(--cream); }
.claim-list div { display: grid; grid-template-columns: auto 1fr; gap: .25rem 1rem; padding: clamp(1.5rem, 4vw, 4rem) clamp(1rem, 3vw, 3rem); }
.claim-list div + div { border-left: 2px solid var(--cream); }
.claim-list span { grid-row: 1 / 3; font-size: 2rem; }
.claim-list strong { font-family: "Archivo Black", sans-serif; font-size: clamp(1.5rem, 3vw, 3rem); }
.claim-list small { color: var(--orange-light); }

.review { display: grid; grid-template-columns: .5fr 1.5fr; gap: clamp(2rem, 6vw, 8rem); padding: clamp(4rem, 9vw, 9rem) clamp(1.25rem, 6vw, 7rem); background: var(--orange-light); }
.orange-rating { margin-top: 1rem; color: var(--green); font-size: clamp(1.3rem, 2.5vw, 2.5rem); letter-spacing: .2em; }
blockquote { max-width: 13ch; margin: 0; font-size: clamp(3rem, 8vw, 8rem); line-height: .92; }
.reviewer { grid-column: 2; margin: 0; font-size: .72rem; }

.transcript { padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 8vw, 10rem); background-color: var(--cream); background-image: repeating-linear-gradient(0deg, transparent 0, transparent 27px, rgba(23, 18, 13, .08) 28px); }
.transcript-heading { position: relative; display: grid; grid-template-columns: .5fr 1.5fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 3px solid var(--ink); }
.declassified { position: absolute; right: 0; bottom: 1.5rem; padding: .45rem .8rem; border: 3px solid var(--red); color: var(--red); font-weight: 500; transform: rotate(-5deg); }
.transcript-lines { margin: 0; padding: 0; list-style: none; }
.transcript-lines li { display: grid; grid-template-columns: 6rem 1fr; gap: 2rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(23, 18, 13, .35); }
.transcript-lines li span { color: var(--red); font-size: .72rem; }
.transcript-lines p { max-width: 34ch; margin: 0; font-size: clamp(1.2rem, 2.5vw, 2.3rem); line-height: 1.25; }
.transcript-lines .stage-direction p { color: var(--red); font-weight: 500; }

.cta { display: grid; min-height: 72svh; place-content: center; padding: 4rem 1.25rem; color: var(--cream); background-color: var(--orange); background-image: radial-gradient(var(--green) 1.5px, transparent 1.5px); background-size: 22px 22px; text-align: center; }
.cta p:not(.section-label) { margin: 3rem 0 .5rem; font-size: clamp(1rem, 2vw, 1.5rem); }
.cta strong { display: block; padding: .15em .25em; color: var(--ink); background: var(--cream); box-shadow: .16em .16em 0 var(--green); font-size: clamp(2rem, 7vw, 7rem); line-height: 1; overflow-wrap: anywhere; transform: rotate(-1deg); }
.cta small { max-width: 42rem; margin: 3rem auto 0; font-size: .65rem; line-height: 1.5; }
footer { display: flex; justify-content: space-between; gap: 2rem; padding: 1.5rem; color: var(--cream); background: var(--ink); font-size: .62rem; }
footer a { color: var(--orange-light); }

@keyframes blink { 50% { opacity: .25; } }
@keyframes quote-pop { from { opacity: 0; transform: scale(.92) rotate(-1deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes crawl { to { transform: translateX(-50%); } }
@keyframes equalize { to { height: 15%; } }

@media (max-width: 760px) {
  .broadcast { min-height: 86svh; }
  .channel, .runtime { display: none; }
  .quote-wrap { top: 13%; }
  .country-meter { top: 25%; width: calc(100% - 2rem); }
  .broadcast-bottom { align-items: center; }
  .manifesto, .section-header, .review, .transcript-heading { grid-template-columns: 1fr; }
  .manifesto { min-height: 76svh; }
  .archive-stamp { right: 1.5rem; bottom: 2rem; width: 8rem; }
  .archive-stamp strong { font-size: 3rem; }
  .evidence-grid { display: block; }
  .evidence-item, .portrait, .conviction, .consumption { max-width: 28rem; margin: 0 auto 4rem; }
  .callout-peel { left: .75rem; }
  .callout-zero { right: .75rem; }
  .claim-list { grid-template-columns: 1fr; }
  .claim-list div + div { border-top: 2px solid var(--cream); border-left: 0; }
  .reviewer { grid-column: 1; }
  .declassified { position: static; justify-self: start; margin-top: 1rem; }
  .transcript-lines li { grid-template-columns: 4rem 1fr; gap: 1rem; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .live-dot, .ticker-track, .country-bars i { animation: none; }
}
