:root {
  color-scheme: dark;
  --gutter: max(56px, (100vw - 1328px) / 2);
  --canvas: #000000;
  --paper: #f1faf9;
  --lime: #d9f270;
  --mint: #ace3df;
  --teal: #193236;
  --line: #1f4042;
  --muted: #8b9e9c;
  --accent-font: "Space Grotesk", "Courier New", monospace;
  background: var(--canvas);
  color: var(--paper);
  font-family: "Figtree", "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body { margin: 0; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 8% 45%, #19323645, transparent 55%);
}

::selection { color: var(--canvas); background: var(--lime); }

.page {
  width: 100%;
  overflow-x: clip;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.masthead, .hero, .footer {
  width: min(100% - 112px, 1328px);
  margin-inline: auto;
}

.masthead, .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.masthead { min-height: 108px; border-bottom: 1px solid var(--line); }
.brand { font-family: "Archivo", "Arial Black", Arial, sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -.06em; }
.brand-mark { color: var(--lime); padding-left: 2px; }
.classification { color: var(--mint); font-family: var(--accent-font); font-size: 10px; letter-spacing: .18em; }
.classification span { color: var(--lime); padding-inline: 8px; }

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding-block: 64px;
}

.intro { padding-bottom: 20px; min-width: 0; }
.file-label { display: flex; align-items: center; gap: 14px; color: var(--mint); font-family: var(--accent-font); font-size: 10px; letter-spacing: .18em; }
.rule { width: 32px; height: 1px; background: var(--lime); }

h1 {
  margin: 28px 0 12px;
  font-family: "Archivo", "Arial Black", Impact, sans-serif;
  font-size: clamp(64px, 8.3vw, 120px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.065em;
}

.tagline { margin: 0; font-size: clamp(20px, 2.1vw, 30px); font-weight: 400; line-height: 1.4; letter-spacing: -.025em; }
.redaction { display: flex; gap: 5px; margin-block: 34px 30px; }
.redaction span { height: 6px; background: var(--teal); width: 64px; }
.redaction span:nth-child(2) { width: 28px; background: var(--line); }
.redaction span:nth-child(3) { width: 12px; background: var(--lime); }

/* Classified tape: the page's status, strapped edge to edge across the file and passing behind the
   dossier photo. Full bleed from inside the text column, so it borrows the column's gutter back. */
.tape {
  position: relative;
  z-index: 1;
  width: calc(100vw + 120px);
  margin: 0 0 0 calc(-1 * var(--gutter) - 60px);
  padding-block: clamp(16px, 1.6vw, 22px);
  overflow: hidden;
  transform: rotate(-2.4deg);
  transform-origin: 30% 50%;
  background:
    repeating-linear-gradient(90deg, var(--canvas) 0 14px, transparent 14px 22px) 0 6px / 100% 2px no-repeat,
    repeating-linear-gradient(90deg, var(--canvas) 0 14px, transparent 14px 22px) 0 calc(100% - 6px) / 100% 2px no-repeat,
    var(--lime);
  color: var(--canvas);
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tape-track { display: flex; width: max-content; animation: tape-crawl 46s linear infinite; }
.tape-run { display: flex; align-items: center; }
.tape-sep {
  display: block;
  width: .42em;
  height: .42em;
  margin-inline: .7em;
  background: var(--canvas);
}
@keyframes tape-crawl { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .tape-track { animation: none; } }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.portrait { position: relative; z-index: 2; width: 100%; max-width: 584px; justify-self: end; min-width: 0; }
.portrait-label, .portrait-caption { display: flex; align-items: center; justify-content: space-between; gap: 12px; font: 400 9px/1.5 var(--accent-font); letter-spacing: .12em; color: var(--muted); }
.portrait-label { padding-bottom: 17px; }
.portrait-label span:first-child { color: var(--mint); }
.portrait-frame { position: relative; }
picture, picture img { display: block; width: 100%; }
picture img { height: auto; }
.corner { position: absolute; width: 15px; height: 15px; border: solid var(--line); }
.corner-tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.corner-tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.corner-bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.corner-br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.portrait-caption { padding-top: 16px; font-size: 8px; }
.crosshair { color: var(--mint); font-size: 16px; line-height: 1; }

.footer { min-height: 84px; border-top: 1px solid var(--line); color: var(--muted); }
.footer small { font-size: 12px; }
.footer-note { display: flex; align-items: center; gap: 12px; font: 400 9px/1.5 var(--accent-font); letter-spacing: .14em; }
.signal-bars { display: flex; align-items: end; gap: 3px; height: 12px; }
.signal-bars i { display: block; width: 3px; height: 4px; background: var(--line); }
.signal-bars i:nth-child(2) { height: 7px; }
.signal-bars i:nth-child(3) { height: 10px; }
.signal-bars i:nth-child(4) { height: 12px; background: var(--lime); }

@media (min-width: 1600px) { .hero { gap: 72px; } }

@media (max-width: 800px) {
  :root { --gutter: 24px; }
  .tape { margin-top: 6px; transform: rotate(-3deg); }
  .masthead, .hero, .footer { width: calc(100% - 48px); }
  .masthead { min-height: 80px; }
  .hero { grid-template-columns: 1fr; gap: 44px; padding-block: 48px 36px; }
  .intro { padding: 0; }
  h1 { font-size: clamp(64px, 14vw, 104px); margin-top: 24px; }
  .tagline { font-size: clamp(20px, 4.5vw, 28px); }
  .redaction { margin-block: 24px; }
  .portrait { justify-self: center; max-width: 440px; }
  .footer { min-height: 76px; }
  .footer-note { font-size: 8px; letter-spacing: .06em; gap: 8px; }
}

@media (max-width: 380px) {
  :root { --gutter: 20px; }
  .masthead, .hero, .footer { width: calc(100% - 40px); }
  .classification { font-size: 9px; letter-spacing: .1em; }
  .classification span { padding-inline: 3px; }
  .footer { gap: 10px; }
  .footer small { font-size: 11px; }
  .signal-bars { display: none; }
}
