/* ————————————————————————————————————————————————
   OUT OF AUTOPILOT · self-surveillance visual system
   your own footage: REC dots, timecodes, frames, handwritten notes
   paper + ink + one loud orange, everything else earns its place
   ———————————————————————————————————————————————— */

@font-face {
  font-family: "Bricolage";
  src: url("fonts/bricolage.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("fonts/caveat.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Plex Mono";
  src: url("fonts/plexmono-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Plex Mono";
  src: url("fonts/plexmono-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Plex Mono";
  src: url("fonts/plexmono-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("fonts/publicsans.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #fff7df;
  --ink: #171717;
  --orange: #ff5a36;
  --blue: #5367ff;
  --acid: #dfff57;
  --pink: #ff8cb4;
  --white: #fffdf7;
  --line: rgba(23, 23, 23, .28);
  --max: 1180px;
  --display: "Bricolage", "Arial Black", sans-serif;
  --hand: "Caveat", "Bradley Hand", cursive;
  --mono: "Plex Mono", "Courier New", monospace;
  --body: "Public Sans", Arial, sans-serif;
  --shadow: 8px 8px 0 var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-optical-sizing: auto;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3 { text-wrap: balance; }
input:focus-visible, select:focus-visible, button:focus-visible, a:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 99;
  padding: 10px 14px;
  background: var(--acid);
  border: 2px solid var(--ink);
  font: 600 .8rem/1 var(--mono);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* ————— shared surveillance bits ————— */

.rec-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--orange);
  vertical-align: 1px;
  animation: blink 1.4s steps(1) infinite;
}
@keyframes blink { 50% { opacity: .15; } }

.corners {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  --c: var(--paper);
  background:
    linear-gradient(var(--c) 0 0) left top / 24px 3px,
    linear-gradient(var(--c) 0 0) left top / 3px 24px,
    linear-gradient(var(--c) 0 0) right top / 24px 3px,
    linear-gradient(var(--c) 0 0) right top / 3px 24px,
    linear-gradient(var(--c) 0 0) left bottom / 24px 3px,
    linear-gradient(var(--c) 0 0) left bottom / 3px 24px,
    linear-gradient(var(--c) 0 0) right bottom / 24px 3px,
    linear-gradient(var(--c) 0 0) right bottom / 3px 24px;
  background-repeat: no-repeat;
}

/* ————— masthead ————— */

.masthead, main, .colophon {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  border-bottom: 4px solid var(--ink);
  font: 700 .72rem/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.masthead-case { margin: 0; text-align: center; font-weight: 600; }
.wordmark { font-weight: 700; text-decoration: none; }
.masthead nav { display: flex; justify-content: flex-end; gap: 20px; }
.masthead nav a { text-decoration: none; padding-block: 6px; }
.masthead nav a:hover { text-decoration: underline 3px var(--orange); text-underline-offset: 6px; }

/* ————— shared bits ————— */

.eyebrow, .mono-label {
  margin: 0;
  font: 600 .72rem/1.35 var(--mono);
  letter-spacing: .05em;
}
.eyebrow {
  display: inline-block;
  padding: 6px 10px;
  background: var(--acid);
  border: 2px solid var(--ink);
}
.file-tab {
  display: inline-block;
  margin: 0 0 -2px;
  padding: 9px 16px 7px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  background: var(--white);
  font: 700 .7rem/1 var(--mono);
  letter-spacing: .12em;
}
.file { padding-top: 90px; }
.file > .file-tab + * { border-top: 3px solid var(--ink); }
.section-intro { padding-top: 46px; }
.section-intro h2, .beliefs-header h2, .exhibits h2, .about-copy h2, .newsletter-card h2 {
  margin: 20px 0 0;
  font: 800 clamp(2.7rem, 6vw, 5.4rem)/.92 var(--display);
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.section-note {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
}
.stamp {
  padding: 11px 18px;
  border: 5px double var(--orange);
  color: var(--orange);
  font: 700 1.05rem/1.15 var(--mono);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-7deg);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .82 .2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}
.tape {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 110px;
  height: 26px;
  background: rgba(223, 255, 87, .75);
  border-inline: 1px dashed rgba(23, 23, 23, .25);
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 1px 2px rgba(23, 23, 23, .18);
}
.text-link {
  display: inline-block;
  margin-top: 20px;
  font: 700 .8rem/1 var(--mono);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
.text-link:hover { text-decoration-color: var(--orange); }

/* ————— hero ————— */

.hero {
  position: relative;
  padding: 70px 0 90px;
  border-bottom: 4px solid var(--ink);
}
.hero h1 { margin: 26px 0 0; }
.hero .said {
  display: block;
  font: 800 clamp(3.9rem, 10.5vw, 8.6rem)/.86 var(--display);
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.hero .hand {
  display: inline-block;
  margin: 10px 0 0 clamp(0px, 26vw, 330px);
  color: var(--orange);
  font: 600 clamp(3.2rem, 8.5vw, 6.6rem)/1 var(--hand);
  text-transform: none;
  transform: rotate(-2.5deg);
}
.sticky-note {
  position: absolute;
  top: 122px;
  right: 12px;
  width: 250px;
  padding: 22px 18px 18px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
  font: 600 1.26rem/1.15 var(--hand);
  transform: rotate(3.5deg);
}
.rec-chip {
  position: absolute;
  top: 330px;
  right: 12px;
  margin: 0;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  background: var(--white);
  font: 600 .7rem/1 var(--mono);
  letter-spacing: .06em;
  transform: rotate(-1deg);
  box-shadow: 4px 4px 0 var(--ink);
}
.hero-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 42px;
  max-width: 860px;
  margin: 80px 0 0 auto;
  padding-left: 28px;
  border-left: 12px solid var(--orange);
}
.hero-bottom p { margin: 0; }
.hero-deck { font-size: 1.26rem; line-height: 1.45; font-weight: 500; }
.hero-cta {
  display: inline-block;
  width: auto;
  margin-top: 28px;
  text-decoration: none;
  text-align: center;
}
.fine-print { font: 400 .76rem/1.6 var(--mono); }
.down-arrow {
  position: absolute;
  left: 0;
  bottom: 74px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--blue);
  color: white;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .12s, box-shadow .12s;
}
.down-arrow:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }

/* ————— newswire ————— */

.newswire {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
}
.newswire-track {
  display: flex;
  width: max-content;
  gap: 64px;
  padding: 15px 0;
  animation: crawl 36s linear infinite;
  font: 600 .74rem/1 var(--mono);
  letter-spacing: .04em;
  white-space: nowrap;
}
.newswire span:nth-child(even) { color: var(--acid); }
@keyframes crawl { to { transform: translateX(-50%); } }

/* ————— 00:01 · the moment ————— */

.moment { padding-bottom: 80px; }
.moment-inner { position: relative; }
.moment .section-intro { border-top: 3px solid var(--ink); margin-bottom: 60px; }
.frames {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.frame {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(var(--tilt, -.4deg));
}
.frame:nth-child(2) { --tilt: .45deg; }
.frame:nth-child(3) { --tilt: -.25deg; }
.frame-meta {
  margin: 0;
  font: 600 .68rem/1 var(--mono);
  letter-spacing: .12em;
  color: rgba(255, 247, 223, .75);
}
.frame-cap {
  margin: 0;
  font: 700 clamp(1.3rem, 2.2vw, 1.7rem)/1.12 var(--display);
  letter-spacing: -.015em;
}
.frame.missing {
  grid-column: 1 / -1;
  min-height: 0;
  gap: 14px;
  background: var(--acid);
  color: var(--ink);
  border-style: dashed;
  box-shadow: 10px 10px 0 var(--orange);
  transform: rotate(.3deg);
}
.frame.missing .frame-meta { color: var(--ink); font-weight: 700; }
.frame.missing .frame-cap { max-width: 780px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.frame-note { margin: 0; font: 700 .78rem/1.4 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.moment .margin-note { position: absolute; right: -18px; bottom: -70px; }
.margin-note {
  width: 260px;
  margin: 0;
  padding: 20px 16px 14px;
  border: 2px solid var(--ink);
  background: var(--white);
  font: 600 1.22rem/1.1 var(--hand);
  transform: rotate(2.6deg);
  position: relative;
  box-shadow: 5px 5px 0 var(--ink);
}

/* ————— 00:02 · caught in 4K ————— */

.incident-lab .section-intro { margin-bottom: 64px; }
.lab-grid { display: grid; grid-template-columns: .78fr 1fr; gap: 70px; padding-bottom: 30px; }
.lab-grid > * { min-width: 0; }
#incident-form { display: grid; gap: 8px; align-content: start; }
label {
  margin-top: 14px;
  font: 700 .7rem/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
input, select {
  width: 100%;
  min-width: 0;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-weight: 500;
}
select { appearance: none; background-image: linear-gradient(45deg, transparent 49%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 51%); background-position: calc(100% - 21px) 55%, calc(100% - 14px) 55%; background-size: 7px 7px; background-repeat: no-repeat; }
.form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.form-actions .ink { grid-column: 1 / -1; }
.button {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--orange);
  color: white;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font: 700 .95rem/1.1 var(--body);
  transition: transform .1s, box-shadow .1s;
}
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.button:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
.button.secondary { background: var(--acid); color: var(--ink); }
.button.ink { background: var(--ink); color: var(--paper); }
.status { min-height: 20px; margin: 12px 0 0; font: 400 .72rem/1.5 var(--mono); }

.share-card {
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 4 / 5;
  min-height: 640px;
  padding: 34px;
  border: 4px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 10px 10px 0 var(--orange);
  transform: rotate(.55deg);
}
.share-card header, .share-card footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font: 700 .64rem/1.3 var(--mono);
  letter-spacing: .08em;
}
.share-card header { padding-bottom: 16px; border-bottom: 1px solid var(--paper); }
.rec-label { color: var(--orange); }
.card-intention, .card-actual {
  margin: 28px 0 0;
  font: 800 clamp(1.8rem, 3.4vw, 2.8rem)/.94 var(--display);
  letter-spacing: -.03em;
}
.card-actual { color: var(--acid); }
.share-card dl { margin: auto 0 0; }
.share-card dl div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 247, 223, .32);
}
.share-card dt {
  margin: 0;
  font: 700 .68rem/1.2 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.share-card dd { margin: 0; font-size: .9rem; line-height: 1.4; }
.share-card footer { margin-top: 18px; padding-top: 18px; border-top: 2px solid var(--orange); }

/* ————— 00:03 · the plot twist ————— */

.plot-twist { padding-bottom: 20px; }
.twist-screen {
  position: relative;
  padding: clamp(50px, 7vw, 90px) clamp(24px, 6vw, 80px);
  border: 4px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  box-shadow: 14px 14px 0 var(--orange);
  transform: rotate(-.3deg);
}
.twist-screen .mono-label { color: rgba(255, 247, 223, .72); letter-spacing: .14em; }
.twist-screen h2 {
  margin: 28px 0 0;
  font: 800 clamp(2.3rem, 5.4vw, 4.6rem)/.96 var(--display);
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.twist-screen h2 em { display: block; margin-top: 12px; font-style: normal; color: var(--acid); }
.twist-body {
  max-width: 660px;
  margin: 28px auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
}
.twist-hand {
  margin: 32px 0 0;
  color: var(--orange);
  font: 600 clamp(1.7rem, 3vw, 2.3rem)/1 var(--hand);
  transform: rotate(-1.5deg);
}

/* ————— 00:04 · beliefs ————— */

.beliefs-grid { display: grid; grid-template-columns: .78fr 1.35fr; gap: 80px; padding: 46px 0 40px; border-top: 3px solid var(--ink); }
.beliefs-header h2 { position: sticky; top: 30px; }
.belief-list { margin: 0; padding: 0; list-style: none; border-top: 3px solid var(--ink); }
.belief-list li { position: relative; padding: 36px 0 42px 78px; border-bottom: 3px solid var(--ink); }
.belief-list li > span {
  position: absolute;
  left: 0;
  top: 40px;
  color: var(--orange);
  font: 700 1.3rem/1 var(--mono);
}
.belief-list h3 {
  margin: 0 0 14px;
  font: 750 clamp(1.7rem, 2.8vw, 2.4rem)/.98 var(--display);
  letter-spacing: -.02em;
}
.belief-list p { max-width: 620px; margin: 0; font-size: 1.04rem; line-height: 1.6; }

/* ————— 00:04 · toolkit ————— */

.exhibits { padding-bottom: 40px; }
.exhibits .section-intro {
  border-top: 3px solid var(--ink);
  margin-bottom: 70px;
}
.uninstall-dialog { display: grid; justify-items: center; margin-bottom: 90px; }
.dialog-window {
  position: relative;
  width: min(430px, 100%);
  padding: 30px 28px 26px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}
.dialog-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: var(--pink);
  font-size: 1.6rem;
}
.dialog-title { margin: 18px 0 6px; font: 750 1.45rem/1.1 var(--display); }
.dialog-body { margin: 0 0 22px; font-size: .95rem; }
.dialog-actions { display: grid; grid-template-columns: 1fr 1.3fr; gap: 10px; }
.dialog-btn {
  padding: 11px 10px;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--paper);
  cursor: pointer;
  font: 600 .88rem/1.1 var(--body);
  transition: transform .1s;
}
.dialog-btn:hover { transform: translateY(1px); }
.dialog-btn.primary { background: var(--orange); color: white; font-weight: 700; }
.graduate-stamp {
  position: absolute;
  pointer-events: none;
  inset: auto 0 34%;
  margin-inline: auto;
  width: max-content;
  font-size: 2rem;
  transform: rotate(-12deg);
  background: rgba(255, 253, 247, .6);
}
.dialog-caption { margin: 22px 0 0; font: 600 1.3rem/1.2 var(--hand); transform: rotate(-1deg); }

.exhibit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.exhibit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 26px 26px 30px;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(var(--tilt, -.5deg));
  transition: transform .16s, box-shadow .16s;
}
.exhibit:nth-child(2n) { --tilt: .55deg; }
.exhibit:nth-child(3n) { --tilt: -.3deg; }
.exhibit:hover { transform: rotate(0deg) translate(-2px, -2px); box-shadow: 10px 10px 0 var(--ink); }
.exhibit-tag { margin: 0; font: 700 .68rem/1 var(--mono); letter-spacing: .14em; }
.exhibit h3 { margin: 4px 0 0; font: 750 1.6rem/1 var(--display); letter-spacing: -.02em; }
.exhibit p:not(.exhibit-tag) { margin: 0; font-size: .95rem; line-height: 1.55; }
.chip {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 9px;
  border: 2px dashed var(--ink);
  font: 700 .62rem/1 var(--mono);
  letter-spacing: .1em;
}
.chip.live { border-style: solid; background: var(--acid); }
.boundary-card { background: var(--paper); border-style: dashed; box-shadow: none; }
.boundary-card p:last-child { font: 400 .8rem/1.6 var(--mono); }

/* ————— 00:05 · behind the camera ————— */

.about-grid { display: grid; grid-template-columns: .58fr 1fr; gap: 80px; padding: 56px 0 40px; border-top: 3px solid var(--ink); }
.portrait {
  display: grid;
  min-height: 500px;
  place-items: center;
  align-content: center;
  border: 4px solid var(--ink);
  background:
    repeating-linear-gradient(to bottom, transparent 0 58px, rgba(23, 23, 23, .3) 58px 60px),
    var(--pink);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-1.2deg);
}
.portrait span { font: 800 9rem/.8 var(--display); letter-spacing: -.06em; }
.portrait p { margin: 30px 0 0; text-align: center; font: 700 .7rem/1.5 var(--mono); }
.about-copy { align-self: center; }
.about-copy h2 { margin-bottom: 30px; }
.suspect-sheet { margin: 0 0 26px; border-top: 2px solid var(--ink); }
.suspect-sheet div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 2px solid var(--line);
}
.suspect-sheet dt {
  margin: 0;
  align-self: start;
  padding-top: 3px;
  font: 700 .68rem/1.2 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.suspect-sheet dd { margin: 0; font-weight: 500; }
.about-copy > p:not(.eyebrow) { max-width: 640px; font-size: .95rem; line-height: 1.65; }
.social-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.social-links a { font: 700 .78rem/1 var(--mono); text-underline-offset: 5px; text-decoration-thickness: 2px; }
.social-links a:hover { text-decoration-color: var(--orange); }

/* ————— 00:06 · the rewatch ————— */

.newsletter { padding-bottom: 110px; }
.newsletter-card {
  padding: 56px;
  border: 4px solid var(--ink);
  background: var(--acid);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(.25deg);
}
.newsletter-card .eyebrow { background: var(--white); }
.newsletter-card h2 { max-width: 920px; }
.newsletter-card > p:not(.eyebrow) { max-width: 640px; font-size: 1.06rem; line-height: 1.5; }
#interest-form { max-width: 820px; margin-top: 32px; }
.email-row { display: grid; grid-template-columns: 1fr auto; }
.email-row .button { width: auto; box-shadow: none; }
.email-row .button:hover, .email-row .button:active { transform: none; }

/* ————— colophon ————— */

.colophon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 26px 0 46px;
  border-top: 4px solid var(--ink);
  font: 600 .68rem/1.4 var(--mono);
  letter-spacing: .05em;
}
.colophon p { margin: 0; }
.colophon p:first-child::after {
  content: "";
  display: inline-block;
  width: 74px;
  height: 14px;
  margin-left: 14px;
  vertical-align: -2px;
  background: repeating-linear-gradient(to right, var(--ink) 0 2px, transparent 2px 4px, var(--ink) 4px 7px, transparent 7px 9px, var(--ink) 9px 10px, transparent 10px 13px);
}

/* ————— motion ————— */

.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1); }
.js .ink-on-view { opacity: 0; transform: scale(1.7) rotate(-16deg); }
.js .ink-on-view.is-inked {
  opacity: 1;
  transform: scale(1) rotate(-7deg);
  transition: opacity .18s ease-out, transform .34s cubic-bezier(.2, 1.6, .3, 1);
}
.js .hero .hand { opacity: 0; transform: rotate(-2.5deg) translateY(10px); animation: scrawl .5s ease-out .45s forwards; }
@keyframes scrawl { to { opacity: 1; transform: rotate(-2.5deg) translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .newswire-track { animation: none; }
  .rec-dot { animation: none; }
  .js .reveal, .js .ink-on-view, .js .hero .hand {
    opacity: 1;
    animation: none;
    transition: none;
  }
  .js .ink-on-view { transform: rotate(-7deg); }
  .js .reveal { transform: none; }
  .exhibit, .button, .down-arrow, .dialog-btn { transition: none; }
}

/* ————— responsive ————— */

@media (max-width: 980px) {
  .exhibit-list { grid-template-columns: 1fr 1fr; }
  .frames { grid-template-columns: 1fr 1fr; }
  .frame:nth-child(3) { grid-column: 1 / -1; min-height: 0; }
}

@media (max-width: 820px) {
  .masthead { grid-template-columns: 1fr auto; gap: 12px; }
  .masthead-case { display: none; }
  .masthead nav { gap: 14px; }
  .masthead nav a:nth-child(n + 3) { display: none; }
  .hero { padding-top: 56px; }
  .hero .said { font-size: clamp(3.4rem, 15vw, 5.8rem); }
  .hero .hand { margin-left: clamp(0px, 30vw, 220px); font-size: clamp(2.8rem, 12vw, 4.6rem); }
  .sticky-note { position: relative; top: auto; right: auto; margin: 46px 10px 0 auto; }
  .rec-chip { position: static; width: max-content; margin: 34px 0 0; transform: none; }
  .hero-bottom { grid-template-columns: 1fr; margin-top: 52px; }
  .down-arrow { display: none; }
  .file { padding-top: 66px; }
  .lab-grid, .beliefs-grid, .about-grid { grid-template-columns: 1fr; }
  .frames { grid-template-columns: 1fr; gap: 20px; }
  .frame { min-height: 0; gap: 16px; }
  .frame:nth-child(3) { grid-column: auto; }
  .moment .margin-note { right: 5px; bottom: -76px; }
  .moment { padding-bottom: 96px; }
  .incident-lab .section-intro { margin-bottom: 46px; }
  .lab-grid { gap: 54px; }
  .share-card { width: 100%; min-height: 600px; aspect-ratio: auto; padding: 24px; }
  .share-card dl div { grid-template-columns: 108px 1fr; }
  .beliefs-grid { gap: 42px; }
  .beliefs-header h2 { position: static; }
  .exhibits .section-intro { margin-bottom: 52px; }
  .uninstall-dialog { margin-bottom: 66px; }
  .about-grid { gap: 52px; }
  .portrait { min-height: 380px; }
  .portrait span { font-size: 7rem; }
  .newsletter-card { padding: 38px 24px; }
  .email-row { grid-template-columns: 1fr; gap: 8px; }
  .email-row .button { width: 100%; }
  .colophon { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .exhibit-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .masthead, main, .colophon { width: min(calc(100% - 24px), var(--max)); }
  .hero .said { font-size: 14.5vw; }
  .hero-deck { font-size: 1.1rem; }
  .section-intro h2, .beliefs-header h2, .exhibits h2, .about-copy h2, .newsletter-card h2 { font-size: 2.5rem; }
  .form-actions { grid-template-columns: 1fr; }
  .form-actions .ink { grid-column: auto; }
  .share-card { min-height: 540px; }
  .share-card header { flex-wrap: wrap; }
  .card-intention, .card-actual { font-size: 1.7rem; }
  .share-card dl div { grid-template-columns: 1fr; gap: 6px; }
  .belief-list li { padding-left: 52px; }
  .dialog-actions { grid-template-columns: 1fr; }
  .suspect-sheet div { grid-template-columns: 1fr; gap: 4px; }
}
