/* ============================================================
   THE SKOOL OF FORECASTING - Shared Stylesheet
   Design system: EB Garamond + Courier Prime - paper palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --ink: #1a1916;
  --paper: #f6f2e9;
  --paper-alt: #ede7d8;
  --muted: #7a7468;
  --accent: #7a1f1c;
  --serif: 'EB Garamond', Georgia, serif;
  --mono: 'Courier Prime', monospace;
  /* Layout - golden ratio of viewport, responsive at any screen size */
  --gutter-page: clamp(21px, 4.5vw, 89px);
  --gutter-golden: max(24px, 19.1vw);  /* (100 - 61.8) / 2 — keeps content column at 61.8vw at any width */
  --measure-page: max(61.8vw, 320px);       /* floor prevents sub-320px content on small phones */
  --measure-article: max(48.5vw, 270px);    /* floor for article reading columns */
  --measure-editorial: max(38.2vw, 240px);  /* floor for narrow editorial columns */
  --measure-reading: var(--measure-article);
  --measure-forecast: calc(100vw - (2 * var(--gutter-page)));

  /* Fibonacci spacing scale */
  --space-1: 8px;
  --space-2: 13px;
  --space-3: 21px;
  --space-4: 34px;
  --space-5: 55px;
  --space-6: 89px;
  --space-7: 144px;

  /* Golden-ratio type scale */
  --type-body: 18px;
  --type-small: 13px;
  --type-label: 11px;
  --type-ui: 12px;
  --type-h3: 1.618rem;
  --type-h2: 2.618rem;
  --type-h1: 4.236rem;
  --type-section: 1.618rem;

  /* Shared golden-ratio layout pieces */
  --gap-golden: clamp(34px, 3.82vw, 55px);
  --gap-golden-compact: clamp(21px, 3.4vw, 48px);
  --rail-min: min(100%, 220px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--type-body);
  line-height: 1.618;
  overflow-x: hidden;
}

/* -- NAV -- */
.site-nav {
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 21px var(--gutter-page) 16px;
  max-width: var(--measure-page);
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.nav-logo__full  { display: inline; }
.nav-logo__short { display: none; }
@media (max-width: 600px) {
  .nav-logo__full  { display: none; }
  .nav-logo__short { display: inline; }
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { border-bottom-color: var(--ink); }
.nav-links a.nav-muted { color: var(--muted); }
.nav-links a.nav-active { border-bottom-color: var(--ink); }

/* -- FOOTER -- */
.site-footer {
  border-top: 1px solid var(--ink);
  padding: 21px var(--gutter-page);
  margin-top: 89px;
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(220px, 1fr);
  gap: 13px 34px;
  align-items: start;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
  line-height: 1.618;
  text-transform: uppercase;
  max-width: var(--measure-page);
  margin-left: auto;
  margin-right: auto;
}
.site-footer span:last-child { text-align: right; }

.footer-disclaimer {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 21px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 21px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 21px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-nav a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

.footer-nav a:hover {
  border-bottom-color: var(--muted);
}

.courses-page .program-row {
  border-top-color: rgba(26, 25, 22, 0.35);
  border-top-style: dotted;
}
.courses-page .program-row--featured {
  border-color: rgba(26, 25, 22, 0.35);
}
.courses-page .program-row .pr-link,
.courses-page .program-row .pr-link:hover {
  border-bottom: 0;
  text-decoration: none;
}

.course-diagnostic {
  border-bottom: 1px solid var(--ink);
  border-top: 2px solid var(--ink);
  padding: 34px 0 55px;
}

.course-diagnostic__head {
  display: grid;
  gap: 21px;
  grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
  margin-bottom: 34px;
}

.course-diagnostic__head p {
  color: var(--muted);
  font-size: 16px;
  font-style: italic;
  line-height: 1.618;
  margin: 0;
}

.course-diagnostic__grid {
  border: 1px solid rgba(26, 25, 22, 0.32);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.course-diagnostic__card {
  background: var(--paper);
  color: var(--ink);
  min-height: 210px;
  padding: 21px;
  text-decoration: none;
}

.course-diagnostic__card:hover {
  background: var(--paper-alt);
}

.course-diagnostic__card span {
  color: var(--muted);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  margin-bottom: 21px;
  text-transform: uppercase;
}

.course-diagnostic__card h3 {
  font-size: 24px;
  line-height: 1.12;
  margin: 0 0 13px;
}

.course-diagnostic__card p {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
  margin: 0;
}

.method-plate-section {
  padding-bottom: 0;
  padding-top: 55px;
}

.method-plate {
  border-top: 2px solid var(--ink);
  margin: 0 auto;
  max-width: var(--measure-page);
  padding-top: 21px;
}

.method-plate img {
  background: var(--paper);
  border: 1px solid rgba(26, 25, 22, 0.34);
  display: block;
  height: auto;
  width: 100%;
}

.method-plate figcaption {
  border-top: 1px solid rgba(26, 25, 22, 0.18);
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  margin-top: 13px;
  padding-top: 13px;
}

/* -- LAYOUT -- */
.page-wrap {
  max-width: var(--measure-page);
  margin: 0 auto;
  padding: 0 var(--gutter-page);
}
.page-wrap--bleed {
  padding-left: 0;
  padding-right: 0;
}
.content-wrap {
  max-width: calc(var(--measure-article) + (2 * var(--gutter-page)));
  margin: 0 auto;
  padding: 0 var(--gutter-page);
}
.section.page-wrap,
.forecast-archive-hero .page-wrap {
  container-type: inline-size;
}
.forecast-archive-hero .page-wrap,
.section.page-wrap:has(> .forecast-archive-layout) {
  max-width: var(--measure-forecast);
}

.measure-reading {
  max-width: var(--measure-article);
}

.measure-editorial {
  max-width: var(--measure-editorial);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(var(--rail-min), 1fr);
  gap: var(--gap-golden);
  align-items: start;
  padding: 89px var(--gutter-page) 55px;
  border-bottom: 1px solid var(--ink);
}
.hero-copy {
  display: grid;
  gap: 13px;
}
.hero-title {
  max-width: var(--measure-editorial);
  margin: 0 0 12px;
}
.hero-kicker {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 22px;
}
.hero-deck {
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  max-width: var(--measure-reading);
  line-height: 1.5;
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-aside {
  margin-top: 13px;
}
.library-page .hero-aside .lp-row {
  align-items: baseline;
  border-top: 1px solid rgba(26, 25, 22, 0.12);
  display: flex;
  gap: 13px;
  justify-content: space-between;
  padding: 13px 0;
  color: var(--accent);
  text-decoration: none;
  transition: border-color 0.15s ease, opacity 0.15s ease;
}
.library-page .hero-aside .lp-row:hover {
  border-top-color: rgba(122, 31, 28, 0.32);
  opacity: 0.82;
}
.library-page .hero-aside .lp-key {
  color: var(--muted);
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.library-page .hero-aside .lp-val {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  text-align: right;
}
.section-intro {
  padding-top: 52px;
  padding-bottom: 52px;
  text-align: center;
}
.section-intro--split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.section-intro--split.section-intro--cta {
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.section-intro--split.section-intro--cta > div {
  max-width: var(--measure-reading);
}
.section-intro--split.section-intro--cta > .btn {
  align-self: center;
}
.section-intro__title {
  font-size: 30px;
  max-width: var(--measure-reading);
  margin: 0 auto 14px;
  line-height: 1.25;
}
.section-intro__deck {
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  max-width: var(--measure-reading);
  margin: 0 auto 24px;
  line-height: 1.5;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 21px;
}
.section-head__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex: 1;
}
.section-head__link {
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin-left: 16px;
  white-space: nowrap;
  text-decoration: none;
}
.copy-lg {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 18px;
}
.copy-md {
  font-size: 20px;
  line-height: 1.45;
  margin: 0 0 22px;
}
.copy-sm {
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.price-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin: -8px 0 12px;
}
.stack-top-10 { margin-top: 10px; }
.stack-top-16 { margin-top: 16px; }
.stack-top-24 { margin-top: 24px; }
.stack-top-32 { margin-top: 32px; }
.stack-bottom-16 { margin-bottom: 16px; }
.stack-bottom-24 { margin-bottom: 24px; }
.stack-bottom-0 { margin-bottom: 0; }

/* -- TYPOGRAPHY -- */
.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
hr.rule {
  border: 0;
  border-top: 1px solid var(--ink);
  margin: 0 0 20px 0;
}
hr.rule--heavy { border-top: 2px solid var(--ink); }
hr.rule--dot { border-top: 1px dotted var(--muted); }

.link-quiet {
  color: var(--ink);
  font-style: italic;
  text-decoration: none;
}
.link-quiet:hover { opacity: 0.7; }

/* Cross-promo CTA — secondary link from a specialist landing to the
   complete program. Italic, dimmer than the primary "Read the letter" link,
   with breathing room from the prior sibling. Use on .link-quiet or
   .link-quiet--light to render the "or take the complete program →" CTA. */
.link-quiet--cross,
.link-quiet.link-quiet--cross {
  font-style: italic;
  opacity: 0.85;
  margin-left: 18px;
}
.link-quiet--cross:hover { opacity: 1; }

/* --- Proof plate figure (study-plate, sells via image) ---
   Used by FTT, GYF, Solar — every page that embeds a study plate SVG.
   Frame: 1px ink border, paper background, mono caption underneath. */
.proof-plate {
  margin: 55px auto 0;
  max-width: 980px;
}
.proof-plate img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.proof-plate figcaption {
  margin-top: 13px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
}
.proof-plate figcaption strong { color: var(--ink); font-weight: 700; }

/* --- Proof strip: ledger-safe dated proof, read against the model ---
   A 3-column grid (collapses to 1 column under 720px) with ink top border
   per cell, mono year label in accent, body text underneath. */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  margin-top: 34px;
}
.proof-strip > div {
  border-top: 2px solid var(--ink);
  padding-top: 13px;
}
.proof-strip .yr {
  font-family: 'Courier Prime', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
}
.proof-strip p { margin: 6px 0 0; font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 720px) {
  .proof-strip { grid-template-columns: 1fr; gap: 13px; }
}

/* --- On-topic process icons in the proof grid ---
   SVG icons sized to 34px, stroked in accent (crimson). vector-effect:
   non-scaling-stroke so the stroke stays consistent at any rendered size. */
.proof-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.proof-ico {
  width: 34px; height: 34px; display: block;
  color: var(--accent); /* accent drives currentColor strokes, used once per card */
}
.proof-ico path,
.proof-ico line,
.proof-ico polyline,
.proof-ico circle,
.proof-ico rect { vector-effect: non-scaling-stroke; }

/* --- Market Forecaster (flagship complete program page) ---
   The MF page has a one-of-a-kind layout: a two-column hero (copy + offer
   panel), a rate strip, a method grid, and a value-ledger. None of the
   other sales pages use this pattern, so the namespace stays scoped
   (mf-*) but lives in the shared sheet. */
.mf-hero {
  padding: 89px var(--gutter-page) 55px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.mf-hero__inner {
  max-width: var(--measure-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(280px, 1fr);
  gap: var(--gap-golden);
  align-items: start;
}
@media (max-width: 900px) {
  .mf-hero__inner { grid-template-columns: 1fr; }
}
.mf-hero__copy { min-width: 0; }
.mf-kicker {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 21px;
}
.mf-hero__copy h1 {
  font-size: clamp(2.618rem, 5vw, var(--type-h1));
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 21px;
  color: var(--ink);
}
.mf-lede {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 21px;
  max-width: 60ch;
}
.mf-position {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 34px;
  max-width: 56ch;
}
.mf-scope-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
  border-top: 1px solid var(--rule);
  padding-top: 21px;
  margin-top: 21px;
}
.mf-scope-ledger > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mf-scope-ledger span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.mf-scope-ledger strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

.mf-offer-panel {
  background: var(--ink);
  color: var(--paper);
  padding: 34px;
  position: relative;
}
.mf-panel-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(246, 242, 233, 0.5);
  margin-bottom: 13px;
}
.mf-price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 13px;
  color: var(--paper);
}
.mf-period {
  font-size: 13px;
  color: rgba(246, 242, 233, 0.6);
  margin: 0 0 21px;
}
.mf-button {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 18px 21px;
  border: 1px solid var(--accent);
  transition: opacity 0.15s;
}
.mf-button:hover { opacity: 0.9; }
.mf-member-rate {
  margin-top: 21px;
  padding-top: 21px;
  border-top: 1px solid rgba(246, 242, 233, 0.15);
  font-size: 13px;
  line-height: 1.5;
}
.mf-member-rate span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(246, 242, 233, 0.5);
  margin-bottom: 4px;
}
.mf-member-rate strong {
  display: block;
  font-size: 15px;
  color: var(--paper);
  margin-bottom: 4px;
}
.mf-member-rate em {
  display: block;
  font-style: italic;
  color: rgba(246, 242, 233, 0.5);
  font-size: 12px;
}
.mf-note {
  font-size: 11px;
  color: rgba(246, 242, 233, 0.45);
  line-height: 1.5;
  margin: 21px 0 0;
}

.mf-rate-strip {
  background: var(--paper-alt);
  padding: 34px var(--gutter-page);
  border-bottom: 1px solid var(--rule);
}
.mf-rate-strip > div:first-of-type,
.mf-rate-strip > div:nth-of-type(2) {
  max-width: var(--measure-page);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 21px;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
}
.mf-rate-strip span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.mf-rate-strip strong {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}
.mf-rate-strip p {
  max-width: var(--measure-page);
  margin: 21px auto 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.mf-framework {
  padding: 89px var(--gutter-page);
  background: var(--paper);
}
.mf-framework__intro {
  max-width: var(--measure-page);
  margin: 0 auto 55px;
}
.mf-framework__intro h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.618rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 30ch;
}
.mf-method-grid {
  max-width: var(--measure-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 720px) {
  .mf-method-grid { grid-template-columns: 1fr; }
}
.mf-method-grid > article {
  background: var(--paper);
  padding: 21px;
}
.mf-method-grid > article > span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 13px;
}
.mf-method-grid > article > h3 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 13px;
}
.mf-method-grid > article > h3 a { color: var(--ink); text-decoration: none; }
.mf-method-grid > article > h3 a:hover { text-decoration: underline; }
.mf-method-grid > article > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.mf-method-grid__wide {
  grid-column: span 3;
}
@media (max-width: 720px) {
  .mf-method-grid__wide { grid-column: auto; }
}

.mf-value-ledger {
  max-width: var(--measure-page);
  margin: 55px auto 0;
  padding: 34px;
  background: var(--paper-alt);
  border: 1px solid var(--rule);
}
.mf-value-ledger > span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 21px;
}
.mf-value-ledger > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
}
.mf-value-ledger > div:last-child { border-bottom: 0; }
.mf-value-ledger strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.mf-value-ledger em {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  font-style: normal;
  letter-spacing: 0.5px;
}
.mf-value-ledger__total {
  background: rgba(122, 31, 28, 0.05);
  padding: 13px;
  margin: 13px -13px 0;
  border-top: 2px solid var(--ink);
}
.mf-value-ledger__price {
  background: var(--ink);
  color: var(--paper);
  padding: 13px;
  margin: 0 -13px -13px;
  border-top: 0;
}
.mf-value-ledger__price strong,
.mf-value-ledger__price em { color: var(--paper); }

/* Market Forecaster reading-measure widen.
   The shared default ties the letter column to viewport-proportional
   tokens, which on common widths collapses the body copy to a ~499px lane.
   Pin a fixed, centered ~710px reading measure with the page gutter
   OUTSIDE the measure, contained and responsive. */
.market-forecaster-page .long-letter-inner {
  max-width: min(940px, calc(100vw - (2 * var(--gutter-page))));
}
.market-forecaster-page .long-letter-inner > .label,
.market-forecaster-page .long-letter-inner > p,
.market-forecaster-page .long-letter-inner > ul,
.market-forecaster-page .long-letter-inner > ol,
.market-forecaster-page .long-letter-inner > h2,
.market-forecaster-page .long-letter-inner > h3,
.market-forecaster-page .long-letter-inner > blockquote,
.market-forecaster-page .long-letter-inner > .proof-box,
.market-forecaster-page .long-letter-inner > .policy-box {
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
}

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  margin-top: 0;
  line-height: 1.15;
}
/* Golden ratio type scale: 18px x phi^0 / phi^1 / phi^2 / phi^3 */
h1 { font-size: var(--type-h1); }  /* 18 x 4.236 approx. 76px */
h2 { font-size: var(--type-h2); }  /* 18 x 2.618 approx. 47px */
h3 { font-size: var(--type-h3); }  /* 18 x 1.618 approx. 29px */
p  { margin-top: 0; margin-bottom: 1.618em; }
/* Reset contexts where tight spacing is intentional */
.library-row p,
.ladder-step p,
.forum-card p,
.subscribe-box p,
.price-card p,
.proof-box p,
.editor-note p,
.track-table p,
.breadcrumb p,
.site-footer p { margin-bottom: 0; }

/* -- BUTTONS -- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--ink);
  transition: opacity 0.15s;
  line-height: 1;
}
.btn:hover { opacity: 0.75; }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--outline { background: transparent; color: var(--ink); }
.btn--block { display: block; text-align: center; }

/* -- SECTIONS -- */
.section { padding: 89px 0; }
.section--hero {
  padding: 0;
}
.section.page-wrap {
  padding-left: clamp(21px, 4.5vw, 89px);
  padding-right: clamp(21px, 4.5vw, 89px);
}
.section.content-wrap {
  padding-left: clamp(21px, 4.5vw, 89px);
  padding-right: clamp(21px, 4.5vw, 89px);
}
.section[style*="border-bottom"] + .section.page-wrap,
.section[style*="border-bottom"] + .section.content-wrap,
.section[style*="border-bottom"] + .section--alt {
  margin-top: 18px;
}
.section--alt {
  background: var(--paper-alt);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.breadcrumb + .section[style*="border-bottom"],
.site-nav + .section[style*="border-bottom"] {
  padding-top: 89px !important;
  padding-bottom: 55px !important;
}
.breadcrumb + .section[style*="border-bottom"] h1,
.site-nav + .section[style*="border-bottom"] h1,
.product-grid h1 {
  font-size: clamp(var(--type-h2), 5.2vw, var(--type-h1)) !important;
  line-height: 1.05 !important;
  max-width: var(--measure-editorial) !important;
}
.breadcrumb + .section[style*="border-bottom"] p,
.site-nav + .section[style*="border-bottom"] p,
.product-grid > div:first-child > p {
  max-width: var(--measure-reading) !important;
}
.section--alt > .page-wrap {
  padding-top: 55px;
  padding-bottom: 55px;
}

/* -- LADDER STRIP homepage -- */
.ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.ladder-step {
  padding: 24px 22px;
  border-right: 1px solid var(--ink);
}
.ladder-step:last-child { border-right: none; }
.ladder-step--active { background: var(--paper-alt); }
.ladder-step .step-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.ladder-step .step-title {
  font-size: 22px;
  font-family: var(--serif);
  margin-bottom: 6px;
  margin-top: 0;
}
.ladder-step .step-sub {
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

/* -- LIBRARY ROW -- */
.library-cat {
  margin-bottom: 28px;
}
.library-cat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  padding-left: 2px;
}
.library-row {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) 70px 30px;
  gap: 21px;
  padding: 21px 0;
  border-top: 1px dotted var(--muted);
  align-items: baseline;
  text-decoration: none;
  color: var(--ink);
}
.library-row:hover .row-title { text-decoration: underline; text-underline-offset: 3px; }
.row-title { font-size: 19px; line-height: 1.25; margin-bottom: 0; }
.row-sub { font-style: italic; font-size: 14px; color: var(--muted); margin-top: 5px; margin-bottom: 0; }
.row-dur { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.row-arrow { text-align: right; font-size: 14px; }

/* -- TRACK RECORD TABLE -- */
.track-table { width: 100%; border-collapse: collapse; }
.track-table th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px 10px 0;
  border-bottom: 1px solid var(--ink);
  text-align: left;
}
.track-table th:first-child { width: 90px; }
.track-table td {
  padding: 12px 16px 12px 0;
  border-bottom: 1px dotted var(--muted);
  font-size: 14px;
  vertical-align: top;
}
.track-table td:first-child {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  width: 90px;
}
.track-table td:last-child { font-style: italic; }

/* -- FORUM CARDS -- */
.forum-card {
  border: 1px solid var(--ink);
  padding: 18px;
  background: var(--paper);
}
.forum-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.forum-title { font-size: 16px; margin-bottom: 8px; margin-top: 0; }
.forum-body { font-style: italic; font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.forum-gated {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}

/* -- SUBSCRIBE BOX -- */
.subscribe-box {
  background: var(--ink);
  color: var(--paper);
  padding: 34px;
}
.subscribe-box .sb-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
  display: block;
}
.subscribe-box h3 { color: var(--paper); font-size: 24px; margin-bottom: 8px; }
.subscribe-box .sb-desc { font-style: italic; font-size: 13px; opacity: 0.75; line-height: 1.5; margin-bottom: 18px; }
.subscribe-box .sb-price { font-size: 36px; line-height: 1; margin-bottom: 16px; }
.subscribe-box .sb-price span { font-size: 14px; opacity: 0.7; }
.subscribe-box .btn--light {
  background: var(--paper);
  color: var(--ink);
  display: block;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 16px;
  text-decoration: none;
  border: none;
}
.subscribe-box .sb-note { font-style: italic; font-size: 12px; opacity: 0.65; margin-top: 12px; line-height: 1.5; }

/* -- PROGRAMS CATALOGUE -- */
.program-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1.618fr) 140px 110px;
  padding: 34px 0;
  border-top: 1px solid var(--ink);
  gap: 21px;
  align-items: baseline;
}
.program-row .pr-num { font-style: italic; font-size: 16px; color: var(--muted); }
.program-row .pr-title { font-size: 26px; line-height: 1.18; margin-bottom: 8px; }
.program-row .pr-sub { font-style: italic; font-size: 15px; color: var(--muted); line-height: 1.55; }
.program-row .pr-price { font-family: var(--mono); font-size: 12px; letter-spacing: 1px; }
.program-row .pr-link { font-style: italic; font-size: 14px; text-align: right; text-decoration: none; color: var(--ink); }
.program-row .pr-link:hover { text-decoration: underline; }
.program-row--featured {
  background: var(--paper-alt);
  border: 1px solid var(--ink);
  padding-left: 21px;
  padding-right: 21px;
  margin: 21px -21px 0;
}

/* -- PRODUCT PAGE HEADER -- */
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(var(--rail-min), 1fr);
  gap: 55px;
  padding: 55px 0 34px;
  align-items: start;
}
.product-toc { list-style: none; padding: 0; margin: 0; }
.product-toc li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 21px;
  padding: 13px 0;
  border-top: 1px dotted var(--muted);
  font-size: 15px;
  align-items: baseline;
}
.product-toc .toc-num { font-style: italic; color: var(--muted); font-size: 14px; }

/* -- PRICE CARD -- */
.price-card {
  border: 1px solid var(--ink);
  padding: 34px;
  background: var(--paper-alt);
  height: fit-content;
  position: sticky;
  text-align: center;
  top: 120px;
}
.price-card .pc-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}
.price-card .pc-price { font-size: 40px; line-height: 1; margin-bottom: 4px; }
.price-card .pc-period { font-style: italic; font-size: 13px; color: var(--muted); margin-bottom: 21px; }
.price-card .pc-note { font-style: italic; font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.5; text-align: center; }
.price-card .btn {
  width: 100%;
  line-height: 1.2;
  padding-left: 13px;
  padding-right: 13px;
}
.price-card .rule--dot {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* -- POLICY BOX -- */
.policy-box {
  background: var(--paper-alt);
  border: 1px solid var(--ink);
  padding: 24px;
  margin: 32px 0;
}
.policy-box h3 { margin-bottom: 12px; font-size: 18px; }

/* -- LONG LETTER -- */
.long-letter {
  background: var(--paper-alt);
  border-top: 2px solid var(--ink);
  margin-top: 0;
  padding: 0;
}
.long-letter-inner {
  max-width: var(--measure-page);
  margin: 0 auto;
  padding: 89px var(--gutter-page);
}
.long-letter-inner > p,
.long-letter-inner > ul,
.long-letter-inner > ol,
.long-letter-inner > .label,
.long-letter-inner > h2,
.long-letter-inner > h3,
.long-letter-inner > blockquote,
.long-letter-inner > .proof-box,
.long-letter-inner > .policy-box,
article.section.content-wrap > p,
article.section.content-wrap > ul,
article.section.content-wrap > ol,
article.section.content-wrap > h2,
article.section.content-wrap > h3,
article.section.content-wrap > .proof-box {
  max-width: var(--measure-reading);
}
.long-letter-inner p { margin-bottom: 1.618em; }
.long-letter-inner blockquote {
  border-left: 3px solid var(--muted);
  padding-left: 34px;
  margin: 34px 0;
  font-style: italic;
  color: var(--muted);
}
.long-letter-inner h2 { margin-top: 89px; margin-bottom: 21px; }
.long-letter-inner h3 { margin-top: 55px; margin-bottom: 13px; }

/* ── BRAND TYPOGRAPHY LOCK ──
   Keeps older inline sizes from drifting away from the golden-ratio system. */
article.content-wrap h2,
.long-letter-inner > h2,
.section-h2 {
  font-size: var(--type-section) !important;
  line-height: 1.2 !important;
}
article.content-wrap h3,
.long-letter-inner > h3 {
  font-size: clamp(1.25rem, 1.8vw, var(--type-h3)) !important;
  line-height: 1.2 !important;
}
article.content-wrap p,
article.content-wrap li,
.long-letter-inner > p,
.long-letter-inner > ul,
.long-letter-inner > ol {
  font-size: var(--type-body);
  line-height: 1.618;
}
body > nav.site-nav + nav.breadcrumb + section.section[style*="border-bottom"] {
  padding-bottom: 55px !important;
}
body > nav.site-nav + nav.breadcrumb + section.section[style*="border-bottom"] > .content-wrap h1,
body > nav.site-nav + nav.breadcrumb + section.section[style*="border-bottom"] > .page-wrap h1 {
  font-size: clamp(var(--type-h2), 5.2vw, var(--type-h1)) !important;
  line-height: 1.05 !important;
  max-width: var(--measure-editorial) !important;
  margin-bottom: 21px !important;
}
body > nav.site-nav + nav.breadcrumb + section.section[style*="border-bottom"] > .content-wrap > p,
body > nav.site-nav + nav.breadcrumb + section.section[style*="border-bottom"] > .page-wrap > p {
  font-size: clamp(17px, 1.35vw, 21px) !important;
  line-height: 1.618 !important;
  max-width: var(--measure-reading) !important;
}
article.section.content-wrap.essay {
  padding-top: 55px;
}
article.section.content-wrap.essay > p:first-child {
  margin-top: 0;
}
article.section.content-wrap.essay > h2 {
  margin-top: 55px;
  margin-bottom: 21px;
}
article.section.content-wrap.essay > figure.essay-plate {
  margin-top: 55px;
  margin-bottom: 55px;
}
article.section.content-wrap.essay + div[style*="border-top: 2px solid var(--ink)"] {
  max-width: var(--measure-article);
  margin: 55px auto 0 !important;
  padding: 21px 0 0 !important;
  border-top-width: 1px !important;
  border-bottom: 0 !important;
  background: transparent !important;
}
article.section.content-wrap.essay + div[style*="border-top: 2px solid var(--ink)"] > .content-wrap {
  padding: 0 !important;
}
article.section.content-wrap.essay + div[style*="border-top: 2px solid var(--ink)"] .label {
  margin-bottom: 13px !important;
}
article.section.content-wrap.essay + div[style*="border-top: 2px solid var(--ink)"] p {
  font-size: var(--type-body) !important;
  line-height: 1.618 !important;
}
article.content-wrap > p[style],
article.content-wrap > ul[style],
article.content-wrap > ol[style],
.long-letter-inner > p[style],
.long-letter-inner > ul[style],
.long-letter-inner > ol[style] {
  line-height: 1.618 !important;
}

.editor-note {
  background: #fffde7;
  border-left: 3px solid #c8a000;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: #7a6000;
  margin: 16px 0;
}

/* -- PROOF BOX -- */
.proof-box {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 21px 34px;
  margin: 34px 0;
}
.proof-box .proof-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.proof-box .proof-forecast { margin-bottom: 10px; font-size: 15px; }
.proof-box .proof-outcome { font-style: italic; font-size: 15px; color: var(--muted); margin: 0; }

/* -- GRID UTILS -- */
.grid-2 { display: grid; }
.grid-2--golden,
.grid-2 {
  grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
  gap: 55px;
}
.grid-2--even {
  grid-template-columns: 1fr 1fr;
}

/* -- PROGRAMS PREVIEW homepage strip -- */
.market-timing-courses-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  margin-top: 0;
}
.prog-card {
  padding: 18px 18px 20px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.market-timing-courses-preview .prog-card:nth-child(2n) { border-right: none; }
.prog-card .pc-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  display: block;
}
.prog-card .pc-name {
  font-size: 18px;
  font-family: var(--serif);
  margin-bottom: 6px;
  margin-top: 0;
  line-height: 1.2;
}
.prog-card .pc-desc {
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0 0 12px;
}
.prog-card .pc-price {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.prog-card .pc-link {
  font-style: italic;
  font-size: 13px;
  text-decoration: none;
  color: var(--ink);
}
.prog-card .pc-link:hover { opacity: 0.7; }
.prog-card--featured {
  background: var(--paper-alt);
  grid-column: 1 / -1;
  min-height: auto;
  border-right: none;
  border-top: 1px solid var(--ink);
  border-bottom: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 24px;
  align-items: start;
}
.prog-card--featured .pc-desc,
.prog-card--featured .pc-price,
.prog-card--featured .pc-link {
  grid-column: 1 / -1;
}
.courses-preview-note {
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0 16px;
  max-width: 680px;
}

/* -- SOCIAL PROOF BAR -- */
.social-proof-bar {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.spb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.spb-item:hover { color: var(--ink); }
.spb-label { color: var(--ink); }

/* -- LIBRARY TEASER homepagesee-all link -- */
.lib-teaser-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0;
}
.lib-teaser-see-all {
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 1px;
  white-space: nowrap;
  margin-left: 16px;
}
.lib-teaser-see-all:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* -- VALUE LIST subscribe-box inclusions -- */
.sb-value-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.sb-value-list li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.85;
  padding: 5px 0;
  border-bottom: 1px solid rgba(246,242,233,0.12);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.sb-value-list li::before {
  content: '\2713';
  opacity: 0.6;
  flex-shrink: 0;
}


.forecast-figure {
  border: 1px solid var(--ink);
  padding: 21px;
  background: var(--paper);
  margin: 34px 0;
}
.forecast-figure .fig-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 13px;
}
.essay-plate {
  border-top: 2px solid var(--ink);
  margin: 55px auto;
  max-width: var(--measure-article);
  padding-top: 21px;
}
.essay-plate__label {
  color: var(--muted);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 13px;
  text-transform: uppercase;
}
.essay-plate svg,
.essay-plate img {
  background: var(--paper);
  border: 1px solid rgba(26, 25, 22, 0.34);
  display: block;
  height: auto;
  width: 100%;
}
.essay-plate__caption {
  border-top: 1px solid rgba(26, 25, 22, 0.18);
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  margin: 13px 0 0;
  padding-top: 13px;
}
.rare-book-cover {
  max-width: 430px;
}
.rare-book-cover img {
  background: #f8f7f1;
  border-color: rgba(26, 25, 22, 0.45);
}
.rare-book-page {
  max-width: 620px;
}
.rare-book-page img {
  background: #f8f7f1;
  border-color: rgba(26, 25, 22, 0.45);
}
.rare-book-title-band,
.rare-book-masthead {
  max-width: min(760px, calc(100vw - (2 * var(--gutter-page))));
}
.rare-book-title-band img,
.rare-book-masthead img {
  background: #f8f7f1;
  border-color: rgba(26, 25, 22, 0.36);
}

/* -- TEXT WRAP modern CSS for better line breaks -- */
p, li, td, blockquote, .row-sub, .step-sub, .pc-period, .pc-note, .sb-desc, .sb-note { text-wrap: pretty; }
h1, h2, h3, h4, h5 { text-wrap: balance; }

/* -- BREADCRUMBS -- */
.breadcrumb {
  padding: 10px 56px;
  max-width: var(--measure-page);
  margin: 0 auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.bc-item { color: var(--muted); text-decoration: none; }
.bc-item:hover { color: var(--ink); }
.bc-current { color: var(--ink); }
.bc-sep { margin: 0 10px; opacity: 0.4; }

/* -- READING PROGRESS BAR -- */
.reading-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--ink);
  width: 0%;
  z-index: 300;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* -- ESSAY DROP CAP -- */
article.essay > p:first-of-type::first-letter {
  font-size: 3.4em;
  float: left;
  line-height: 0.82;
  margin: 0.04em 5px 0 0;
  font-family: var(--serif);
}

/* -- FOCUS STATES accessibility -- */
a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 1px;
}
button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* -- LONG LETTER -- */
.long-letter-inner > .label,
.long-letter-inner > p,
.long-letter-inner > ul,
.long-letter-inner > ol,
.long-letter-inner > h2,
.long-letter-inner > h3,
.long-letter-inner > blockquote,
.long-letter-inner > .proof-box,
.long-letter-inner > .policy-box {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.long-letter-inner > .proof-box,
.long-letter-inner > .policy-box {
  margin: 34px auto !important;
}
.long-letter-inner > .proof-box[style],
.long-letter-inner > .policy-box[style] {
  margin-left: auto !important;
  margin-right: auto !important;
}
.long-letter-inner > .proof-box ul,
.long-letter-inner > .policy-box ul {
  line-height: 1.618 !important;
}
.long-letter-inner > .label,
.long-letter-inner > h2,
.long-letter-inner > h3 {
  text-align: left;
}
.long-letter-inner > h2,
.long-letter-inner > h3 {
  border-top-color: rgba(26, 25, 22, 0.86);
}

/* -- IMAGES IN CONTENT -- */
.long-letter-inner img,
.content-wrap article img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border: 1px solid var(--ink);
}

.financial-table-plate {
  width: min(1100px, calc(100vw - 40px));
  margin: 48px 0 56px 50%;
  transform: translateX(-50%);
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 20px 20px 0 rgba(26, 25, 22, 0.05), 1px 1px 0 var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.financial-table-plate:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 24px 24px 0 rgba(26, 25, 22, 0.08), 1px 1px 0 var(--ink);
}

.financial-table-plate img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
}
.financial-table-plate figcaption {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.long-letter-inner .disclaimer,
.content-wrap .disclaimer {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* -- CONTENT SECTION HEADINGS h2/h3 within articles and long letters -- */
/* Adds a ruled separator above each section break so headings read clearly */
.content-wrap article h2,
.content-wrap article h3,
article.content-wrap h2,
article.content-wrap h3,
.long-letter-inner h2,
.long-letter-inner h3 {
  border-top: 1px solid var(--ink);
  padding-top: 22px;
  margin-top: 44px;
  margin-bottom: 14px;
}
/* Don't rule the very first heading in a block */
.content-wrap article > h2:first-child,
.content-wrap article > h3:first-child,
.long-letter-inner > h2:first-child,
.long-letter-inner > h3:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
/* Section headings on forecast/essay pages that use inline style */
.section-h2 {
  border-top: 1px solid var(--ink);
  padding-top: 22px;
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.2;
}
.section-h2--flush {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}
.proof-box--alt {
  background: var(--paper-alt);
  border: 1px solid var(--ink);
  margin-top: 32px;
}
.forecast-figure {
  margin: 28px 0;
}
.forecast-figure svg,
.forecast-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.track-table {
  margin: 22px 0;
}

/* ============================================================
   PREMIUM INSTITUTIONAL UTILITIES
   Added for 'The Forecaster' Schwartz Overhaul
   ============================================================ */

/* Archive Wall Grid */
.archive-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-4);
  margin: var(--space-5) 0;
}

.archive-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: var(--space-4);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
}

.archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 34px rgba(26, 25, 22, 0.08);
  border-color: var(--accent);
}

.archive-card .ac-year {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-2);
}

.archive-card h4 {
  font-size: 1.3rem;
  margin: 0 0 var(--space-2);
  line-height: 1.2;
}

.archive-card .ac-result {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px dotted var(--muted);
}

/* Institutional Proof Block */
.proof-block--institutional {
  background: var(--paper);
  border-left: 5px solid var(--ink);
  padding: var(--space-5);
  margin: var(--space-5) 0;
  position: relative;
}

/* Glassmorphism Utilities */
.glass-premium {
  background: rgba(246, 242, 233, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(26, 25, 22, 0.1);
  box-shadow: 0 8px 32px rgba(26, 25, 22, 0.05);
}

/* Clinical Price Card */
.price-card--institutional {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: var(--space-5);
  box-shadow: 34px 34px 0 rgba(26, 25, 22, 0.1);
}

.price-card--institutional .pc-label {
  color: rgba(246, 242, 233, 0.5);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-2);
}
.price-card--institutional .pc-price {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  margin: var(--space-3) 0 var(--space-2);
}
.price-card--institutional .pc-period {
  color: rgba(246, 242, 233, 0.45);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.price-card--institutional .pc-note {
  color: rgba(246, 242, 233, 0.6);
  font-size: 14px;
  font-style: italic;
  line-height: 1.618;
  margin-bottom: var(--space-4);
}
.price-card--institutional .btn--primary {
  background: var(--paper);
  color: var(--ink);
  border: none;
  display: block;
  text-align: center;
  width: 100%;
}

/* Reading Measures */
.measure-schwartz {
  max-width: var(--measure-reading);
  margin-left: auto;
  margin-right: auto;
}
@media print {
  .site-nav, .site-footer, .reading-bar { display: none; }
  .long-letter { background: white; border: none; }
  body { font-size: 12pt; }
  h1 { font-size: 24pt; } h2 { font-size: 18pt; } h3 { font-size: 14pt; }
  a { color: inherit; text-decoration: none; }
  .btn { border: 1px solid #000; }
}

/* -- LAYOUT -- */
/* Replaces inline grid styles so media queries can override them */
.forecast-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
  gap: var(--gap-golden-compact);
}
.forecast-layout--2026 {
  gap: clamp(21px, 3vw, 34px);
}
.forecast-sidebar {
  align-self: start;
  min-width: 0;
}
.forecast-sidebar--2026 {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.8vh, 21px);
  padding-bottom: 55px;
  width: 100%;
}
.forecast-sidebar--2026 > * {
  margin-bottom: 0 !important;
}
@media (min-width: 901px) {
  .forecast-sidebar--2026 {
    position: sticky;
    top: 89px;
  }
}
.forecast-watchlist-card,
.forecast-cadence-card {
  border: 1px solid var(--ink);
  background: var(--paper-alt);
  padding: clamp(13px, 2vh, 21px) clamp(18px, 2.6vw, 34px);
}
.forecast-cadence-card {
  background: var(--paper);
  border-left-width: 4px;
}
.forecast-watchlist-card ul {
  color: var(--muted);
  font-size: clamp(12px, 1.35vw, 14px);
  line-height: clamp(1.45, 1.6vh, 1.8);
  margin: 0;
  padding-left: 18px;
}
.forecast-cadence-list {
  color: var(--muted);
  font-size: clamp(11px, 1.25vw, 13px);
  font-style: italic;
  line-height: clamp(1.45, 1.7vh, 1.9);
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* -- PREMIUM FORECAST ARCHIVES -- */
.archive-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 13px 21px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.forecast-archive-hero {
  border-bottom: 1px solid var(--ink);
  padding: 89px 0 34px;
}
.section.forecast-archive-hero {
  padding: 0;
}
.forecast-archive-hero h1 {
  font-size: clamp(2.618rem, 5.4vw, 4.236rem);
  font-size: clamp(2.618rem, 6.18cqi, 4.236rem);
  line-height: 1.05;
  max-width: 61.8%;
  margin: 0 0 34px;
}
.forecast-archive-hero .hero-quote {
  border-left: 2px solid var(--ink);
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  font-style: italic;
  line-height: 1.618;
  margin: 0 0 21px;
  max-width: 61.8%;
  padding: 0 0 8px 21px;
}
.forecast-archive-nav {
  border-bottom: 1px solid var(--ink);
}
.forecast-archive-nav__inner {
  display: grid;
  gap: 13px;
  margin: 0 auto;
  max-width: var(--measure-forecast);
  padding: 13px var(--gutter-page) 21px;
}
.forecast-archive-nav__label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.forecast-archive-nav__links {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.forecast-archive-nav__links a {
  border: 1px solid rgba(26, 25, 22, 0.18);
  color: var(--ink);
  display: block;
  padding: 18px 21px;
  text-decoration: none;
}
.forecast-archive-nav__links a span {
  color: var(--muted);
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 3px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.forecast-archive-nav__links a strong {
  display: block;
  font-size: 15px;
  line-height: 1.5;
}
.forecast-archive-nav__links a:hover,
.forecast-archive-nav__links a:focus-visible {
  background: var(--paper-alt);
}
.forecast-archive-nav--compact .forecast-archive-nav__inner {
  gap: 8px;
  padding-bottom: 16px;
  padding-top: 10px;
}
.forecast-archive-nav--compact .forecast-archive-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.forecast-archive-nav--compact .forecast-archive-nav__links a {
  border: none;
  padding: 0;
}
.forecast-archive-nav--compact .forecast-archive-nav__links a span {
  display: inline;
  margin-bottom: 0;
  margin-right: 8px;
}
.forecast-archive-nav--compact .forecast-archive-nav__links a strong {
  display: inline;
}
.forecast-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
  gap: var(--gap-golden);
  align-items: start;
  padding-bottom: 55px;
}
.forecast-essay {
  min-width: 0;
}
.forecast-review {
  margin: 48px 0 55px;
}
.review-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.55;
}
.review-table th {
  border-bottom: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 13px 13px 13px 0;
  text-align: left;
  text-transform: uppercase;
}
.review-table td {
  border-bottom: 1px dotted var(--muted);
  padding: 21px 21px 21px 0;
  vertical-align: top;
}
.review-table td:last-child {
  color: var(--muted);
  font-style: italic;
  padding-right: 0;
}
.archive-note,
.archive-proof-card {
  background: var(--paper-alt);
  border-left: 4px solid var(--ink);
  margin: 34px 0;
  padding: 21px 28px;
}
.archive-note p,
.archive-proof-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.archive-note strong,
.archive-proof-card strong {
  color: var(--ink);
}
.archive-proof-card h2 {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.archive-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 21px;
}
.archive-figure {
  border-top: 2px solid var(--ink);
  margin: 48px 0 55px;
  padding: 18px 0 0;
}
.archive-figure__label {
  color: var(--muted);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 13px;
  text-transform: uppercase;
}
.archive-figure svg,
.archive-figure img {
  display: block;
  height: auto;
  width: 100%;
}
.archive-figure__caption {
  border-top: 1px solid rgba(26, 25, 22, 0.18);
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  margin: 13px 0 0;
  padding-top: 13px;
}
.archive-figure + .forecast-review .section-h2 {
  margin-top: 0;
}
.archive-sidebar {
  position: sticky;
  top: 120px;
  min-width: 0;
}
.archive-sidebar > *,
.forecast-sidebar > * {
  max-width: 100%;
  min-width: 0;
}

.forecast-sidebar--2026 .proof-box {
  padding: 16px 18px;
}
.forecast-sidebar--2026 .proof-box .proof-label,
.forecast-sidebar--2026 .subscribe-box .sb-label,
.forecast-sidebar--2026 .forecast-watchlist-card .label,
.forecast-sidebar--2026 .forecast-cadence-card .label {
  font-size: clamp(8px, 1.1vw, 10px);
  letter-spacing: clamp(1.6px, 0.28vw, 3px);
}
.forecast-sidebar--2026 .proof-box .proof-forecast,
.forecast-sidebar--2026 .proof-box .proof-outcome {
  font-size: clamp(13px, 1.45vw, 15px);
  line-height: clamp(1.35, 1.65vh, 1.618);
}
.forecast-sidebar--2026 .subscribe-box {
  padding: 20px 21px;
}
.forecast-sidebar--2026 .subscribe-box h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.15;
  margin-bottom: 6px;
}
.forecast-sidebar--2026 .subscribe-box .sb-desc {
  font-size: clamp(11px, 1.15vw, 12px);
  line-height: 1.45;
  margin-bottom: 12px;
}
.forecast-sidebar--2026 .subscribe-box .sb-price {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 10px;
}
.forecast-sidebar--2026 .price-note,
.forecast-sidebar--2026 .subscribe-box .sb-note {
  font-size: clamp(10px, 1vw, 11px);
  line-height: 1.35;
}
.forecast-sidebar--2026 .subscribe-box .btn--light {
  font-size: clamp(9px, 1.1vw, 11px);
  padding: clamp(9px, 1.35vh, 12px) clamp(12px, 1.8vw, 16px);
}

@media (min-width: 901px) and (max-height: 940px) {
  .forecast-sidebar--2026 {
    gap: 12px;
  }

  .forecast-sidebar--2026 .proof-box,
  .forecast-sidebar--2026 .subscribe-box,
  .forecast-sidebar--2026 .forecast-watchlist-card,
  .forecast-sidebar--2026 .forecast-cadence-card {
    padding: 14px 18px;
  }

  .forecast-sidebar--2026 .subscribe-box h3 {
    margin-bottom: 5px;
  }

  .forecast-sidebar--2026 .subscribe-box .sb-desc,
  .forecast-sidebar--2026 .subscribe-box .sb-price,
  .forecast-sidebar--2026 .price-note {
    margin-bottom: 8px;
  }

  .forecast-sidebar--2026 .subscribe-box .sb-note {
    margin-top: 8px;
  }
}
.archive-side-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  margin-bottom: 18px;
  padding: 18px 21px;
}
.archive-side-card ul {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
  padding-left: 18px;
}
.archive-side-card p {
  color: var(--muted);
  font-size: 13px;
  margin: 13px 0 0;
}
.archive-side-card a {
  color: var(--ink);
  display: block;
  font-size: 13px;
  font-weight: bold;
  margin-top: 13px;
}
.archive-sales-card {
  background: var(--ink);
  color: var(--paper);
  margin-top: 18px;
  padding: 30px;
}
.archive-sales-card .label {
  color: rgba(246,242,233,0.58);
}
.archive-sales-card h3 {
  color: var(--paper);
  font-size: 1.618rem;
  margin-bottom: 13px;
}
.archive-sales-card p {
  color: rgba(246,242,233,0.68);
  font-size: 14px;
  line-height: 1.618;
  margin-bottom: 21px;
}
.archive-sales-card .btn {
  background: var(--paper);
  color: var(--ink);
  display: block;
  text-align: center;
}
.grid-historical {
  display: grid;
  grid-template-columns: minmax(144px, 38.2%) minmax(0, 61.8%);
  gap: 21px;
  padding: 21px 0;
  border-top: 1px dotted var(--muted);
}
.grid-historical .year-label {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: bold;
  color: var(--ink);
}
.grid-historical .event-list {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.home-forecast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(var(--rail-min), 1fr);
  gap: var(--gap-golden-compact);
}
.home-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
}
.home-library-cycles-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
  column-gap: 40px;
}
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(var(--rail-min), 1fr);
  gap: var(--gap-golden);
  padding: 55px 0 34px;
  align-items: start;
}
.home-2026-market-forecast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(var(--rail-min), 1fr);
  gap: var(--gap-golden-compact);
}
[class~="2026-market-forecast-layout"] {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(var(--rail-min), 1fr);
  gap: var(--gap-golden-compact);
}

/* -- HAMBURGER BUTTON -- */
@container (max-width: 760px) {
  .forecast-layout,
  .forecast-archive-layout {
    grid-template-columns: 1fr;
  }

  .forecast-sidebar--2026,
  .archive-sidebar {
    position: static;
  }

  .forecast-archive-nav__inner {
    padding-bottom: 24px;
  }

  .forecast-archive-nav__links {
    grid-template-columns: 1fr;
  }

  .forecast-archive-nav--compact .forecast-archive-nav__links {
    display: grid;
    gap: 10px;
  }

  .forecast-archive-nav__links a {
    padding: 16px 18px;
  }

  .forecast-archive-nav--compact .forecast-archive-nav__links a {
    padding: 0;
  }

  .forecast-archive-nav__links a strong {
    font-size: 14px;
  }

  .forecast-archive-hero .hero-quote {
    max-width: 100%;
  }

  .forecast-archive-hero h1 {
    max-width: 100%;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
  .nav-inner { padding: 14px 24px; }
  .page-wrap { padding: 0 24px; }
  .content-wrap { padding: 0 24px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 55px 24px 34px;
  }
  .hero-copy,
  .hero-aside {
    max-width: var(--measure-reading);
  }
  .hero-aside {
    margin-top: 0;
  }
  .hero-title {
    max-width: 12ch;
  }
  .hero-deck {
    margin-bottom: 0;
    max-width: 34ch;
  }
  .section.page-wrap,
  .section.content-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .ladder {
    margin-top: 18px;
  }
  .breadcrumb { padding: 10px 24px; }
  .ladder { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .course-diagnostic__head,
  .course-diagnostic__grid {
    grid-template-columns: 1fr;
  }
  .course-diagnostic__card {
    min-height: auto;
  }
  .program-row { grid-template-columns: 50px 1fr; }
  .program-row .pr-price { display: none; }
  .program-row .pr-link {
    display: block;
    grid-column: 2;
    text-align: left;
    font-size: 13px;
    margin-top: 4px;
  }
  .home-forecast-grid { grid-template-columns: 1fr; }
  .forecast-archive-hero .hero-quote { max-width: 100%; }
  .home-library-cycles-grid { grid-template-columns: 1fr; }
  .market-timing-courses-preview { grid-template-columns: 1fr; }
  .market-timing-courses-preview .prog-card {
    border-right: none;
    min-height: auto;
  }
  .market-timing-courses-preview .prog-card:last-child,
  .market-timing-courses-preview .prog-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }
  .prog-card--featured {
    grid-template-columns: 1fr;
  }
  .social-proof-bar { gap: 18px; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 1.8rem; }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 24px;
    margin-top: 55px;
  }
  .site-footer span:last-child { text-align: left; }
  .long-letter-inner { padding: 40px 24px; }
  .financial-table-plate {
    width: 100%;
    margin-left: 0;
    transform: none;
    padding: 8px;
  }
  .price-card { position: static; }
  .track-table { font-size: 13px; }
  .track-table th, .track-table td { padding: 10px 10px 10px 0; }
}

@media (min-width: 761px) and (max-width: 900px) {
  .forecast-layout,
  .forecast-archive-layout {
    grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
    gap: 21px;
  }
  .forecast-sidebar--2026,
  .archive-sidebar {
    position: sticky;
    top: 89px;
  }
  .forecast-watchlist-card,
  .forecast-cadence-card,
  .archive-side-card,
  .archive-sales-card {
    padding: 21px;
  }
  .archive-sales-card h3 {
    font-size: 1.3rem;
  }
  .archive-sales-card .btn {
    padding-left: 13px;
    padding-right: 13px;
  }
}

@media (max-width: 760px) {
  .forecast-layout,
  .forecast-archive-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .forecast-sidebar--2026,
  .archive-sidebar { position: static; }
  .forecast-watchlist-card,
  .forecast-cadence-card,
  .archive-side-card,
  .archive-sales-card {
    padding: 34px;
  }
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    justify-items: start;
    padding: 55px 24px 34px;
  }
  .hero-copy,
  .hero-aside {
    width: min(100%, 34rem);
    max-width: min(100%, 34rem);
  }
  .hero-copy { gap: 21px; }
  .hero-aside {
    margin-top: 0;
  }
  .hero-title {
    font-size: clamp(2.2rem, 6.2vw, 3.5rem);
    line-height: 1.08;
    max-width: 12ch;
  }
  .hero-deck {
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 0;
    max-width: 30ch;
  }
  .nav-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    gap: 0;
    max-width: 100%;
  }
  .nav-logo {
    font-size: clamp(17px, 4.8vw, 20px);
    line-height: 1.1;
    max-width: calc(100vw - 86px);
    overflow-wrap: normal;
    white-space: normal;
  }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    gap: 0;
    z-index: 99;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 13px 24px;
    border-bottom: 1px solid var(--paper-alt);
    font-size: 11px;
    letter-spacing: 1.5px;
    border-right: none;
  }
  .nav-links a.nav-active { border-bottom: 1px solid var(--paper-alt); }
}

@media (max-width: 600px) {
  .ladder {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .hero-grid {
    gap: 21px;
    padding: 34px 24px 21px;
  }
  .hero-copy,
  .hero-aside {
    width: 100%;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(1.8rem, 8.8vw, 2.25rem);
    line-height: 1.1;
    max-width: 11ch;
  }
  .hero-deck {
    font-size: 15px;
    line-height: 1.55;
    max-width: 26ch;
  }
  .proof-box {
    padding: 21px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 36px 0; }
  .section.page-wrap,
  .section.content-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .section[style*="border-bottom"] + .section.page-wrap,
  .section[style*="border-bottom"] + .section.content-wrap,
  .section[style*="border-bottom"] + .section--alt {
    margin-top: 24px;
  }
  .forecast-archive-hero { padding: 55px 0 24px; }
  .archive-figure {
    margin: 34px 0;
    padding-top: 13px;
  }
  .archive-figure__label {
    letter-spacing: 2px;
    line-height: 1.45;
  }
  .archive-figure__caption {
    font-size: 12px;
  }
  .archive-sales-card {
    padding: 34px 21px;
  }
  .review-table,
  .review-table thead,
  .review-table tbody,
  .review-table tr,
  .review-table th,
  .review-table td {
    display: block;
  }
  .review-table thead { display: none; }
  .review-table tr {
    border-top: 1px solid var(--ink);
    padding: 21px 0;
  }
  .review-table td {
    border-bottom: none;
    padding: 0;
  }
  .review-table td + td { margin-top: 13px; }
  .review-table td:first-child::before { content: "Forecast"; }
  .review-table td:last-child::before { content: "Outcome"; }
  .review-table td::before {
    color: var(--muted);
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
  }
  .grid-historical {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .subscribe-box .sb-price { font-size: 28px; }
  .track-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .library-row {
    grid-template-columns: minmax(0, 1fr) auto 18px;
    gap: 8px;
    align-items: start;
  }
  .row-title { font-size: 17px; line-height: 1.3; }
  .row-sub { font-size: 13px; line-height: 1.55; }
  .row-dur { font-size: 9px; }
  .row-arrow { font-size: 13px; }
  .program-row { grid-template-columns: 32px 1fr; gap: 12px; }
  .program-row .pr-num { font-size: 13px; }
  .price-card .pc-price { font-size: 32px; }
  .forecast-figure svg,
  .forecast-figure img { min-height: 160px; }
  .market-timing-courses-preview { grid-template-columns: 1fr; }
  .market-timing-courses-preview .prog-card {
    border-right: none;
    border-bottom: 1px solid var(--ink);
    min-height: auto;
  }
  .market-timing-courses-preview .prog-card:first-child { border-top: none; }
  .prog-card--featured {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ============================================================
   START HERE DECISION PAGE
   ============================================================ */

.start-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 72px var(--gutter-page);
}

.start-hero__inner,
.start-principle__inner,
.start-pathways__inner,
.start-methods__inner,
.start-close__inner {
  margin: 0 auto;
  max-width: var(--measure-page);
}

.start-hero__inner {
  align-items: center;
  display: grid;
  gap: var(--gap-golden);
  grid-template-columns: minmax(0, 1.618fr) minmax(260px, 1fr);
}

.start-hero .status-pill {
  color: rgba(246, 242, 233, 0.48);
  margin-bottom: 34px;
}

.start-hero h1 {
  color: var(--paper);
  font-size: var(--type-h1);
  line-height: 1.02;
  margin-bottom: 28px;
  max-width: 12ch;
}

.start-hero p {
  color: rgba(246, 242, 233, 0.66);
  font-size: 20px;
  font-style: italic;
  line-height: 1.55;
  max-width: 58ch;
}

.start-desk {
  background: rgba(246, 242, 233, 0.04);
  border: 1px solid rgba(246, 242, 233, 0.14);
  box-shadow: 13px 13px 0 rgba(0, 0, 0, 0.18);
  padding: 34px;
  width: min(100%, 466px);
  justify-self: end;
}

.start-desk .proof-label {
  color: rgba(246, 242, 233, 0.48);
  display: block;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 21px;
}

.start-desk-row {
  border-top: 1px solid rgba(246, 242, 233, 0.12);
  color: var(--paper);
  display: block;
  padding: 17px 0 18px;
  text-decoration: none;
}

.start-desk-row:hover {
  opacity: 0.78;
}

.start-desk-row span {
  color: rgba(246, 242, 233, 0.58);
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 8px;
}

.start-desk-row strong {
  color: var(--paper);
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.24;
  max-width: 29ch;
  text-align: left;
}

.start-principle,
.start-methods {
  background: var(--paper);
  padding: 72px var(--gutter-page);
}

.start-principle__inner {
  border-bottom: 1px dotted var(--muted);
  border-top: 1px dotted var(--muted);
  padding: 44px 0;
  text-align: center;
}

.start-principle .label,
.start-section-head .label,
.start-close .label {
  display: block;
  margin-bottom: 21px;
}

.start-principle h2,
.start-section-head h2,
.start-close h2 {
  font-size: var(--type-h2);
  line-height: 1.08;
  margin-bottom: 21px;
}

.start-principle h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 17ch;
}

.start-principle p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.618;
  margin: 0 auto;
  max-width: 62ch;
}

.start-rule-grid {
  border-top: 2px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.start-rule-item {
  border-bottom: 1px solid var(--ink);
  padding: 21px 21px 21px 0;
}

.start-rule-item + .start-rule-item {
  border-left: 1px dotted rgba(26, 25, 22, 0.38);
  padding-left: 21px;
}

.start-rule-item span {
  color: var(--muted);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.start-rule-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.18;
}

.start-pathways {
  background: var(--ink);
  color: var(--paper);
  padding: 89px var(--gutter-page) 72px;
}

.start-section-head {
  margin-bottom: 44px;
}

.start-pathways .start-section-head h2,
.start-path-card h3 {
  color: var(--paper);
}

.start-path-card-grid {
  border: 1px solid rgba(246, 242, 233, 0.14);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.start-path-card {
  background: rgba(246, 242, 233, 0.035);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 34px;
  text-decoration: none;
}

.start-path-card:hover {
  background: rgba(246, 242, 233, 0.07);
}

.start-path-card--featured {
  background: rgba(122, 31, 28, 0.26);
}

.start-path-card h3 {
  font-size: var(--type-h3);
  line-height: 1.1;
  margin: 21px 0;
}

.start-path-card p {
  color: rgba(246, 242, 233, 0.62);
  font-size: 15px;
  line-height: 1.618;
}

.start-methods {
  border-bottom: 1px solid var(--ink);
}

.start-methods .start-section-head h2 {
  max-width: 18ch;
}

.start-method-list {
  border-top: 2px solid var(--ink);
}

.start-method-row {
  align-items: baseline;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  display: grid;
  gap: 21px;
  grid-template-columns: 55px minmax(0, 1fr) 130px;
  padding: 28px 0;
  text-decoration: none;
}

.start-method-row:hover h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.method-index {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.start-method-row h3 {
  font-size: 24px;
  margin: 0 0 5px;
}

.start-method-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.start-method-row strong {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  text-align: right;
}

.start-close {
  background: var(--paper-alt);
  padding: 72px var(--gutter-page);
}

.start-close__inner {
  display: grid;
  gap: var(--gap-golden);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.618fr);
}

.start-close h2 {
  max-width: 17ch;
}

.start-close__copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.618;
  margin-bottom: 21px;
  max-width: 52ch;
}

.start-close__copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .start-hero,
  .start-principle,
  .start-pathways,
  .start-methods,
  .start-close {
    padding: 55px 24px;
  }

  .start-hero__inner,
  .start-path-card-grid,
  .start-rule-grid,
  .start-close__inner {
    grid-template-columns: 1fr;
  }

  .start-rule-item + .start-rule-item {
    border-left: 0;
    padding-left: 0;
  }

  .start-hero h1 {
    font-size: var(--type-h2);
    max-width: 13ch;
  }

  .start-path-card {
    min-height: auto;
  }

  .start-method-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .start-method-row strong {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .start-hero p,
  .start-principle p,
  .start-close__copy p {
    font-size: 16px;
  }

  .start-desk {
    padding: 24px;
    width: 100%;
  }

  .start-desk-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* ============================================================
   HOMEPAGE PREMIUM REDESIGN
   ============================================================ */

.status-pill {
  border: 1px solid currentColor;
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 8px 13px;
  text-transform: uppercase;
}

.home-premium-hero {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 72px var(--gutter-golden) 48px;
  position: relative;
  text-align: center;
}

.home-premium-hero::before {
  background:
    radial-gradient(circle at 50% 32%, rgba(122, 31, 28, 0.22), transparent 42%),
    linear-gradient(90deg, transparent 0, rgba(246, 242, 233, 0.035) 50%, transparent 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.home-premium-hero__inner {
  margin: 0 auto;
  max-width: var(--measure-page);
  position: relative;
}

.home-premium-hero .status-pill {
  color: rgba(246, 242, 233, 0.48);
  margin-bottom: 24px;
}

.home-premium-hero h1 {
  color: var(--paper);
  font-size: clamp(var(--type-h1), 3.236vw, 6.854rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 auto 21px;
  max-width: 61.8vw;
  text-wrap: normal;
}

.home-premium-hero h1 span {
  display: block;
  white-space: nowrap;
}

.home-premium-hero__sub {
  color: rgba(246, 242, 233, 0.68);
  font-size: clamp(var(--type-body), 1.318vw, var(--type-section));
  font-style: italic;
  line-height: 1.618;
  margin: 0 auto;
  max-width: min(61.8vw, 55ch);
  text-align: center;
}

.home-hero-deck {
  margin: 34px auto 0;
  max-width: min(61.8vw, 68.54ch);
}

.home-hero-argument {
  color: rgba(246, 242, 233, 0.78);
  font-size: clamp(var(--type-small), 0.786vw, var(--type-body));
  font-weight: 500;
  line-height: 1.618;
  margin: 21px auto 0;
  max-width: min(61.8vw, 68.54ch);
  text-align: center;
}

.home-hero-argument p {
  margin-bottom: 13px;
}

.home-hero-argument p:last-child {
  margin-bottom: 0;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
  margin-top: 42px;
}

.home-premium-hero .hero-stat-row {
  border-top: 1px solid rgba(246, 242, 233, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  margin-top: 28px;
  padding-top: 21px;
}

.home-premium-hero .hero-stat-item {
  border-right: 1px solid rgba(246, 242, 233, 0.12);
  padding: 0 34px;
  text-align: center;
}

.home-premium-hero .hero-stat-item:last-child {
  border-right: none;
}

.home-premium-hero .hs-num {
  color: var(--paper);
  display: block;
  font-family: var(--mono);
  font-size: 2.618rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.home-premium-hero .hs-label {
  color: rgba(246, 242, 233, 0.46);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-premium-hero .btn--primary {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.home-premium-hero .btn--outline {
  border-color: rgba(246, 242, 233, 0.46);
  color: var(--paper);
}

.home-exclusivity-bar {
  background: var(--accent);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1.5;
  padding: 13px 21px;
  text-align: center;
  text-transform: uppercase;
}

.home-lead-section,
.home-method-section,
.home-library-section {
  background: var(--paper);
  padding: 89px var(--gutter-golden);
}

.home-lead-inner,
.home-method-inner,
.home-path-inner,
.home-offer-inner,
.home-record-inner,
.home-library-inner,
.home-close-inner {
  margin: 0 auto;
  max-width: var(--measure-page);
}

.home-lead-inner,
.home-method-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-golden);
}

.home-lead-copy,
.home-method-copy {
  flex: 1.618 1 300px;
  min-width: 0;
}

.lead-proof,
.home-study-plate {
  flex: 1 1 260px;
  min-width: 0;
}

.home-lead-copy .label,
.home-method-copy .label,
.home-offer-head .label,
.home-record-inner > .label,
.home-library-head .label,
.home-close-inner .label {
  display: block;
  margin-bottom: 21px;
}

.home-lead-copy .lead-p--statement {
  font-size: 2.618rem;
  font-weight: 400;
  line-height: 1.14;
  margin-bottom: 34px;
}

.home-lead-copy .lead-p--body,
.home-method-copy p,
.home-offer-head p,
.home-close-inner p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.618;
}

.home-lead-section .lead-proof {
  min-width: 0;
}

.home-lead-section .lead-proof-inner {
  background: var(--ink);
  color: var(--paper);
  padding: 34px;
  box-shadow: 21px 21px 0 rgba(26, 25, 22, 0.07);
}

.home-lead-section .lead-proof-inner .proof-label {
  color: rgba(246, 242, 233, 0.44);
  display: block;
  margin-bottom: 21px;
}

.home-lead-section .lp-row {
  align-items: baseline;
  border-top: 1px solid rgba(246, 242, 233, 0.1);
  display: flex;
  gap: 13px;
  justify-content: space-between;
  padding: 13px 0;
  text-decoration: none;
  transition: border-color 0.15s ease, opacity 0.15s ease;
}

.home-lead-section .lp-row:hover {
  border-top-color: rgba(246, 242, 233, 0.28);
  opacity: 0.82;
}

.home-lead-section .lp-key {
  color: rgba(246, 242, 233, 0.44);
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-lead-section .lp-val {
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  text-align: right;
}

.home-lead-section .lp-val--dim {
  color: rgba(246, 242, 233, 0.56);
}

.home-letter-bridge {
  background: var(--paper);
  border-bottom: 1px dotted var(--muted);
  border-top: 1px dotted var(--muted);
  color: var(--muted);
  font-size: clamp(17px, 4.8vw, 29px);
  font-style: italic;
  line-height: 1.45;
  margin: 0 auto;
  max-width: var(--measure-page);
  padding: 55px var(--gutter-page);
  text-align: center;
}

.home-method-section {
  padding-top: 89px;
}

.home-method-copy h2,
.home-path-intro h2,
.home-offer-head h2,
.home-record-inner > h2,
.home-library-head h2,
.home-close-inner h2 {
  font-size: var(--type-h2);
  line-height: 1.08;
  margin-bottom: 21px;
}

.home-study-plate {
  border-top: 2px solid var(--ink);
  margin: 0;
  padding-top: 21px;
}

.home-study-plate__label {
  color: var(--muted);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.home-study-plate img {
  background: var(--paper);
  border: 1px solid rgba(26, 25, 22, 0.34);
  display: block;
  height: auto;
  width: 100%;
}

.home-study-plate figcaption {
  border-top: 1px solid rgba(26, 25, 22, 0.18);
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  margin: 13px 0 0;
  padding-top: 13px;
}

.home-path-section {
  background: var(--paper-alt);
  border-bottom: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  padding: 89px var(--gutter-golden);
}

/* Essay Hero Standardization */
.essay-hero {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 55px;
}
.essay-hero h1 {
  font-size: clamp(2.618rem, 3.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 21px;
}
.essay-hero .hero-lead {
  color: var(--muted);
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.home-path-inner {
  display: grid;
  gap: var(--gap-golden);
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.618fr);
}

.home-path-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-path-list li {
  align-items: start;
  border-top: 1px solid var(--ink);
  display: grid;
  gap: 21px;
  grid-template-columns: 34px 1fr;
  padding: 21px 0;
}

.home-path-list li:last-child {
  border-bottom: 1px solid var(--ink);
}

.path-num,
.offer-kicker {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-path-list h3 {
  font-size: 24px;
  margin: 0 0 8px;
}

.home-path-list p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.618;
  margin: 0;
}

.home-offer-section {
  background: var(--ink);
  color: var(--paper);
  padding: 89px var(--gutter-golden);
}

.home-offer-head {
  text-align: center;
  max-width: 38.2vw;
  margin: 0 auto;
}

.home-offer-head .label,
.home-offer-head h2,
.home-offer-head p {
  margin-left: auto;
  margin-right: auto;
}

.home-offer-head h2,
.home-offer-card h3 {
  color: var(--paper);
}

.home-offer-head p {
  color: rgba(246, 242, 233, 0.62);
}

.home-offer-grid {
  border: 1px solid rgba(246, 242, 233, 0.14);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 55px;
}

.home-offer-card {
  background: rgba(246, 242, 233, 0.035);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 34px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-offer-card:hover {
  background: rgba(246, 242, 233, 0.07);
  transform: translateY(-4px);
}

.home-offer-card--featured {
  background: rgba(122, 31, 28, 0.26);
}

.home-offer-card h3 {
  font-size: var(--type-h3);
  line-height: 1.1;
  margin: 21px 0;
}

.home-offer-card p {
  color: rgba(246, 242, 233, 0.62);
  font-size: 15px;
  line-height: 1.618;
}

.offer-link {
  border-top: 1px dotted rgba(246, 242, 233, 0.26);
  color: rgba(246, 242, 233, 0.72);
  display: block;
  font-style: italic;
  margin-top: auto;
  padding-top: 21px;
}

.home-offer-bridge {
  color: rgba(246, 242, 233, 0.68);
  font-size: 15px;
  line-height: 1.618;
  margin: 21px auto 0;
  max-width: 720px;
  text-align: center;
}

.home-offer-bridge a {
  color: var(--paper);
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-record-section {
  background: var(--paper-alt);
  border-bottom: 1px solid var(--ink);
  padding: 89px var(--gutter-golden);
}

.home-record-inner > h2 {
  max-width: 20ch;
}

.home-archive-wall {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

.home-library-head {
  align-items: baseline;
  border-bottom: 2px solid var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 21px;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 21px;
}

.home-library-head .label {
  flex: 1 0 100%;
  margin-bottom: 0;
  order: 1;
}

.home-library-head h2 {
  flex: 1 1 auto;
  margin-bottom: 0;
  margin-top: 0;
  order: 2;
}

.home-library-head .section-head__link {
  align-self: baseline;
  order: 3;
  white-space: nowrap;
}

.home-close-section {
  background: var(--ink);
  color: var(--paper);
  padding: 89px var(--gutter-golden);
  text-align: center;
}

.home-close-inner {
  max-width: var(--measure-editorial);
}

.home-close-inner .label {
  color: rgba(246, 242, 233, 0.46);
}

.home-close-inner h2 {
  color: var(--paper);
  margin-left: auto;
  margin-right: auto;
  max-width: 20ch;
}

.home-close-inner p {
  color: rgba(246, 242, 233, 0.62);
  margin-left: auto;
  margin-right: auto;
}

.home-close-inner .btn--primary {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
  margin-top: 13px;
}


@media (max-width: 900px) {
  /* Reduce vertical rhythm at smaller sizes; horizontal gutters scale via --gutter-golden */
  .home-premium-hero {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .home-lead-section,
  .home-method-section,
  .home-path-section,
  .home-offer-section,
  .home-record-section,
  .home-library-section,
  .home-close-section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  /* Fix 5: collapse 2-column path grid — minmax(220px,1fr) + 1.618fr is too narrow at tablet */
  .home-path-inner {
    grid-template-columns: 1fr;
  }

  .home-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-offer-card--featured {
    grid-column: 1 / -1;
  }

  .home-offer-card {
    min-height: auto;
  }

  .home-premium-hero h1 {
    max-width: 100%;
  }

  .home-premium-hero h1 span {
    white-space: normal;
  }

  .home-premium-hero .hero-stat-row {
    flex-wrap: nowrap;
  }

  .home-premium-hero .hero-stat-item {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .home-premium-hero h1 {
    font-size: clamp(var(--type-h2), 13.09vw, var(--type-h1));
  }

  .home-premium-hero h1 span {
    white-space: normal;
  }

  .home-premium-hero .hero-stat-row {
    flex-wrap: nowrap;
  }

  .home-premium-hero .hero-stat-item {
    flex: 1;
    min-width: 0;
    padding: 0 12px;
  }

  .home-premium-hero .hs-num {
    font-size: 2rem;
  }

  .home-premium-hero .hs-label {
    font-size: 9px;
  }

  .home-premium-hero__sub,
  .home-lead-copy .lead-p--body,
  .home-method-copy p,
  .home-offer-head p,
  .home-close-inner p {
    font-size: 16px;
  }

  .home-hero-actions,
  .home-hero-actions .btn {
    width: 100%;
  }

  .home-hero-actions .btn {
    text-align: center;
  }

  .home-letter-bridge {
    padding: 34px 24px;
  }

  .home-offer-grid {
    grid-template-columns: 1fr;
  }

  .home-offer-card--featured {
    grid-column: auto;
  }

  /* Fix 1: override the golden-ratio gutter (19.1vw = 71.6px at 375px) with a flat mobile gutter */
  .home-premium-hero,
  .home-lead-section,
  .home-method-section,
  .home-path-section,
  .home-offer-section,
  .home-record-section,
  .home-library-section,
  .home-close-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Fix 2: courses section heading was constrained to 38.2vw = 143px at 375px */
  .home-offer-head {
    max-width: 100%;
  }

  /* Fix 4: lead statement display text (2.618rem ≈ 47px) needs to scale down at mobile */
  .home-lead-copy .lead-p--statement {
    font-size: clamp(1.618rem, 8vw, 2.618rem);
  }

}

/* Fix: collapse library grid to 1 column until viewport is wide enough for titles to breathe */
@media (max-width: 1200px) {
  .home-library-grid {
    grid-template-columns: 1fr;
  }
}

/* -- MARKET FORECASTER CAPSTONE PAGE -- */
.market-forecaster-page .breadcrumb {
  background: var(--paper);
}

.mf-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 72px var(--gutter-page) 0;
  position: relative;
}

.mf-hero::before {
  background: var(--accent);
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.mf-hero__inner,
.mf-framework,
.mf-value-ledger {
  max-width: var(--measure-page);
  margin: 0 auto;
}

.mf-hero__inner {
  align-items: start;
  display: grid;
  gap: 68px;
  grid-template-columns: minmax(0, 1.618fr) minmax(320px, 1fr);
}

.mf-kicker,
.mf-panel-label,
.mf-value-ledger > span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.mf-kicker {
  color: rgba(246, 242, 233, 0.56);
  margin-bottom: 21px;
}

.mf-hero h1 {
  color: var(--paper);
  font-size: 78px;
  line-height: 1.02;
  margin: 0 0 21px;
  max-width: 720px;
}

.mf-lede {
  color: rgba(246, 242, 233, 0.86);
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 21px;
  max-width: 720px;
}

.mf-position {
  color: rgba(246, 242, 233, 0.68);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  max-width: 620px;
}

.mf-scope-ledger {
  border-top: 1px solid rgba(246, 242, 233, 0.18);
  border-bottom: 1px solid rgba(246, 242, 233, 0.18);
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
  margin-top: 34px;
}

.mf-scope-ledger div {
  border-right: 1px solid rgba(246, 242, 233, 0.18);
  min-height: 89px;
  padding: 21px 28px 21px 0;
}

.mf-scope-ledger div:last-child {
  border-right: none;
  padding-left: 28px;
  padding-right: 0;
}

.mf-scope-ledger span {
  color: rgba(246, 242, 233, 0.42);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1.35;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mf-scope-ledger strong {
  color: var(--paper);
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  max-width: 34ch;
}

.mf-offer-panel {
  background: var(--paper);
  box-shadow: 13px 13px 0 rgba(122, 31, 28, 0.42);
  color: var(--ink);
  padding: 34px;
  position: sticky;
  top: 120px;
}

.mf-panel-label {
  color: var(--accent);
  margin-bottom: 18px;
}

.mf-price {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 8px;
}

.mf-period {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 21px;
}

.mf-button {
  background: var(--accent);
  color: var(--paper);
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.mf-button:hover {
  background: var(--ink);
}

.mf-member-rate {
  border: 1px solid rgba(122, 31, 28, 0.28);
  margin-top: 18px;
  padding: 16px;
  text-align: left;
}

.mf-member-rate span,
.mf-rate-strip span {
  color: var(--accent);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1.35;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mf-member-rate strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}

.mf-member-rate em {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
}

.mf-note {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
  margin: 18px 0 0;
}

.mf-rate-strip {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.618fr);
  margin: 34px auto 0;
  max-width: var(--measure-page);
}

.mf-rate-strip div,
.mf-rate-strip p {
  border-right: 1px solid rgba(21, 21, 19, 0.16);
  margin: 0;
  padding: 21px;
}

.mf-rate-strip div:last-of-type {
  background: var(--paper-alt);
}

.mf-rate-strip p {
  border-right: none;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
}

.mf-rate-strip strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.05;
  white-space: nowrap;
}

.mf-framework {
  border-top: 1px solid rgba(246, 242, 233, 0.18);
  display: grid;
  gap: 55px;
  grid-template-columns: minmax(0, 0.618fr) minmax(0, 1.618fr);
  margin-top: 55px;
  padding-top: 55px;
}

.mf-framework__intro h2 {
  color: var(--paper);
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

.mf-method-grid {
  background: rgba(246, 242, 233, 0.14);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mf-method-grid article {
  background: #1d1c18;
  min-height: 178px;
  padding: 24px;
}

.mf-method-grid__wide {
  grid-column: 1 / -1;
}

.mf-method-grid span {
  color: var(--accent);
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.mf-method-grid h3 {
  color: var(--paper);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 10px;
}

.mf-method-grid p {
  color: rgba(246, 242, 233, 0.62);
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

.mf-value-ledger {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(180px, 0.618fr) repeat(6, minmax(0, 1fr));
  margin-top: 55px;
}

.mf-value-ledger > span,
.mf-value-ledger div {
  border-right: 1px solid rgba(21, 21, 19, 0.18);
  padding: 18px;
}

.mf-value-ledger > span {
  align-self: stretch;
  background: var(--accent);
  color: var(--paper);
}

.mf-value-ledger div:last-child {
  border-right: none;
}

.mf-value-ledger strong,
.mf-value-ledger em {
  display: block;
}

.mf-value-ledger strong {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  min-height: 38px;
}

.mf-value-ledger em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0;
  margin-top: 13px;
}

.mf-value-ledger__total {
  background: var(--paper-alt);
}

.mf-value-ledger__price {
  background: var(--ink);
  color: var(--paper);
}

.mf-value-ledger__price em {
  color: var(--paper);
}

.market-forecaster-page .long-letter {
  border-top: 1px solid var(--ink);
}

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

  .mf-hero__inner,
  .mf-framework,
  .mf-value-ledger {
    grid-template-columns: 1fr;
  }

  .mf-offer-panel {
    position: static;
  }

  .mf-rate-strip {
    grid-template-columns: 1fr 1fr;
  }

  .mf-rate-strip p {
    border-top: 1px solid rgba(21, 21, 19, 0.16);
    grid-column: 1 / -1;
  }

  .mf-value-ledger {
    display: block;
  }

  .mf-value-ledger > span,
  .mf-value-ledger div {
    border-bottom: 1px solid rgba(21, 21, 19, 0.18);
    border-right: none;
  }
}

@media (max-width: 760px) {
  .mf-hero {
    padding: 40px 24px 0;
  }

  .mf-hero h1 {
    font-size: 46px;
  }

  .mf-lede {
    font-size: 19px;
  }

  .mf-offer-panel {
    padding: 24px;
    box-shadow: 8px 13px 0 rgba(137, 34, 31, 0.45);
  }

  .mf-price {
    font-size: clamp(42px, 12vw, 58px);
  }

  .mf-member-rate strong {
    font-size: clamp(25px, 7.5vw, 32px);
  }

  .mf-stat-row,
  .mf-method-grid {
    grid-template-columns: 1fr;
  }

  .mf-stat-row div {
    border-bottom: 1px solid rgba(246, 242, 233, 0.18);
    border-right: none;
    padding-right: 0;
  }

  .mf-framework {
    gap: 34px;
    margin-top: 55px;
    padding-top: 34px;
  }

  .mf-rate-strip {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .mf-rate-strip div,
  .mf-rate-strip p {
    border-bottom: 1px solid rgba(21, 21, 19, 0.16);
    border-right: none;
  }

  .mf-rate-strip p {
    border-bottom: none;
    border-top: none;
    grid-column: auto;
  }

  .mf-rate-strip strong {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.05;
  }
}

/* -- SUCCESS PAGES -- */
.success-page .site-nav {
  background: var(--ink);
  border-bottom-color: rgba(246, 242, 233, 0.16);
}

.success-page .nav-logo,
.success-page .nav-links a,
.success-page .nav-toggle {
  color: var(--paper);
}

.success-page .nav-links a:hover,
.success-page .nav-links a.nav-active {
  border-bottom-color: rgba(246, 242, 233, 0.42);
}

.success-page .nav-toggle span {
  background: var(--paper);
}

.success-hero {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: clamp(80px, 9vw, 116px) var(--gutter-page) clamp(52px, 6vw, 76px);
  position: relative;
}

.success-hero::before {
  background:
    radial-gradient(circle at 24% 18%, rgba(122, 31, 28, 0.28), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(246, 242, 233, 0.08), transparent 22%),
    linear-gradient(90deg, transparent 0, rgba(246, 242, 233, 0.035) 50%, transparent 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.success-hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(24px, 3vw, 40px);
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: min(760px, calc(100vw - (2 * var(--gutter-page))));
  position: relative;
  text-align: center;
}

.success-hero__copy {
  min-width: 0;
}

.success-hero .status-pill {
  align-items: center;
  border: 0;
  color: rgba(246, 242, 233, 0.48);
  display: inline-flex;
  gap: 13px;
  justify-self: center;
  line-height: 1.3;
  margin-bottom: 21px;
  max-width: min(100%, 34rem);
  overflow-wrap: normal;
  padding: 0;
  position: relative;
}

.success-hero .status-pill::after {
  background: rgba(246, 242, 233, 0.28);
  content: "";
  flex: 0 0 55px;
  height: 1px;
}

.success-hero .status-pill::before {
  background: rgba(246, 242, 233, 0.28);
  content: "";
  flex: 0 0 55px;
  height: 1px;
}

.success-hero .label {
  color: rgba(246, 242, 233, 0.72);
  display: block;
  margin-bottom: 13px;
}

.success-hero h1 {
  color: var(--paper);
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 auto clamp(18px, 2vw, 26px);
  max-width: 24ch;
  text-wrap: balance;
}

.success-hero p {
  color: rgba(246, 242, 233, 0.72);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 52ch;
  text-wrap: pretty;
}

/* The hero "desk" duplicated the numbered protocol below — removed so the
   masthead stays a clean, compact band and the protocol is the single source. */
.success-desk { display: none; }

.success-desk .proof-label {
  color: rgba(246, 242, 233, 0.48);
  display: block;
  margin-bottom: 13px;
}

.success-desk__row {
  border-top: 1px solid rgba(246, 242, 233, 0.12);
  padding: 16px 0 17px;
}

.success-desk__row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.success-desk__row:last-of-type {
  padding-bottom: 0;
}

.success-desk__row span {
  color: rgba(246, 242, 233, 0.52);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.success-desk__row strong {
  color: var(--paper);
  display: block;
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 400;
  line-height: 1.22;
  text-wrap: pretty;
}

.success-flow {
  padding-top: 55px;
}

.success-flow.page-wrap {
  max-width: min(1560px, calc(100vw - (2 * var(--gutter-page))));
}

.success-grid {
  align-items: start;
  display: grid;
  gap: clamp(40px, 5vw, 64px);
  grid-template-columns: 1fr;
  max-width: min(1000px, calc(100vw - (2 * var(--gutter-page))));
  margin-inline: auto;
}

.success-intro {
  border-bottom: 1px solid rgba(26, 25, 22, 0.12);
  margin-bottom: 44px;
  padding-top: 0;
  padding-bottom: 26px;
  text-align: center;
}

.success-intro .section-h2 {
  margin-bottom: 0;
}

.success-intro .copy-sm {
  margin: 14px auto 0;
  max-width: 60ch;
}

.success-bridge {
  background: var(--paper-alt);
  border: 1px solid rgba(26, 25, 22, 0.16);
  border-left: 4px solid var(--ink);
  margin-bottom: 34px;
  padding: 21px 26px;
}

.success-bridge .label {
  display: inline-block;
  margin-bottom: 10px;
}

.success-bridge p {
  margin: 0;
  max-width: 56ch;
}

/* ── The activation protocol: an engraved numbered sequence ── */
.success-steps {
  counter-reset: protocol;
  list-style: none;
  margin: 0 auto;
  max-width: 860px;
  padding: 0;
  position: relative;
}

.success-step {
  counter-increment: protocol;
  min-width: 0;
  position: relative;
  padding: clamp(32px, 3.6vw, 48px) 0 clamp(32px, 3.6vw, 48px) clamp(60px, 7.5vw, 108px);
  border-top: 1px solid rgba(26, 25, 22, 0.13);
}

.success-step:first-child {
  border-top: none;
  padding-top: 0;
}

/* large engraved numeral on a hairline spine */
.success-step::before {
  content: counter(protocol, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: clamp(30px, 3.5vw, 44px);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.05rem);
  font-weight: 500;
  font-feature-settings: "lnum" 1;
  line-height: 0.8;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.success-step:first-child::before { top: 0; }

/* vertical spine linking the numerals */
.success-step::after {
  content: "";
  position: absolute;
  left: clamp(20px, 2.6vw, 36px);
  top: clamp(64px, 7vw, 96px);
  bottom: clamp(-16px, -1.8vw, -10px);
  width: 1px;
  background: rgba(122, 31, 28, 0.22);
}
.success-step:last-child::after { display: none; }
.success-step:first-child::after { top: clamp(46px, 5vw, 64px); }

/* the redundant "Step N" text label is replaced by the numeral */
.success-step .label { display: none; }

.success-step h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.95rem);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.success-step > p,
.success-step > ul,
.success-step > ol {
  max-width: 64ch;
}

.success-step p:last-child,
.success-step ul:last-child,
.success-step ol:last-child,
.success-step .editor-note:last-child {
  margin-bottom: 0;
}

.success-step ul,
.success-step ol {
  margin: 0 0 1.5em;
  padding-left: 24px;
}

.success-step li {
  margin-bottom: 8px;
}

.success-step li:last-child {
  margin-bottom: 0;
}

.success-step--minor {
  background: var(--paper);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 21px;
}

.success-actions--stack {
  flex-direction: column;
}

.success-sidebar {
  display: grid;
  gap: 21px;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  min-width: 0;
  margin-top: 8px;
}

.success-sidebar .proof-box {
  margin: 0;
  background: var(--paper-alt);
  border: 1px solid rgba(26, 25, 22, 0.14);
  border-radius: 2px;
  height: 100%;
}

.success-close {
  border-top: 2px solid var(--ink);
  margin-top: 34px;
  padding-top: 21px;
  text-align: center;
}

.success-close p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.success-page .site-footer {
  margin-top: 55px;
}

@media (max-width: 1040px) {
  .success-page .nav-links {
    background: var(--ink);
    border-bottom: 1px solid rgba(246, 242, 233, 0.16);
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.18);
  }

  .success-page .nav-links a,
  .success-page .nav-links a.nav-active {
    border-bottom: 1px solid rgba(246, 242, 233, 0.12);
    color: var(--paper);
  }
}

@media (min-width: 105em) {
  .success-hero {
    padding-top: 89px;
    padding-bottom: 72px;
  }

  .success-flow.page-wrap {
    max-width: min(1720px, calc(100vw - (2 * var(--gutter-page))));
  }
}

@media (min-width: 60em) {
  .success-sidebar {
    position: static;
  }
}

@media (max-width: 68em) {
  .success-hero__inner,
  .success-grid {
    grid-template-columns: 1fr;
  }

  .success-hero__copy {
    display: block;
  }

  .success-hero p {
    max-width: none;
  }

  .success-desk,
  .success-intro,
  .success-bridge,
  .success-step,
  .success-sidebar {
    max-width: min(100%, 44rem);
  }

  .success-step h3 {
    font-size: clamp(1.25rem, 4vw, 1.65rem);
  }
}

@media (max-width: 40em) {
  .success-hero {
    padding: clamp(34px, 7vw, 55px) var(--gutter-page) clamp(21px, 5vw, 34px);
  }

  .success-hero__inner {
    gap: clamp(21px, 5vw, 34px);
  }

  .success-hero .status-pill {
    gap: 10px;
    line-height: 1.45;
  }

  .success-hero .label {
    margin-bottom: 10px;
  }

  .success-desk,
  .success-step {
    padding: clamp(18px, 5vw, 28px);
  }

  .success-intro {
    gap: 13px;
    margin-bottom: 21px;
  }

  .success-bridge {
    margin-bottom: 21px;
    padding: 18px 21px;
  }

  .success-step ul,
  .success-step ol {
    padding-left: 18px;
  }

  .success-actions {
    flex-direction: column;
  }

  .success-actions .btn {
    text-align: center;
    width: 100%;
  }
}

/* -- COURSES PAGE LAYOUT REFINEMENT -- */
.courses-page .section.page-wrap,
.courses-page .section-intro,
.courses-page .courses-hero-simple {
  max-width: none;
  width: min(1080px, calc(100vw - clamp(48px, 14vw, 176px)));
  margin-left: auto;
  margin-right: auto;
}

.courses-page .section.page-wrap,
.courses-page .section-intro {
  padding-left: 0;
  padding-right: 0;
}

.courses-page .courses-hero-simple {
  display: block;
  padding: clamp(56px, 7vw, 96px) 0 clamp(42px, 5vw, 72px);
  text-align: center;
}

.courses-page .courses-hero-simple .hero-copy {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.courses-page .hero-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 15ch;
  font-size: clamp(3.2rem, 5.2vw, 4.7rem);
  line-height: 1.04;
}

.courses-page .hero-deck {
  margin-left: auto;
  margin-right: auto;
  max-width: 46rem;
  font-style: normal;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

@media (min-width: 1100px) {
  .courses-page .courses-hero-simple {
    text-align: left;
  }

  .courses-page .courses-hero-simple .hero-copy,
  .courses-page .hero-title,
  .courses-page .hero-deck {
    margin-left: 0;
    margin-right: 0;
  }
}

.courses-page .grid-2,
.courses-page .grid-2--golden {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.courses-page .courses-decision-copy {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  text-align: center;
}

.courses-page .courses-decision-copy .label {
  display: block;
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.courses-page .courses-decision-copy .copy-lg {
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.courses-page .section.page-wrap > .label {
  display: block;
  margin-bottom: clamp(28px, 4vw, 46px);
  text-align: center;
}

.courses-page .proof-box {
  max-width: 360px;
  justify-self: end;
}

.courses-page .proof-box .proof-forecast,
.courses-page .proof-box .proof-outcome,
.courses-page .copy-sm,
.courses-page .program-row .pr-sub {
  font-style: normal;
}

.courses-page .program-row {
  grid-template-columns: 46px minmax(0, 1fr) max-content minmax(118px, max-content);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding: clamp(24px, 3vw, 34px) 0;
}

.courses-page .program-row .pr-title {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.courses-page .program-row .pr-sub {
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.58;
}

.courses-page .program-row .pr-price,
.courses-page .program-row .pr-link {
  padding-top: 5px;
}

.courses-page .program-row .pr-link {
  white-space: nowrap;
}

.courses-page .program-row--featured {
  margin: 18px 0 0;
  padding: clamp(26px, 3vw, 38px);
  grid-template-columns: 46px minmax(0, 1fr) minmax(150px, max-content);
  gap: 12px clamp(20px, 3vw, 34px);
}

.courses-page .program-row--featured .pr-price {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  white-space: nowrap;
}

.courses-page .program-row--featured .pr-link {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
  margin-top: 2px;
  text-align: left;
  white-space: normal;
}

@media (max-width: 980px) {
  .courses-page .section.page-wrap,
  .courses-page .section-intro,
  .courses-page .courses-hero-simple {
    width: min(680px, calc(100vw - 48px));
  }

  .courses-page .section.page-wrap {
    padding-bottom: clamp(44px, 8vw, 64px);
    padding-top: clamp(44px, 8vw, 64px);
  }

  .courses-page .section.page-wrap + .section.page-wrap {
    padding-top: clamp(18px, 5vw, 34px);
  }

  .courses-page .courses-hero-simple {
    padding-top: clamp(46px, 9vw, 72px);
  }

  .courses-page .courses-hero-simple .hero-copy,
  .courses-page .hero-title,
  .courses-page .hero-deck {
    max-width: 100%;
  }

  .courses-page .hero-title {
    font-size: clamp(2.7rem, 9vw, 4.1rem);
  }

  .courses-page .grid-2,
  .courses-page .grid-2--golden {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .courses-page .proof-box {
    max-width: 100%;
    justify-self: stretch;
  }

  .courses-page .program-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px 18px;
  }

  .courses-page .program-row .pr-price,
  .courses-page .program-row .pr-link {
    display: block;
    grid-column: 2;
    padding-top: 0;
    text-align: left;
  }

  .courses-page .program-row .pr-link {
    margin-top: 6px;
  }

  .courses-page .program-row--featured {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .courses-page .program-row--featured .pr-price,
  .courses-page .program-row--featured .pr-link {
    grid-column: 2;
    grid-row: auto;
  }

  .courses-page .section-intro .grid-2 {
    gap: clamp(32px, 7vw, 48px);
  }
}

@media (max-width: 560px) {
  .courses-page .section.page-wrap,
  .courses-page .section-intro,
  .courses-page .courses-hero-simple {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .courses-page .courses-hero-simple {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .courses-page .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .courses-page .program-row--featured {
    margin-left: 0;
    margin-right: 0;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* -- SHARED RESPONSIVE READING RHYTHM -- */
@media (max-width: 1099px) {
  body:not(.courses-page) .hero-grid {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    width: min(680px, calc(100vw - 48px));
  }

  body:not(.courses-page) .hero-copy,
  body:not(.courses-page) .hero-title,
  body:not(.courses-page) .hero-deck {
    margin-left: auto;
    margin-right: auto;
  }

  body:not(.courses-page) .hero-title,
  body:not(.courses-page) .hero-deck {
    max-width: 100%;
  }

  body:not(.courses-page) .hero-aside {
    justify-self: center;
    margin: clamp(28px, 5vw, 40px) auto 0;
    max-width: min(100%, 420px);
    text-align: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    max-width: min(760px, 100%);
    text-align: center;
  }

  .product-grid h1,
  .product-grid > div:first-child > p,
  .product-grid .proof-box,
  .product-grid .price-card {
    margin-left: auto;
    margin-right: auto;
  }

  .product-grid .product-toc {
    text-align: left;
  }

  .start-hero__inner {
    grid-template-columns: 1fr;
    max-width: min(760px, calc(100vw - 48px));
    text-align: center;
  }

  .start-hero h1,
  .start-hero p,
  .start-desk {
    margin-left: auto;
    margin-right: auto;
  }

  .start-desk-row strong {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .essay-hero .content-wrap,
  .about-hero-inner {
    text-align: center;
  }

  .essay-hero h1,
  .essay-hero .hero-lead,
  .about-hero .hero-deck {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  body:not(.courses-page) .hero-grid,
  .start-hero__inner {
    width: 100%;
  }

  body:not(.courses-page) .hero-grid {
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-grid {
    max-width: 100%;
  }
}

/* -- EXPANDABLE DIAGRAMS -- */
.is-expandable-diagram {
  cursor: zoom-in;
}

.diagram-lightbox {
  align-items: center;
  background: rgba(18, 17, 15, 0.88);
  display: none;
  inset: 0;
  justify-content: center;
  padding: clamp(18px, 4vw, 55px);
  position: fixed;
  z-index: 999;
}

.diagram-lightbox.is-open {
  display: flex;
}

.has-diagram-lightbox {
  overflow: hidden;
}

.diagram-lightbox__frame {
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(246, 242, 233, 0.4);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: calc(100vh - 36px);
  max-width: min(1200px, calc(100vw - 36px));
  overflow: hidden;
  padding: clamp(12px, 2vw, 21px);
  width: auto;
}

.diagram-lightbox__image {
  display: block;
  height: auto;
  max-height: calc(100vh - 140px);
  max-width: min(1120px, calc(100vw - 72px));
  object-fit: contain;
  width: auto;
}

.diagram-lightbox__caption {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 13px 0 0;
  max-width: 78ch;
  text-align: center;
}

.diagram-lightbox__close {
  background: var(--paper);
  border: 1px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  padding: 10px 14px;
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  text-transform: uppercase;
  top: clamp(18px, 3vw, 34px);
  z-index: 1000;
}

@media (max-width: 560px) {
  .diagram-lightbox {
    padding: 14px;
  }

  .diagram-lightbox__frame {
    max-height: calc(100vh - 28px);
    max-width: calc(100vw - 28px);
    padding: 10px;
    width: auto;
  }

  .diagram-lightbox__image {
    max-height: calc(100vh - 112px);
    max-width: calc(100vw - 48px);
  }
}

/* ── COURSE SYLLABUS PREVIEW WIDGET ── */
.syllabus-container {
  display: grid;
  gap: var(--space-3);
  max-width: var(--measure-reading);
  margin-top: var(--space-4);
  margin-bottom: var(--space-5);
}

.syllabus-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--ink);
  padding-bottom: var(--space-2);
  margin-bottom: var(--space-2);
}

.syllabus-metrics {
  font-family: var(--mono);
  font-size: var(--type-small);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.syllabus-toggle-all {
  font-family: var(--mono);
  font-size: var(--type-small);
  color: var(--ink);
  background: transparent;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  transition: opacity 0.15s ease;
}

.syllabus-toggle-all:hover {
  opacity: 0.7;
}

.syllabus-card {
  border: 1px solid var(--ink);
  background: var(--paper);
  transition: background-color 0.2s ease;
}

.syllabus-card:hover {
  background: var(--paper-alt);
}

.syllabus-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-3);
  cursor: pointer;
  user-select: none;
}

.syllabus-card-title-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.syllabus-card-kicker {
  font-family: var(--mono);
  font-size: var(--type-label);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.syllabus-card-title {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}

.syllabus-card-indicators {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.syllabus-card-lesson-count {
  font-family: var(--mono);
  font-size: var(--type-small);
  color: var(--muted);
  letter-spacing: 0.5px;
}

.syllabus-card-arrow {
  font-size: 12px;
  color: var(--ink);
  transition: transform 0.2s ease;
}

/* Open/close states */
.syllabus-card.is-open .syllabus-card-arrow {
  transform: rotate(180deg);
}

.syllabus-lessons-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 0 solid var(--ink);
}

.syllabus-card.is-open .syllabus-lessons-list {
  max-height: 1000px; /* high enough to cover long lists */
  border-top: 1px solid var(--ink);
}

.syllabus-lesson-row {
  display: grid;
  grid-template-columns: 55px 1fr 34px;
  gap: var(--space-2);
  padding: 13px var(--space-3);
  border-bottom: 1px dotted var(--muted);
  align-items: baseline;
  background: rgba(255, 255, 255, 0.15);
}

.syllabus-lesson-row:last-child {
  border-bottom: none;
}

.syllabus-lesson-num {
  font-family: var(--mono);
  font-size: var(--type-small);
  color: var(--muted);
}

.syllabus-lesson-title {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  margin: 0;
}

.syllabus-lesson-status {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  color: var(--muted);
  opacity: 0.5;
}

.syllabus-lesson-status svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================================
   SALES PAGE TEMPLATE - shared across all course sales pages
   Component prefix: .sales-page__
   Banded full-bleed layout. Direct-response sales letter rhythm:
   readable copy blocks, wider proof/CTA moments, deliberate 4K frame.
   ============================================================ */

.sales-page {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.75;
}

/* Full-width wrapper - no max-width. Bands sit inside it. */
.sales-page__container {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* A band is a full-bleed horizontal section. Each band picks its own
   background. The reading column lives INSIDE the band. */
.sales-page__band {
  width: 100%;
  padding: clamp(56px, 6vw, 112px) clamp(24px, 8vw, 220px);
}

.sales-page__band--paper      { background: var(--paper); }
.sales-page__band--paper-alt  { background: var(--paper-alt); }
.sales-page__band--ink        { background: var(--ink); color: var(--paper); }
.sales-page__band--oxblood    { background: var(--accent); color: var(--paper); }

/* Narrow band variant for short transitional sections (CTAs, P.S.) */
.sales-page__band--tight {
  padding-top: clamp(44px, 4vw, 78px);
  padding-bottom: clamp(44px, 4vw, 78px);
}

/* Hero band gets extra vertical breathing room */
.sales-page__band--hero {
  padding-top: clamp(72px, 9vw, 144px);
  padding-bottom: clamp(72px, 9vw, 144px);
}

/* The reading column - 68ch is the FK7 sweet spot for serif body */
.sales-page__column {
  max-width: min(920px, 100%);
  margin: 0 auto;
}

/* Slightly wider column for hero, so the headline can breathe */
.sales-page__column--wide {
  max-width: min(1180px, 100%);
}

.sales-page__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: var(--type-label);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.sales-page__kicker img {
  width: 32px;
  height: 32px;
}

/* ----- HERO ----- */
.sales-page__hero {
  text-align: left;
}

.sales-page__hero-mark {
  display: block;
  width: clamp(72px, 8vw, 104px);
  height: auto;
  margin: 0 0 var(--space-4);
}

.sales-page__hero-kicker {
  display: block;
  font-family: var(--mono);
  font-size: var(--type-label);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-4);
}

.sales-page__hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 3.6vw + 16px, 86px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin: 0 0 var(--space-5);
  color: var(--ink);
}

.sales-page__hero-body {
  font-size: clamp(20px, 0.5vw + 18px, 25px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  max-width: 64ch;
}

.sales-page__hero-body p + p {
  margin-top: 1em;
}

/* ----- LEDE ----- */
.sales-page__lede {
  font-size: clamp(19px, 0.4vw + 17px, 22px);
  line-height: 1.7;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: var(--space-4);
  margin: 0;
}

.sales-page__lede p {
  margin: 0 0 1em;
}

.sales-page__lede p:last-child {
  margin-bottom: 0;
}

/* ----- MECHANISM (narrative section) ----- */
.sales-page__mechanism {
  margin: 0;
}

.sales-page__mechanism h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 1.8vw + 16px, 42px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0 0 var(--space-4);
  color: var(--ink);
}

.sales-page__mechanism p {
  font-size: clamp(18px, 0.3vw + 16px, 20px);
  line-height: 1.75;
  margin: 0 0 1em;
}

.sales-page__cycle-wheel {
  display: block;
  max-width: 360px;
  width: 100%;
  margin: var(--space-5) auto var(--space-2);
  height: auto;
}

.sales-page__cycle-wheel-caption {
  text-align: center;
  font-family: var(--mono);
  font-size: var(--type-label);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 auto var(--space-4);
  max-width: 50ch;
}

.sales-page__proof {
  margin: 0;
}

.sales-page__proof h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 1.8vw + 16px, 42px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0 0 var(--space-3);
  color: var(--ink);
}

.sales-page__proof p {
  font-size: clamp(18px, 0.3vw + 16px, 20px);
  line-height: 1.75;
  margin: 0 0 1em;
}

.sales-page__proof-intro {
  color: var(--muted);
  font-style: italic;
  margin: 0 0 var(--space-4);
}

.sales-page__proof-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--serif);
  margin: var(--space-3) 0;
}

.sales-page__proof-table tr {
  border-bottom: 1px solid rgba(26, 25, 22, 0.1);
}

.sales-page__proof-table tr.is-divider {
  border-bottom: 1px dashed var(--accent);
}

.sales-page__proof-table tr.is-projected {
  color: var(--muted);
  font-style: italic;
}

.sales-page__proof-table td {
  padding: var(--space-2) 0;
  font-size: clamp(15px, 0.3vw + 13px, 17px);
  vertical-align: top;
}

.sales-page__proof-table td:first-child {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--ink);
  width: 35%;
  white-space: nowrap;
}

.sales-page__proof-table td:last-child {
  padding-left: var(--space-3);
}

.sales-page__proof-footer {
  font-family: var(--mono);
  font-size: var(--type-label);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: var(--space-3);
}

/* ----- ADMISSION (oxblood-accented honest moment) ----- */
/* Lives inside a paper-alt or paper band - the left border + tint set it apart */
.sales-page__admission {
  position: relative;
  background: rgba(122, 31, 28, 0.04);
  border-left: 4px solid var(--accent);
  padding: var(--space-5) var(--space-5) var(--space-5) var(--space-4);
  margin: 0;
}

.sales-page__admission::before {
  content: "An honest admission";
  position: absolute;
  top: calc(-1 * var(--space-2));
  left: var(--space-4);
  background: var(--accent);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 4px 10px;
}

.sales-page__admission h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 1.4vw + 16px, 36px);
  font-weight: 500;
  line-height: 1.2;
  margin: var(--space-2) 0 var(--space-3);
  color: var(--ink);
}

.sales-page__admission p {
  font-size: clamp(18px, 0.3vw + 16px, 20px);
  line-height: 1.75;
  margin: 0 0 1em;
  color: var(--ink);
}

.sales-page__admission p:last-child {
  margin-bottom: 0;
}

/* ----- OFFER ----- */
.sales-page__offer {
  margin: 0;
}

.sales-page__offer h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 1.8vw + 16px, 42px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0 0 var(--space-4);
  color: var(--ink);
}

.sales-page__offer p {
  font-size: clamp(18px, 0.3vw + 16px, 20px);
  line-height: 1.75;
  margin: 0 0 1em;
}

.sales-page__offer p strong {
  color: var(--ink);
  font-weight: 600;
}

.sales-page__offer--centered {
  text-align: center;
}

/* ----- CTA (full-bleed ink band; sits at band level, not column level) ----- */
.sales-page__cta {
  text-align: center;
  margin: 0 auto;
  max-width: 56ch;
  padding: 0;
  color: var(--paper);
}

.sales-page__cta-mark {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-3);
  opacity: 0.9;
  filter: invert(1) hue-rotate(180deg);
}

.sales-page__cta-title {
  font-family: var(--serif);
  font-size: clamp(28px, 1.8vw + 16px, 44px);
  font-weight: 500;
  color: var(--paper);
  margin: 0 0 var(--space-3);
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.sales-page__cta-price {
  font-family: var(--mono);
  font-size: clamp(32px, 2.4vw + 14px, 48px);
  font-weight: 700;
  color: var(--cda250, #cda250);
  margin: var(--space-2) 0;
  letter-spacing: -0.5px;
  line-height: 1;
}

.sales-page__cta-terms {
  font-family: var(--mono);
  font-size: var(--type-label);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--paper-alt);
  opacity: 0.7;
  margin: 0 0 var(--space-5);
}

.sales-page__cta-button {
  display: inline-block;
  background: var(--cda250, #cda250);
  color: var(--ink);
  border: 1px solid var(--cda250, #cda250);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 52px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}

.sales-page__cta-button:hover {
  background: transparent;
  color: var(--cda250, #cda250);
}

/* Divider kept for legacy use but bands now do the visual division */
.sales-page__divider {
  display: block;
  max-width: 180px;
  width: 100%;
  margin: var(--space-5) auto;
  opacity: 0.4;
}

/* ----- P.S. (paper-alt band, larger seal) ----- */
.sales-page__ps {
  margin: 0;
}

.sales-page__ps-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--mono);
  font-size: var(--type-label);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(26, 25, 22, 0.12);
}

.sales-page__ps-header img {
  width: 44px;
  height: 44px;
}

.sales-page__ps p {
  font-size: clamp(18px, 0.3vw + 16px, 20px);
  line-height: 1.75;
  margin: 0 0 var(--space-4);
}

.sales-page__ps p:last-child {
  margin-bottom: 0;
}

.sales-page__ps p strong {
  color: var(--ink);
  font-weight: 600;
}

/* ----- LANDING (short course landing page) ----- */
.sales-page__landing {
  background: var(--paper-alt);
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: clamp(72px, 9vw, 144px) var(--gutter-page);
}

.sales-page__landing-inner {
  max-width: 64ch;
  margin: 0 auto;
  text-align: left;
}

.sales-page__landing-mark {
  display: block;
  width: clamp(72px, 8vw, 104px);
  height: auto;
  margin: 0 0 var(--space-4);
}

.sales-page__landing-kicker {
  display: block;
  font-family: var(--mono);
  font-size: var(--type-label);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-3);
}

.sales-page__landing h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 3.2vw + 18px, 68px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.6px;
  margin: 0 0 var(--space-4);
  color: var(--ink);
}

.sales-page__landing-body {
  font-size: clamp(19px, 0.4vw + 17px, 23px);
  line-height: 1.6;
  max-width: 58ch;
}

.sales-page__landing-body p + p {
  margin-top: 1em;
}

.sales-page__landing-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin: var(--space-5) 0 var(--space-3);
}

.sales-page__landing-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 4px;
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.sales-page__landing-primary:hover {
  background: transparent;
  color: var(--ink);
}

.sales-page__landing-quiet {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sales-page__landing-fineprint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: var(--space-5);
}

@media (min-width: 1200px) {
  .sales-page__column {
    max-width: min(980px, 100%);
  }

  .sales-page__column--wide {
    max-width: min(1220px, 100%);
  }

  .sales-page__hero {
    max-width: 1080px;
    margin: 0 auto;
  }

  .sales-page__hero h1,
  .sales-page__hero-body {
    max-width: 980px;
  }

  .sales-page__proof-table {
    margin-left: max(-90px, -8vw);
    margin-right: max(-90px, -8vw);
    width: calc(100% + min(180px, 16vw));
  }

  .sales-page__cta {
    max-width: 760px;
  }
}

@media (min-width: 1800px) {
  .sales-page__band {
    padding-left: clamp(220px, 14vw, 420px);
    padding-right: clamp(220px, 14vw, 420px);
  }

  .sales-page__column {
    max-width: min(1040px, 100%);
  }

  .sales-page__column--wide {
    max-width: min(1320px, 100%);
  }

  .sales-page__hero {
    max-width: 1220px;
  }

  .sales-page__hero h1 {
    max-width: 1120px;
  }

  .sales-page__hero-body {
    max-width: 760px;
  }

  .sales-page__proof-table {
    margin-left: -140px;
    margin-right: -140px;
    width: calc(100% + 280px);
  }
}

/* ============================================================
   DIRECT RESPONSE SALES LETTER
   Conversion-first course page components.
   ============================================================ */

.dr-letter {
  background: var(--paper);
  color: var(--ink);
}

.dr-wrap {
  margin: 0 auto;
  max-width: min(1320px, calc(100vw - 48px));
  width: 100%;
}

.dr-narrow {
  max-width: min(860px, calc(100vw - 48px));
}

.dr-hero {
  background: var(--paper-alt);
  border-bottom: 2px solid var(--ink);
  padding: clamp(34px, 4.5vw, 72px) 0 clamp(34px, 4vw, 68px);
}

.dr-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
}

.dr-mark {
  display: block;
  height: auto;
  margin: 0 0 20px;
  width: clamp(46px, 4vw, 70px);
}

.dr-eyebrow,
.dr-card-label {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.2px;
  line-height: 1.4;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.dr-hero h1 {
  font-size: clamp(40px, 4vw, 82px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 22px;
  max-width: 1050px;
}

.dr-subhead {
  font-size: clamp(20px, 1.05vw, 28px);
  line-height: 1.42;
  margin: 0 0 22px;
  max-width: 820px;
}

.dr-checks {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  max-width: 800px;
  padding: 0;
}

.dr-checks li {
  font-size: 17px;
  line-height: 1.45;
  padding-left: 28px;
  position: relative;
}

.dr-hero__side {
  display: grid;
  gap: 18px;
}

.dr-artifact {
  background: #fbf8f0;
  border: 1px solid rgba(26, 25, 22, 0.26);
  padding: 16px;
}

.dr-artifact__top {
  border-bottom: 1px solid rgba(26, 25, 22, 0.18);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.7px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.dr-artifact__grid {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dr-artifact__grid--labels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dr-artifact__grid span {
  background: var(--paper-alt);
  border: 1px solid rgba(26, 25, 22, 0.12);
  font-family: var(--mono);
  font-size: 12px;
  padding: 8px 4px;
  text-align: center;
}

.dr-artifact p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  margin: 12px 0 0;
}

.dr-checks li::before {
  color: var(--accent);
  content: "+";
  font-family: var(--mono);
  font-weight: 700;
  left: 0;
  position: absolute;
  top: 0;
}

.dr-offer-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(26, 25, 22, 0.16);
  padding: clamp(24px, 3vw, 38px);
}

.dr-before-after,
.dr-process {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dr-before-after > div,
.dr-process > div {
  background: var(--paper);
  border: 2px solid rgba(26, 25, 22, 0.22);
  padding: clamp(22px, 3vw, 34px);
}

.dr-before-after h3,
.dr-process h3 {
  font-size: clamp(24px, 1.8vw, 38px);
  line-height: 1.13;
  margin: 0;
}

.dr-process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dr-process strong {
  color: var(--accent);
  display: block;
  font-family: var(--mono);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 12px;
}

.dr-process p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.dr-offer-card h2 {
  font-size: clamp(30px, 2vw, 42px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.dr-price {
  color: var(--accent);
  font-family: var(--mono);
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 18px;
}

.dr-card-copy,
.dr-safe,
.dr-note {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.dr-button {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--paper);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 1.8px;
  line-height: 1.2;
  margin: 12px 0 16px;
  padding: 17px 28px;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}

.dr-button:hover {
  background: transparent;
  color: var(--accent);
}

.dr-button--gold {
  background: var(--cda250, #cda250);
  border-color: var(--cda250, #cda250);
  color: var(--ink);
  width: auto;
}

.dr-button--gold:hover {
  background: transparent;
  color: var(--cda250, #cda250);
}

.dr-button--inline {
  width: auto;
}

.dr-text-link {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.dr-hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 22px;
}

.dr-funnel-nav {
  background: var(--paper);
  border-bottom: 1px solid rgba(26, 25, 22, 0.22);
  border-top: 1px solid rgba(26, 25, 22, 0.22);
  position: sticky;
  top: 0;
  z-index: 90;
}

.dr-funnel-nav .dr-wrap {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: center;
  min-height: 46px;
}

.dr-funnel-nav a {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-decoration: none;
  text-transform: uppercase;
}

.dr-funnel-nav a:last-child {
  color: var(--accent);
}

.dr-proof-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 20px 0;
}

.dr-proof-strip__grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.dr-proof-strip__grid div {
  border-left: 1px solid rgba(246, 242, 233, 0.2);
  padding: 10px 20px;
}

.dr-proof-strip__grid div:first-child {
  border-left: 0;
}

.dr-proof-strip strong {
  color: var(--cda250, #cda250);
  display: block;
  font-family: var(--mono);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1;
}

.dr-proof-strip span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  margin-top: 8px;
  text-transform: uppercase;
}

.dr-section {
  padding: clamp(54px, 6vw, 104px) 0;
}

.dr-section--tight {
  padding-bottom: clamp(38px, 4vw, 70px);
  padding-top: clamp(38px, 4vw, 70px);
}

.dr-section--paper {
  background: var(--paper);
}

.dr-section--alt {
  background: var(--paper-alt);
}

.dr-section--ink {
  background: var(--ink);
  color: var(--paper);
}

.dr-section--ink .dr-eyebrow,
.dr-section--ink h2,
.dr-section--ink p {
  color: var(--paper);
}

.dr-lead {
  font-size: clamp(28px, 2vw, 42px);
  font-weight: 600;
  line-height: 1.15;
}

.dr-narrow p,
.dr-copy p,
.dr-section-head p,
.dr-final p {
  font-size: clamp(18px, 0.55vw, 22px);
  line-height: 1.68;
  margin: 0 0 18px;
}

.dr-split {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.dr-split h2,
.dr-section-head h2,
.dr-final h2,
.dr-cta-row h2,
.dr-cta-panel h2 {
  font-size: clamp(34px, 2.9vw, 62px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0 0 22px;
}

.dr-section-head {
  margin: 0 auto clamp(32px, 4vw, 58px);
  max-width: 900px;
  text-align: center;
}

.dr-benefit-grid,
.dr-faq {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dr-benefit,
.dr-faq div {
  border: 1px solid rgba(26, 25, 22, 0.22);
  background: rgba(246, 242, 233, 0.5);
  padding: 24px;
}

.dr-benefit h3,
.dr-faq h3,
.dr-module-list h3 {
  font-size: 25px;
  line-height: 1.13;
  margin: 0 0 10px;
}

.dr-benefit p,
.dr-faq p,
.dr-module-list p,
.dr-stack span,
.dr-proof-table span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.dr-cta-row,
.dr-cta-panel {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.dr-cta-row p,
.dr-cta-panel p {
  font-size: 20px;
  line-height: 1.55;
  margin: 0;
}

.dr-proof-table,
.dr-stack {
  border-top: 2px solid var(--ink);
}

.dr-proof-table div,
.dr-stack div {
  align-items: start;
  border-bottom: 1px solid rgba(26, 25, 22, 0.16);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  padding: 18px 0;
}

.dr-proof-table strong,
.dr-stack strong,
.dr-module-list span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.dr-stack strong {
  color: var(--ink);
}

.dr-module-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dr-module-list article {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}

.dr-module-list span {
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.dr-syllabus {
  margin-top: clamp(34px, 5vw, 68px);
}

.dr-cta-panel {
  background: var(--paper-alt);
  border: 2px solid var(--ink);
  padding: clamp(26px, 4vw, 48px);
}

.dr-price-box {
  min-width: 280px;
  text-align: center;
}

.dr-price-box p {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.dr-price-box span {
  color: var(--muted);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.dr-final {
  max-width: 940px;
  text-align: center;
}

.dr-final .dr-button {
  margin-top: 18px;
}

.dr-hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
}

.dr-button--inline {
  width: auto;
}

.dr-text-link {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
}

.dr-text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dr-funnel-nav {
  background: rgba(246, 242, 233, 0.96);
  border-bottom: 1px solid rgba(26, 25, 22, 0.18);
  border-top: 1px solid rgba(26, 25, 22, 0.18);
  position: sticky;
  top: 0;
  z-index: 60;
}

.dr-funnel-nav .dr-wrap {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 12px;
  padding-top: 12px;
}

.dr-funnel-nav a {
  color: var(--ink);
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.6px;
  text-decoration: none;
  text-transform: uppercase;
}

.dr-funnel-nav a:first-child,
.dr-funnel-nav a:last-child {
  color: var(--accent);
  font-weight: 700;
}

.dr-funnel-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ftt-course {
  background: var(--paper);
}

.ftt-fast-wrap {
  margin: 0 auto;
  max-width: min(1440px, calc(100vw - 56px));
  width: 100%;
}

.ftt-fast-hero {
  background:
    linear-gradient(90deg, rgba(26, 25, 22, 0.92), rgba(26, 25, 22, 0.78)),
    repeating-linear-gradient(0deg, rgba(205, 162, 80, 0.15) 0 1px, transparent 1px 44px),
    var(--ink);
  color: var(--paper);
  padding: clamp(58px, 7vw, 132px) 0;
}

.ftt-fast-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 86px);
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.58fr);
}

.ftt-fast-mark {
  filter: invert(1) hue-rotate(180deg);
  margin-bottom: 24px;
  opacity: 0.92;
  width: clamp(54px, 4vw, 82px);
}

.ftt-fast-kicker {
  color: var(--cda250, #cda250);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 1.45;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.ftt-fast-hero h1 {
  color: var(--paper);
  font-size: clamp(54px, 6.4vw, 132px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0 0 24px;
  max-width: 920px;
}

.ftt-fast-deck {
  color: rgba(246, 242, 233, 0.86);
  font-size: clamp(21px, 1.15vw, 30px);
  line-height: 1.45;
  margin: 0;
  max-width: 820px;
}

.ftt-fast-actions,
.ftt-fast-close__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 30px;
}

.ftt-fast-button {
  background: var(--cda250, #cda250);
  border: 2px solid var(--cda250, #cda250);
  color: var(--ink);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 1.6px;
  line-height: 1.2;
  padding: 17px 28px;
  text-decoration: none;
  text-transform: uppercase;
}

.ftt-fast-button:hover {
  background: transparent;
  color: var(--cda250, #cda250);
}

.ftt-fast-button--gold {
  min-width: min(100%, 340px);
}

.ftt-fast-link {
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.ftt-fast-link--light {
  color: rgba(246, 242, 233, 0.84);
}

.ftt-fast-offer {
  background: rgba(246, 242, 233, 0.96);
  border: 1px solid rgba(205, 162, 80, 0.7);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  padding: clamp(26px, 3vw, 44px);
}

.ftt-fast-offer .ftt-fast-kicker {
  color: var(--accent);
}

.ftt-fast-price {
  color: var(--accent);
  font-family: var(--mono);
  font-size: clamp(38px, 3vw, 58px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
}

.ftt-fast-offer p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 20px;
}

.ftt-fast-offer ul {
  border-top: 1px solid rgba(26, 25, 22, 0.16);
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
}

.ftt-fast-offer li {
  border-bottom: 1px solid rgba(26, 25, 22, 0.1);
  font-size: 15px;
  line-height: 1.35;
  padding: 11px 0;
}

.ftt-fast-proof {
  background: var(--paper);
  border-bottom: 1px solid rgba(26, 25, 22, 0.18);
}

.ftt-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ftt-proof-grid div {
  border-left: 1px solid rgba(26, 25, 22, 0.14);
  min-height: 118px;
  padding: 24px 22px;
}

.ftt-proof-grid div:first-child {
  border-left: 0;
}

.ftt-proof-grid strong {
  color: var(--accent);
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 1.6px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ftt-proof-grid span {
  display: block;
  font-size: clamp(18px, 1vw, 24px);
  line-height: 1.18;
}

.ftt-fast-section {
  padding: clamp(54px, 5.4vw, 96px) 0;
}

.ftt-fast-section--alt {
  background: var(--paper-alt);
}

.ftt-fast-section--ink {
  background: var(--ink);
  color: var(--paper);
}

.ftt-fast-split,
.ftt-fast-close {
  display: grid;
  gap: clamp(28px, 5vw, 78px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.ftt-fast-split h2,
.ftt-fast-close h2 {
  color: inherit;
  font-size: clamp(36px, 3.6vw, 72px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.ftt-fast-copy p,
.ftt-fast-close p {
  font-size: clamp(18px, 0.6vw, 22px);
  line-height: 1.65;
  margin: 0 0 18px;
}

.ftt-delivery {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ftt-delivery div {
  background: var(--paper);
  border-top: 3px solid var(--ink);
  padding: clamp(24px, 3vw, 38px);
}

.ftt-delivery span {
  color: var(--accent);
  display: block;
  font-family: var(--mono);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 16px;
}

.ftt-delivery h3 {
  font-size: clamp(27px, 1.8vw, 38px);
  margin: 0 0 10px;
}

.ftt-delivery p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.ftt-included {
  border-top: 2px solid var(--ink);
}

.ftt-included div {
  border-bottom: 1px solid rgba(26, 25, 22, 0.16);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  padding: 18px 0;
}

.ftt-included strong {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.ftt-included span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.ftt-fast-close {
  align-items: center;
}

.ftt-fast-close__actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 980px) {
  .dr-hero__grid,
  .dr-split,
  .dr-cta-row,
  .dr-cta-panel {
    grid-template-columns: 1fr;
  }

  .dr-benefit-grid,
  .dr-faq,
  .dr-module-list {
    grid-template-columns: 1fr;
  }

  .dr-proof-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dr-proof-strip__grid div {
    border-left: 0;
    border-top: 1px solid rgba(246, 242, 233, 0.2);
  }

  .dr-proof-table div,
  .dr-stack div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .dr-button,
  .dr-button--gold {
    width: 100%;
  }

  .dr-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dr-funnel-nav {
    display: none;
  }

  .dr-button--inline {
    width: 100%;
  }

  .dr-before-after,
  .dr-process {
    grid-template-columns: 1fr;
  }

  .dr-sticky-cta {
    align-items: center;
    background: var(--ink);
    border-top: 1px solid rgba(246, 242, 233, 0.18);
    bottom: 0;
    color: var(--paper);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    left: 0;
    padding: 10px 14px;
    position: fixed;
    right: 0;
    z-index: 120;
  }

  .dr-sticky-cta span {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .dr-sticky-cta a {
    background: var(--cda250, #cda250);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 10px 14px;
    text-decoration: none;
    text-transform: uppercase;
  }

  .ftt-fast-hero__grid,
  .ftt-fast-split,
  .ftt-fast-close {
    grid-template-columns: 1fr;
  }

  .ftt-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ftt-proof-grid div {
    border-left: 0;
    border-top: 1px solid rgba(26, 25, 22, 0.14);
  }

  .ftt-delivery {
    grid-template-columns: 1fr;
  }

  .ftt-fast-button {
    width: 100%;
  }

  .ftt-fast-close__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .dr-wrap,
  .dr-narrow {
    max-width: calc(100vw - 34px);
  }

  .dr-proof-strip__grid {
    grid-template-columns: 1fr;
  }

  .dr-offer-card {
    box-shadow: 8px 8px 0 rgba(26, 25, 22, 0.16);
  }

  .dr-funnel-nav .dr-wrap {
    justify-content: flex-start;
  }

  .ftt-fast-wrap {
    max-width: calc(100vw - 34px);
  }

  .ftt-proof-grid {
    grid-template-columns: 1fr;
  }

  .ftt-included div {
    gap: 6px;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) {
  .dr-sticky-cta {
    display: none;
  }
}

/* ultra-wide raise removed — dr-narrow caps at 860px at all widths */

.sales-page .site-nav {
  position: static;
}

.sales-page .nav-inner {
  gap: 8px;
  padding-bottom: 12px;
  padding-top: 14px;
}

.sales-page .nav-links {
  display: none;
}

/* ============================================================
   FAST COURSE ENROLLMENT PAGE
   Short-form page for buyers who already believe and want in.
   ============================================================ */

.ftt-course {
  background: var(--paper);
  color: var(--ink);
}

.ftt-fast-wrap {
  margin: 0 auto;
  max-width: min(1320px, calc(100vw - 48px));
  width: 100%;
}

.ftt-fast-hero {
  background: var(--paper-alt);
  border-bottom: 2px solid var(--ink);
  padding: clamp(36px, 5vw, 78px) 0;
}

.ftt-fast-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
}

.ftt-fast-mark {
  display: block;
  height: auto;
  margin: 0 0 20px;
  width: clamp(48px, 4vw, 72px);
}

.ftt-fast-kicker {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 1.4;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.ftt-fast-hero h1 {
  font-size: clamp(46px, 5vw, 94px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0 0 22px;
}

.ftt-fast-deck {
  font-size: clamp(20px, 1.05vw, 28px);
  line-height: 1.42;
  margin: 0 0 22px;
  max-width: 900px;
}

.ftt-fast-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.ftt-fast-button {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--paper);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 1.7px;
  line-height: 1.2;
  padding: 17px 28px;
  text-decoration: none;
  text-transform: uppercase;
}

.ftt-fast-button:hover {
  background: transparent;
  color: var(--accent);
}

.ftt-fast-button--gold {
  background: var(--cda250, #cda250);
  border-color: var(--cda250, #cda250);
  color: var(--ink);
}

.ftt-fast-link {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.ftt-fast-link--light {
  color: var(--paper);
}

.ftt-fast-offer {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(26, 25, 22, 0.16);
  padding: clamp(24px, 3vw, 38px);
}

.ftt-fast-price {
  color: var(--accent);
  font-family: var(--mono);
  font-size: clamp(40px, 3.4vw, 62px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.ftt-fast-offer p,
.ftt-fast-copy p,
.ftt-fast-close p {
  font-size: clamp(17px, 0.45vw, 20px);
  line-height: 1.58;
  margin: 0 0 16px;
}

.ftt-fast-offer ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.ftt-fast-offer li {
  border-top: 1px solid rgba(26, 25, 22, 0.14);
  font-size: 15px;
  line-height: 1.45;
  padding-top: 9px;
}

.ftt-fast-proof {
  background: var(--ink);
  color: var(--paper);
  padding: 20px 0;
}

.ftt-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ftt-proof-grid div {
  border-left: 1px solid rgba(246, 242, 233, 0.2);
  padding: 10px 18px;
}

.ftt-proof-grid div:first-child {
  border-left: 0;
}

.ftt-proof-grid strong {
  color: var(--cda250, #cda250);
  display: block;
  font-family: var(--mono);
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1;
}

.ftt-proof-grid span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  margin-top: 8px;
  text-transform: uppercase;
}

.ftt-fast-section {
  padding: clamp(48px, 5vw, 90px) 0;
}

.ftt-fast-section--alt {
  background: var(--paper-alt);
}

.ftt-fast-section--ink {
  background: var(--ink);
  color: var(--paper);
}

.ftt-fast-section--ink .ftt-fast-kicker,
.ftt-fast-section--ink h2,
.ftt-fast-section--ink p {
  color: var(--paper);
}

.ftt-fast-split,
.ftt-fast-close {
  display: grid;
  gap: clamp(32px, 5vw, 70px);
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  max-width: 920px;
  margin-inline: auto;
}

.ftt-fast-split h2,
.ftt-fast-close h2 {
  font-size: clamp(34px, 3vw, 62px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.ftt-delivery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ftt-delivery div {
  background: var(--paper);
  border: 2px solid rgba(26, 25, 22, 0.22);
  padding: clamp(22px, 3vw, 34px);
}

.ftt-delivery span {
  color: var(--accent);
  display: block;
  font-family: var(--mono);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.ftt-delivery h3 {
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 8px;
}

.ftt-delivery p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.ftt-included {
  border-top: 2px solid var(--ink);
}

.ftt-included div {
  border-bottom: 1px solid rgba(26, 25, 22, 0.16);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(170px, 0.4fr) minmax(0, 1fr);
  padding: 17px 0;
}

.ftt-included strong {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.ftt-included span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.ftt-fast-section-head {
  max-width: 980px;
}

.ftt-fast-section-head h2 {
  font-size: clamp(38px, 4vw, 78px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  margin: 10px 0 18px;
}

.ftt-fast-section-head p {
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.58;
  margin: 0;
  max-width: 850px;
}

.ftt-fast-section--belief {
  background: #f2ead9;
}

.ftt-belief-grid,
.dr-belief-grid {
  display: grid;
  gap: clamp(18px, 2vw, 30px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(34px, 4vw, 64px);
}

.ftt-belief-grid div,
.dr-belief-grid div {
  border-top: 1px solid rgba(26, 25, 22, 0.22);
  padding-top: 20px;
}

.ftt-belief-grid span,
.dr-belief-grid span {
  color: var(--accent);
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.6px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ftt-belief-grid h3,
.dr-belief-grid h3 {
  font-size: clamp(25px, 2vw, 36px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 12px;
}

.ftt-belief-grid p,
.dr-belief-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

.ftt-stack-list {
  display: grid;
  gap: 0;
}

.ftt-stack-list div {
  border-bottom: 1px solid rgba(26, 25, 22, 0.16);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  padding: 18px 0;
}

.ftt-stack-list strong {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ftt-stack-list span {
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.5;
}

.ftt-fast-section--cta {
  background: #1a1916;
  color: #f6f2e9;
  padding-block: clamp(34px, 5vw, 72px);
}

.ftt-fast-mini-cta {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.ftt-fast-mini-cta h2 {
  font-size: clamp(36px, 4vw, 72px);
  line-height: 0.98;
  margin: 8px 0 0;
}

.ftt-order-faq {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
}

.ftt-order-faq div {
  border-bottom: 1px solid rgba(26, 25, 22, 0.16);
  padding: 18px 0;
}

.ftt-order-faq h3 {
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1.1;
  margin: 0 0 8px;
}

.ftt-order-faq p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

.dr-belief-shift .dr-section-head {
  max-width: 1040px;
}

.dr-belief-shift .dr-section-head h2 {
  max-width: 960px;
}

.ftt-fast-close {
  align-items: center;
}

.ftt-fast-close__actions {
  display: grid;
  gap: 14px;
}

@media (max-width: 980px) {
  .ftt-fast-hero__grid,
  .ftt-fast-split,
  .ftt-fast-close {
    grid-template-columns: 1fr;
  }

  .ftt-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ftt-proof-grid div {
    border-left: 0;
    border-top: 1px solid rgba(246, 242, 233, 0.2);
  }

  .ftt-delivery {
    grid-template-columns: 1fr;
  }

  .ftt-included div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ftt-belief-grid,
  .dr-belief-grid {
    grid-template-columns: 1fr;
  }

  .ftt-stack-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ftt-fast-mini-cta {
    grid-template-columns: 1fr;
  }

  .ftt-fast-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ftt-fast-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .ftt-fast-wrap {
    max-width: calc(100vw - 34px);
  }

  .ftt-proof-grid {
    grid-template-columns: 1fr;
  }
}


/* ── Mobile horizontal-overflow safety (full responsiveness pass) ── */
html { overflow-x: clip; }
@media (max-width: 480px) {
  .btn, .btn--lg { white-space: normal; }
}

/* Success pages: break long domains/URLs in step lists on mobile */
@media (max-width: 600px) {
  .success-page li, .success-page p, .success-page code, .success-page td { overflow-wrap: break-word; }
}
