:root {
  --red: #ed1c24;
  --red-dark: #b20d14;
  --ink: #12110f;
  --paper: #f2ecdf;
  --cream: #fff9ed;
  --yellow: #ffef5a;
  --muted: #746f67;
  --line: rgba(18, 17, 15, 0.2);
  --white: #fff;
  --max: 1240px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  font-size: 18px;
  line-height: 1.48;
}

body, button, input, textarea { font: inherit; }

img { max-width: 100%; }

a { color: inherit; }

a, button, input, textarea { border-radius: 0; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 3px;
}

button { cursor: pointer; }

h1, h2, h3, p, blockquote { margin-top: 0; }

h1, h2, h3 { text-wrap: balance; }

h1, h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(70px, 9vw, 132px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(46px, 6vw, 78px);
}

h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.08;
}

mark {
  padding: 0 0.08em;
  color: var(--yellow);
  background: transparent;
  text-shadow: 4px 4px 0 var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
  padding: 13px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
  border-bottom: 4px solid var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img { display: block; width: 230px; height: auto; }

.brand span,
.section-number,
.kicker,
.output-label,
.copy-stage-top,
.profile-topline,
.script-step,
.rail-number {
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand span {
  padding-left: 14px;
  border-left: 2px solid var(--ink);
}

nav { display: flex; align-items: center; gap: 6px; }

nav a {
  padding: 10px 13px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid transparent;
}

nav a:hover,
nav a[aria-current="page"] {
  border-color: var(--ink);
  background: var(--yellow);
}

.hero,
.subhero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 52px;
  align-items: center;
  min-height: 690px;
  padding: 74px max(34px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: var(--red);
  border-bottom: 8px solid var(--ink);
}

.subhero { min-height: 560px; }

.hero::before,
.subhero::before {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-copy,
.subhero > div,
.profile-proof,
.mini-profile,
.fwed-card,
.one-job-card { position: relative; z-index: 1; }

.kicker {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  transform: rotate(-1deg);
}

.hero-lede,
.subhero > div > p:last-child {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.button-dark { color: #fff; background: var(--ink); border-color: #fff; box-shadow: 5px 5px 0 #fff; }
.button-yellow { color: var(--ink); background: var(--yellow); }
.button-cream { background: var(--cream); }

.text-link { font-weight: 900; text-underline-offset: 5px; }
.on-red, .on-dark { color: #fff; }

.profile-proof {
  padding: 24px;
  color: var(--ink);
  background: var(--cream);
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(1.2deg);
}

.profile-topline { display: flex; justify-content: space-between; margin-bottom: 18px; }
.live-dot { color: #13783b; }
.live-dot::before { content: "●"; margin-right: 6px; }
.profile-person { display: flex; align-items: center; gap: 16px; }
.profile-person img,
.mini-profile img { width: 84px; height: 84px; object-fit: cover; border: 3px solid var(--ink); border-radius: 50%; }
.profile-person h2 { margin: 0 0 2px; font-family: inherit; font-size: 26px; letter-spacing: -0.02em; text-transform: none; }
.profile-person p { margin: 0; color: var(--muted); }
.profile-title { margin: 20px 0 0; padding: 12px 0; font-size: 20px; font-weight: 900; border-block: 2px solid var(--ink); }
.profile-note { margin: 16px 0; font-size: 15px; }
.profile-links { display: grid; gap: 7px; }
.profile-links a { font-weight: 900; text-underline-offset: 4px; }

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  color: #fff;
  background: var(--ink);
  border-inline: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.outcome-strip div { min-height: 112px; padding: 18px; border-right: 2px solid rgba(255,255,255,.25); }
.outcome-strip div:last-child { border-right: 0; }
.outcome-strip span { display: block; color: var(--yellow); font-family: Impact, sans-serif; font-size: 26px; }
.outcome-strip b, .outcome-strip small { display: block; }
.outcome-strip b { margin: 5px 0; text-transform: uppercase; }
.outcome-strip small { color: #c9c5bd; }
.outcome-strip .outcome { color: var(--ink); background: var(--yellow); }
.outcome-strip .outcome span { color: var(--red); }
.outcome-strip .outcome small { color: var(--ink); }

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-intro { max-width: 640px; margin-bottom: 44px; }
.section-intro.wide { max-width: 900px; }
.section-intro > p:last-child { font-size: 21px; }
.section-number { margin-bottom: 14px; color: var(--red); }
.section-number.light { color: var(--yellow); }

.one-pager { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 70px; }
.one-pager .section-intro { position: sticky; top: 130px; align-self: start; }

.action-rail { margin: 0; padding: 0; list-style: none; border-top: 4px solid var(--ink); }
.action-rail li { display: grid; grid-template-columns: 68px 1fr; gap: 22px; padding: 27px 0; border-bottom: 2px solid var(--ink); }
.rail-number { display: grid; place-items: center; width: 58px; height: 58px; color: #fff; background: var(--red); border: 3px solid var(--ink); }
.action-rail p { margin: 0; }

.cta-lab {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  width: 100%;
  padding-inline: max(34px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: var(--ink);
  border-block: 8px solid var(--red);
}

.cta-copy h2 em { color: var(--yellow); font-style: normal; }
.tiny-steps { margin: 24px 0 30px; padding-left: 24px; }
.tiny-steps li { margin-bottom: 9px; }

.copy-stage { align-self: center; padding: 26px; color: var(--ink); background: var(--cream); border: 4px solid var(--red); box-shadow: 10px 10px 0 var(--red); }
.copy-stage-top { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.copy-textarea { display: block; width: 100%; padding: 20px; color: var(--ink); background: #fff; border: 3px solid var(--ink); font-size: 18px; font-weight: 700; line-height: 1.45; resize: vertical; user-select: all; }
.copy-stage .button { width: 100%; margin-top: 14px; }
.safe-note { margin: 18px 0 0; padding: 14px; background: var(--yellow); border-left: 5px solid var(--red); font-size: 15px; }

.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.route-grid .section-intro { grid-column: 1 / -1; }
.route-card { display: flex; flex-direction: column; min-height: 330px; padding: 28px; border: 4px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); text-decoration: none; }
.route-card > span { font-family: Impact, sans-serif; font-size: 50px; }
.route-card h3 { margin-top: 28px; font-size: 34px; text-transform: uppercase; }
.route-card p { flex: 1; }
.route-card:hover { transform: translate(3px, 3px); box-shadow: 5px 5px 0 var(--ink); }
.red-route { color: #fff; background: var(--red); }
.red-route > span { color: var(--yellow); }
.ink-route { color: #fff; background: var(--ink); }
.ink-route > span { color: var(--red); }
.paper-route { background: var(--cream); }
.paper-route > span { color: var(--red); }

.truth-panel,
.safety-band {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 34px;
  align-items: center;
  width: 100%;
  padding-inline: max(34px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: var(--red);
  border-block: 8px solid var(--ink);
}
.truth-panel img, .safety-band img { width: 160px; image-rendering: pixelated; }
.truth-panel h2, .safety-band h2 { margin-bottom: 10px; }
.truth-panel p:last-child, .safety-band p:last-child { max-width: 700px; margin-bottom: 0; }
.truth-actions { display: grid; justify-items: center; gap: 18px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  min-height: 190px;
  padding: 48px max(34px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: var(--ink);
  border-top: 8px solid var(--red);
}
.site-footer > div:first-child { max-width: 690px; }
.site-footer strong { color: var(--yellow); text-transform: uppercase; }
.site-footer p { margin: 8px 0 0; }
.footer-corner { display: grid; justify-items: end; align-content: end; gap: 10px; text-align: right; }
.footer-corner span { color: #aaa49a; font-size: 14px; }
.footer-corner a { padding-bottom: 4px; color: var(--yellow); font-size: 20px; font-weight: 900; text-decoration: none; border-bottom: 2px solid var(--yellow); }

.copy-status { position: fixed; z-index: 80; right: 22px; bottom: 22px; min-width: 0; padding: 0; color: var(--ink); background: var(--yellow); border: 0 solid var(--ink); font-weight: 900; box-shadow: 0 0 0 var(--ink); }
.copy-status:not(:empty) { min-width: 150px; padding: 14px 18px; border-width: 3px; box-shadow: 5px 5px 0 var(--ink); }

/* Exact post */
.mini-profile { display: flex; align-items: center; gap: 18px; padding: 24px; color: var(--ink); background: var(--cream); border: 4px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); transform: rotate(1deg); }
.mini-profile div { display: grid; }
.mini-profile b { font-size: 24px; }
.mini-profile a { color: var(--red); font-weight: 900; }
.mini-profile span { color: var(--muted); font-size: 14px; }

.source-note { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding-block: 36px; border-bottom: 3px solid var(--ink); }
.source-note div { display: grid; gap: 4px; }
.source-note span { color: var(--red); font-family: monospace; font-weight: 900; text-transform: uppercase; }
.source-note a { font-weight: 900; }
.source-note p { margin: 0; }

.thread-breakdown { padding-top: 78px; }
.thread-window { padding: 0 32px 50px; background: #f7f7f7; border: 4px solid var(--ink); box-shadow: 12px 12px 0 rgba(18,17,15,.15); }
.thread-window-bar { position: sticky; z-index: 4; top: 88px; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; min-height: 70px; margin: 0 -32px 34px; padding: 0 30px; background: rgba(255,255,255,.96); border-bottom: 2px solid #ddd; }
.thread-window-bar span:last-child { color: var(--muted); font-size: 14px; }
.post-cluster { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: 30px; align-items: center; max-width: 1040px; margin: 0 auto 54px; }
.post-cluster.flip .thread-post { order: 2; }
.post-cluster.flip .annotation { order: 1; }
.thread-post { position: relative; padding: 24px; background: #fff; border: 2px solid #ddd; border-radius: 22px; box-shadow: 0 10px 28px rgba(0,0,0,.08); }
.thread-author { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: center; margin-bottom: 18px; }
.thread-author div { display: grid; }
.thread-author small, .thread-author > span:last-child { color: #777; font-size: 13px; }
.avatar { display: grid; place-items: center; width: 48px; height: 48px; color: #fff; background: var(--red); border-radius: 50%; font-weight: 900; }
.exact-post-part { overflow-wrap: anywhere; font-size: 16px; line-height: 1.52; }
.thread-icons { margin-top: 20px; color: #555; letter-spacing: 4px; }
.annotation { position: relative; padding: 24px 22px; background: var(--yellow); border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--red); }
.annotation::before { content: ""; position: absolute; left: -30px; top: 50%; width: 30px; border-top: 3px solid var(--red); }
.flip .annotation::before { right: -30px; left: auto; }
.annotation > span { color: var(--red); font-family: Impact, sans-serif; font-size: 38px; }
.annotation p { margin: 0; font-size: 15px; }
.cta-post { border: 5px solid var(--red); }
.cta-post .exact-post-part { font-size: 19px; font-weight: 800; }
.cta-post .button { width: 100%; margin-top: 20px; }

.tag-map { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.tag-map dl { margin: 0; }
.tag-map dl div { display: grid; grid-template-columns: 160px 1fr; gap: 18px; padding: 18px 0; border-bottom: 2px solid var(--ink); }
.tag-map dt { color: var(--red); font-weight: 900; }
.tag-map dd { margin: 0; }
.tag-map .safe-note { grid-column: 1 / -1; }

.next-band { display: flex; align-items: center; justify-content: space-between; gap: 34px; width: 100%; padding-inline: max(34px, calc((100vw - var(--max)) / 2)); color: #fff; background: var(--red); border-block: 8px solid var(--ink); }
.next-band h2 { margin: 0; }

/* Support */
.fwed-card { justify-self: end; width: min(320px, 100%); padding: 20px; color: var(--ink); background: var(--cream); border: 4px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); text-align: center; transform: rotate(1deg); }
.fwed-card img { width: 170px; image-rendering: pixelated; }
.fwed-card p { margin: 6px 0 0; font-family: monospace; }
.support-entry { display: grid; grid-template-columns: .7fr 1.3fr; gap: 58px; }
.prep-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.prep-grid li { padding: 18px; background: var(--cream); border: 2px solid var(--ink); }
.prep-grid span, .prep-grid b, .prep-grid small { display: block; }
.prep-grid span { color: var(--red); font-family: Impact, sans-serif; font-size: 32px; }
.prep-grid small { color: var(--muted); }
.official-note { grid-column: 1 / -1; display: grid; grid-template-columns: 180px 1fr auto; gap: 20px; align-items: center; margin-top: 6px; padding: 22px; color: #fff; background: var(--ink); border-left: 8px solid var(--red); }
.official-note p { margin: 0; }
.official-note a { color: var(--yellow); font-weight: 900; }

.script-run { display: grid; grid-template-columns: .62fr 1.38fr; gap: 60px; width: 100%; padding-inline: max(34px, calc((100vw - var(--max)) / 2)); color: #fff; background: var(--ink); border-block: 8px solid var(--red); }
.script-sticky { position: sticky; top: 130px; align-self: start; }
.script-sticky .button { margin-top: 14px; }
.script-sticky .micro { margin-top: 16px; color: #aaa; font-size: 14px; }
.support-steps article { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 28px; color: var(--ink); background: var(--cream); border: 3px solid var(--ink); border-bottom: 0; }
.support-steps article:last-child { border-bottom: 3px solid var(--ink); }
.support-steps .hot-script { background: var(--yellow); border-left: 8px solid var(--red); }
.script-step { display: grid; place-items: center; width: 56px; height: 56px; color: #fff; background: var(--red); }
.support-steps blockquote { margin-bottom: 12px; padding: 16px; background: #fff; border-left: 4px solid var(--red); font-size: 17px; font-weight: 700; }
.support-steps p { margin: 0; color: #5c5850; font-size: 15px; }
.sr-copy-source { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: pre-wrap; }

.followup-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 60px; }
.copy-panel { padding: 26px; background: var(--cream); border: 4px solid var(--ink); box-shadow: 8px 8px 0 var(--red); }
.copy-panel-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.copy-panel blockquote { margin: 0; font-size: 19px; line-height: 1.55; }
.mini-button { min-height: 38px; padding: 7px 12px; color: #fff; background: var(--ink); border: 2px solid var(--ink); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.mini-button:hover { color: var(--ink); background: var(--yellow); }

.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 0; }
.do-dont > div { padding: 30px; border: 4px solid var(--ink); }
.do-dont > div:first-child { background: var(--yellow); }
.do-dont > div:last-child { color: #fff; background: var(--red); }
.do-dont h2 { font-size: 50px; }
.do-dont ul { margin-bottom: 0; padding-left: 22px; }
.do-dont li { margin-bottom: 9px; }

/* Copy kit */
.one-job-card { padding: 30px; color: var(--ink); background: var(--yellow); border: 4px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); text-align: center; transform: rotate(1.5deg); }
.one-job-card span, .one-job-card b, .one-job-card p { display: block; }
.one-job-card span { font-family: monospace; text-transform: uppercase; }
.one-job-card b { margin: 18px 0 8px; font-family: Impact, sans-serif; font-size: 46px; line-height: .95; text-transform: uppercase; }
.one-job-card p { margin: 0; font-weight: 900; }

.builder { display: grid; grid-template-columns: .75fr 1.25fr; gap: 44px; align-items: start; }
.builder-form { padding: 28px; background: var(--cream); border: 4px solid var(--ink); }
.builder-form h2 { font-size: 54px; }
.builder-form form { display: grid; gap: 8px; }
.builder-form label { margin-top: 12px; font-weight: 900; }
.builder-form input, .builder-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fff; border: 2px solid var(--ink); }
.builder-form small { color: var(--muted); }
.handle-input { display: grid; grid-template-columns: 42px 1fr; border: 2px solid var(--ink); background: var(--ink); }
.handle-input span { display: grid; place-items: center; color: #fff; font-weight: 900; }
.handle-input input { border: 0; }
.builder-output { position: sticky; top: 116px; display: grid; gap: 22px; }
.output-label { display: flex; justify-content: space-between; padding: 12px 16px; color: #fff; background: var(--ink); }
.output-block { padding: 26px; background: #fff; border: 3px solid var(--ink); box-shadow: 8px 8px 0 rgba(18,17,15,.12); }
.primary-output { color: #fff; background: var(--red); }
.output-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.output-head h3 { margin: 0; }
.output-block .copy-textarea { min-height: 220px; }
.output-block > p:last-child { margin: 16px 0 0; }
.generated-post { white-space: pre-wrap; font-size: 16px; line-height: 1.55; }

.exact-template { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; width: 100%; padding-inline: max(34px, calc((100vw - var(--max)) / 2)); color: #fff; background: var(--ink); border-block: 8px solid var(--red); }
.tag-equation { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; padding: 24px; color: var(--ink); background: var(--yellow); border: 4px solid var(--red); font-size: 22px; }
.tag-equation span { padding: 8px 10px; background: #fff; border: 2px solid var(--ink); font-weight: 900; }
.tag-equation em { font-style: normal; font-weight: 900; }

.checklist-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; }
.checklist-copy { position: sticky; top: 130px; align-self: start; }
.checklist { display: grid; gap: 12px; margin: 0; padding: 0; border: 0; }
.checklist label { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: center; padding: 18px; background: var(--cream); border: 2px solid var(--ink); cursor: pointer; }
.checklist input { width: 24px; height: 24px; accent-color: var(--red); }
.checklist span { display: grid; }
.checklist small { color: var(--muted); }
.checklist label:has(input:checked) { background: var(--yellow); text-decoration: line-through; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Print guide */
body[data-page="print"] { background: #333; }
.print-toolbar { position: sticky; z-index: 20; top: 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px 24px; color: #fff; background: var(--ink); }
.print-toolbar p { margin: 0; }
.print-toolbar a { color: var(--yellow); font-weight: 900; }
.print-toolbar > div { display: flex; align-items: center; gap: 18px; }
.print-book { display: grid; gap: 28px; justify-content: center; padding: 30px 0; }
.print-page { position: relative; display: flex; flex-direction: column; width: 210mm; min-height: 297mm; padding: 18mm 17mm 14mm; overflow: hidden; background: var(--paper); box-shadow: 0 20px 70px rgba(0,0,0,.35); }
.print-page > header { padding-bottom: 10mm; border-bottom: 2px solid var(--ink); }
.print-page h1 { font-size: 25mm; }
.print-page h2 { font-size: 14mm; }
.print-page > footer { display: flex; justify-content: space-between; margin-top: auto; padding-top: 7mm; border-top: 2px solid currentColor; font-family: monospace; font-size: 10pt; font-weight: 900; }
.print-page > footer a { text-decoration: none; }
.print-cover { justify-content: space-between; color: #fff; background: var(--red); }
.print-cover .print-logo { width: 92mm; padding: 4mm; background: #fff; border: 2px solid var(--ink); }
.print-cover h1 { margin-top: 16mm; }
.print-cover > div > p:last-of-type { max-width: 150mm; font-size: 18pt; }
.print-proof { display: flex; align-items: center; gap: 5mm; width: 120mm; margin-top: 10mm; padding: 5mm; color: var(--ink); background: var(--cream); border: 2px solid var(--ink); }
.print-proof img { width: 20mm; height: 20mm; object-fit: cover; border-radius: 50%; }
.print-proof div { display: grid; }
.print-proof b { font-size: 16pt; }
.print-proof small { margin-top: 2mm; color: var(--red); font-weight: 900; }
.print-fwed { position: absolute; right: 17mm; bottom: 27mm; width: 38mm; image-rendering: pixelated; }
.print-steps { display: grid; gap: 4mm; margin: 9mm 0; padding: 0; list-style: none; }
.print-steps li { display: grid; grid-template-columns: 15mm 1fr; gap: 5mm; padding-bottom: 4mm; border-bottom: 1px solid var(--ink); }
.print-steps span, .print-script span { color: var(--red); font-family: Impact, sans-serif; font-size: 22pt; }
.print-steps b { font-size: 16pt; text-transform: uppercase; }
.print-steps p { margin: 1mm 0 0; }
.print-warning { padding: 5mm; background: var(--yellow); border-left: 3mm solid var(--red); }
.print-warning p { margin: 1mm 0 0; }
.print-dark { color: #fff; background: var(--ink); }
.print-cta { margin: 14mm 0 10mm; padding: 10mm; color: var(--ink); background: var(--yellow); border: 3mm solid var(--red); font-size: 17pt; font-weight: 900; }
.print-copy-flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 4mm; margin: 0; padding: 0; list-style: none; }
.print-copy-flow li { padding: 6mm; color: var(--ink); background: var(--cream); text-align: center; font-weight: 900; text-transform: uppercase; }
.print-copy-flow span { display: block; color: var(--red); font-family: Impact, sans-serif; font-size: 28pt; }
.print-dark > aside { margin-top: 10mm; padding: 6mm; border: 2px solid var(--yellow); }
.print-script { display: grid; gap: 5mm; margin-top: 9mm; }
.print-script article { display: grid; grid-template-columns: 14mm 1fr; gap: 5mm; padding-bottom: 5mm; border-bottom: 1px solid var(--ink); }
.print-script b { text-transform: uppercase; }
.print-script p { margin: 1mm 0 0; font-size: 11pt; }
.print-anatomy { display: grid; grid-template-columns: 1fr 1fr; gap: 4mm; margin-top: 8mm; }
.print-anatomy > div { min-height: 31mm; padding: 5mm; background: var(--cream); border: 1.5px solid var(--ink); }
.print-anatomy span { color: var(--red); font-family: Impact, sans-serif; font-size: 20pt; }
.print-anatomy b { display: block; text-transform: uppercase; }
.print-anatomy p { margin: 1mm 0 0; font-size: 10pt; }
.print-link { margin-top: 6mm; padding: 4mm; background: var(--yellow); font-family: monospace; font-weight: 900; }
.print-final { color: #fff; background: var(--red); }
.known-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5mm; margin-top: 12mm; }
.known-grid > div { display: grid; grid-template-columns: 12mm 1fr; gap: 3mm; min-height: 30mm; padding: 5mm; color: var(--ink); background: var(--cream); }
.known-grid span { color: #13813f; font-family: Impact, sans-serif; font-size: 25pt; }
.known-grid p { margin: 0; }
.known-grid .unknown { background: var(--yellow); }
.known-grid .unknown span { color: var(--red); }
.print-resources { margin-top: 12mm; padding: 7mm; color: var(--ink); background: var(--yellow); }
.print-resources h3 { text-transform: uppercase; }
.print-resources p { font-family: monospace; font-size: 10.5pt; overflow-wrap: anywhere; }
.print-final > img { position: absolute; right: 15mm; bottom: 26mm; width: 35mm; image-rendering: pixelated; }

@media (max-width: 900px) {
  body { font-size: 17px; }
  .site-header { position: static; display: grid; padding: 12px 16px; }
  .brand { justify-content: space-between; }
  .brand img { width: 200px; }
  .brand span { font-size: 11px; }
  nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
  nav a { display: grid; place-items: center; padding: 8px 4px; font-size: 10px; text-align: center; }
  .hero, .subhero { grid-template-columns: 1fr; gap: 34px; min-height: auto; padding: 62px 24px; }
  h1 { font-size: clamp(58px, 17vw, 86px); }
  h2 { font-size: clamp(42px, 13vw, 64px); }
  .profile-proof { transform: none; }
  .outcome-strip { grid-template-columns: 1fr 1fr; margin: 0 18px; }
  .outcome-strip div:nth-child(2) { border-right: 0; }
  .outcome-strip div { min-height: 102px; border-bottom: 2px solid rgba(255,255,255,.25); }
  .section { width: min(100% - 28px, var(--max)); padding-block: 64px; }
  .one-pager, .cta-lab, .support-entry, .script-run, .followup-grid, .tag-map, .builder, .exact-template, .checklist-section { grid-template-columns: 1fr; gap: 34px; }
  .one-pager .section-intro, .script-sticky, .checklist-copy, .builder-output { position: static; }
  .cta-lab, .script-run, .exact-template { width: 100%; padding-inline: 20px; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 270px; }
  .truth-panel, .safety-band { grid-template-columns: 100px 1fr; width: 100%; padding-inline: 20px; }
  .truth-panel img, .safety-band img { width: 100px; }
  .truth-panel .button, .safety-band .button { grid-column: 1 / -1; width: 100%; }
  .truth-actions { grid-column: 1 / -1; width: 100%; }
  .site-footer { display: grid; padding-inline: 22px; }
  .footer-corner { justify-items: start; text-align: left; }
  .source-note { grid-template-columns: 1fr; gap: 18px; }
  .thread-window { padding-inline: 12px; }
  .thread-window-bar { top: 0; margin-inline: -12px; padding-inline: 14px; }
  .post-cluster { grid-template-columns: 1fr; gap: 14px; margin-bottom: 42px; }
  .post-cluster.flip .thread-post, .post-cluster.flip .annotation { order: initial; }
  .annotation::before, .flip .annotation::before { top: -15px; right: auto; left: 38px; width: 0; height: 15px; border-top: 0; border-left: 3px solid var(--red); }
  .thread-post { padding: 19px; border-radius: 16px; }
  .exact-post-part { font-size: 15px; }
  .tag-map dl div { grid-template-columns: 120px 1fr; }
  .next-band { display: grid; width: 100%; padding-inline: 20px; }
  .next-band .button { width: 100%; }
  .prep-grid { grid-template-columns: 1fr; }
  .official-note { display: grid; grid-template-columns: 1fr; }
  .support-steps article { grid-template-columns: 52px 1fr; padding: 18px 14px; }
  .script-step { width: 46px; height: 46px; }
  .do-dont { grid-template-columns: 1fr; }
  .one-job-card { transform: none; }
  .builder-form, .output-block { padding: 20px; }
  .output-head { align-items: stretch; flex-direction: column; }
  .output-head .button, .output-head .mini-button { width: 100%; }
  .tag-equation { font-size: 18px; }
  .print-toolbar { display: grid; justify-items: stretch; }
  .print-toolbar > div { display: grid; gap: 12px; }
  .print-toolbar .button { width: 100%; }
  .print-book { justify-content: stretch; overflow-x: visible; padding: 16px; }
  .print-page { width: 100%; min-height: 0; padding: 28px 22px; transform-origin: top left; }
  .print-page h1 { font-size: 62px; }
  .print-page h2 { font-size: 44px; }
  .print-cover .print-logo { width: 250px; }
  .print-cover h1 { margin-top: 34px; }
  .print-cover > div > p:last-of-type { font-size: 19px; }
  .print-proof { width: 100%; margin-top: 28px; padding: 14px; }
  .print-fwed, .print-final > img { position: static; align-self: center; margin-top: 24px; }
  .print-steps li, .print-script article { grid-template-columns: 48px 1fr; }
  .print-cta { margin: 34px 0 24px; padding: 22px; font-size: 18px; }
  .print-copy-flow, .known-grid, .print-anatomy { grid-template-columns: 1fr; }
  .print-page > footer { margin-top: 38px; }
}

@media (max-width: 480px) {
  .brand span { display: none; }
  .hero, .subhero { padding-inline: 20px; }
  .hero::before, .subhero::before { inset: 8px; }
  .hero-lede, .subhero > div > p:last-child { font-size: 20px; }
  .profile-person img, .mini-profile img { width: 68px; height: 68px; }
  .outcome-strip { margin-inline: 0; border-inline: 0; }
  .outcome-strip div { padding: 13px; }
  .copy-stage { padding: 16px; box-shadow: 6px 6px 0 var(--red); }
  .copy-stage-top, .output-label { display: grid; }
  .truth-panel, .safety-band { grid-template-columns: 1fr; text-align: center; }
  .truth-panel img, .safety-band img { justify-self: center; }
  .mini-profile { padding: 16px; }
  .thread-author { grid-template-columns: 42px 1fr auto; }
  .avatar { width: 42px; height: 42px; }
  .tag-map dl div { grid-template-columns: 1fr; gap: 3px; }
  .support-steps article { grid-template-columns: 1fr; }
  .do-dont > div { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

@media print {
  @page { size: A4; margin: 0; }
  html, body[data-page="print"] { background: #fff; }
  .print-toolbar, .skip-link, .copy-status { display: none !important; }
  .print-book { display: block; padding: 0; }
  .print-page { width: 210mm; height: 297mm; min-height: 297mm; margin: 0; box-shadow: none; break-after: page; page-break-after: always; }
  .print-page h1 { font-size: 25mm; }
  .print-page h2 { font-size: 14mm; }
  .print-cover .print-logo { width: 92mm; }
  .print-cover h1 { margin-top: 16mm; }
  .print-cover > div > p:last-of-type { font-size: 18pt; }
  .print-proof { width: 120mm; margin-top: 10mm; padding: 5mm; }
  .print-fwed { position: absolute; right: 17mm; bottom: 27mm; width: 38mm; margin: 0; }
  .print-steps li, .print-script article { grid-template-columns: 15mm 1fr; }
  .print-cta { margin: 14mm 0 10mm; padding: 10mm; font-size: 17pt; }
  .print-copy-flow { grid-template-columns: repeat(3, 1fr); }
  .print-anatomy, .known-grid { grid-template-columns: 1fr 1fr; }
  .print-page > footer { margin-top: auto; }
  .print-final > img { position: absolute; right: 15mm; bottom: 26mm; width: 35mm; margin: 0; }
  .print-page:last-child { break-after: auto; page-break-after: auto; }
}
