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

:root {
  --black: #0a0b0d;
  --black-soft: #101216;
  --panel: #15171b;
  --paper: #eee9df;
  --paper-dim: #c9c4ba;
  --orange: #f36516;
  --orange-bright: #ff7a1a;
  --green: #b7ff59;
  --line-dark: rgba(238, 233, 223, .15);
  --line-light: rgba(10, 11, 13, .18);
  --display: "Ops Narrow", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) var(--black);
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }

::selection { color: var(--black); background: var(--orange); }

.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: 1rem;
  left: 1rem;
  padding: .8rem 1rem;
  color: var(--black);
  background: var(--green);
  font-family: var(--mono);
  font-size: .75rem;
  transform: translateY(-200%);
}

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

.progress {
  position: fixed;
  z-index: 500;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

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

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

.site-header {
  position: fixed;
  z-index: 300;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 80px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  color: var(--paper);
  border-bottom: 1px solid rgba(238, 233, 223, .16);
  transition: min-height .3s ease, background .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  min-height: 64px;
  background: rgba(10, 11, 13, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: .7rem;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.wordmark-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--black);
  background: var(--orange);
  font-size: .82rem;
}

.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.7rem); }

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(238, 233, 223, .72);
  font-size: .76rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -.5rem;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-height: 40px;
  padding: 0 1rem;
  color: var(--black);
  background: var(--paper);
  font-family: var(--mono);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.nav-cta:hover { background: var(--orange); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, .95fr);
  min-height: max(760px, 100svh);
  padding: clamp(8rem, 13vh, 10rem) clamp(1.25rem, 5vw, 5.5rem) clamp(5rem, 8vh, 7rem);
  color: var(--paper);
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
}

.hero-grid,
.final-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: .23;
  background-image: linear-gradient(rgba(238, 233, 223, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(238, 233, 223, .12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.hero::after {
  position: absolute;
  z-index: -4;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(243, 101, 22, .22), transparent 65%);
  content: "";
}

.hero-orbit {
  position: absolute;
  z-index: -2;
  right: -13vw;
  border: 1px solid rgba(243, 101, 22, .26);
  border-radius: 50%;
}

.orbit-one { top: -8vw; width: 63vw; height: 63vw; }
.orbit-two { top: 3vw; right: -2vw; width: 41vw; height: 41vw; border-style: dashed; animation: rotate 70s linear infinite; }

@keyframes rotate { to { transform: rotate(360deg); } }

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 840px;
  padding-top: clamp(2rem, 7vh, 5rem);
}

.kicker,
.eyebrow {
  margin: 0 0 1.5rem;
  font-family: var(--mono);
  font-size: clamp(.63rem, .8vw, .74rem);
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker { display: flex; align-items: center; gap: .75rem; color: rgba(238, 233, 223, .65); }

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(183, 255, 89, .1), 0 0 18px rgba(183, 255, 89, .7);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 50% { opacity: .45; box-shadow: 0 0 0 3px rgba(183, 255, 89, .08); } }

.hero h1,
.pressure h2,
.manifesto h2,
.system h2,
.inside h2,
.audience h2,
.author h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .82;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 { font-size: clamp(4.4rem, 7.3vw, 8.4rem); }
.hero h1 span,
.hero h1 em { display: block; }
.hero h1 em { max-width: 900px; margin-top: .12em; font-size: .68em; line-height: .94; }
.hero h1 em,
.pressure h2 em,
.system h2 em,
.inside h2 em,
.audience h2 em,
.author h2 em,
.final-cta h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero-intro {
  max-width: 650px;
  margin: clamp(2rem, 4vh, 3rem) 0 0;
  color: rgba(238, 233, 223, .68);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.8rem; margin-top: 2rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  min-height: 56px;
  padding: 0 1.5rem;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button-primary {
  color: #08090a;
  background: var(--orange);
  box-shadow: 0 18px 50px rgba(243, 101, 22, .18);
}

.button-primary:hover,
.button-primary:focus-visible { background: var(--orange-bright); transform: translateY(-3px); box-shadow: 0 22px 60px rgba(243, 101, 22, .28); }

.text-link {
  display: inline-flex;
  gap: .6rem;
  padding: .6rem 0;
  color: rgba(238, 233, 223, .72);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(238, 233, 223, .3);
}

.hero-meta {
  display: flex;
  gap: 0;
  margin: clamp(2.5rem, 5vh, 4.5rem) 0 0;
  padding: 0;
  list-style: none;
}

.hero-meta li {
  display: flex;
  flex-direction: column;
  min-width: 110px;
  padding: 0 1.3rem;
  border-left: 1px solid var(--line-dark);
}

.hero-meta li:first-child { padding-left: 0; border-left: 0; }
.hero-meta strong { font-family: var(--mono); font-size: .8rem; letter-spacing: .04em; }
.hero-meta span { color: rgba(238, 233, 223, .48); font-size: .7rem; }

.hero-visual {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-width: 0;
  perspective: 1300px;
}

.book-scene {
  position: relative;
  display: grid;
  width: min(72%, 470px);
  place-items: center;
  transform-style: preserve-3d;
}

.book-glow {
  position: absolute;
  inset: 18% -30% 0;
  background: radial-gradient(ellipse, rgba(243, 101, 22, .35), transparent 66%);
  filter: blur(30px);
}

.book {
  position: relative;
  width: 100%;
  transform: rotateY(-8deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
  filter: drop-shadow(42px 52px 45px rgba(0, 0, 0, .55));
}

.book picture,
.book img { width: 100%; }
.book img { height: auto; }
.book img { position: relative; z-index: 2; border-radius: 2px 6px 6px 2px; }

.book-spine {
  position: absolute;
  z-index: 3;
  top: .3%;
  bottom: .3%;
  left: 0;
  width: 3.2%;
  background: linear-gradient(90deg, rgba(0, 0, 0, .7), rgba(255, 255, 255, .15), rgba(0, 0, 0, .25));
  transform: translateZ(4px);
}

.book-pages {
  position: absolute;
  z-index: 1;
  top: 1.2%;
  right: -4%;
  bottom: .7%;
  width: 7%;
  background: repeating-linear-gradient(90deg, #dad6cc 0 1px, #a7a298 1px 2px, #e9e3d6 2px 4px);
  transform: rotateY(78deg);
  transform-origin: left;
}

.console-card {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  min-width: 170px;
  padding: .8rem 1rem;
  color: var(--paper);
  background: rgba(21, 23, 27, .82);
  border: 1px solid rgba(238, 233, 223, .18);
  font-family: var(--mono);
  backdrop-filter: blur(9px);
}

.console-card span { color: rgba(238, 233, 223, .4); font-size: .55rem; letter-spacing: .09em; }
.console-card b { display: flex; align-items: center; gap: .5rem; font-size: .64rem; letter-spacing: .04em; }
.console-card i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.console-top { top: 17%; left: 1%; }
.console-bottom { right: -1%; bottom: 22%; }

.visual-note {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 2rem 0 0;
  color: rgba(238, 233, 223, .5);
  font-family: var(--mono);
  font-size: .62rem;
}

.visual-note span { display: grid; width: 27px; height: 27px; place-items: center; color: var(--black); background: var(--paper); }

.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: clamp(1.25rem, 5vw, 5.5rem);
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(238, 233, 223, .38);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-cue span { width: 32px; height: 1px; background: var(--orange); animation: scan 1.8s ease-in-out infinite; }
@keyframes scan { 50% { width: 50px; } }

.signal-strip {
  overflow: hidden;
  color: var(--black);
  background: var(--orange);
  border-block: 1px solid var(--black);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.signal-track { display: flex; width: max-content; animation: ticker 35s linear infinite; }
.signal-track span { padding: .6rem 0; white-space: nowrap; }
.signal-track b { padding: 0 1.2rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-shell { width: min(100% - 2.5rem, 1440px); margin-inline: auto; }

.book-overview { padding-block: clamp(6rem, 10vw, 9rem) 2rem; }
.overview-layout { display: grid; grid-template-columns: 1fr .82fr; gap: clamp(3rem, 7vw, 8rem); align-items: end; margin-top: clamp(3rem, 6vw, 6rem); }
.book-overview h2,
.questions h2 { margin: 0; font-family: var(--display); font-weight: 900; letter-spacing: -.06em; line-height: .84; text-transform: uppercase; text-wrap: balance; }
.book-overview h2 { font-size: clamp(3.5rem, 6.4vw, 7.2rem); }
.book-overview h2 em,
.questions h2 em { color: var(--orange); font-style: normal; }
.overview-answer { padding-left: 2rem; border-left: 4px solid var(--orange); }
.overview-answer p { margin: 0; color: rgba(10, 11, 13, .68); font-size: clamp(1rem, 1.25vw, 1.15rem); line-height: 1.75; }
.overview-answer p + p { margin-top: 1.2rem; }
.overview-answer strong { color: var(--black); }
.book-facts { display: grid; grid-template-columns: repeat(4, 1fr); margin: clamp(3.5rem, 6vw, 6rem) 0 0; border: 1px solid var(--line-light); }
.book-facts > div { min-height: 104px; padding: 1.5rem; border-right: 1px solid var(--line-light); }
.book-facts > div:last-child { border-right: 0; }
.book-facts dt { color: #ae420b; font-family: var(--mono); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.book-facts dd { margin: .7rem 0 0; color: rgba(10, 11, 13, .72); font-size: .82rem; }

.pressure,
.system,
.audience { padding-block: clamp(6rem, 12vw, 11rem); }

.section-label {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-light);
}

.pressure-heading { display: grid; grid-template-columns: 1fr 2.5fr; gap: 3rem; margin-top: clamp(3rem, 6vw, 6rem); }
.pressure-heading .eyebrow { padding-top: .6rem; }
.pressure h2 { font-size: clamp(3.5rem, 7.4vw, 8rem); }

.pressure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(4rem, 7vw, 7rem);
  background: var(--black);
  border: 1px solid var(--black);
}

.pressure-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: clamp(1.5rem, 3vw, 2.7rem);
  background: var(--paper);
  overflow: hidden;
}

.pressure-card::before {
  position: absolute;
  right: -40px;
  bottom: -75px;
  color: rgba(10, 11, 13, .045);
  font-family: var(--display);
  font-size: 18rem;
  font-weight: 900;
  line-height: 1;
  content: "!";
}

.card-code { font-family: var(--mono); font-size: .6rem; letter-spacing: .08em; }
.pressure-card h3 { max-width: 290px; margin: 4.5rem 0 1.2rem; font-family: var(--display); font-size: clamp(1.8rem, 2.5vw, 2.8rem); line-height: .95; text-transform: uppercase; }
.pressure-card p { max-width: 350px; margin: 0; color: rgba(10, 11, 13, .66); }
.card-state { margin-top: auto; padding-top: 2rem; color: #b5460c; font-family: var(--mono); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.card-state::before { content: "●"; margin-right: .5rem; }

.manifesto {
  position: relative;
  min-height: 720px;
  padding-block: clamp(7rem, 14vw, 13rem);
  color: var(--paper);
  background: var(--orange);
  overflow: hidden;
  isolation: isolate;
}

.manifesto::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 54%, rgba(10, 11, 13, .98) 54.1% 100%);
  content: "";
}

.manifesto-mark { position: absolute; z-index: -2; top: -23%; left: 3%; color: rgba(10, 11, 13, .13); font-family: var(--display); font-size: 65vw; font-weight: 900; line-height: 1; transform: rotate(8deg); }
.manifesto-copy { display: grid; grid-template-columns: 1fr 3fr; position: relative; }
.manifesto-copy .eyebrow { color: var(--black); }
.manifesto h2 { max-width: 1150px; font-size: clamp(4rem, 8.8vw, 9.4rem); }
.manifesto h2 em { color: var(--orange); font-style: normal; }
.manifesto-copy > p:last-child { grid-column: 2; max-width: 600px; margin: 3rem 0 0 auto; color: rgba(238, 233, 223, .68); font-size: clamp(1.05rem, 1.5vw, 1.3rem); }

.system-head { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: end; margin-top: clamp(3rem, 6vw, 6rem); }
.system h2 { font-size: clamp(3.7rem, 7.4vw, 8rem); }
.system-intro { margin: 0 0 .5rem; color: rgba(10, 11, 13, .64); font-size: clamp(1rem, 1.4vw, 1.18rem); }

.system-board { margin-top: clamp(4rem, 8vw, 8rem); color: var(--paper); background: var(--black); box-shadow: 24px 24px 0 var(--orange); }
.board-header { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: .8rem 1rem; color: rgba(238, 233, 223, .48); font-family: var(--mono); font-size: .55rem; letter-spacing: .06em; border-bottom: 1px solid var(--line-dark); }
.board-header > span:last-child { text-align: right; }
.board-header div { display: flex; gap: .35rem; }
.board-header i { display: block; width: 7px; height: 7px; border: 1px solid rgba(238, 233, 223, .45); border-radius: 50%; }
.board-header i:first-child { background: var(--green); border-color: var(--green); }
.system-list { margin: 0; padding: 0; list-style: none; }
.system-list li { display: grid; grid-template-columns: 80px 1fr auto; gap: 1rem; align-items: center; min-height: 126px; padding: 1.5rem 2rem; border-bottom: 1px solid var(--line-dark); transition: color .25s ease, background .25s ease; }
.system-list li:last-child { border-bottom: 0; }
.system-list li:hover { color: var(--black); background: var(--orange); }
.system-number { color: var(--orange); font-family: var(--mono); font-size: .68rem; }
.system-list li:hover .system-number { color: var(--black); }
.system-list h3 { margin: 0; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 3.1rem); line-height: .95; text-transform: uppercase; }
.system-list p { margin: .4rem 0 0; color: rgba(238, 233, 223, .52); font-size: .88rem; }
.system-list li:hover p { color: rgba(10, 11, 13, .7); }
.system-tag { padding: .55rem .75rem; font-family: var(--mono); font-size: .55rem; letter-spacing: .08em; text-transform: uppercase; border: 1px solid currentColor; }

.inside { color: var(--paper); background: var(--black); }
.inside-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; min-height: 900px; padding-block: clamp(7rem, 12vw, 12rem); }
.inside-visual { position: relative; display: grid; justify-items: center; perspective: 1300px; }
.binder { position: relative; width: min(78%, 430px); padding: 6% 4% 6% 7%; background: #202329; border: 1px solid rgba(238, 233, 223, .3); transform: rotateY(9deg) rotateZ(-2deg); box-shadow: -35px 45px 70px rgba(0, 0, 0, .45), inset 12px 0 20px rgba(0, 0, 0, .4); container-type: inline-size; }
.binder::before, .binder::after { position: absolute; left: 2%; width: 5%; aspect-ratio: 1; background: var(--black); border: 2px solid #777; border-radius: 50%; content: ""; }
.binder::before { top: 24%; }
.binder::after { bottom: 24%; }
.binder-edge { position: absolute; top: 0; bottom: 0; left: 4%; width: 1px; background: rgba(238, 233, 223, .24); }
.binder-page { aspect-ratio: .78; padding: 8%; color: var(--black); background: #e7e1d5; box-shadow: 0 0 0 1px rgba(255, 255, 255, .18); }
.binder-head { display: flex; justify-content: space-between; padding-bottom: .65rem; color: #9f2d14; font-family: var(--mono); font-size: .48rem; font-weight: 700; border-bottom: 2px solid #9f2d14; }
.binder-page p { max-width: 100%; margin: 20% 0 14%; font-family: var(--display); font-size: clamp(1.7rem, 12.5cqi, 3.5rem); font-weight: 900; letter-spacing: -.045em; line-height: .84; white-space: nowrap; }
.binder-page ul { margin: 0; padding: 0; list-style: none; }
.binder-page li { height: 1px; margin-top: 1rem; background: rgba(10, 11, 13, .24); }
.binder-page small { display: block; margin-top: 2rem; font-family: var(--mono); font-size: .48rem; }
.binder-caption { margin-top: 3rem; color: rgba(238, 233, 223, .45); font-family: var(--mono); font-size: .6rem; text-transform: uppercase; }
.inside h2 { font-size: clamp(4rem, 7.5vw, 8rem); }
.inside-lead { max-width: 570px; margin: 2rem 0 3rem; color: rgba(238, 233, 223, .64); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.format-recommendation { display: grid; grid-template-columns: 1fr auto; gap: .45rem 1rem; margin: 0 0 2rem; padding: 1.25rem; color: var(--black); background: var(--orange); border: 1px solid var(--orange); transition: color .2s ease, background .2s ease, transform .2s ease; }
.format-recommendation:hover, .format-recommendation:focus-visible { color: var(--paper); background: transparent; transform: translateY(-3px); }
.format-recommendation span { grid-column: 1 / -1; font-family: var(--mono); font-size: .56rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.format-recommendation strong { font-family: var(--display); font-size: 1.7rem; letter-spacing: -.03em; line-height: 1; text-transform: uppercase; }
.format-recommendation small { grid-column: 1; max-width: 470px; color: inherit; font-size: .72rem; opacity: .7; }
.format-recommendation b { grid-column: 2; grid-row: 2 / 4; align-self: center; font-family: var(--mono); font-size: .58rem; letter-spacing: .05em; text-transform: uppercase; }
.format-recommendation i { font-style: normal; }
.deliverables { margin: 0; padding: 0; list-style: none; }
.deliverables li { display: grid; grid-template-columns: 45px 1fr; column-gap: 1rem; padding: 1.25rem 0; border-top: 1px solid var(--line-dark); }
.deliverables li:last-child { border-bottom: 1px solid var(--line-dark); }
.deliverables span { grid-row: 1 / 3; color: var(--orange); font-family: var(--mono); font-size: .65rem; }
.deliverables strong { font-family: var(--display); font-size: 1.35rem; letter-spacing: -.02em; text-transform: uppercase; }
.deliverables small { color: rgba(238, 233, 223, .48); font-size: .76rem; }

.audience-layout { display: grid; grid-template-columns: 1.4fr .6fr; gap: clamp(3rem, 8vw, 8rem); margin-top: clamp(4rem, 8vw, 8rem); }
.audience h2 { font-size: clamp(3.8rem, 7.2vw, 7.7rem); }
.role-list { display: flex; flex-direction: column; justify-content: flex-end; }
.role-list span { padding: 1rem 0; font-family: var(--mono); font-size: .68rem; border-bottom: 1px solid var(--line-light); }
.role-list span::before { color: var(--orange); content: "→"; margin-right: .9rem; }

.author { position: relative; color: var(--paper); background: var(--orange); overflow: hidden; }
.author::after { position: absolute; right: -7%; bottom: -58%; color: rgba(10, 11, 13, .09); font-family: var(--display); font-size: 38rem; font-weight: 900; content: "1"; }
.author-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .45fr 1.55fr 1fr; gap: 3rem; align-items: end; min-height: 580px; padding-block: 7rem; }
.author h2 { font-size: clamp(4rem, 7.5vw, 8rem); }
.author h2 em { color: var(--black); }
.author-copy { padding-bottom: .6rem; }
.author-copy p { margin: 0; font-size: clamp(1rem, 1.5vw, 1.25rem); }
.author-copy span { display: block; margin-top: 2rem; font-family: var(--mono); font-size: .6rem; letter-spacing: .07em; text-transform: uppercase; }

.questions { padding-block: clamp(6rem, 12vw, 11rem); }
.questions-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 9rem); margin-top: clamp(3rem, 6vw, 6rem); }
.questions h2 { font-size: clamp(3.5rem, 6.4vw, 7.2rem); }
.questions-intro { max-width: 500px; margin: 2rem 0 0; color: rgba(10, 11, 13, .62); font-size: 1rem; line-height: 1.75; }
.faq-list { border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { position: relative; padding: 1.7rem 3.5rem 1.7rem 0; font-family: var(--display); font-size: clamp(1.45rem, 2vw, 2rem); font-weight: 900; line-height: 1.03; text-transform: uppercase; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 1.45rem; right: .25rem; color: var(--orange); font: 900 2rem/1 var(--display); content: "+"; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 760px; margin: -.25rem 3.5rem 1.8rem 0; color: rgba(10, 11, 13, .64); font-size: .92rem; line-height: 1.75; }
.related-book { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; margin-top: clamp(4rem, 7vw, 7rem); padding: 2rem; color: var(--paper); background: var(--black); box-shadow: 12px 12px 0 var(--orange); }
.related-book > div > span { color: var(--orange); font-family: var(--mono); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.related-book strong { display: block; margin-top: .65rem; font-family: var(--display); font-size: clamp(1.7rem, 2.5vw, 2.7rem); line-height: .96; text-transform: uppercase; }
.related-book p { max-width: 770px; margin: .8rem 0 0; color: rgba(238, 233, 223, .58); font-size: .82rem; }
.related-book a { padding: 1rem 1.2rem; color: var(--black); background: var(--orange); font-family: var(--mono); font-size: .62rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.related-book a:hover, .related-book a:focus-visible { color: var(--paper); background: transparent; box-shadow: inset 0 0 0 1px var(--orange); }

.final-cta { position: relative; display: grid; min-height: min(900px, 95svh); place-items: center; color: var(--paper); background: var(--black); text-align: center; overflow: hidden; isolation: isolate; }
.final-grid { opacity: .2; mask-image: radial-gradient(circle, #000, transparent 75%); }
.final-cta::after { position: absolute; z-index: -2; width: min(80vw, 900px); aspect-ratio: 1; background: radial-gradient(circle, rgba(243, 101, 22, .18), transparent 68%); content: ""; }
.final-inner { display: flex; flex-direction: column; align-items: center; padding-block: 8rem; }
.final-cta h2 { max-width: 1250px; font-size: clamp(4rem, 9vw, 10rem); }
.final-cta > p, .final-inner > p:not(.kicker) { max-width: 590px; margin: 2.5rem 0; color: rgba(238, 233, 223, .58); }
.button-large { min-height: 66px; padding-inline: 2rem; }
.final-kindle-link { margin-top: 1.4rem; padding-bottom: .35rem; color: rgba(238, 233, 223, .62); font-family: var(--mono); font-size: .64rem; letter-spacing: .05em; text-transform: uppercase; border-bottom: 1px solid rgba(238, 233, 223, .28); }
.final-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2rem; margin-top: 3.5rem; color: rgba(238, 233, 223, .42); font-family: var(--mono); font-size: .58rem; text-transform: uppercase; }
.final-meta span:not(:last-child)::after { color: var(--orange); content: "/"; margin-left: 2rem; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 100px; padding: 1.5rem clamp(1.25rem, 4vw, 4.5rem); color: var(--paper); background: var(--black); font-family: var(--mono); font-size: .58rem; border-top: 1px solid var(--line-dark); }
.site-footer p { margin: 0; color: rgba(238, 233, 223, .42); }
.site-footer > a:last-child { justify-self: end; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2, .65, .25, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1.05fr .8fr; }
  .console-card { display: none; }
  .pressure-heading { grid-template-columns: 1fr; }
  .pressure-heading .eyebrow { padding: 0; }
  .manifesto-copy { grid-template-columns: 1fr; }
  .manifesto-copy > p:last-child { grid-column: 1; }
  .author-grid { grid-template-columns: 1fr 2fr; }
  .author-copy { grid-column: 2; }
}

@media (max-width: 860px) {
  .site-header { min-height: 66px; padding-inline: 1rem; }
  .site-header.scrolled { min-height: 60px; }
  .menu-toggle { position: relative; z-index: 302; display: block; justify-self: end; width: 44px; height: 44px; padding: 0; background: transparent; border: 0; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .25s 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; z-index: 301; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.5rem; padding: 6rem 2rem; color: var(--paper); background: var(--black); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav > a:not(.nav-cta) { color: var(--paper); font-family: var(--display); font-size: 2.8rem; line-height: .95; text-transform: uppercase; }
  .nav-cta { margin-top: 1rem; }
  .hero { grid-template-columns: 1fr; gap: 5rem; min-height: 0; padding: 8.5rem 1.25rem 6rem; }
  .hero-copy { padding-top: 0; }
  .hero-visual { min-height: 620px; }
  .book-scene { width: min(68%, 390px); }
  .scroll-cue { display: none; }
  .overview-layout,
  .questions-layout { grid-template-columns: 1fr; }
  .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-light); }
  .pressure-grid { grid-template-columns: 1fr; }
  .pressure-card { min-height: 300px; }
  .system-head,
  .inside-grid,
  .audience-layout { grid-template-columns: 1fr; }
  .inside-grid { min-height: 0; }
  .inside-visual { order: 2; }
  .author-grid { grid-template-columns: 1fr; align-items: start; min-height: 0; }
  .author-copy { grid-column: 1; max-width: 620px; }
  .related-book { grid-template-columns: 1fr; gap: 1.5rem; }
  .related-book a { justify-self: start; }
  .site-footer { grid-template-columns: 1fr auto; gap: 1rem; }
  .site-footer .wordmark { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .hero h1 { font-size: clamp(3.35rem, 14.2vw, 4.8rem); }
  .hero-intro { font-size: .98rem; }
  .overview-answer { padding-left: 1.25rem; }
  .book-facts { grid-template-columns: 1fr; }
  .book-facts > div, .book-facts > div:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .book-facts > div:last-child { border-bottom: 0; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-meta { justify-content: space-between; }
  .hero-meta li { min-width: 0; padding-inline: .8rem; }
  .hero-visual { min-height: 490px; }
  .book-scene { width: min(76%, 330px); }
  .visual-note { text-align: center; }
  .section-label { gap: 1rem; }
  .section-label span:last-child { text-align: right; }
  .pressure,
  .system,
  .audience { padding-block: 6rem; }
  .pressure h2,
  .system h2,
  .inside h2,
  .audience h2,
  .author h2 { font-size: clamp(3.3rem, 15vw, 5.5rem); }
  .manifesto { min-height: 640px; }
  .manifesto::after { background: linear-gradient(145deg, transparent 0 28%, rgba(10, 11, 13, .98) 28.2% 100%); }
  .manifesto-copy .eyebrow { color: var(--paper); }
  .manifesto h2 { font-size: clamp(3.5rem, 15vw, 5.7rem); }
  .system-board { box-shadow: 10px 10px 0 var(--orange); }
  .board-header { grid-template-columns: 1fr auto; }
  .board-header > span:last-child { display: none; }
  .system-list li { grid-template-columns: 36px 1fr; min-height: 135px; padding: 1.25rem 1rem; }
  .system-tag { display: none; }
  .system-list p { font-size: .76rem; }
  .inside-grid { padding-block: 6rem; }
  .binder { width: 86%; }
  .deliverables li { grid-template-columns: 35px 1fr; }
  .format-recommendation { grid-template-columns: 1fr; }
  .format-recommendation span, .format-recommendation strong, .format-recommendation small, .format-recommendation b { grid-column: 1; grid-row: auto; }
  .format-recommendation b { margin-top: .65rem; }
  .author-grid { padding-block: 6rem; }
  .questions h2 { font-size: clamp(3.3rem, 15vw, 5.5rem); }
  .faq-list summary { font-size: 1.4rem; }
  .related-book { box-shadow: 8px 8px 0 var(--orange); }
  .final-cta { min-height: 760px; }
  .final-cta h2 { font-size: clamp(3.7rem, 16vw, 6rem); }
  .final-meta span:not(:last-child)::after { display: none; }
  .site-footer { grid-template-columns: 1fr; text-align: left; }
  .site-footer > a:last-child { justify-self: start; }
}

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