:root {
  --ink-black: #0d0c0b;
  --bone: #efeae0;
  --bone-78: rgba(239, 234, 224, 0.78);
  --bone-65: rgba(239, 234, 224, 0.65);
  --bone-55: rgba(239, 234, 224, 0.55);
  --bone-40: rgba(239, 234, 224, 0.4);
  --hairline: rgba(239, 234, 224, 0.16);
  --signal-red: #e2251b;
  --red-deep: #8e1410;
  --red-on-bone: #b3231a;
  --ink-on-bone: #171410;
  --ink-rule: rgba(23, 20, 16, 0.2);
  --gutter: clamp(24px, 5vw, 72px);
  --section-pad: clamp(72px, 10vw, 140px);
  --content-max: 1360px;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--ink-black);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink-black);
  color: var(--bone);
  font-family: "Source Serif 4", Georgia, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection,
::selection {
  background: var(--signal-red);
  color: var(--bone);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--signal-red);
  outline-offset: 3px;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 0;
  z-index: 100;
  transform: translateY(-120%);
  background: var(--bone);
  color: var(--ink-on-bone);
  padding: 10px 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  text-decoration: none;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  background-image: var(--grain);
  mix-blend-mode: overlay;
  opacity: 0.38;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 70;
  width: 0;
  height: 2px;
  background: var(--signal-red);
}

.site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px var(--gutter);
}

.wordmark,
.button,
.nav-link,
.kicker,
.fine-print,
.hero__meta,
.footer-meta,
.countdown span,
.email-form input {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.wordmark {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--bone-65);
  font-size: 0.7rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-link:hover {
  color: var(--bone);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  background: var(--signal-red);
  color: var(--bone);
  padding: 16px 28px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 11px 20px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 112px);
  padding: 126px var(--gutter) 0;
  display: flex;
  align-items: flex-end;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(13, 12, 11, 0.92) 0%, rgba(13, 12, 11, 0.76) 35%, rgba(13, 12, 11, 0.22) 62%, rgba(13, 12, 11, 0.42) 100%),
    linear-gradient(0deg, rgba(13, 12, 11, 0.9) 0%, rgba(13, 12, 11, 0.08) 38%, rgba(13, 12, 11, 0.4) 100%);
}

.hero::after {
  background: radial-gradient(circle at 74% 36%, rgba(226, 37, 27, 0.12), transparent 38%);
  mix-blend-mode: normal;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 48%;
  filter: grayscale(1) brightness(1.18) contrast(1.04);
  opacity: 0.98;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.kicker {
  margin: 0 0 20px;
  color: var(--signal-red);
  font-size: 0.75rem;
}

.kicker--dark {
  color: var(--red-deep);
}

.kicker--on-red {
  color: var(--bone);
}

.hero__kicker {
  color: var(--bone-78);
  margin-bottom: clamp(20px, 3vh, 40px);
}

.mask {
  display: block;
  overflow: hidden;
}

.mask > span {
  display: inline-block;
}

.hero__title {
  margin: 0;
  color: var(--signal-red);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.83;
  text-shadow: 0 2px 18px rgba(13, 12, 11, 0.72);
  text-transform: uppercase;
}

.hero__title--question {
  font-size: 4.5rem;
}

.hero__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-top: clamp(22px, 3vh, 36px);
}

.hero__dek {
  max-width: 64ch;
  margin: 0;
  color: var(--bone);
  font-size: 1.18rem;
  line-height: 1.52;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.text-link {
  color: rgba(239, 234, 224, 0.7);
  border-bottom: 1px solid rgba(239, 234, 224, 0.3);
  padding-bottom: 2px;
  font-family: "Instrument Serif", serif;
  font-size: 1.18rem;
  font-style: italic;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--bone);
  border-color: var(--signal-red);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(239, 234, 224, 0.14);
  margin-top: clamp(18px, 2.5vh, 30px);
  padding: 16px 0 18px;
  color: rgba(239, 234, 224, 0.62);
  font-size: 0.68rem;
}

.marquee-band {
  overflow: hidden;
  overflow-x: clip;
  contain: paint;
  width: 100%;
  max-width: 100%;
  border-top: 3px solid var(--bone);
  border-bottom: 3px solid var(--bone);
  background: var(--signal-red);
  color: var(--bone);
  padding: 18px 0;
}

.marquee-track {
  display: inline-flex;
  align-items: baseline;
  gap: 44px;
  white-space: nowrap;
  will-change: transform;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.marquee-track em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

.offer-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 7vw, 116px);
  width: min(calc(100% - (var(--gutter) * 2)), var(--content-max));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--ink-black);
  color: var(--bone);
}

.offer-strip + .offer-strip {
  border-top: 1px solid var(--hairline);
}

.offer-strip--spotlight {
  border-top: 2px solid var(--bone);
  border-bottom: 2px solid var(--bone);
}

.offer-title {
  max-width: 10.6ch;
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 4.7rem;
  font-weight: 800;
  line-height: 0.86;
  text-transform: uppercase;
}

.offer-title em {
  color: var(--signal-red);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

.offer-copy {
  max-width: 44ch;
  margin: 28px 0 0;
  color: var(--bone-78);
  font-size: 1.12rem;
  line-height: 1.6;
}

.offer-strip__visual-ledger {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
}

.upgrade-ledger {
  border-top: 2px solid var(--bone);
}

.upgrade-row {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  border-bottom: 1px solid var(--hairline);
  padding: clamp(18px, 2.4vw, 28px) 0;
}

.upgrade-row span {
  color: var(--signal-red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.upgrade-row strong {
  color: var(--bone);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.upgrade-row--preferred strong {
  color: var(--signal-red);
}

/* Payoff row: red emphasis + red divider rule for hierarchy */
.upgrade-row--payoff strong {
  color: var(--signal-red);
}
.upgrade-row--payoff {
  border-bottom-color: var(--signal-red);
}

.section-photo {
  width: min(100%, 520px);
  margin: clamp(28px, 4vw, 46px) 0 0;
  border-bottom: 1px solid var(--hairline);
}

.section-photo--panel {
  width: 100%;
  margin-top: 0;
}

.section-photo img {
  width: 100%;
  height: clamp(230px, 24vw, 340px);
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.12) contrast(1.05);
}

.section-photo--wide img {
  height: clamp(190px, 18vw, 280px);
}

.section-photo--panel img {
  height: clamp(210px, 19vw, 290px);
}

.section-photo--portrait img {
  object-position: center 26%;
}

.section-photo figcaption {
  display: grid;
  gap: 8px;
  padding: 12px 0 16px;
}

.section-photo figcaption span {
  color: var(--bone-40);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.section-photo figcaption strong {
  color: var(--bone);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.52rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: var(--section-pad) var(--gutter);
}

.section--black {
  background: var(--ink-black);
  color: var(--bone);
}

.section--bone {
  overflow: hidden;
  background: var(--bone);
  color: var(--ink-on-bone);
}

.bone-grain {
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  mix-blend-mode: multiply;
  opacity: 0.18;
  pointer-events: none;
}

.section__grid,
.section--play,
.section--split {
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
}

.section--play,
.section--split,
.site-footer {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content-max));
  padding-right: 0;
  padding-left: 0;
}

.site-footer {
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
}

.section__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.section-title {
  max-width: 11ch;
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 0.86;
  text-transform: uppercase;
}

.section-title em {
  color: var(--signal-red);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

.section-title--dark em {
  color: var(--red-on-bone);
}

.section-title--compact {
  max-width: 12ch;
  font-size: 3.8rem;
}

.portrait {
  margin: 34px 0 0;
}

.portrait img {
  width: 100%;
  height: 520px;
  border: 0;
  object-fit: cover;
  object-position: center 34%;
}

.portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 2px solid var(--ink-on-bone);
  margin-top: 10px;
  padding-top: 8px;
  color: rgba(23, 20, 16, 0.5);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.book-copy {
  padding-top: clamp(0px, 4vw, 64px);
}

.story-copy {
  max-width: 68ch;
  margin: 0 0 26px;
  color: rgba(23, 20, 16, 0.88);
  font-size: 1.25rem;
  line-height: 1.65;
}

.story-copy--drop::first-letter {
  float: left;
  margin: 8px 14px 0 0;
  color: var(--red-on-bone);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 0.72;
}

.principle-list {
  display: grid;
  border-top: 2px solid var(--ink-on-bone);
  margin-top: 38px;
}

.principle-item {
  display: grid;
  grid-template-columns: minmax(118px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: baseline;
  border-bottom: 1px solid var(--ink-rule);
  padding: 18px 0;
}

.principle-item span {
  color: rgba(23, 20, 16, 0.54);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.principle-item strong {
  color: var(--ink-on-bone);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
}

.principle-item--red strong {
  color: var(--red-on-bone);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink-on-bone);
  margin-top: 44px;
}

.stat {
  min-width: 0;
  padding: 22px 18px 0 22px;
  border-right: 1px solid var(--ink-rule);
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--ink-on-bone);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.stat--red strong {
  color: var(--red-on-bone);
}

.stat > span:last-child {
  display: block;
  margin-top: 8px;
  color: rgba(23, 20, 16, 0.55);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.editions-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--content-max);
  margin: 0 auto 14px;
}

.section-note {
  max-width: 38ch;
  margin: 0 0 8px;
  color: rgba(239, 234, 224, 0.6);
  font-size: 1.06rem;
  line-height: 1.6;
}

.tier-list {
  max-width: var(--content-max);
  margin: 0 auto;
  border-top: 2px solid var(--bone);
}

.tier-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 0.9fr) minmax(220px, 0.8fr) auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: baseline;
  border-bottom: 1px solid var(--hairline);
  padding: clamp(22px, 3vw, 34px) 0;
  text-decoration: none;
  transition: background 250ms ease, transform 250ms ease;
}

.tier-row--preferred {
  background: rgba(226, 37, 27, 0.04);
}

.tier-row--selected {
  background: rgba(226, 37, 27, 0.08);
}

.tier-row:hover {
  background: rgba(226, 37, 27, 0.05);
  transform: translateX(10px);
}

.tier-row__price {
  color: var(--signal-red);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1;
}

.tier-row__price-label {
  display: block;
  margin-top: 6px;
  color: var(--bone-55);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-row__name {
  display: block;
  color: var(--bone);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.tier-row__note {
  display: block;
  margin-top: 6px;
  color: var(--bone-55);
  font-size: 1rem;
  font-style: italic;
}

.tier-row__upgrade {
  color: var(--bone);
}

.tier-row__upgrade span {
  display: block;
  margin-bottom: 6px;
  color: var(--bone-40);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  text-transform: uppercase;
}

.tier-row__upgrade strong {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.tier-row--preferred .tier-row__upgrade strong,
.tier-row--selected .tier-row__upgrade strong {
  color: var(--signal-red);
}

.tier-row__action {
  color: var(--bone);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.fine-print {
  max-width: var(--content-max);
  margin: 18px auto 0;
  color: var(--bone-40);
  font-size: 0.68rem;
}

.section--play {
  padding-top: 0;
  padding-bottom: var(--section-pad);
}

.play-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
}

.play-step {
  border-top: 2px solid var(--bone);
  padding-top: 22px;
}

.play-step span {
  display: block;
  margin-bottom: 12px;
  color: var(--signal-red);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.play-step p {
  margin: 0;
  color: rgba(239, 234, 224, 0.8);
  font-size: 1.12rem;
  line-height: 1.55;
}

.countdown-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border-top: 3px solid var(--bone);
  border-bottom: 3px solid var(--bone);
  background: var(--signal-red);
  color: var(--bone);
  padding: clamp(56px, 8vw, 100px) var(--gutter);
}

.countdown-band > * {
  max-width: var(--content-max);
}

.countdown-band h2 {
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  align-items: baseline;
  gap: clamp(10px, 1.6vw, 22px);
  font-family: "Big Shoulders Display", sans-serif;
}

.countdown__unit {
  text-align: center;
}

.countdown__unit strong {
  display: block;
  min-width: 1.3em;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.countdown__unit span {
  display: block;
  margin-top: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
}

.countdown__colon {
  opacity: 0.55;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.form-shell {
  margin-top: 34px;
}

.selected-tier {
  max-width: 520px;
  margin: 0 0 16px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 12px 0;
  color: var(--bone-78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.55;
  text-transform: uppercase;
}

.email-form {
  display: flex;
  max-width: 520px;
  border-bottom: 2px solid var(--bone);
}

.email-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--bone);
  font-size: 0.94rem;
  outline: none;
  padding: 14px 2px;
}

.email-form input::placeholder {
  color: var(--bone-55);
}

.email-form button {
  border: 0;
  background: transparent;
  color: var(--signal-red);
  cursor: pointer;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.06rem;
  font-weight: 800;
  padding: 14px 4px 14px 20px;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.email-form button:hover {
  color: var(--bone);
}

.form-status {
  max-width: 520px;
  margin: 0;
  border-bottom: 2px solid var(--signal-red);
  padding-bottom: 14px;
  color: var(--bone);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-status span {
  color: var(--signal-red);
}

.faq-item {
  border-top: 1px solid var(--hairline);
  padding: 22px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--hairline);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-item p {
  max-width: 52ch;
  margin: 0;
  color: var(--bone-65);
  font-size: 1.03rem;
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid rgba(239, 234, 224, 0.14);
  padding: clamp(56px, 8vw, 100px) var(--gutter) 32px;
}

.footer-mark {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 10rem;
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.site-footer p {
  margin: 6px 0 0 clamp(8px, 2vw, 24px);
  color: var(--signal-red);
  font-family: "Instrument Serif", serif;
  font-size: 2.8rem;
  font-style: italic;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(239, 234, 224, 0.14);
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: 20px;
  color: var(--bone-40);
  font-size: 0.68rem;
}

@media (min-width: 760px) {
  .hero__title {
    font-size: 7.1rem;
  }

  .hero__title--question {
    font-size: 5.8rem;
  }

  .section-title {
    font-size: 5.6rem;
  }

  .section-title--compact {
    font-size: 4.6rem;
  }

  .marquee-track {
    font-size: 3.2rem;
  }
}

@media (min-width: 1120px) {
  .hero__title {
    font-size: 8.8rem;
  }

  .hero__title--question {
    font-size: 6.3rem;
  }

  .section-title {
    font-size: 5.8rem;
  }

  .footer-mark {
    font-size: 13rem;
  }
}

@media (min-width: 1500px) {
  .hero__title {
    font-size: 10rem;
  }

  .hero__title--question {
    font-size: 7rem;
  }

  .footer-mark {
    font-size: 14.4rem;
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 104px;
  }

  .hero__image {
    width: 100%;
    object-position: 42% top;
  }

  .hero__body,
  .editions-head,
  .countdown-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__cta {
    flex-wrap: wrap;
  }

  .section__grid,
  .offer-strip,
  .section--split {
    grid-template-columns: 1fr;
  }

  .section-photo {
    width: 100%;
  }

  .section-photo img {
    height: clamp(240px, 48vw, 380px);
  }

  .offer-title {
    font-size: 4.1rem;
  }

  .tier-row {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px 32px;
  }

  .tier-row__upgrade,
  .tier-row__action {
    grid-column: 2;
  }

  .book-copy {
    padding-top: 0;
  }

  .play-grid {
    grid-template-columns: 1fr;
  }

  .countdown__unit strong,
  .countdown__colon {
    font-size: 5rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    padding-top: 18px;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(13, 12, 11, 0.06) 0%, rgba(13, 12, 11, 0.56) 34%, rgba(13, 12, 11, 0.9) 63%, rgba(13, 12, 11, 0.98) 100%),
      linear-gradient(90deg, rgba(13, 12, 11, 0.68) 0%, rgba(13, 12, 11, 0.28) 54%, rgba(13, 12, 11, 0.52) 100%);
  }

  .hero::after {
    background: radial-gradient(circle at 68% 20%, rgba(226, 37, 27, 0.1), transparent 34%);
  }

  .hero__image {
    width: 100%;
    height: 330px;
    object-position: 44% 0;
    opacity: 0.94;
  }

  .hero__title {
    font-size: 3.72rem;
  }

  .hero__title--question {
    font-size: 2.95rem;
  }

  .hero__body {
    max-width: none;
    gap: 22px;
    margin-top: 14px;
  }

  .hero__dek {
    font-size: 0.96rem;
    line-height: 1.47;
  }

  .hero__meta {
    gap: 12px;
    margin-top: 12px;
    padding: 12px 0 9px;
    font-size: 0.62rem;
  }

  .button {
    width: 100%;
  }

  .button--small {
    width: auto;
  }

  .section-title,
  .section-title--compact {
    font-size: 3.6rem;
  }

  .story-copy {
    font-size: 1.08rem;
  }

  .portrait img {
    height: 360px;
  }

  .section-photo {
    margin-top: 28px;
  }

  .offer-strip--photo-split {
    display: flex;
    flex-direction: column;
  }

  .offer-strip--photo-split .offer-strip__copy,
  .offer-strip--photo-split .offer-strip__visual-ledger {
    display: contents;
  }

  .offer-strip--photo-split .kicker {
    order: 1;
  }

  .offer-strip--photo-split .offer-title {
    order: 2;
  }

  .offer-strip--photo-split .section-photo {
    order: 3;
    margin-top: 24px;
  }

  .offer-strip--photo-split .offer-copy {
    order: 4;
    margin-top: 22px;
  }

  .offer-strip--photo-split .upgrade-ledger {
    order: 5;
    margin-top: 28px;
  }

  .section-photo img,
  .section-photo--wide img {
    height: 250px;
  }

  .portrait figcaption,
  .principle-item,
  .stat-strip,
  .tier-row,
  .upgrade-row,
  .email-form {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    display: grid;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--ink-rule);
    padding: 18px 0;
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .tier-row {
    display: grid;
    gap: 10px;
  }

  .tier-row__upgrade,
  .tier-row__action {
    grid-column: auto;
  }

  .tier-row:hover {
    transform: none;
  }

  .tier-row__price {
    font-size: 3.4rem;
  }

  .tier-row__name {
    font-size: 1.9rem;
  }

  .offer-title {
    font-size: 3.6rem;
  }

  .principle-item {
    gap: 6px;
  }

  .principle-item strong {
    font-size: 1.58rem;
  }

  .upgrade-row strong {
    font-size: 1.72rem;
  }

  .countdown {
    width: 100%;
    justify-content: space-between;
    gap: 2px;
  }

  .countdown-band h2 {
    font-size: 3.3rem;
  }

  .countdown__unit strong,
  .countdown__colon {
    font-size: 2.25rem;
  }

  .countdown__unit strong {
    min-width: 1.15em;
  }

  .countdown__unit span {
    font-size: 0.56rem;
  }

  .email-form {
    display: grid;
    border-bottom: 0;
  }

  .email-form input {
    border-bottom: 2px solid var(--bone);
  }

  .email-form button {
    min-height: 52px;
    padding-left: 0;
    text-align: left;
  }

  .footer-mark {
    font-size: 5.4rem;
  }

  .site-footer p {
    font-size: 2.1rem;
  }
}

@media (min-width: 521px) and (max-width: 680px) {
  .hero {
    min-height: calc(100svh - 112px);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(13, 12, 11, 0.9) 0%, rgba(13, 12, 11, 0.72) 34%, rgba(13, 12, 11, 0.2) 64%, rgba(13, 12, 11, 0.46) 100%),
      linear-gradient(0deg, rgba(13, 12, 11, 0.9) 0%, rgba(13, 12, 11, 0.1) 40%, rgba(13, 12, 11, 0.44) 100%);
  }

  .hero__image {
    height: 100%;
    object-position: 28% top;
    opacity: 0.96;
  }

  .hero__dek {
    max-width: 42ch;
  }

  .hero__cta {
    max-width: 380px;
  }

  .hero__cta,
  .hero__cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

[hidden] {
  display: none !important;
}

.no-scroll { overflow: hidden; }
.reserve-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: clamp(14px, 4vw, 48px); }
.reserve-modal[hidden] { display: none; }
.reserve-modal__backdrop { position: absolute; inset: 0; background: rgba(5, 5, 4, 0.82); }
.reserve-modal__panel { position: relative; z-index: 1; display: flex; flex-direction: column; width: min(560px, 100%); max-height: 92vh; background: var(--bone); border-top: 3px solid var(--signal-red); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.reserve-modal__close { position: absolute; top: 8px; right: 12px; z-index: 2; width: 40px; height: 40px; padding: 0; border: none; background: transparent; color: var(--ink-on-bone); font-size: 2rem; line-height: 1; cursor: pointer; }
.reserve-modal__close:hover { color: var(--signal-red); }
.reserve-modal__body { overflow-y: auto; -webkit-overflow-scrolling: touch; }
.reserve-modal__body iframe { display: block; width: 100%; }
