/* ============================================================
   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);
  --measure-page: max(680px, 61.8vw);
  --measure-article: max(760px, 48.5vw); /* 61.8vw * 0.786 */
  --measure-editorial: max(760px, 38.2vw); /* 61.8vw * 0.618 */
  --measure-reading: var(--measure-article);
  --measure-forecast: min(1600px, 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;
}

/* -- 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-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; }

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

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

/* -- 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 55px;
}
.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: min(100%, var(--measure-editorial));
  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-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: 55px 0;
}
.review-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 21px;
  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 34px;
}
.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: 55px 0;
  padding: 21px 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: clamp(13px, 2vh, 21px) clamp(18px, 2.6vw, 34px);
}
.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: clamp(18px, 2.8vh, 34px);
}
.forecast-sidebar--2026 .subscribe-box h3 {
  font-size: clamp(20px, 2.1vw, 24px);
  line-height: 1.15;
}
.forecast-sidebar--2026 .subscribe-box .sb-desc {
  font-size: clamp(11px, 1.25vw, 13px);
  line-height: clamp(1.35, 1.55vh, 1.5);
  margin-bottom: clamp(10px, 1.6vh, 18px);
}
.forecast-sidebar--2026 .subscribe-box .sb-price {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: clamp(8px, 1.4vh, 16px);
}
.forecast-sidebar--2026 .price-note,
.forecast-sidebar--2026 .subscribe-box .sb-note {
  font-size: clamp(10px, 1.15vw, 12px);
  line-height: 1.4;
}
.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: 8px;
  }

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

  .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: 21px;
  padding: 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: 21px;
  padding: 34px;
}
.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: minmax(0, 1.618fr) 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-hero .hero-quote {
    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-grid { grid-template-columns: 1fr; }
  .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;
  }
  .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 34px; }
  .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-page) 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-page);
}

.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: grid;
  gap: var(--gap-golden);
  grid-template-columns: minmax(0, 1.618fr) minmax(260px, 1fr);
}

.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: 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-page);
}

/* 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-page);
}

.home-offer-head {
  text-align: center;
  max-width: var(--measure-editorial);
  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;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  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-record-section {
  background: var(--paper-alt);
  border-bottom: 1px solid var(--ink);
  padding: 89px var(--gutter-page);
}

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

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

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

.home-library-head h2 {
  margin-bottom: 0;
}

.home-close-section {
  background: var(--ink);
  color: var(--paper);
  padding: 89px var(--gutter-page);
  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: 1040px) {
  .home-archive-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-premium-hero {
    padding: 89px 24px 55px;
  }

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

  .home-lead-inner,
  .home-method-inner,
  .home-path-inner,
  .home-offer-grid {
    grid-template-columns: 1fr;
  }

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

@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__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-archive-wall {
    grid-template-columns: 1fr;
  }

  .home-library-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* -- 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: 72px var(--gutter-page) 55px;
  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: start;
  display: grid;
  gap: clamp(34px, 4vw, 89px);
  grid-template-columns: minmax(0, 61.8fr) minmax(0, 38.2fr);
  margin: 0 auto;
  max-width: min(1560px, calc(100vw - (2 * var(--gutter-page))));
  position: relative;
}

.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: start;
  line-height: 1.3;
  margin-bottom: 21px;
  max-width: min(100%, 34rem);
  overflow-wrap: normal;
  padding: 0;
  position: relative;
}

.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(2.6rem, 6.2vw, 7rem);
  line-height: 0.98;
  margin: 0 0 clamp(13px, 1.5vw, 21px);
  text-wrap: balance;
}

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

.success-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);
  min-width: 0;
  padding: clamp(21px, 2.2vw, 34px);
}

.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(34px, 4vw, 89px);
  grid-template-columns: minmax(0, 1.36fr) minmax(320px, 0.94fr);
}

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

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

.success-intro .copy-sm {
  margin: 13px 0 0;
  max-width: 58ch;
}

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

.success-steps {
  display: grid;
  gap: 21px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.success-step {
  background: var(--paper-alt);
  border: 1px solid var(--ink);
  min-width: 0;
  padding: clamp(21px, 2.8vw, 34px);
}

.success-step .label {
  display: inline-block;
  margin-bottom: 13px;
}

.success-step h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
  margin: 0 0 13px;
}

.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;
  min-width: 0;
}

.success-sidebar .proof-box {
  margin: 0;
}

.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-hero__inner,
  .success-flow.page-wrap {
    max-width: min(1720px, calc(100vw - (2 * var(--gutter-page))));
  }

  .success-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.88fr);
  }
}

@media (min-width: 60em) {
  .success-sidebar {
    position: sticky;
    top: 108px;
  }
}

@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%;
  }
}
