@font-face {
  font-family: "Liberation Sans Narrow";
  src: url("assets/fonts/liberation-sans-narrow-bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

:root {
  --ink: #070b0d;
  --ink-soft: #0d1418;
  --panel: #111a1f;
  --paper: #eee6d8;
  --paper-dim: #c6beb1;
  --red: #b7332c;
  --red-bright: #e34b3f;
  --amber: #d3a470;
  --amber-pale: #f2cf9c;
  --blue: #163342;
  --line: rgba(238, 230, 216, 0.16);
  --muted: #8b989d;
  --display: "Liberation Sans Narrow", "Arial Narrow", Impact, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 300px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection { background: var(--red); color: #fff; }

.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;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus { transform: none; }

.grain {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 max(32px, calc((100vw - 1380px) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, height 180ms ease;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(7, 11, 13, 0.91);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark-icon {
  position: relative;
  width: 28px;
  height: 34px;
  border: 1px solid var(--amber);
  background: rgba(211, 164, 112, 0.08);
}

.wordmark-icon::before,
.wordmark-icon::after,
.wordmark-icon i {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--amber);
}

.wordmark-icon::before { top: 8px; }
.wordmark-icon i { top: 15px; right: 10px; }
.wordmark-icon::after { top: 22px; }

.wordmark > span:last-child { display: flex; flex-direction: column; line-height: 1; }
.wordmark b { font-family: var(--display); font-size: 16px; letter-spacing: 0.09em; }
.wordmark small { margin-top: 3px; color: var(--amber); font-size: 9px; font-weight: 800; letter-spacing: 0.35em; }

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a { color: var(--paper-dim); font-size: 12px; font-weight: 750; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; transition: color 160ms ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: #fff; }
.site-nav .nav-cta { padding: 11px 16px; border: 1px solid rgba(211, 164, 112, 0.55); color: var(--amber-pale); }

.menu-toggle { display: none; }

.section-shell { width: var(--shell); margin-inline: auto; }

.hero {
  position: relative;
  min-height: 920px;
  height: max(100vh, 920px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.96fr);
  align-items: center;
  gap: 54px;
  padding: 120px max(32px, calc((100vw - 1240px) / 2)) 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 48%, rgba(25, 67, 84, 0.34), transparent 33%),
    radial-gradient(circle at 92% 10%, rgba(183, 51, 44, 0.13), transparent 24%),
    linear-gradient(110deg, #080d10 0%, #080d10 52%, #091216 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.hero-map,
.final-map {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(211, 164, 112, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 164, 112, 0.2) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, transparent 10%, #000 65%, transparent);
  transform: perspective(500px) rotateX(66deg) scale(1.8) translateY(10%);
}

.hero-scanline {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 54.3%;
  width: 1px;
  background: linear-gradient(transparent, rgba(227, 75, 63, 0.7) 45%, transparent);
}

.hero-copy { position: relative; z-index: 3; max-width: 700px; }

.alert-label,
.eyebrow {
  margin: 0 0 24px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.alert-label { display: flex; align-items: center; gap: 10px; }
.alert-label span { width: 7px; height: 7px; background: var(--red-bright); border-radius: 50%; box-shadow: 0 0 0 5px rgba(227, 75, 63, 0.12), 0 0 20px rgba(227, 75, 63, 0.8); animation: pulse 1.7s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}

h1, h2, h3, p { overflow-wrap: break-word; }

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.91;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h1 { max-width: 760px; font-size: clamp(70px, 6.75vw, 112px); }
h1 em, h2 em { color: var(--amber); font-style: normal; }

.hero-intro {
  max-width: 620px;
  margin: 30px 0 0;
  color: #b6c0c3;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.final-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  padding: 14px 22px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(130, 24, 19, 0.2);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  pointer-events: none;
}

.button:hover, .button:focus-visible { background: #cf3c33; transform: translateY(-3px); box-shadow: 0 22px 56px rgba(130, 24, 19, 0.34); }
.button span { font-size: 18px; line-height: 1; }

.text-link {
  display: inline-flex;
  gap: 8px;
  color: var(--paper-dim);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration-color: rgba(211, 164, 112, 0.4);
  text-underline-offset: 5px;
  transition: color 160ms ease;
}

.text-link:hover, .text-link:focus-visible { color: var(--amber-pale); }

.hero-proof {
  display: flex;
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
}

.hero-proof div { min-width: 124px; padding: 0 22px; border-left: 1px solid var(--line); }
.hero-proof div:first-child { padding-left: 0; border-left: 0; }
.hero-proof dt { color: var(--paper); font-family: var(--display); font-size: 31px; line-height: 1; }
.hero-proof dd { margin: 7px 0 0; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 0.12em; line-height: 1.35; text-transform: uppercase; }

.hero-visual { position: relative; z-index: 3; height: 700px; perspective: 1500px; }
.book-stage { position: absolute; inset: 48px 4% 86px 6%; display: grid; place-items: center; perspective: 1300px; }

@media (min-width: 841px) {
  .book-stage { transform: translateY(-68px); }
  .hero-visual .incident-card-top { top: -20px; }
}

.book {
  position: relative;
  z-index: 3;
  width: min(340px, 46vh, 68%);
  transform: rotateY(-7deg) rotateX(2deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 44px 36px rgba(0,0,0,0.6));
  transition: transform 180ms ease-out;
}

.book::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0.09), transparent 22%, transparent 72%, rgba(0,0,0,0.3));
  pointer-events: none;
}

.book img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: contain; }
.book-spine { position: absolute; z-index: -1; top: 1%; bottom: 1%; left: -18px; width: 20px; background: linear-gradient(90deg, #3b0a09, #7d1e19 60%, #2b0807); transform: rotateY(-90deg); transform-origin: right; }
.book-pages { position: absolute; z-index: -1; left: 3%; right: -10px; bottom: -11px; height: 12px; background: repeating-linear-gradient(0deg, #8e867a 0 1px, #d2c9bb 1px 2px); transform: rotateX(-90deg); transform-origin: top; }

.book-shadow { position: absolute; z-index: 1; width: 370px; height: 90px; bottom: 54px; border-radius: 50%; background: rgba(0,0,0,0.8); filter: blur(26px); transform: rotate(-5deg); }

.radar { position: absolute; border: 1px solid rgba(211, 164, 112, 0.13); border-radius: 50%; }
.radar::before, .radar::after { content: ""; position: absolute; inset: 16%; border: inherit; border-radius: inherit; }
.radar::after { inset: 32%; }
.radar-one { width: 590px; height: 590px; top: 54px; left: 0; }
.radar-two { width: 420px; height: 420px; top: 136px; left: 84px; border-color: rgba(22, 85, 108, 0.25); }

.incident-card {
  position: absolute;
  z-index: 5;
  width: 220px;
  padding: 13px 15px;
  border: 1px solid rgba(211, 164, 112, 0.24);
  background: rgba(7, 13, 16, 0.85);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.incident-card::before { content: ""; position: absolute; top: -1px; left: -1px; width: 18px; height: 3px; background: var(--red-bright); }
.incident-card span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: 0.19em; }
.incident-card b { display: flex; align-items: center; gap: 7px; color: var(--paper); font-family: var(--display); font-size: 13px; letter-spacing: 0.08em; }
.incident-card b i { width: 6px; height: 6px; background: var(--red-bright); border-radius: 50%; box-shadow: 0 0 12px var(--red-bright); }
.incident-card-top { top: 66px; right: -2%; }
.incident-card-bottom { bottom: 110px; left: -2%; }

.visual-caption { position: absolute; right: 0; bottom: 28px; margin: 0; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.visual-caption span { color: var(--amber); margin-right: 15px; }

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 26px;
  left: max(32px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span { width: 34px; height: 1px; background: var(--amber); }

.ticker { overflow: hidden; padding: 15px 0; background: var(--red); color: #fff; }
.ticker-track { display: flex; width: max-content; animation: ticker 32s linear infinite; }
.ticker-track span { white-space: nowrap; font-family: var(--display); font-size: 17px; letter-spacing: 0.13em; text-transform: uppercase; }
.ticker-track b { margin: 0 24px; color: var(--amber-pale); font-size: 9px; }

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

.book-overview { padding-block: 110px 35px; }
.overview-layout { display: grid; grid-template-columns: 1fr .78fr; gap: 90px; align-items: end; margin-top: 70px; }
.book-overview h2 { font-size: clamp(50px, 5.7vw, 84px); }
.overview-answer { padding-left: 32px; border-left: 3px solid var(--red-bright); }
.overview-answer p { margin: 0; color: #a8b2b5; font-size: 16px; line-height: 1.75; }
.overview-answer p + p { margin-top: 18px; }
.overview-answer strong { color: var(--paper); }
.book-facts { display: grid; grid-template-columns: repeat(4, 1fr); margin: 65px 0 0; border: 1px solid var(--line); }
.book-facts > div { min-height: 96px; padding: 22px; border-right: 1px solid var(--line); }
.book-facts > div:last-child { border-right: 0; }
.book-facts dt { color: var(--amber); font-size: 8px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.book-facts dd { margin: 10px 0 0; color: var(--paper-dim); font-size: 12px; }

.scenario { padding-block: 130px 150px; }
.section-index { display: flex; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.section-index span:first-child { color: var(--amber); }

.scenario-head,
.inside-heading { display: grid; grid-template-columns: 1.5fr 0.6fr; align-items: end; gap: 80px; margin-top: 78px; }
.eyebrow { margin-bottom: 20px; }
h2 { font-size: clamp(55px, 6.2vw, 92px); }
.section-intro { margin: 0 0 4px; color: #9aa6aa; font-size: 16px; line-height: 1.75; }

.incident-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 75px; background: var(--line); border: 1px solid var(--line); }
.incident { position: relative; min-height: 355px; padding: 30px; background: var(--ink); overflow: hidden; }
.incident::after { content: ""; position: absolute; inset: auto -20% -60% 20%; height: 220px; background: radial-gradient(ellipse, rgba(183, 51, 44, 0.12), transparent 65%); }
.incident-number { color: var(--muted); font: 800 9px/1 var(--body); letter-spacing: 0.15em; }
.incident-icon { display: grid; place-items: center; width: 62px; height: 62px; margin: 40px 0 27px; border: 1px solid rgba(211, 164, 112, 0.3); color: var(--amber); font-family: var(--display); font-size: 28px; }
.incident h3 { max-width: 270px; margin: 0; font-family: var(--display); font-size: 30px; line-height: 1.02; text-transform: uppercase; }
.incident p { margin: 17px 0 44px; color: #929da1; font-size: 14px; }
.incident small { position: absolute; z-index: 2; bottom: 25px; display: flex; align-items: center; gap: 8px; color: #b98b83; font-size: 8px; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }
.incident small i { width: 5px; height: 5px; background: var(--red-bright); border-radius: 50%; }

.statement { position: relative; overflow: hidden; padding: 150px 0; background: var(--paper); color: var(--ink); }
.statement::before { content: "!"; position: absolute; right: 3%; bottom: -29%; color: rgba(183, 51, 44, 0.065); font-family: var(--display); font-size: 600px; line-height: 1; }
.statement-grid { position: absolute; inset: 0; opacity: 0.3; background-image: linear-gradient(rgba(7, 11, 13, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 11, 13, 0.12) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, transparent, #000); }
.statement-content { position: relative; z-index: 2; }
.statement .eyebrow { color: var(--red); }
.statement h2 { max-width: 1080px; font-size: clamp(58px, 7.4vw, 110px); }
.statement h2 em { color: var(--red); }
.statement p:last-child { max-width: 620px; margin: 40px 0 0 auto; color: #465055; font-size: 18px; line-height: 1.7; }

.binder { padding-block: 145px 170px; }
.binder-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; margin-top: 85px; }
.binder-lead { max-width: 560px; margin: 30px 0 0; color: #9ca7aa; font-size: 17px; line-height: 1.7; }
.response-steps { margin: 52px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.response-steps li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.response-steps > li > span { padding-top: 3px; color: var(--red-bright); font: 700 13px/1 var(--display); }
.response-steps h3 { margin: 0; font-family: var(--display); font-size: 24px; line-height: 1; letter-spacing: 0.03em; text-transform: uppercase; }
.response-steps p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.binder-visual { position: relative; min-height: 670px; display: grid; place-items: center; perspective: 1300px; }
.binder-visual::before { content: ""; position: absolute; width: 490px; height: 490px; border: 1px solid rgba(211, 164, 112, 0.1); border-radius: 50%; box-shadow: 0 0 0 54px rgba(211, 164, 112, 0.025), 0 0 0 108px rgba(211, 164, 112, 0.018); }
.case { position: relative; z-index: 2; display: grid; grid-template-columns: 54px 1fr; width: 390px; height: 505px; transform: rotateY(-7deg) rotateZ(2deg); filter: drop-shadow(0 42px 36px rgba(0,0,0,0.48)); }
.case-spine { display: flex; align-items: center; justify-content: space-around; padding-block: 22px; background: #6c1714; color: var(--amber-pale); writing-mode: vertical-rl; transform: rotate(180deg); font: 700 15px/1 var(--display); letter-spacing: 0.14em; }
.case-spine i { width: 1px; height: 80px; background: rgba(242, 207, 156, 0.5); }
.case-spine small { color: rgba(242, 207, 156, 0.7); font: 800 7px/1 var(--body); letter-spacing: 0.2em; }
.case-cover { position: relative; padding: 31px 31px 25px; border-left: 1px solid rgba(0,0,0,0.5); background: linear-gradient(135deg, #9e2b25, #6d1714); box-shadow: inset 0 0 0 2px rgba(242, 207, 156, 0.14), inset 0 0 60px rgba(0,0,0,0.25); }
.case-cover::before { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(242, 207, 156, 0.32); pointer-events: none; }
.case-top { display: flex; justify-content: space-between; color: rgba(242, 207, 156, 0.8); font-size: 7px; font-weight: 800; letter-spacing: 0.16em; }
.case-title { margin-top: 70px; color: var(--amber-pale); font-family: var(--display); font-size: 48px; line-height: 0.89; letter-spacing: -0.01em; }
.case-title small { display: block; margin-bottom: 4px; font-size: 18px; letter-spacing: 0.38em; }
.case-title b { color: #fff7e9; font: inherit; }
.case-rule { width: 55px; height: 4px; margin: 28px 0; background: var(--amber-pale); }
.case-cover dl { margin: 0; }
.case-cover dl div { display: grid; grid-template-columns: 90px 1fr; margin-top: 10px; }
.case-cover dt { color: rgba(242, 207, 156, 0.66); font-size: 7px; font-weight: 800; letter-spacing: 0.16em; }
.case-cover dd { margin: 0; color: rgba(255,255,255,0.55); font-size: 8px; letter-spacing: 0.05em; }
.restricted { position: absolute; right: 28px; bottom: 28px; padding: 7px 10px; border: 1px solid rgba(242, 207, 156, 0.7); color: var(--amber-pale); font-size: 7px; font-weight: 900; letter-spacing: 0.2em; transform: rotate(-2deg); }
.tab { position: absolute; z-index: -1; right: -75px; width: 88px; padding: 8px 10px; background: var(--amber); color: var(--ink); font-size: 7px; font-weight: 900; letter-spacing: 0.12em; }
.tab-one { top: 105px; }.tab-two { top: 158px; background: #b46749; }.tab-three { top: 211px; background: #5d8292; }
.case-shadow { position: absolute; bottom: 54px; width: 450px; height: 90px; border-radius: 50%; background: rgba(0,0,0,0.75); filter: blur(30px); }
.verified-stamp { position: absolute; z-index: 4; right: 4%; bottom: 72px; width: 125px; height: 125px; display: grid; align-content: center; border: 3px double rgba(211, 164, 112, 0.73); border-radius: 50%; color: var(--amber); text-align: center; transform: rotate(-11deg); }
.verified-stamp::before, .verified-stamp::after { content: "★"; position: absolute; top: 50%; font-size: 9px; transform: translateY(-50%); }
.verified-stamp::before { left: 9px; }.verified-stamp::after { right: 9px; }
.verified-stamp span { font: 700 20px/1 var(--display); letter-spacing: 0.08em; }
.verified-stamp small { margin-top: 5px; font-size: 6px; font-weight: 900; letter-spacing: 0.17em; }

.inside { padding: 140px 0 160px; background: #0c1519; }
.inside-heading { margin-top: 0; }
.control-board { margin-top: 75px; border: 1px solid rgba(211, 164, 112, 0.22); background: #091013; box-shadow: 0 40px 80px rgba(0,0,0,0.22); }
.control-header { display: flex; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid rgba(211, 164, 112, 0.22); color: var(--amber); font-size: 8px; font-weight: 900; letter-spacing: 0.17em; }
.control-header span:last-child { color: #7b9b89; }
.control-header i { display: inline-block; width: 5px; height: 5px; margin-right: 7px; background: #6fa37f; border-radius: 50%; box-shadow: 0 0 10px #6fa37f; }
.control-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.control-grid article { position: relative; min-height: 285px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.control-grid article:nth-child(3n) { border-right: 0; }
.control-grid article:nth-last-child(-n + 3) { border-bottom: 0; }
.control-grid article::after { content: attr(data-status); }
.control-grid article > span { color: var(--red-bright); font: 700 13px/1 var(--display); }
.control-grid h3 { max-width: 230px; margin: 48px 0 0; font-family: var(--display); font-size: 29px; line-height: 1; text-transform: uppercase; }
.control-grid p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.control-grid small { position: absolute; bottom: 25px; color: #67777d; font-size: 7px; font-weight: 900; letter-spacing: 0.16em; }

.workbook { padding-block: 160px; }
.workbook-layout { display: grid; grid-template-columns: 0.94fr 1.06fr; gap: 110px; align-items: center; }
.worksheet-stack { position: relative; min-height: 660px; perspective: 1200px; }
.sheet { position: absolute; width: 390px; height: 535px; padding: 35px; background: #e9e1d2; color: var(--ink); box-shadow: 0 35px 60px rgba(0,0,0,0.38); }
.sheet-back { top: 30px; left: 40px; transform: rotate(-9deg); background: #b92f29; color: #f1cf9e; font: 700 25px/0.95 var(--display); }
.sheet-middle { top: 40px; left: 80px; transform: rotate(5deg); background: #d2aa78; color: #2b211b; font: 700 25px/0.95 var(--display); }
.sheet-front { top: 60px; left: 65px; transform: rotate(-2deg); border: 1px solid #b6aa99; }
.sheet-front::after { content: ""; position: absolute; inset: 16px; border: 1px solid #c4b9a9; pointer-events: none; }
.sheet-heading { position: relative; z-index: 2; display: flex; justify-content: space-between; padding-bottom: 12px; border-bottom: 3px solid var(--red); color: var(--red); font-size: 7px; font-weight: 900; letter-spacing: 0.16em; }
.sheet h3 { position: relative; z-index: 2; margin: 35px 0 42px; font-family: var(--display); font-size: 43px; line-height: 0.94; }
.form-row { position: relative; z-index: 2; display: grid; grid-template-columns: 18px 1fr 72px; align-items: center; gap: 10px; padding: 15px 0; border-bottom: 1px solid #bcb1a2; }
.form-row i { width: 14px; height: 14px; border: 1px solid #59554e; }
.form-row span { font-size: 10px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.form-row b { height: 1px; background: #8f877b; }
.sheet-front > small { position: absolute; z-index: 2; bottom: 39px; color: #787167; font-size: 7px; font-weight: 900; letter-spacing: 0.12em; }
.workbook-copy > p:not(.eyebrow) { max-width: 590px; margin: 30px 0 0; color: #9ba6a9; font-size: 16px; line-height: 1.75; }
.workbook-stats { margin: 45px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.workbook-stats li { display: grid; grid-template-columns: 105px 1fr; align-items: center; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.workbook-stats strong { color: var(--amber); font: 700 27px/1 var(--display); }
.workbook-stats span { color: var(--paper-dim); font-size: 12px; }
.format-card { position: relative; display: grid; margin-top: 35px; padding: 25px 120px 25px 25px; border: 1px solid rgba(211, 164, 112, 0.35); background: linear-gradient(110deg, rgba(211, 164, 112, 0.09), transparent); text-decoration: none; transition: border-color 180ms ease, transform 180ms ease; }
.format-card:hover, .format-card:focus-visible { border-color: var(--amber); transform: translateY(-3px); }
.format-card > span { color: var(--amber); font-size: 8px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.format-card > strong { margin-top: 5px; font-family: var(--display); font-size: 27px; line-height: 1; text-transform: uppercase; }
.format-card > small { margin-top: 8px; color: var(--muted); font-size: 11px; }
.format-card > b { position: absolute; right: 22px; top: 50%; color: var(--amber-pale); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; transform: translateY(-50%); }
.format-card > b i { margin-left: 6px; font-size: 14px; font-style: normal; }

.audience { padding: 145px 0; background: var(--paper); color: var(--ink); }
.audience .eyebrow { color: var(--red); }
.audience h2 em { color: var(--red); }
.audience-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 120px; align-items: start; }
.audience-list { border-top: 1px solid rgba(7, 11, 13, 0.25); }
.audience-list article { display: grid; grid-template-columns: 45px 210px 1fr; gap: 22px; align-items: start; padding: 26px 0; border-bottom: 1px solid rgba(7, 11, 13, 0.25); }
.audience-list article > span { color: var(--red); font: 700 13px/1 var(--display); }
.audience-list h3 { margin: 0; font-family: var(--display); font-size: 22px; line-height: 1; text-transform: uppercase; }
.audience-list p { margin: -3px 0 0; color: #566066; font-size: 13px; line-height: 1.6; }

.questions { padding-block: 145px; }
.questions-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; margin-top: 80px; }
.questions h2 { font-size: clamp(52px, 5.8vw, 86px); }
.questions-intro { max-width: 470px; margin: 30px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 27px 52px 27px 0; color: var(--paper); font-family: var(--display); font-size: 25px; line-height: 1.05; text-transform: uppercase; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 24px; right: 4px; color: var(--amber); font: 700 27px/1 var(--display); content: "+"; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 700px; margin: -5px 50px 28px 0; color: #9aa6aa; font-size: 14px; line-height: 1.75; }
.related-book { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; margin-top: 85px; padding: 32px; border: 1px solid rgba(211, 164, 112, .34); background: linear-gradient(105deg, rgba(211, 164, 112, .1), transparent); }
.related-book > div > span { color: var(--amber); font-size: 8px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.related-book strong { display: block; margin-top: 8px; font-family: var(--display); font-size: 27px; line-height: 1; text-transform: uppercase; }
.related-book p { max-width: 700px; margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.related-book a { padding: 15px 18px; border: 1px solid var(--amber); color: var(--amber-pale); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.related-book a:hover, .related-book a:focus-visible { color: var(--ink); background: var(--amber); }

.final-cta { position: relative; min-height: 710px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 50%, #142631, #070b0d 62%); text-align: center; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 49.9%, rgba(211, 164, 112, 0.12) 50%, transparent 50.1%), linear-gradient(transparent 49.9%, rgba(211, 164, 112, 0.12) 50%, transparent 50.1%); }
.final-map { opacity: 0.08; mask-image: radial-gradient(circle, #000, transparent 62%); transform: rotate(0) scale(1); }
.final-content { position: relative; z-index: 2; padding-block: 100px; }
.final-status { display: flex; justify-content: space-between; max-width: 780px; margin: 0 auto 75px; padding-bottom: 13px; border-bottom: 1px solid rgba(211, 164, 112, 0.28); color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.final-status i { display: inline-block; width: 5px; height: 5px; margin-right: 7px; background: var(--red-bright); border-radius: 50%; box-shadow: 0 0 10px var(--red-bright); }
.final-content h2 { font-size: clamp(70px, 8.8vw, 128px); }
.final-content > p:not(.eyebrow) { margin: 28px auto 0; color: #a3adb0; font-size: 17px; }
.final-actions { justify-content: center; }
.button-large { min-height: 64px; padding-inline: 30px; }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 35px max(32px, calc((100vw - 1240px) / 2)); border-top: 1px solid var(--line); background: #050809; color: #6f7b80; font-size: 9px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.site-footer a { text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--amber); }
.footer-mark { display: flex; align-items: center; gap: 10px; color: var(--paper-dim); }
.footer-mark > span { width: 9px; height: 9px; border: 2px solid var(--red); transform: rotate(45deg); }
.site-footer > div { display: flex; gap: 24px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--amber-pale); outline-offset: 4px; }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 980px); }
  .site-nav { gap: 20px; }
  .hero { grid-template-columns: 1fr 0.85fr; gap: 25px; padding-inline: 24px; }
  h1 { font-size: clamp(60px, 7.2vw, 82px); }
  .hero-visual { height: 620px; }
  .incident-card { width: 185px; }
  .scenario-head, .inside-heading { grid-template-columns: 1.25fr 0.65fr; gap: 45px; }
  .binder-layout, .workbook-layout { gap: 50px; }
  .case { width: 340px; height: 455px; }
  .case-title { margin-top: 55px; font-size: 42px; }
  .sheet { width: 340px; height: 480px; }
  .sheet h3 { font-size: 36px; }
  .audience-wrap { gap: 70px; }
  .audience-list article { grid-template-columns: 35px 180px 1fr; }
}

@media (max-width: 840px) {
  :root { --shell: calc(100% - 40px); }
  .site-header { height: 68px; padding-inline: 20px; background: rgba(7, 11, 13, 0.93); border-color: var(--line); backdrop-filter: blur(14px); }
  .menu-toggle { display: grid; width: 46px; height: 46px; place-content: center; gap: 6px; border: 0; background: transparent; color: var(--paper); cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 23px; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 68px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 24px; background: rgba(7, 11, 13, 0.98); border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 16px 5px; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 12px; padding: 15px; text-align: center; }
  .hero { min-height: 0; height: auto; grid-template-columns: 1fr; padding: 120px 20px 70px; }
  .hero-copy { max-width: 720px; }
  h1 { font-size: clamp(58px, 12vw, 90px); }
  .hero-visual { width: 100%; max-width: 620px; height: 650px; margin: 15px auto 0; }
  .hero-scanline { display: none; }
  .scroll-cue { display: none; }
  .book-overview { padding-top: 95px; }
  .overview-layout, .questions-layout { grid-template-columns: 1fr; gap: 45px; }
  .overview-answer { padding-left: 24px; }
  .book-facts { grid-template-columns: 1fr 1fr; }
  .book-facts > div:nth-child(2) { border-right: 0; }
  .book-facts > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .scenario { padding-block: 95px; }
  .scenario-head, .inside-heading { grid-template-columns: 1fr; gap: 28px; margin-top: 55px; }
  .section-intro { max-width: 620px; }
  .incident-grid { grid-template-columns: 1fr; }
  .incident { min-height: 290px; }
  .statement { padding: 105px 0; }
  .binder { padding-block: 100px; }
  .binder-layout { grid-template-columns: 1fr; gap: 40px; margin-top: 65px; }
  .binder-visual { min-height: 590px; }
  .inside { padding-block: 100px; }
  .control-grid { grid-template-columns: repeat(2, 1fr); }
  .control-grid article:nth-child(3n) { border-right: 1px solid var(--line); }
  .control-grid article:nth-child(2n) { border-right: 0; }
  .control-grid article:nth-last-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .control-grid article:nth-last-child(-n + 2) { border-bottom: 0; }
  .workbook { padding-block: 105px; }
  .workbook-layout { grid-template-columns: minmax(0, 1fr); }
  .workbook-layout > * { min-width: 0; }
  .worksheet-stack { width: 500px; max-width: 100%; min-height: 590px; margin: 0 auto; }
  .audience { padding-block: 100px; }
  .audience-wrap { grid-template-columns: 1fr; gap: 55px; }
  .questions { padding-block: 105px; }
  .related-book { grid-template-columns: 1fr; gap: 24px; }
  .related-book a { justify-self: start; }
  .final-cta { min-height: 650px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); }
  .wordmark b { font-size: 14px; }
  .hero { padding-inline: 16px; }
  .alert-label { font-size: 9px; letter-spacing: 0.16em; }
  h1 { font-size: clamp(53px, 17vw, 76px); }
  h2 { font-size: clamp(48px, 15vw, 70px); }
  .hero-actions, .final-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .button { width: 100%; }
  .text-link { align-self: center; }
  .hero-proof { justify-content: space-between; }
  .hero-proof div { min-width: 0; width: 33.333%; padding-inline: 10px; }
  .hero-proof dt { font-size: 25px; }
  .hero-proof dd { font-size: 7px; }
  .hero-visual { height: 530px; }
  .book { width: min(290px, 72vw); }
  .radar-one { width: 460px; height: 460px; left: 50%; transform: translateX(-50%); }
  .radar-two { width: 330px; height: 330px; left: 50%; transform: translateX(-50%); }
  .incident-card { width: 164px; padding: 10px; }
  .incident-card-top { top: 44px; right: 0; }
  .incident-card-bottom { bottom: 78px; left: 0; }
  .incident-card b { font-size: 10px; }
  .visual-caption { bottom: 15px; font-size: 7px; }
  .section-index span:last-child { display: none; }
  .book-facts { grid-template-columns: 1fr; }
  .book-facts > div, .book-facts > div:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .book-facts > div:last-child { border-bottom: 0; }
  .incident { padding: 25px; }
  .statement-content h2 { font-size: clamp(52px, 16vw, 75px); }
  .statement p:last-child { font-size: 16px; }
  .binder-visual { min-height: 510px; overflow: hidden; }
  .binder-visual::before { width: 340px; height: 340px; }
  .case { width: 285px; height: 390px; grid-template-columns: 43px 1fr; transform: rotateY(-5deg) rotateZ(1deg) translateX(-15px); }
  .case-cover { padding: 25px; }
  .case-title { margin-top: 42px; font-size: 34px; }
  .case-title small { font-size: 13px; }
  .case-rule { margin: 20px 0; }
  .case-cover dl div { grid-template-columns: 75px 1fr; }
  .case-spine { padding-block: 15px; }
  .tab { right: -58px; width: 66px; font-size: 5px; }
  .verified-stamp { right: 0; bottom: 35px; width: 92px; height: 92px; }
  .verified-stamp span { font-size: 15px; }
  .control-header span:last-child { display: none; }
  .control-grid { grid-template-columns: 1fr; }
  .control-grid article, .control-grid article:nth-child(3n), .control-grid article:nth-child(2n), .control-grid article:nth-last-child(-n + 2) { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line); }
  .control-grid article:last-child { border-bottom: 0; }
  .worksheet-stack { min-height: 520px; }
  .sheet { width: min(305px, calc(100vw - 60px)); height: 440px; padding: 28px; }
  .sheet-back { left: 4px; }
  .sheet-middle { left: 26px; }
  .sheet-front { left: 15px; }
  .sheet h3 { margin: 30px 0 28px; font-size: 33px; }
  .form-row { grid-template-columns: 16px 1fr 42px; padding: 12px 0; }
  .form-row span { font-size: 8px; }
  .workbook-stats li { grid-template-columns: 80px 1fr; }
  .format-card { padding: 22px; }
  .format-card > b { position: static; margin-top: 15px; transform: none; }
  .audience-list article { grid-template-columns: 35px 1fr; gap: 15px; }
  .audience-list article p { grid-column: 2; }
  .questions { padding-block: 90px; }
  .faq-list summary { font-size: 22px; }
  .related-book { margin-top: 60px; padding: 24px; }
  .final-status { margin-bottom: 50px; }
  .final-status span:last-child { display: none; }
  .final-content h2 { font-size: clamp(58px, 18vw, 82px); }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer > div { flex-direction: column; gap: 10px; }
}

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