:root {
  --paper: #eae4d7;
  --paper-bright: #f7f2e7;
  --ink: #111311;
  --blue: #214e72;
  --blue-bright: #2e6e9d;
  --red: #d3352a;
  --acid: #cbe343;
  --yellow: #f0bb22;
  --line: rgba(17, 19, 17, 0.25);
  --muted: #615f58;
  --black: #0a0c0c;
  --sans: Inter, Arial, sans-serif;
  --serif: "Libre Baskerville", Georgia, serif;
  --pad: clamp(20px, 4vw, 68px);
  --header-h: 70px;
}

* { box-sizing: border-box; }

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
}

main,
section { min-width: 0; }

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
::selection { color: #fff; background: var(--blue); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: -60px;
  left: 16px;
  padding: 12px 18px;
  color: #fff;
  background: var(--black);
  font-weight: 800;
}

.skip-link:focus { top: 16px; }

.reading-progress {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 4px;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.audit-header {
  position: fixed;
  z-index: 80;
  top: 4px;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 26px;
  padding: 0 var(--pad);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(6, 8, 9, 0.72), transparent);
  transition: height .3s ease, color .3s ease, background .3s ease;
}

.audit-header.is-compact {
  height: 56px;
  color: var(--ink);
  background: rgba(247, 242, 231, .94);
  backdrop-filter: blur(12px);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: -.05em;
}

.brand span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 5px var(--red);
  font-size: .76rem;
}

.desk,
.case-number {
  margin: 0;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desk strong { color: var(--acid); }
.audit-header.is-compact .desk strong { color: var(--blue); }
.case-number { padding: 8px 10px; border: 1px solid currentColor; }

.audit-header nav { display: flex; gap: 2px; }

.audit-header nav a {
  position: relative;
  padding: 10px 9px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.audit-header nav a::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 5px;
  left: 9px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.audit-header nav a:hover::after,
.audit-header nav a.is-active::after { transform: scaleX(1); }

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero-photo {
  position: absolute;
  z-index: -4;
  inset: -6%;
  background: url("/assets/media-low-effort-false-flags.png") center 46% / cover no-repeat;
  filter: saturate(.72) contrast(1.08);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, .82) 0%, rgba(5, 7, 8, .25) 57%, rgba(5, 7, 8, .62) 100%),
    linear-gradient(0deg, rgba(5, 7, 8, .9) 0%, transparent 62%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .22;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.14) 4px);
  pointer-events: none;
}

.registration-marks { position: absolute; inset: 9% var(--pad) 10%; }

.registration-marks i {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: var(--acid);
  border-style: solid;
}

.registration-marks i:nth-child(1) { top: 0; left: 0; border-width: 2px 0 0 2px; }
.registration-marks i:nth-child(2) { top: 0; right: 0; border-width: 2px 2px 0 0; }
.registration-marks i:nth-child(3) { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.registration-marks i:nth-child(4) { right: 0; bottom: 0; border-width: 0 2px 2px 0; }

.hero-copy {
  width: min(1540px, 100%);
  margin: 0 auto;
  padding: calc(var(--header-h) + 60px) var(--pad) clamp(86px, 11vh, 132px);
}

.classification {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(32px, 7vh, 84px);
}

.classification span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.55);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.classification span:nth-child(2) { color: var(--ink); background: var(--acid); border-color: var(--acid); }

.hero-kicker,
.kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-kicker { color: var(--acid); }

h1 {
  width: min-content;
  margin: 0;
  font-size: clamp(5.6rem, 16.2vw, 15.8rem);
  font-weight: 900;
  letter-spacing: -.095em;
  line-height: .68;
  text-transform: uppercase;
}

h1 span { display: block; }
.title-false { transform: translateX(-.03em); }
.title-flags { color: transparent; -webkit-text-stroke: 2px #fff; transform: translateX(.105em); }

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 780px) auto;
  align-items: end;
  gap: clamp(30px, 8vw, 120px);
  margin-top: clamp(46px, 8vh, 84px);
}

.hero-dek {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.45;
}

.byline {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.7;
  text-transform: uppercase;
}

.byline span { color: var(--acid); }

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 50px;
  height: 1px;
  background: #fff;
  animation: cue 1.7s ease-in-out infinite;
}

@keyframes cue { 50% { transform: translateX(9px); } }

.paper-section { background: var(--paper); }

.briefing {
  display: grid;
  grid-template-columns: minmax(110px, .35fr) 1fr 1fr;
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(90px, 12vw, 180px) var(--pad);
}

.chapter-mark {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.chapter-mark span { color: var(--red); font-size: 1rem; }
.chapter-mark p { max-width: 100px; margin: 2px 0; line-height: 1.45; }
.chapter-mark.light { color: #fff; }
.chapter-mark.light span { color: var(--acid); }

h2 {
  margin: 0;
  font-size: clamp(3rem, 6.7vw, 7.5rem);
  line-height: .9;
  letter-spacing: -.075em;
}

.briefing-title { grid-column: 2 / 4; }
.briefing-copy { grid-column: 2; max-width: 670px; }

.story-copy {
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.25vw, 1.24rem);
  line-height: 1.8;
}

.story-copy p { margin: 0 0 1.4em; }
.dropcap::first-letter { float: left; margin: .09em .12em 0 0; font-family: var(--sans); font-size: 4.8em; font-weight: 900; line-height: .76; }

.audit-card {
  align-self: start;
  border: 2px solid var(--ink);
  background: var(--paper-bright);
  box-shadow: 10px 10px 0 var(--blue);
  transform: rotate(1deg);
}

.audit-card-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  color: #fff;
  background: var(--ink);
  font-size: .71rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.audit-card-head b { color: var(--acid); }
.audit-card ul { padding: 0; margin: 0; list-style: none; }
.audit-card li { display: flex; justify-content: space-between; gap: 18px; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: .74rem; line-height: 1.35; }
.audit-card li b { color: var(--red); }
.audit-card > p { margin: 0; padding: 18px 16px; font-family: var(--serif); font-size: .86rem; }

.quote-band {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 100px var(--pad);
  color: #fff;
  background: var(--blue);
}

.quote-code {
  position: absolute;
  top: 50%;
  left: -2vw;
  color: transparent;
  opacity: .28;
  -webkit-text-stroke: 1px #fff;
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .7;
  transform: translateY(-50%) rotate(-4deg);
  white-space: nowrap;
}

.quote-band figure { position: relative; max-width: 1040px; margin: 0; }
.quote-band blockquote { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4.6vw, 5rem); line-height: 1.18; }
.quote-band figcaption { margin-top: 30px; color: var(--acid); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.incident-lab { padding: clamp(90px, 12vw, 180px) var(--pad); color: #fff; background: var(--black); }
.lab-intro { display: grid; grid-template-columns: minmax(110px, .35fr) 1.65fr .8fr; gap: clamp(28px, 5vw, 74px); }
.lab-intro .kicker { color: var(--acid); }
.lab-intro h2 { max-width: 950px; }
.lab-lede { align-self: end; margin: 0; font-family: var(--serif); font-size: 1.05rem; line-height: 1.75; }
.lab-bench { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: clamp(30px, 8vw, 120px); max-width: 1200px; margin: clamp(70px, 10vw, 150px) auto 0; }
.petri-wrap { position: relative; width: min(58vw, 600px); aspect-ratio: 1; cursor: crosshair; }

.petri {
  position: absolute;
  inset: 3%;
  overflow: hidden;
  border: clamp(12px, 2vw, 24px) solid rgba(245,238,219,.35);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 35%, rgba(203,227,67,.78) 0 4%, transparent 5%),
    radial-gradient(circle at 57% 59%, rgba(211,53,42,.8) 0 5%, transparent 6%),
    radial-gradient(circle at 67% 25%, rgba(46,110,157,.8) 0 7%, transparent 8%),
    radial-gradient(circle at 39% 72%, rgba(203,227,67,.65) 0 6%, transparent 7%),
    radial-gradient(circle, rgba(70,185,114,.64), rgba(27,95,63,.34));
  box-shadow: inset 0 0 60px rgba(255,255,255,.28), 0 0 0 4px #ddd3c3, 0 20px 80px rgba(34,150,87,.18);
}

.petri span { position: absolute; width: 18%; height: 7%; border-radius: 50%; background: rgba(214,255,101,.75); box-shadow: 0 0 18px rgba(203,227,67,.5); }
.petri span:nth-child(1) { top: 21%; left: 28%; transform: rotate(32deg); }
.petri span:nth-child(2) { top: 52%; left: 19%; transform: rotate(-18deg); }
.petri span:nth-child(3) { top: 69%; left: 57%; transform: rotate(72deg); }
.petri span:nth-child(4) { top: 40%; left: 62%; transform: rotate(8deg); }
.petri span:nth-child(5) { top: 77%; left: 30%; transform: rotate(-42deg); }
.petri span:nth-child(6) { top: 30%; left: 49%; transform: rotate(90deg); }

.magnifier {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 32%;
  aspect-ratio: 1;
  border: 3px solid var(--acid);
  border-radius: 50%;
  background: rgba(203,227,67,.1);
  box-shadow: 0 0 0 999px rgba(0,0,0,.07), inset 0 0 30px rgba(203,227,67,.2);
  transform: translate3d(-50%,-50%,0);
  pointer-events: none;
}

.sample-card { padding: clamp(24px, 4vw, 46px); color: var(--ink); background: var(--paper-bright); border-top: 14px solid var(--blue); }
.sample-id { margin: 0 0 30px; color: var(--red); font-size: .68rem; font-weight: 900; letter-spacing: .15em; }
.sample-card h3 { margin: 0 0 34px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3.2rem); line-height: 1.05; }
.sample-card dl { margin: 0; }
.sample-card dl div { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 12px 0; border-top: 1px solid var(--line); font-size: .72rem; }
.sample-card dt { color: var(--muted); }
.sample-card dd { margin: 0; font-weight: 800; }
.sample-card .red { color: var(--red); }
.barcode { height: 55px; margin-top: 34px; background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 9px, transparent 9px 12px); }

.belgravia { display: grid; grid-template-columns: minmax(110px, .35fr) 1.65fr; gap: clamp(28px, 5vw, 74px); padding: clamp(90px, 12vw, 180px) var(--pad); }
.belgravia-copy { max-width: 1000px; }
.belgravia-copy > p:last-child { max-width: 720px; margin: 34px 0 0; font-family: var(--serif); font-size: 1.05rem; line-height: 1.75; }
.flag-stage { position: relative; grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 4vw, 70px); margin-top: 70px; }
.flag-card { padding: clamp(18px, 3vw, 34px); border: 1px solid var(--ink); background: var(--paper-bright); }
.flag-card > p { margin: 0 0 24px; font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.flag-card small { display: block; margin-top: 20px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.flag { position: relative; aspect-ratio: 1.65; overflow: hidden; background: linear-gradient(155deg, var(--blue) 0 48%, #eee7db 48% 56%, #3b814e 56%); filter: drop-shadow(4px 5px 0 rgba(17,19,17,.18)); }
.lower .flag { background: linear-gradient(155deg, #3b814e 0 48%, #eee7db 48% 56%, var(--blue) 56%); }
.flag span { position: absolute; top: 48%; left: 0; width: 100%; height: 4px; background: repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 15px); transform: rotate(-5deg); }

.seam-verdict {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  min-width: 130px;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%,-50%) rotate(-8deg);
}

.seam-verdict b { font-size: 1.45rem; }
.seam-verdict span { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
.drone-evidence { grid-column: 2; display: grid; grid-template-columns: minmax(260px, 1.1fr) .9fr; align-items: center; gap: 60px; margin-top: 100px; padding-top: 60px; border-top: 1px solid var(--line); }
.drone-evidence > p { max-width: 470px; font-family: var(--serif); line-height: 1.7; }
.drone-evidence > p strong { color: var(--red); font-family: var(--sans); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }

.cardboard-drone {
  position: relative;
  height: 270px;
  background: #a67c4d;
  clip-path: polygon(0 52%, 39% 41%, 46% 0, 55% 0, 61% 41%, 100% 52%, 62% 63%, 56% 100%, 45% 100%, 38% 63%);
  filter: drop-shadow(10px 12px 0 rgba(17,19,17,.25));
}

.cardboard-drone::after { content: ""; position: absolute; inset: 0; opacity: .3; background: repeating-linear-gradient(6deg, transparent 0 9px, #6f4c2c 10px); }
.cardboard-drone span { position: absolute; z-index: 2; top: 43%; left: 50%; padding: 7px 10px; border: 2px solid var(--ink); background: var(--paper-bright); font-size: .54rem; font-weight: 900; line-height: 1.15; text-align: center; transform: translate(-50%,-50%) rotate(-3deg); }

.dashboard { padding: clamp(90px, 12vw, 170px) var(--pad); color: #fff; background: var(--blue); }
.dashboard-head { display: flex; justify-content: space-between; gap: 40px; align-items: flex-start; }
.dashboard-head > p { margin: 0; padding: 10px 14px; border: 1px solid rgba(255,255,255,.45); font-size: .69rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.live-dot { display: inline-block; width: 8px; height: 8px; margin-right: 8px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 0 0 rgba(203,227,67,.5); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(203,227,67,0); } }
.dashboard-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 24px; max-width: 1300px; margin: 80px auto 0; }
.dashboard-grid > div { min-width: 0; padding: clamp(24px, 4vw, 52px); border: 1px solid rgba(255,255,255,.35); background: rgba(8,19,29,.28); }
.follower-count { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
.follower-count p { margin: 0; color: var(--acid); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.follower-count strong { display: block; margin: 12px 0; font-size: clamp(3.5rem, 7vw, 7.5rem); letter-spacing: -.08em; line-height: 1; font-variant-numeric: tabular-nums; }
.follower-count span { font-family: var(--serif); }
.timeline-axis { display: flex; justify-content: space-between; font-size: .62rem; color: rgba(255,255,255,.7); }
.timeline-track { position: relative; height: 90px; margin: 12px 0; border-block: 1px solid rgba(255,255,255,.18); }
.timeline-track i { position: absolute; top: 20px; height: 50px; border-left: 2px solid var(--acid); font-style: normal; }
.timeline-track i b { display: block; margin-left: 9px; white-space: nowrap; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.followers-event { left: 5%; }
.first-post { right: 6%; border-color: var(--red) !important; }
.timeline-card > p { margin: 0; font-size: .75rem; }
.timeline-card > p strong { color: var(--acid); }
.account-card { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; }
.account-icon { display: grid; width: 54px; aspect-ratio: 1; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; font-weight: 900; }
.account-card strong, .account-card span { display: block; }
.account-card span { margin-top: 4px; color: rgba(255,255,255,.65); font-size: .7rem; }

.account-card button,
.gap-clock button,
.story-actions button,
.story-actions a {
  padding: 12px 15px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.account-card button:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.account-card p { grid-column: 2 / 4; margin: 0; padding: 16px; color: var(--ink); background: var(--paper-bright); font-family: var(--serif); line-height: 1.5; }
.account-card p span { color: var(--red); font-family: var(--sans); font-weight: 800; }

.gap-section { display: grid; grid-template-columns: minmax(110px, .35fr) 1.65fr; gap: clamp(28px, 5vw, 74px); padding: clamp(90px, 12vw, 180px) var(--pad); }
.gap-title { max-width: 1050px; }
.gap-title > p:last-child { max-width: 640px; margin: 30px 0 0; font-family: var(--serif); font-size: 1.05rem; line-height: 1.7; }
.gap-clock { grid-column: 2; margin-top: 70px; padding: clamp(28px, 5vw, 62px); color: #fff; background: var(--ink); }
.clock-readout { display: flex; align-items: baseline; gap: 16px; }
.clock-readout strong { color: var(--acid); font-size: clamp(4.5rem, 11vw, 11rem); letter-spacing: -.08em; line-height: 1; font-variant-numeric: tabular-nums; }
.clock-readout span { font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.clock-line { height: 14px; margin: 38px 0 10px; background: rgba(255,255,255,.14); }
.clock-line span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--blue-bright), var(--red)); transform-origin: left; }
.clock-labels { display: flex; justify-content: space-between; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gap-clock button { margin-top: 34px; color: var(--acid); }
.gap-clock button:hover { color: var(--ink); background: var(--acid); }
.gap-clock.is-compressed .clock-line span { animation: compressLine .9s cubic-bezier(.77,0,.18,1) forwards; }
@keyframes compressLine { to { transform: scaleX(.0046); } }

.adoption-grid { grid-column: 2; display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(38px, 7vw, 100px); align-items: center; margin-top: 100px; }
.substance-donut { display: grid; justify-items: center; }
.donut { position: relative; width: min(280px, 68vw); aspect-ratio: 1; display: grid; place-items: center; align-content: center; border-radius: 50%; background: conic-gradient(var(--red) 0 14%, #d1cabb 14%); }
.donut::before { content: ""; position: absolute; inset: 21%; background: var(--paper); border-radius: 50%; }
.donut strong, .donut span { position: relative; }
.donut strong { font-size: clamp(3rem, 7vw, 6.5rem); letter-spacing: -.08em; line-height: .9; }
.donut span { font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.substance-donut p { max-width: 360px; margin: 26px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.5; text-align: center; }
.adoption-grid blockquote { margin: 0; font-family: var(--serif); font-size: clamp(1.7rem, 3.6vw, 4rem); line-height: 1.25; }
.adoption-grid cite { display: block; margin-top: 24px; color: var(--blue); font-family: var(--sans); font-size: .65rem; font-style: normal; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.repeat-section { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 140px); padding: 0 var(--pad); color: #fff; background: var(--red); }
.repeat-sticky { position: sticky; top: 0; align-self: start; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-block: 100px; }
.repeat-sticky .kicker { color: var(--ink); }
.repeat-sticky h2 { font-size: clamp(3.8rem, 7.4vw, 8rem); }
.repeat-counter { display: flex; align-items: baseline; gap: 13px; margin-top: 34px; }
.repeat-counter span { font-size: 4rem; font-weight: 900; line-height: 1; }
.repeat-counter small { letter-spacing: .1em; text-transform: uppercase; }
.repeat-feed { padding: 42vh 0; }
.repeat-feed article { min-height: 50vh; margin-bottom: 18vh; padding: clamp(28px, 5vw, 58px); color: var(--ink); background: var(--paper-bright); opacity: .35; transform: rotate(1deg) scale(.96); transition: opacity .35s ease, transform .35s ease; }
.repeat-feed article:nth-child(even) { transform: rotate(-1deg) scale(.96); }
.repeat-feed article.is-current { opacity: 1; transform: rotate(0) scale(1); }
.repeat-feed article span { color: var(--blue); font-size: .65rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.repeat-feed article p { margin: 26px 0 0; font-family: var(--serif); font-size: clamp(1.45rem, 2.6vw, 2.8rem); line-height: 1.35; }

.standards { display: grid; grid-template-columns: minmax(110px, .35fr) 1.65fr; gap: clamp(28px, 5vw, 74px); padding: clamp(90px, 12vw, 180px) var(--pad); }
.standards-title { max-width: 900px; }
.standards-list { grid-column: 2; margin: 80px 0 0; padding: 0; border-top: 2px solid var(--ink); list-style: none; }
.standards-list li { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 24px; padding: 26px 8px; border-bottom: 1px solid var(--line); }
.standards-list li > span { color: var(--red); font-weight: 900; }
.standards-list p { margin: 0; font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.8rem); }
.standards-list b { color: var(--blue); font-size: .65rem; letter-spacing: .11em; text-transform: uppercase; }
.veil-quote { grid-column: 2; max-width: 920px; margin: 100px 0 0; }
.veil-quote blockquote { margin: 0; font-size: clamp(3rem, 7vw, 7.5rem); font-weight: 900; letter-spacing: -.08em; line-height: .92; }
.veil-quote figcaption { margin-top: 26px; color: var(--red); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }

.closing { position: relative; min-height: 100vh; isolation: isolate; overflow: hidden; color: #fff; background: var(--black); }
.closing-photo { position: absolute; z-index: -2; inset: 0; opacity: .2; background: url("/assets/media-low-effort-false-flags.png") center / cover; filter: grayscale(1) contrast(1.3); }
.closing::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(10,12,12,.96), rgba(10,12,12,.64)); }
.closing-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(50px, 10vw, 160px); align-items: center; min-height: 100vh; padding: clamp(100px, 12vw, 180px) var(--pad); }
.closing-copy h2 { max-width: 950px; }
.closing-copy > p:last-child { max-width: 720px; margin: 34px 0 0; font-family: var(--serif); font-size: 1.1rem; line-height: 1.8; }
.reporter-card { margin: 0; }
.reporter-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: grayscale(.25) contrast(1.05); }
.reporter-card figcaption { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.4); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.reporter-card figcaption strong { color: var(--acid); }
.final-note { grid-column: 1 / 3; display: grid; grid-template-columns: 1.25fr auto; gap: 32px 80px; align-items: center; padding-top: 60px; border-top: 1px solid rgba(255,255,255,.35); }
.final-note > p { max-width: 850px; margin: 0; font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 2.4rem); line-height: 1.45; }
.final-note small { grid-column: 1 / 3; max-width: 780px; color: rgba(255,255,255,.6); line-height: 1.6; }
.story-actions { display: flex; flex-direction: column; gap: 10px; }
.story-actions a, .story-actions button { min-width: 220px; color: #fff; text-align: center; }
.story-actions a:hover, .story-actions button:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }

footer { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 34px var(--pad); color: var(--ink); background: var(--paper); font-size: .68rem; font-weight: 700; }
.footer-brand span { box-shadow: inset 0 0 0 3px var(--paper), inset 0 0 0 5px var(--red); }
footer p { margin: 0; font-family: var(--serif); font-weight: 400; }
footer > a:last-child { text-transform: uppercase; letter-spacing: .08em; }

.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .audit-header { grid-template-columns: auto 1fr auto; }
  .audit-header nav { display: none; }
  .case-number { grid-column: 3; }
  .briefing,
  .lab-intro { grid-template-columns: 100px 1fr; }
  .briefing-title,
  .briefing-copy,
  .audit-card,
  .lab-intro > div:nth-child(2),
  .lab-intro .lab-lede { grid-column: 2; }
  .lab-bench { grid-template-columns: 1fr; justify-items: center; }
  .sample-card { width: min(660px, 100%); }
  .dashboard-grid { grid-template-columns: 1fr; }
  .follower-count { grid-row: auto; }
  .repeat-section { gap: 40px; }
  .closing-grid { grid-template-columns: 1fr .7fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 58px; --pad: 20px; }
  .audit-header { grid-template-columns: auto 1fr auto; gap: 12px; }
  .desk { display: none; }
  .case-number { font-size: .55rem; }
  .hero { min-height: 100svh; }
  .hero-photo { inset: -3%; background-position: 57% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(5,7,8,.93) 0 15%, rgba(5,7,8,.33) 70%, rgba(5,7,8,.56)); }
  .registration-marks { top: 10%; bottom: 8%; }
  .hero-copy { padding-top: 110px; padding-bottom: 88px; }
  .classification { margin-bottom: 36px; }
  .classification span:nth-child(3) { display: none; }
  h1 { font-size: clamp(4.5rem, 27vw, 8rem); line-height: .72; }
  .title-flags { -webkit-text-stroke-width: 1px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 22px; margin-top: 40px; }
  .hero-dek { font-size: 1.02rem; line-height: 1.5; }
  .scroll-cue { left: var(--pad); right: auto; font-size: .56rem; }
  .briefing,
  .lab-intro,
  .belgravia,
  .gap-section,
  .standards { grid-template-columns: 1fr; }
  .chapter-mark,
  .briefing-title,
  .briefing-copy,
  .audit-card,
  .lab-intro > div:nth-child(2),
  .lab-intro .lab-lede,
  .belgravia-copy,
  .flag-stage,
  .drone-evidence,
  .gap-title,
  .gap-clock,
  .adoption-grid,
  .standards-title,
  .standards-list,
  .veil-quote { grid-column: 1; }
  .chapter-mark { align-items: center; }
  .chapter-mark p { max-width: none; }
  h2 { font-size: clamp(2.8rem, 14vw, 5.3rem); }
  .briefing-title { margin-top: 16px; }
  .audit-card { box-shadow: 6px 6px 0 var(--blue); transform: none; }
  .quote-band { min-height: 72vh; padding-block: 90px; }
  .quote-code { font-size: 23vw; }
  .quote-band blockquote { font-size: 1.75rem; }
  .lab-intro h2 { font-size: 3.35rem; }
  .lab-bench { margin-top: 60px; }
  .petri-wrap { width: min(90vw, 500px); }
  .sample-card dl div { grid-template-columns: 1fr; gap: 4px; }
  .flag-stage { grid-template-columns: 1fr; gap: 20px; }
  .seam-verdict { top: 50%; left: auto; right: 6px; min-width: 106px; transform: translateY(-50%) rotate(-8deg); }
  .drone-evidence { grid-template-columns: 1fr; gap: 24px; margin-top: 70px; }
  .cardboard-drone { width: 100%; height: 200px; }
  .dashboard-head { display: block; }
  .dashboard-head > p { display: inline-block; margin-top: 24px; }
  .dashboard-grid { margin-top: 48px; }
  .dashboard-grid > div { padding: 24px 18px; }
  .follower-count strong { font-size: 4rem; }
  .account-card { grid-template-columns: auto 1fr; }
  .account-card button { grid-column: 1 / 3; }
  .account-card p { grid-column: 1 / 3; overflow-wrap: anywhere; }
  .clock-readout { display: block; }
  .clock-readout strong { font-size: 20vw; }
  .adoption-grid { grid-template-columns: 1fr; }
  .repeat-section { grid-template-columns: 1fr; padding: 0; }
  .repeat-sticky { z-index: 2; min-height: auto; padding: 90px var(--pad) 30px; background: var(--red); }
  .repeat-sticky h2 { font-size: 3.2rem; }
  .repeat-counter { margin-top: 20px; }
  .repeat-feed { padding: 15vh var(--pad) 34vh; }
  .repeat-feed article { min-height: 48vh; margin-bottom: 20vh; }
  .standards-list li { grid-template-columns: 42px 1fr; gap: 14px; }
  .standards-list li b { grid-column: 2; }
  .closing-grid { grid-template-columns: 1fr; padding-block: 110px; }
  .reporter-card { width: min(340px, 88vw); }
  .final-note { grid-column: 1; grid-template-columns: 1fr; gap: 34px; }
  .final-note small { grid-column: 1; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-photo { transform: scale(1.04) !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
