@font-face {
  font-family: "Archivo Black";
  src: url("/assets/fonts/ArchivoBlack-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/SpaceGrotesk-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/IBMPlexMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/IBMPlexMono-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/Newsreader-Italic-Variable.woff2") format("woff2");
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #f1e6cf;
  --paper-light: #f8f1e2;
  --paper-deep: #ddc9a5;
  --ink: #242321;
  --ink-soft: #4e4942;
  --red: #9b493b;
  --blue: #1d6f95;
  --green: #6a7c48;
  --line: rgba(36, 35, 33, 0.22);
  --max: 1240px;
  --shadow: 8px 8px 0 #242321;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 255, 255, 0.55), transparent 26rem),
    radial-gradient(circle at 90% 25%, rgba(181, 139, 84, 0.08), transparent 35rem),
    var(--paper);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  content: "";
  opacity: 0.17;
  background-image: repeating-linear-gradient(7deg, rgba(40, 35, 28, 0.045) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

::selection { color: var(--paper-light); background: var(--red); }

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--paper-light);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 8px max(18px, calc((100vw - var(--max)) / 2));
  background: rgba(241, 230, 207, 0.94);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo Black", sans-serif;
  font-size: 21px;
  text-decoration: none;
  letter-spacing: -0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a, .header-source {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover, .nav-links a:focus-visible, .header-source:hover, .header-source:focus-visible { border-color: currentColor; }

.header-source {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.cover {
  width: min(100%, 1570px);
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 88px) clamp(18px, 3vw, 36px) 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cover-frame {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 12px 12px 0 rgba(36, 35, 33, 0.95);
  background: var(--paper-light);
}

.cover-frame img { width: 100%; height: auto; }

.cover-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 28px;
}

.cover-actions p {
  margin: 0 0 0 auto;
  color: var(--ink-soft);
  font-family: "Newsreader", serif;
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background 160ms ease;
}

.button:hover, .button:focus-visible { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.button:active { transform: translate(1px, 1px); box-shadow: none; }
.button-dark { color: var(--paper-light); background: var(--ink); }
.button-paper { color: var(--ink); background: var(--paper-light); }
.button-cream { color: var(--ink); background: #ead8b7; }

.status-strip {
  overflow: hidden;
  color: var(--paper-light);
  background: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.status-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.status-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  white-space: nowrap;
  letter-spacing: 0.08em;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.status-track i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #92b35b;
  box-shadow: 0 0 0 3px rgba(146, 179, 91, 0.17);
}

@keyframes ticker { to { transform: translateX(-50%); } }

.section-shell {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

section:not(.cover) { padding-block: clamp(78px, 10vw, 150px); }

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

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
}

#evidence .section-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(48px, 5vw, 78px);
}

#evidence .section-copy { align-self: center; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow-light { color: #dd9c89; }

h2, .science-card h3, .theory-verdict h3 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}

h2 { max-width: 880px; font-size: clamp(42px, 5.4vw, 78px); }

.title-lines { overflow-wrap: normal; word-break: normal; }
.title-lines > span { display: block; }
.evidence-title { font-size: clamp(48px, 4.2vw, 64px); }
.model-title { font-size: clamp(42px, 5vw, 76px); }
.science-title { font-size: clamp(38px, 4.3vw, 66px); }
.review-title { font-size: clamp(40px, 4.8vw, 74px); }
.incidents-title { font-size: clamp(42px, 5vw, 76px); }
.lab-title { font-size: clamp(28px, 4vw, 60px); }
.closing-title { font-size: clamp(38px, 4.7vw, 72px); }

.lead {
  max-width: 630px;
  margin: 30px 0;
  color: #ddd1bb;
  font-size: clamp(18px, 2vw, 23px);
}

#evidence .lead {
  max-width: 500px;
  margin: 22px 0;
  font-size: clamp(18px, 1.5vw, 21px);
}

#evidence .receipt-list { margin: 20px 0 28px; }
#evidence .receipt-list div { padding-block: 8px; }

.receipt-list {
  margin: 28px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.receipt-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.receipt-list dt { color: #aa9d88; }
.receipt-list dd { margin: 0; }

.evidence-frame {
  position: relative;
  display: block;
  max-width: 660px;
  padding: clamp(14px, 2vw, 24px);
  justify-self: end;
  background: var(--paper-light);
  border: 2px solid #050505;
  transform: rotate(1.25deg);
  box-shadow: 14px 14px 0 #080808, 17px 17px 0 #dd9c89;
}

.evidence-frame img { width: 100%; border: 1px solid var(--ink); }

.evidence-stamp {
  position: absolute;
  right: -24px;
  bottom: 20px;
  padding: 7px 12px;
  color: var(--red);
  border: 4px double var(--red);
  font-family: "Archivo Black", sans-serif;
  font-size: 20px;
  line-height: 0.9;
  text-align: center;
  transform: rotate(-9deg);
  background: rgba(248, 241, 226, 0.88);
}

.play-seal {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: var(--paper-light);
  background: rgba(36, 35, 33, 0.9);
  border: 2px solid var(--paper-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(38px, 6vw, 76px);
}

.heading-note {
  max-width: 310px;
  margin: 0;
  color: var(--ink-soft);
  font-family: "Newsreader", serif;
  font-size: 22px;
  font-style: italic;
}

.section-heading-light .heading-note { color: #c8baa4; }

.model-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #ecdfc3;
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.model-figure img { width: 100%; }

.model-figure figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 8px 12px;
  background: rgba(248, 241, 226, 0.9);
  border: 1px solid var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.inventory {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 42px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.inventory span {
  min-height: 94px;
  padding: 19px 16px;
  border-right: 1px solid var(--line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.inventory span:last-child { border-right: 0; }
.inventory b { display: block; margin-bottom: 7px; color: var(--red); }

.science { background: #e5d3b1; border-block: 2px solid var(--ink); }

.science-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.science-card {
  grid-column: auto;
  overflow: hidden;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.science-card-wide { grid-column: auto; }

.science-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-bottom: 2px solid var(--ink);
}

.science-card > div { padding: 22px 24px 26px; }

.science-card span {
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.science-card h3 { margin-top: 5px; font-size: clamp(30px, 4vw, 55px); }
.science-card p { margin: 8px 0 0; color: var(--ink-soft); }

.theory-verdict {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.8fr) auto;
  align-items: center;
  gap: 32px;
  margin-top: 72px;
  padding: 32px;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.theory-verdict h3 { font-size: clamp(30px, 4vw, 55px); }

.verdict-window {
  padding: 16px 20px;
  background: var(--ink);
  color: var(--paper-light);
  border-left: 8px solid var(--red);
}

.verdict-window span, .verdict-window p { font-family: "IBM Plex Mono", monospace; font-size: 10px; text-transform: uppercase; }
.verdict-window strong { display: block; margin: 3px 0; font-size: 25px; }
.verdict-window p { margin: 0; color: #cdbfa8; }

.review-board {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.review-board > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-note {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5% 2%;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.review-note:hover, .review-note:focus-visible, .review-note.is-focus { z-index: 4; transform: scale(1.045) rotate(0deg); filter: drop-shadow(4px 5px 3px rgba(36, 35, 33, 0.25)); }
.review-note span, .review-note b { font-family: "IBM Plex Mono", monospace; font-size: clamp(7px, 0.75vw, 11px); text-transform: uppercase; }
.review-note span { color: var(--red); font-weight: 600; }
.review-note q { margin: 3% 0; font-family: "Newsreader", serif; font-size: clamp(12px, 1.45vw, 22px); font-style: italic; line-height: 1.05; }
.review-note b { font-weight: 400; }
.note-1 { left: 10%; top: 21%; width: 22.5%; height: 24%; transform: rotate(-1deg); }
.note-2 { left: 35%; top: 21%; width: 22.5%; height: 24%; transform: rotate(1deg); }
.note-3 { left: 59%; top: 25%; width: 19%; height: 22%; transform: rotate(-0.5deg); }
.note-4 { left: 8%; top: 53%; width: 21%; height: 24%; transform: rotate(1.2deg); }
.note-5 { left: 31%; top: 54%; width: 21.5%; height: 23%; transform: rotate(-0.8deg); }
.note-6 { left: 54%; top: 57%; width: 20%; height: 23%; transform: rotate(1deg); }

.review-footnote { margin: 30px 0 0; text-align: center; font-family: "Newsreader", serif; font-size: 23px; font-style: italic; }

.incident-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.incident-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.42fr);
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  border: 2px solid #080808;
  box-shadow: 10px 10px 0 #080808, 13px 13px 0 var(--red);
}

.incident-stage img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; align-self: start; border-right: 2px solid var(--ink); }
.incident-stage figcaption { min-width: 0; display: flex; flex-direction: column; justify-content: end; padding: 28px 24px; }
.incident-stage figcaption span { color: var(--red); font-family: "IBM Plex Mono", monospace; font-size: 10px; text-transform: uppercase; }
.incident-stage figcaption strong { max-width: 100%; margin-top: 8px; font-family: "Archivo Black", sans-serif; font-size: clamp(27px, 2.4vw, 32px); line-height: 1.02; letter-spacing: -0.02em; text-transform: uppercase; }
.incident-stage figcaption p { margin: 16px 0 0; color: var(--ink-soft); }

.incident-menu { border-top: 1px solid rgba(255, 255, 255, 0.25); }

.incident-button {
  display: grid;
  width: 100%;
  grid-template-columns: 40px 1fr;
  gap: 1px 12px;
  padding: 16px 4px;
  color: #b8aa94;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.incident-button span { grid-row: span 2; color: var(--red); font-family: "IBM Plex Mono", monospace; }
.incident-button b { color: inherit; font-family: "Archivo Black", sans-serif; font-size: 18px; text-transform: uppercase; }
.incident-button small { font-family: "IBM Plex Mono", monospace; font-size: 10px; text-transform: uppercase; }
.incident-button:hover, .incident-button:focus-visible, .incident-button.is-active { color: var(--paper-light); }
.incident-button.is-active span::before { content: "→ "; }

.lab-workbench {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.lab-workbench > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.lab-paper {
  position: absolute;
  z-index: 2;
  left: 22%;
  top: 20%;
  width: 56%;
  height: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5%;
  text-align: center;
}

.lab-paper > span { font-family: "IBM Plex Mono", monospace; font-size: 11px; color: var(--red); letter-spacing: 0.08em; }
.lab-paper > p { margin: 22px 0 34px; font-family: "Archivo Black", sans-serif; font-size: clamp(27px, 4.4vw, 58px); line-height: 1.02; text-transform: uppercase; }
.lab-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.closing { color: var(--paper-light); background: var(--red); border-top: 2px solid var(--ink); }
.closing-grid { display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: center; }
.closing-card { padding: 28px; color: var(--ink); background: var(--paper-light); border: 2px solid var(--ink); box-shadow: var(--shadow); transform: rotate(1.3deg); }
.closing-card img { width: 160px; height: 160px; object-fit: cover; border-radius: 50%; border: 2px solid var(--ink); }
.closing-card p { margin: 22px 0 14px; }
.closing-card a { font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  padding: 24px max(18px, calc((100vw - var(--max)) / 2));
  color: var(--paper-light);
  background: #121211;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.site-footer a { color: inherit; }

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 500;
  padding: 12px 16px;
  color: var(--paper-light);
  background: var(--ink);
  border: 2px solid var(--paper-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  transform: translateY(160%);
  transition: transform 220ms ease;
}

.toast.is-visible { transform: translateY(0); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: auto 1fr; }
  .header-source { display: none; }
  .nav-links { justify-content: end; }
  .section-grid { grid-template-columns: 1fr 0.85fr; gap: 50px; }
  #evidence .section-grid { grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr); gap: 50px; }
  .inventory { grid-template-columns: repeat(3, 1fr); }
  .inventory span:nth-child(3) { border-right: 0; }
  .inventory span:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .theory-verdict { grid-template-columns: 1fr 1fr; }
  .theory-verdict .button { grid-column: span 2; justify-self: start; }
  .incident-layout { grid-template-columns: 1fr; }
  .incident-menu { display: grid; grid-template-columns: repeat(5, 1fr); }
  .incident-button { grid-template-columns: 1fr; padding-inline: 12px; border-right: 1px solid rgba(255,255,255,0.2); }
  .incident-button span { grid-row: auto; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  html { scroll-padding-top: 110px; }
  .site-header { display: flex; min-height: 104px; align-items: flex-start; flex-wrap: wrap; gap: 5px 16px; padding-block: 8px 9px; }
  .brand { flex: 0 0 auto; }
  .nav-links { order: 2; width: 100%; justify-content: flex-start; gap: 18px; overflow-x: auto; padding: 5px 0 2px; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { flex: 0 0 auto; }
  .cover { min-height: auto; padding-top: 34px; padding-bottom: 34px; }
  .cover-frame { border-radius: 10px; box-shadow: 7px 7px 0 var(--ink); }
  .cover-frame img { width: 100%; aspect-ratio: 1.9 / 1; object-fit: cover; }
  .cover-actions { padding-top: 22px; }
  .cover-actions p { width: 100%; margin: 8px 0 0; }
  section:not(.cover) { padding-block: 76px; }
  .section-grid { grid-template-columns: 1fr; }
  #evidence .section-grid { grid-template-columns: 1fr; }
  .evidence-frame { justify-self: center; max-width: 520px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .section-heading > div, .closing-grid > div { min-width: 0; width: 100%; }
  h2 { max-width: 100%; font-size: clamp(38px, 11.3vw, 58px); overflow-wrap: anywhere; }
  .title-lines { overflow-wrap: normal; word-break: normal; }
  .evidence-title { font-size: clamp(38px, 10vw, 44px); }
  .model-title, .review-title, .incidents-title, .closing-title { font-size: clamp(34px, 9.2vw, 44px); }
  .science-title { font-size: clamp(31px, 8.5vw, 36px); }
  .closing-title { font-size: clamp(32px, 8.7vw, 34px); }
  .lab-title { font-size: clamp(22px, 6vw, 24px); letter-spacing: -0.045em; }
  .inventory { grid-template-columns: 1fr; }
  .inventory span { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .inventory span:nth-child(3) { border-right: 0; }
  .science-grid { grid-template-columns: 1fr; }
  .science-card, .science-card-wide { grid-column: auto; }
  .theory-verdict { grid-template-columns: 1fr; margin-top: 50px; padding: 24px; }
  .theory-verdict .button { grid-column: auto; }
  .review-board { aspect-ratio: auto; overflow: visible; padding-top: 58%; border: 0; box-shadow: none; }
  .review-board > img { height: auto; aspect-ratio: 16 / 9; object-fit: cover; border: 2px solid var(--ink); border-radius: 8px; }
  .review-note { position: relative; left: auto; top: auto; width: auto; height: auto; min-height: 150px; margin: 14px 4px 0; padding: 25px; background: var(--paper-light); border: 1px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); transform: rotate(0); }
  .review-note span, .review-note b { font-size: 10px; }
  .review-note q { font-size: 24px; }
  .incident-stage { grid-template-columns: 1fr; }
  .incident-stage img { border-right: 0; border-bottom: 2px solid var(--ink); }
  .incident-menu { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .incident-button { min-width: 190px; scroll-snap-align: start; }
  .lab-workbench { min-height: 690px; }
  .lab-workbench > img { object-position: center; }
  .lab-paper { left: 12%; top: 18%; width: 76%; height: 62%; padding: 4%; }
  .lab-paper > p { margin-block: 16px 24px; }
  .closing-grid { grid-template-columns: 1fr; gap: 48px; }
  .site-footer { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 460px) {
  .brand span { display: none; }
  .site-header { min-height: 96px; }
  .button { width: 100%; }
  .cover-actions p { font-size: 20px; }
  .evidence-stamp { right: -5px; bottom: 8px; font-size: 15px; }
  .receipt-list div { grid-template-columns: 110px 1fr; }
  .model-figure { border-radius: 8px; box-shadow: 6px 6px 0 var(--ink); }
  .model-figure figcaption { right: 8px; bottom: 8px; }
  .lab-workbench { min-height: 640px; }
  .lab-paper { left: 8%; width: 84%; }
  .lab-actions { width: 100%; }
}

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