/* ══════════════════════════════════════════════════════════════════
   AI-LEVERAGE — Obviously Awesome (Dunford / positioning-first)
   Editorial advisory aesthetic. Warm cream. Fraunces + Inter.
   No gradients. No orbs. No purple. No shadows. No icons.
   ══════════════════════════════════════════════════════════════════ */

:root {
  /* Color — warm editorial palette */
  --ink:        #1A1815;
  --paper:      #F5F1E8;
  --paper-2:    #EDE7D7;   /* slightly warmer tone for contrast panels */
  --accent:     #B8492E;   /* burnt sienna */
  --ochre:      #C8923D;   /* muted gold */
  --quiet:      #6B6459;   /* warm gray text */
  --rule:       #1A18151A; /* 10% ink — hairline rules */
  --rule-med:   #1A181533; /* 20% ink */
  --deep:       #2A2520;   /* reversed panel bg */
  --deep-text:  #EFE8D8;   /* text on --deep */
  --deep-quiet: #A79D8C;

  /* Type */
  --font-display: "Fraunces", "Spectral", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  /* Rhythm */
  --col-narrow: 640px;   /* essay column */
  --col-mid:    720px;   /* main reading column */
  --col-wide:   1120px;  /* two-column contrast blocks */
  --pad-x: clamp(20px, 5vw, 64px);
  --sec-y: clamp(72px, 10vw, 144px);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }

/* ── Base ────────────────────────────────────────────────── */
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  /* Subtle paper grain — single radial for depth, not a loud texture */
  background-image:
    radial-gradient(ellipse 1400px 800px at 20% 0%, #EFE9DA 0%, transparent 55%),
    radial-gradient(ellipse 1200px 900px at 100% 100%, #EFE9DA 0%, transparent 60%);
  background-attachment: fixed;
}

/* ── Selection ───────────────────────────────────────────── */
::selection {
  background: var(--accent);
  color: var(--paper);
}

/* ── Focus ───────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════
   MASTHEAD
   ══════════════════════════════════════════════════════════ */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 232, 0.88);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.masthead__inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.wordmark__mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.wordmark__amp {
  color: var(--accent);
  font-style: italic;
  padding: 0 1px;
}
.wordmark__full {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--quiet);
  padding-left: 8px;
  border-left: 1px solid var(--rule-med);
}
@media (max-width: 640px) {
  .wordmark__full { display: none; }
}
.masthead__nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.masthead__nav a {
  color: var(--ink);
  transition: color 0.2s ease;
}
.masthead__nav a:hover { color: var(--accent); }
.masthead__cta {
  padding: 7px 14px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--paper) !important;
  transition: background 0.2s ease, color 0.2s ease;
}
.masthead__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper) !important;
}
@media (max-width: 700px) {
  .masthead__nav a:not(.masthead__cta) { display: none; }
}

/* ══════════════════════════════════════════════════════════
   COMMON BLOCKS
   ══════════════════════════════════════════════════════════ */

.section-container {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: var(--sec-y) var(--pad-x);
}
.section-container--narrow {
  max-width: calc(var(--col-mid) + 2 * var(--pad-x));
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.eyebrow__em { color: var(--rule-med); font-weight: 400; }
.eyebrow .sectsign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(1px);
  font-weight: 400;
}
.eyebrow--hero { margin-bottom: 36px; }
.eyebrow--ochre { color: var(--ochre); }
.eyebrow--centered { justify-content: center; }

/* Section heading */
.section-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 40px;
  max-width: 18ch;
  font-variation-settings: "opsz" 96, "SOFT" 30;
}
.section-heading--reversed {
  color: var(--deep-text);
}

/* Section intro paragraph */
.section-intro {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--quiet);
  max-width: 50ch;
  margin: 0 0 48px;
  font-variation-settings: "opsz" 48;
}

/* ══════════════════════════════════════════════════════════
   CTA BUTTONS
   ══════════════════════════════════════════════════════════ */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 16px 22px;
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(.2,.7,.3,1),
              background-color 0.2s ease,
              color 0.2s ease,
              border-color 0.2s ease;
}
.cta__arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(.2,.7,.3,1);
  font-family: var(--font-body);
  font-weight: 400;
}
.cta:hover .cta__arrow { transform: translateX(4px); }

.cta--primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.cta--primary:hover { background: var(--accent); border-color: var(--accent); }

.cta--secondary {
  padding: 16px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-med);
  border-radius: 0;
}
.cta--secondary:hover { border-bottom-color: var(--accent); color: var(--accent); }

.cta--on-dark {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
}
.cta--on-dark:hover { background: var(--ochre); border-color: var(--ochre); color: var(--deep); }

.cta--large {
  padding: 20px 28px;
  font-size: 16px;
}

/* ══════════════════════════════════════════════════════════
   § 01 — HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(64px, 12vw, 160px) var(--pad-x) clamp(56px, 10vw, 120px);
}
.hero__inner {
  max-width: var(--col-wide);
  margin: 0 auto;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 6.8vw, 92px);
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin: 0 0 48px;
  max-width: 18ch;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 25;
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(8px);
  animation: riseIn 0.9s cubic-bezier(.2,.7,.25,1) forwards;
}
.hero__line:nth-child(1) { animation-delay: 0.08s; }
.hero__line:nth-child(2) { animation-delay: 0.18s; }
.hero__line:nth-child(3) { animation-delay: 0.28s; }
.hero__line:nth-child(4) { animation-delay: 0.38s; }
.hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}

.hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.4;
  color: var(--quiet);
  max-width: 48ch;
  margin: 0 0 48px;
  font-variation-settings: "opsz" 48;
  opacity: 0;
  animation: fadeIn 1.1s ease 0.5s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-bottom: 88px;
  opacity: 0;
  animation: fadeIn 1.1s ease 0.7s forwards;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 760px;
  border-top: 1px solid var(--rule-med);
  padding-top: 28px;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.9s forwards;
}
@media (max-width: 640px) {
  .hero__meta { grid-template-columns: 1fr; gap: 18px; }
}
.hero__meta-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__meta-value {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}

.hero__rule {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 0;
  height: 1px;
  background: var(--rule);
  max-width: var(--col-wide);
  margin: 0 auto;
}

@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   § 02 & § 07 — CONTRAST BLOCKS
   ══════════════════════════════════════════════════════════ */
.contrast__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 16px;
}
@media (min-width: 900px) {
  .contrast__grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
}

.contrast__col {
  position: relative;
}

.contrast__col--is {
  padding-right: 0;
}
@media (min-width: 900px) {
  .contrast__col--is {
    border-right: 1px solid var(--rule-med);
    padding-right: 56px;
  }
  .contrast__col--isnt {
    padding-left: 16px;
  }
}

.contrast__header {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
  color: var(--accent);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
}
.contrast__col--isnt .contrast__header { color: var(--quiet); }

.contrast__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contrast__list li {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.contrast__col--is .contrast__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 1px;
  background: var(--accent);
}
.contrast__col--isnt .contrast__list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: -0.05em;
  color: var(--quiet);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  opacity: 0.6;
}

.contrast__list--strike li .strike-line {
  position: relative;
  display: inline;
}
.contrast__list--strike li .strike-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(.2,.7,.25,1);
}
.contrast__list--strike.animate li .strike-line::after {
  transform: scaleX(1);
}
.contrast__list--strike.animate li:nth-child(1) .strike-line::after { transition-delay: 0.00s; }
.contrast__list--strike.animate li:nth-child(2) .strike-line::after { transition-delay: 0.08s; }
.contrast__list--strike.animate li:nth-child(3) .strike-line::after { transition-delay: 0.16s; }
.contrast__list--strike.animate li:nth-child(4) .strike-line::after { transition-delay: 0.24s; }
.contrast__list--strike.animate li:nth-child(5) .strike-line::after { transition-delay: 0.32s; }
.contrast__list--strike.animate li:nth-child(6) .strike-line::after { transition-delay: 0.40s; }
.contrast__list--strike.animate li:nth-child(7) .strike-line::after { transition-delay: 0.48s; }
.contrast__list--strike.animate li:nth-child(8) .strike-line::after { transition-delay: 0.56s; }

.contrast__list--strike li {
  color: var(--quiet);
}

/* ══════════════════════════════════════════════════════════
   § 03 — HOW IT WORKS
   ══════════════════════════════════════════════════════════ */
.how { border-top: 1px solid var(--rule); }
.stages {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 44px 0;
  border-top: 1px solid var(--rule-med);
}
.stage:last-child { border-bottom: 1px solid var(--rule-med); }
@media (min-width: 900px) {
  .stage {
    grid-template-columns: 1.7fr 1fr;
    gap: 72px;
    padding: 56px 0;
  }
}

.stage__main {
  padding-left: 0;
  position: relative;
}
.stage__number {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.stage__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 22ch;
  font-variation-settings: "opsz" 72;
}
.stage__price {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.82em;
  color: var(--accent);
  font-style: normal;
  letter-spacing: -0.02em;
}
.stage__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 58ch;
  margin: 0;
}

.stage__note {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--quiet);
  max-width: 36ch;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-variation-settings: "opsz" 32;
}
@media (min-width: 900px) {
  .stage__note {
    padding-top: 32px;
    padding-left: 28px;
    border-top: 0;
    border-left: 1px solid var(--rule-med);
  }
}
.stage__note-label {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════════════════════
   § 04 — DISCOVERY (reversed panel)
   ══════════════════════════════════════════════════════════ */
.discovery {
  background: var(--deep);
  color: var(--deep-text);
  margin: 0;
  position: relative;
  overflow: hidden;
}
.discovery::before {
  /* faint ochre horizontal rule at top */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, 90%);
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--ochre) 30%, var(--ochre) 70%, transparent 100%);
  opacity: 0.4;
}
.discovery .section-container { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }

.discovery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-top: 16px;
}
@media (min-width: 900px) {
  .discovery__grid { grid-template-columns: 1.3fr 1fr; gap: 80px; }
}

.discovery__prose p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--deep-text);
  margin: 0 0 20px;
  max-width: 52ch;
}
.discovery__prose em {
  font-style: italic;
  color: var(--ochre);
}
.discovery__prose .cta { margin-top: 24px; }

.discovery__timeline {
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 2px;
  padding: 28px 28px 32px;
}
.timeline__header {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
  margin-bottom: 10px;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.timeline__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.09);
  align-items: start;
}
.timeline__item:last-child { border-bottom: 0; }
.timeline__time {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ochre);
  padding-top: 2px;
}
.timeline__label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: var(--deep-text);
  font-variation-settings: "opsz" 32;
}
@media (max-width: 520px) {
  .timeline__item { grid-template-columns: 1fr; gap: 4px; }
}

/* ══════════════════════════════════════════════════════════
   § 05 — VALUE MATH
   ══════════════════════════════════════════════════════════ */
.valmath { border-top: 1px solid var(--rule); }
.valmath__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 8px;
}
@media (min-width: 1000px) {
  .valmath__layout {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 64px;
    align-items: start;
  }
}

.valmath__prose .section-intro {
  margin-bottom: 32px;
}

.valmath__table {
  background: var(--paper-2);
  border: 1px solid var(--rule-med);
  border-radius: 2px;
  padding: clamp(20px, 3vw, 36px);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
  overflow-x: auto;
  margin: 0 0 28px;
  white-space: pre;
  letter-spacing: -0.01em;
  position: relative;
}
.valmath__table::before {
  content: "WORKED VALUE CASE — AGENCY, 12 PEOPLE";
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--rule-med);
}

.vm-rule   { color: var(--rule-med); }
.vm-num    { color: var(--accent); font-weight: 500; }
.vm-lbl    { color: var(--ink); }
.vm-lbl-b  { color: var(--ink); font-weight: 500; }
.vm-calc   { color: var(--quiet); }
.vm-eq     { color: var(--accent); }
.vm-val    { color: var(--ink); font-weight: 500; }
.vm-val-hi { color: var(--accent); font-weight: 500; font-size: 1.12em; }
.vm-dots   { color: var(--rule-med); }

.valmath__summary {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--quiet);
  max-width: 50ch;
  margin: 0;
  font-variation-settings: "opsz" 36;
}

.valmath__marginal {
  padding: 24px 24px;
  border-top: 2px solid var(--accent);
  background: transparent;
  max-width: 280px;
}
@media (min-width: 1000px) {
  .valmath__marginal {
    position: sticky;
    top: 100px;
    padding: 0 0 0 24px;
    border-top: 0;
    border-left: 2px solid var(--accent);
  }
}
.marginal__label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.valmath__marginal p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 32;
}

/* ══════════════════════════════════════════════════════════
   § 06 — THREE THEMES
   ══════════════════════════════════════════════════════════ */
.themes { border-top: 1px solid var(--rule); }
.themes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 8px;
}
@media (min-width: 820px) {
  .themes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}
.theme {
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}
.theme__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 20px;
  font-variation-settings: "opsz" 48;
}
.theme__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 14px;
  font-variation-settings: "opsz" 72;
}
.theme__body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--quiet);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   § 07 — FIT (reuses contrast grid)
   ══════════════════════════════════════════════════════════ */
.fit { border-top: 1px solid var(--rule); }
.contrast__grid--fit { margin-top: 16px; }

/* ══════════════════════════════════════════════════════════
   § 08 — ONE CASE
   ══════════════════════════════════════════════════════════ */
.case {
  background: var(--paper-2);
  border-top: 1px solid var(--rule-med);
  border-bottom: 1px solid var(--rule-med);
}
.case__heading {
  max-width: 20ch;
  font-style: normal;
}
.case__context {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--quiet);
  max-width: 50ch;
  margin: 0 0 32px;
  font-variation-settings: "opsz" 48;
}
.case__body p {
  font-size: 17px;
  line-height: 1.68;
  margin: 0 0 18px;
  max-width: 62ch;
}
.case__body strong {
  font-family: var(--font-mono);
  font-size: 0.92em;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.case__pullquote {
  margin: 48px 0 24px;
  padding: 28px 0 28px 44px;
  position: relative;
  border-left: 2px solid var(--accent);
  max-width: 48ch;
}
.pull__mark {
  position: absolute;
  left: 8px;
  top: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}
.pull__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 72;
}

.case__attribution {
  font-size: 13px;
  color: var(--quiet);
  font-style: italic;
  margin: 24px 0 0;
}

/* ══════════════════════════════════════════════════════════
   § 09 — FAQ
   ══════════════════════════════════════════════════════════ */
.faq {
  border-top: 1px solid var(--rule);
}
.faq__list {
  margin-top: 16px;
}
.faq__item {
  border-top: 1px solid var(--rule-med);
}
.faq__item:last-child { border-bottom: 1px solid var(--rule-med); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  align-items: baseline;
  gap: 18px;
  transition: color 0.2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__marker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.3s cubic-bezier(.3,.7,.3,1);
  display: inline-block;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  font-variation-settings: "opsz" 48;
}
.faq__item[open] .faq__marker {
  transform: rotate(90deg) scale(1.1);
  color: var(--accent);
}

.faq__q {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
}
.faq__item[open] .faq__q { color: var(--accent); }

.faq__a {
  padding: 0 0 28px 36px;
  max-width: 62ch;
  animation: faqReveal 0.45s cubic-bezier(.2,.7,.3,1);
}
.faq__a p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   § 10 — FINAL CTA
   ══════════════════════════════════════════════════════════ */
.final {
  border-top: 1px solid var(--rule);
  text-align: center;
}
.final .section-container { padding-top: clamp(88px, 12vw, 160px); padding-bottom: clamp(88px, 12vw, 160px); }
.final .eyebrow { justify-content: center; }

.final__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 36px;
  font-variation-settings: "opsz" 144, "SOFT" 20;
}

.final__body {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--quiet);
  max-width: 52ch;
  margin: 0 auto 48px;
  font-variation-settings: "opsz" 48;
}
.final__price {
  font-family: var(--font-mono);
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.92em;
}

.final__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ══════════════════════════════════════════════════════════
   COLOPHON
   ══════════════════════════════════════════════════════════ */
.colophon {
  border-top: 1px solid var(--rule-med);
  padding: 36px var(--pad-x);
  background: var(--paper);
}
.colophon__inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--quiet);
}
.colophon__line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
}
.colophon__line a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule-med);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.colophon__line a:hover { color: var(--accent); border-color: var(--accent); }
.colophon__dot { color: var(--rule-med); }
.colophon__year {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--quiet);
  display: flex;
  gap: 8px;
}

/* ══════════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .contrast__list--strike li .strike-line::after {
    transform: scaleX(1);
  }
  .hero__line, .hero__sub, .hero__actions, .hero__meta { opacity: 1; transform: none; }
}
