:root {
  --ink:        #1a1916;
  --paper:      #f6f2e9;
  --paper-alt:  #ede7d8;
  --muted:      #7a7468;
  --rule:       rgba(26,25,22,0.16);
  --rule-light: rgba(246,242,233,0.14);
  --accent:     #7a1f1c;
  --serif:      'EB Garamond', Georgia, serif;
  --mono:       'Courier Prime', monospace;

  --sp-1: 8px;  --sp-2: 13px; --sp-3: 21px;
  --sp-4: 34px; --sp-5: 55px; --sp-6: 89px; --sp-7: 144px;

  --h1:   clamp(2.25rem, 4.5vw, 4.5rem);
  --h2:   clamp(1.75rem, 3vw, 3rem);
  --h3:   clamp(1.25rem, 1.8vw, 1.75rem);
  --lead: clamp(1.125rem, 1.3vw, 1.375rem);
  --body: clamp(1rem, 1.1vw, 1.125rem);
  --small: 0.875rem;
  --label: 0.6875rem;

  --gutter: clamp(20px, 5vw, 89px);
  --max:    1480px;
  --col:     860px;  
  --read:    860px;
  --wide:    920px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--body);
  line-height: 1.618;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--paper); }
a { color: inherit; text-decoration: none; }
p { margin-bottom: 1.5em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
.wrap     { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.col      { max-width: var(--col); }
.eyebrow {
  font-family: var(--mono); font-size: var(--label);
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: var(--sp-4);
}
.eyebrow--light  { color: rgba(246,242,233,0.5); }
.eyebrow--accent { color: var(--accent); }
.rule { border: 0; border-top: 1px solid var(--rule); }
.rule--light { border-color: var(--rule-light); }
.rule--heavy { border-top: 2px solid var(--ink); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: var(--label);
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 18px 32px; border: 1px solid transparent;
  cursor: pointer; line-height: 1; white-space: nowrap; min-height: 44px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.btn--primary { background: var(--ink);   color: var(--paper); border-color: var(--ink); }
.btn--primary:hover { background: transparent; color: var(--ink); }
.btn--accent  { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.btn--accent:hover { background: transparent; color: var(--accent); }
.btn--ghost   { background: transparent; color: var(--paper); border-color: rgba(246,242,233,0.35); }
.btn--ghost:hover { border-color: var(--paper); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.btn--lg { padding: 22px 40px; font-size: 0.75rem; }
.btn .arr { display: inline-block; transition: transform 0.18s; }
.btn:hover .arr { transform: translateX(4px); }
@media (max-width: 480px) {
  .btn { padding: 16px 22px; }
  .btn--lg { padding: 20px 26px; font-size: 0.6875rem; }
}
@media (max-width: 380px) {
  .hero-cta-group .btn,
    .final-cta-row .btn,
    .mid-cta-actions .btn,
    .section-exit-cta .btn { width: 100%; justify-content: center; }
}
.section       { padding: clamp(var(--sp-5), 9vw, var(--sp-7)) 0; }
.section--sm   { padding: var(--sp-5) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--alt  { background: var(--paper-alt); }
.section-head { margin-bottom: var(--sp-6); text-align: center; margin-inline: auto; }
.section-head--left { text-align: left; }
.section-head--left p { margin-inline: 0; max-width: 100%; }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-4);
  text-wrap: balance;
}
.section-head p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: var(--lead);
  line-height: 1.55;
  max-width: 62ch;
  margin-inline: auto;
}
.section--dark .section-head p { color: rgba(246,242,233,0.65); }
.media-slot {
  background: var(--paper-alt);
  border: 1px dashed rgba(26,25,22,0.28);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--sp-3); padding: var(--sp-5) var(--sp-4);
}
.media-slot--16x9 { aspect-ratio: 16/9; }
.media-slot--dark { background: rgba(246,242,233,0.04); border-color: rgba(246,242,233,0.18); }
.media-slot__icon { width: 52px; height: 52px; border: 1.5px solid rgba(26,25,22,0.22); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.media-slot--dark .media-slot__icon { border-color: rgba(246,242,233,0.28); }
.media-slot__icon svg { width: 18px; height: 18px; }
.media-slot__label { font-family: var(--mono); font-size: var(--label); letter-spacing: 2px; text-transform: uppercase; color: var(--muted); text-align: center; }
.media-slot--dark .media-slot__label { color: rgba(246,242,233,0.45); }
.media-slot__desc { font-size: var(--small); font-style: italic; color: var(--muted); text-align: center; max-width: 32ch; }
.media-slot--dark .media-slot__desc { color: rgba(246,242,233,0.35); }
.proof-card { background: var(--paper); border: 1px solid var(--rule); padding: var(--sp-5) var(--sp-4); display: grid; gap: var(--sp-3); }
.proof-card__q { font-family: var(--serif); font-size: var(--lead); font-style: italic; line-height: 1.4; }
.proof-card__q--placeholder { color: var(--muted); font-size: var(--body); }
.proof-card__attr { display: flex; align-items: center; gap: var(--sp-2); border-top: 1px solid var(--rule); padding-top: var(--sp-2); }
.proof-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--paper-alt); border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.proof-avatar svg { width: 16px; height: 16px; opacity: 0.35; }
.proof-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.proof-name { font-family: var(--serif); font-size: var(--body); font-weight: 500; }
.proof-role { font-family: var(--mono); font-size: var(--label); letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.proof-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.proof-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
@media (max-width: 900px) {
  .proof-grid-3, .proof-grid-2 { grid-template-columns: 1fr; }
}
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.18s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.proof-bar {
  position: sticky; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper);
  border-bottom: 1px solid rgba(246,242,233,0.1);
  display: flex; align-items: center;
  overflow: hidden; 
}
.proof-bar-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: stretch; width: 100%; min-width: 0;
  border-left: 1px solid rgba(246,242,233,0.1);
}
.pb-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: var(--sp-2) var(--sp-3);
  border-right: 1px solid rgba(246,242,233,0.1);
  flex: 1 1 0; min-width: 0; 
}
.pb-item__val { font-family: var(--serif); font-size: 1.25rem; line-height: 1; color: var(--paper); }
.pb-item__val--accent { color: var(--accent); }
.pb-item__lbl { font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(246,242,233,0.4); }
.pb-cta { padding: var(--sp-2) var(--sp-4); display: flex; align-items: center; background: var(--accent); flex-shrink: 0; }
.pb-cta a { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--paper); white-space: nowrap; }
.pb-cta a .pb-cta__short { display: none; }
@media (max-width: 1100px) {
  .pb-item:nth-child(4) { display: none; }
  .pb-item:nth-child(5) { order: -1; }
}
@media (max-width: 860px) {
  .pb-item:nth-child(2) { display: none; }
  .pb-cta a .pb-cta__full { display: none; }
  .pb-cta a .pb-cta__short { display: inline; }
}
@media (max-width: 600px) {
  .pb-item:nth-child(1) { display: none; }
  .pb-item__val { font-size: 1.0625rem; }
  .pb-item__lbl { font-size: 0.5rem; letter-spacing: 1.5px; }
  .pb-cta { padding: var(--sp-2) var(--sp-3); }
  .pb-cta a { font-size: 0.5rem; }
}
@media (max-width: 420px) {
  .pb-item:nth-child(3) { display: none; }
  .pb-item { padding: var(--sp-2); }
}
.letter-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.letter-nav::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 56px;
  background: linear-gradient(to right, rgba(246,242,233,0) 0%, var(--paper) 85%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
@media (max-width: 760px) {
  .letter-nav::after { opacity: 1; }
}
.letter-nav-inner {
  max-width: var(--max); margin: 0 auto; padding: var(--sp-2) var(--gutter);
  display: flex; gap: var(--sp-4); align-items: center;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.letter-nav-inner::-webkit-scrollbar { display: none; width: 0; height: 0; }
.letter-nav a {
  font-family: var(--mono); font-size: var(--label); letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.letter-nav a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.letter-nav a.enrol-link {
  background: var(--ink); color: var(--paper);
  padding: var(--sp-2) var(--sp-3); border-bottom: none;
}
.letter-nav a.enrol-link:hover { background: var(--accent); }
.letter-hero {
  padding: clamp(var(--sp-6), 12vw, var(--sp-7)) 0 var(--sp-6);
  border-bottom: 2px solid var(--ink);
}
.letter-hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 2fr; gap: var(--sp-7); align-items: start;
}
.letter-hero__aside { position: sticky; top: 112px; }
.letter-hero__kicker { font-family: var(--mono); font-size: var(--label); letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: var(--sp-4); }
.letter-hero__nav { display: grid; gap: 0; margin-bottom: var(--sp-5); }
.letter-hero__nav a {
  font-family: var(--mono); font-size: var(--label); letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
  padding: var(--sp-3) 0; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between;
}
.letter-hero__nav a:hover { color: var(--ink); }
.letter-hero__nav a span { opacity: 0.5; }
.letter-hero__body h1 {
  font-family: var(--serif); font-size: var(--h1); font-weight: 400;
  line-height: 1.05; letter-spacing: -0.015em;
  margin-bottom: var(--sp-5); text-wrap: balance;
}
.letter-hero__body p {
  font-size: var(--lead); line-height: 1.65;
  color: var(--ink); 
  max-width: 65ch;
}
.instructor-card {
  display: grid; grid-template-columns: 56px 1fr; gap: var(--sp-2);
  align-items: center;
  border: 1px solid var(--rule);
  padding: var(--sp-2) var(--sp-3);
  background: var(--paper-alt);
}
.instructor-card__photo {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.instructor-card__photo svg { width: 22px; height: 22px; }
.instructor-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor-card__name {
  font-family: var(--serif); font-size: var(--body); font-weight: 500;
  line-height: 1.2;
}
.instructor-card__credential {
  font-family: var(--mono); font-size: var(--label);
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}
.letter-byline {
  font-family: var(--mono); font-size: var(--label);
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-4);
  display: flex; gap: var(--sp-2); flex-wrap: wrap; align-items: center;
  min-width: 0; max-width: 100%;
}
.letter-byline > * { min-width: 0; }
.letter-byline__sep { opacity: 0.5; }
.letter-byline__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-alt);
  border: 1px solid var(--rule);
  flex-shrink: 0;
  display: none;
  align-items: center; justify-content: center;
}
.letter-byline__avatar img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1000px) {
  .letter-byline__avatar { display: flex; }
  .letter-byline { margin-bottom: var(--sp-4); }
}
.hero-cta-group {
  margin-top: var(--sp-5);
  display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap;
}
.hero-cta-group .link-quiet {
  font-family: var(--mono); font-size: var(--label);
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.18s, border-color 0.18s;
}
.hero-cta-group .link-quiet:hover { color: var(--ink); border-bottom-color: var(--ink); }
.hero-video-slot { margin-top: var(--sp-5); }
@media (max-width: 1000px) {
  .letter-hero-inner { grid-template-columns: 1fr; }
  .letter-hero__aside { display: none; }
}
.body-grid {
  max-width: calc(var(--col) + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter);
}
.body-main {  }
.body-main > h2 {
  font-family: var(--serif);
  font-size: var(--h2);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-4);
  text-wrap: balance;
}
.margin-note {
  background: var(--paper-alt);
  border-left: 3px solid var(--accent);
  padding: var(--sp-4) var(--sp-4);
  margin-bottom: var(--sp-4);
  max-width: var(--col);
}
.margin-note__label {
  font-family: var(--mono); font-size: var(--label); letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: var(--sp-2);
}
.margin-note__body { font-size: var(--small); font-style: italic; color: var(--muted); line-height: 1.6; }
.quote-mark {
  border-left: 2px solid var(--accent);
  padding-left: var(--sp-4);
  margin: var(--sp-5) 0;
  font-family: var(--serif); font-style: italic;
  font-size: var(--lead); color: var(--muted); line-height: 1.55;
}
.quote-mark--dark { border-color: rgba(246,242,233,0.25); color: rgba(246,242,233,0.7); }
@media (max-width: 1000px) {
  .body-grid { grid-template-columns: 1fr; }
}
.failure-compact {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); margin: var(--sp-5) 0;
}
.fc-item { border: 1px solid var(--rule); padding: var(--sp-4); }
.fc-item__num { font-family: var(--serif); font-size: 3rem; color: var(--ink); opacity: 0.12; line-height: 1; }
.fc-item__h { font-family: var(--serif); font-size: var(--h3); font-weight: 500; margin: var(--sp-2) 0 var(--sp-2); }
.fc-item__p { font-size: var(--small); color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) {
  .failure-compact { grid-template-columns: 1fr; }
}
.mechanism-layers { display: grid; gap: 0; }
.layer {
  display: grid; grid-template-columns: 130px 1fr;
  gap: var(--sp-5); padding: var(--sp-6) 0;
  border-top: 1px solid var(--rule);
}
.layer:last-child { border-bottom: 1px solid var(--rule); }
.layer__num {
  font-family: var(--serif); font-size: clamp(2.5rem,4vw,4rem);
  line-height: 1; color: var(--ink); opacity: 0.13;
}
.layer__h { font-family: var(--serif); font-size: var(--h3); font-weight: 400; line-height: 1.2; margin-bottom: var(--sp-2); }
.layer__p { font-size: var(--body); line-height: 1.65; margin-bottom: var(--sp-3); }
@media (max-width: 900px) {
  .layer { grid-template-columns: 1fr; gap: var(--sp-2); }
  .layer__num { font-size: 2.5rem; }
}
.discovery-story {
  max-width: var(--read);
  padding: var(--sp-5) 0;
  margin-bottom: var(--sp-6);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.discovery-story__lede {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}
.discovery-story p {
  font-size: var(--body); line-height: 1.7;
  margin-bottom: var(--sp-3);
}
.discovery-story p:last-child { margin-bottom: 0; }
.contrast-table {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink);
  margin-top: var(--sp-5);
}
.ct-col { padding: var(--sp-5) var(--sp-4); }
.ct-col:first-child { border-right: 1px solid var(--ink); }
.ct-col--win { background: var(--ink); color: var(--paper); }
.ct-col__kicker {
  font-family: var(--mono); font-size: var(--label); letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--muted); margin-bottom: var(--sp-3);
  display: block;
}
.ct-col--win .ct-col__kicker { color: rgba(246,242,233,0.5); }
.ct-col__h {
  font-family: var(--serif); font-size: var(--h3);
  font-weight: 400; line-height: 1.2; margin-bottom: var(--sp-4);
}
.ct-list { list-style: none; display: grid; gap: var(--sp-3); }
.ct-list li {
  display: flex; gap: 12px; align-items: baseline;
  font-size: var(--body); line-height: 1.4;
}
.ct-list li::before { content: '—'; font-family: var(--mono); opacity: 0.4; flex-shrink: 0; }
.ct-col--win .ct-list li::before { content: '→'; opacity: 0.8; }
@media (max-width: 900px) {
  .contrast-table { grid-template-columns: 1fr; }
  .ct-col:first-child { border-right: 0; border-bottom: 1px solid var(--ink); }
}
.content-sample { margin-top: var(--sp-4); }
.content-sample-secondary { margin-top: var(--sp-3); }
.sample-card {
  display: grid; grid-template-columns: 56px 1fr auto; gap: var(--sp-3);
  align-items: center;
  border: 1px solid var(--rule);
  padding: var(--sp-4) var(--sp-4);
  background: var(--paper);
  transition: border-color 0.18s, background 0.18s;
  color: inherit;
}
.sample-card:hover { border-color: var(--ink); background: var(--paper-alt); }
.sample-card__icon { color: var(--accent); display: flex; align-items: center; justify-content: center; }
.sample-card__icon svg { width: 28px; height: 28px; }
.sample-card__label { font-family: var(--mono); font-size: var(--label); letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.sample-card__title { font-family: var(--serif); font-size: var(--h3); font-weight: 400; margin: 2px 0; line-height: 1.2; }
.sample-card__desc { font-size: var(--small); color: var(--muted); }
.sample-card__arrow { font-family: var(--mono); font-size: 1.25rem; color: var(--accent); }
.why-now-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: var(--sp-6); align-items: start;
}
.why-now-body p {
  font-family: var(--serif); font-style: italic;
  font-size: var(--lead); color: var(--ink);
  line-height: 1.55; margin-bottom: var(--sp-3);
}
.why-now-meta {
  border-left: 2px solid var(--accent);
  padding-left: var(--sp-4);
  display: grid; gap: var(--sp-3);
}
.why-now-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: var(--sp-2);
  padding-bottom: var(--sp-1);
  border-bottom: 1px solid var(--rule);
}
.why-now-row:last-child { border-bottom: 0; }
.why-now-row__l {
  font-family: var(--mono); font-size: var(--label);
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
}
.why-now-row__v {
  font-family: var(--serif); font-size: var(--lead);
  color: var(--ink); font-weight: 500;
}
.why-now-row__v--accent { color: var(--accent); }
@media (max-width: 900px) {
  .why-now-grid { grid-template-columns: 1fr; }
  .why-now-meta { border-left: 0; border-top: 2px solid var(--accent); padding-left: 0; padding-top: var(--sp-3); }
}
.value-stack {
  border: 1px solid var(--ink);
  margin-top: var(--sp-5);
  background: var(--paper);
}
.value-stack__row,
.value-stack__total,
.value-stack__price {
  display: grid; grid-template-columns: 1fr auto;
  gap: var(--sp-3); align-items: baseline;
  padding: var(--sp-4) var(--sp-4);
  border-bottom: 1px solid var(--rule);
}
.value-stack__total {
  background: var(--paper-alt);
  border-bottom: 2px solid var(--ink);
}
.value-stack__price {
  background: var(--ink); color: var(--paper);
  border-bottom: 0;
  padding: var(--sp-4);
}
.value-stack__label {
  font-family: var(--serif); font-size: var(--body);
  line-height: 1.4;
}
.value-stack__price .value-stack__label { color: rgba(246,242,233,0.7); }
.value-stack__val {
  font-family: var(--serif); font-size: var(--h3);
  font-weight: 500; line-height: 1; white-space: nowrap;
}
.value-stack__val--accent { color: var(--accent); }
.value-stack__val--price { font-size: clamp(2rem, 3.5vw, 2.75rem); color: var(--paper); }
@media (max-width: 480px) {
  .value-stack__row,
    .value-stack__total { padding: var(--sp-3); gap: var(--sp-2); }
  .value-stack__price { padding: var(--sp-3); }
  .value-stack__label { font-size: var(--small); }
}
.walk-away-grid {
  display: grid; gap: var(--sp-4);
  grid-template-columns: repeat(3, 1fr);
}
.walk-away-card {
  border: 1px solid var(--rule);
  padding: var(--sp-5) var(--sp-4);
  display: grid; gap: var(--sp-2); align-content: start;
  background: var(--paper);
}
.walk-away-card--final {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
  grid-column: 1 / -1;
}
.walk-away-card__label {
  font-family: var(--mono); font-size: var(--label);
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
}
.walk-away-card--final .walk-away-card__label { color: rgba(246,242,233,0.55); }
.walk-away-card__h {
  font-family: var(--serif); font-size: var(--h3);
  font-weight: 400; line-height: 1.2;
}
.walk-away-card__p {
  font-size: var(--body); line-height: 1.55;
  color: var(--muted);
}
.walk-away-card--final .walk-away-card__p { color: rgba(246,242,233,0.7); }
@media (max-width: 900px) {
  .walk-away-grid { grid-template-columns: 1fr; }
}
.ps-block {
  background: var(--paper-alt);
  padding: clamp(var(--sp-6), 8vw, var(--sp-7)) var(--gutter);
  border-top: 1px solid var(--rule);
}
.ps-block__inner {
  max-width: var(--read); margin: 0 auto;
  display: grid; gap: var(--sp-4);
}
.ps-line {
  font-family: var(--serif); font-size: var(--lead);
  line-height: 1.6; margin: 0;
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--rule);
}
.ps-line:last-child { border-bottom: 0; padding-bottom: 0; }
.ps-line strong {
  font-family: var(--mono); font-size: var(--label);
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  display: inline-block; margin-right: var(--sp-1);
}
.ps-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  font-weight: 500;
}
.ps-link:hover { color: var(--ink); border-bottom-color: var(--ink); }
.instructor-origin {
  max-width: var(--read);
  margin: 0 auto var(--sp-6);
  padding: var(--sp-5) var(--sp-5);
  background: var(--paper-alt);
  border-left: 3px solid var(--accent);
}
.instructor-origin__label {
  font-family: var(--mono); font-size: var(--label);
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--sp-3);
}
.instructor-origin__h {
  font-family: var(--serif); font-size: var(--h3);
  font-weight: 400; line-height: 1.2; margin-bottom: var(--sp-3);
}
.instructor-origin p {
  font-size: var(--body); line-height: 1.7;
  margin-bottom: var(--sp-3);
}
.instructor-origin p:last-child { margin-bottom: 0; }
.section-exit-cta {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; justify-content: center;
}
.section-exit-cta .link-quiet {
  font-family: var(--mono); font-size: var(--label);
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
.section-exit-cta .link-quiet:hover { color: var(--ink); }
.mid-cta {
  background: var(--ink); color: var(--paper);
  padding: clamp(var(--sp-6), 10vw, var(--sp-7)) var(--gutter);
  text-align: center;
}
@media (max-width: 700px) {
  .mid-cta { padding: var(--sp-6) var(--gutter); }
}
.mid-cta-inner { max-width: 780px; margin: 0 auto; }
.mid-cta h2 { font-family: var(--serif); font-size: var(--h2); font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; margin-bottom: var(--sp-4); text-wrap: balance; }
.mid-cta p { font-family: var(--serif); font-style: italic; color: rgba(246,242,233,0.65); font-size: var(--lead); line-height: 1.6; margin-bottom: var(--sp-5); text-wrap: pretty; }
.mid-cta-actions { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }
.mid-cta-note { font-family: var(--mono); font-size: var(--label); letter-spacing: 2px; text-transform: uppercase; color: rgba(246,242,233,0.4); margin-top: var(--sp-4); }
.proof-timeline { display: grid; gap: 0; }
.proof-entry {
  display: grid; grid-template-columns: 170px 1fr;
  gap: var(--sp-5); padding: var(--sp-5) 0;
  border-top: 1px solid var(--rule);
}
.proof-entry:last-child { border-bottom: 1px solid var(--rule); }
.proof-entry__yr { font-family: var(--serif); font-size: clamp(1.5rem,2.5vw,2rem); line-height: 1.1; }
.proof-entry__yr--accent { color: var(--accent); }
.proof-entry__phase { font-family: var(--mono); font-size: var(--label); letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.proof-entry__h { font-family: var(--serif); font-size: var(--h3); font-weight: 400; margin-bottom: var(--sp-2); }
.proof-entry__p { font-size: var(--body); line-height: 1.65; }
@media (max-width: 900px) {
  .proof-entry { grid-template-columns: 1fr; gap: var(--sp-2); }
}
.module-list { display: grid; gap: 0; }
.module {
  display: grid; grid-template-columns: 140px 1fr;
  gap: var(--sp-5); align-items: start;
  padding: var(--sp-6) 0; border-top: 1px solid var(--rule);
}
.module:last-child { border-bottom: 1px solid var(--rule); }
.module__num { font-family: var(--mono); font-size: var(--label); letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.module__h { font-family: var(--serif); font-size: var(--h3); font-weight: 400; margin-bottom: var(--sp-2); }
.module__p { font-size: var(--body); line-height: 1.65; margin-bottom: var(--sp-3); }
.module__includes { list-style: none; display: grid; gap: var(--sp-1); }
.module__includes li { font-family: var(--mono); font-size: var(--label); letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); display: flex; gap: 10px; align-items: center; }
.module__includes li::before { content: '→'; color: var(--accent); flex-shrink: 0; }
.module__video { margin-top: var(--sp-3); }
@media (max-width: 900px) {
  .module { grid-template-columns: 1fr; gap: var(--sp-3); }
}
.enrol-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.enrol-step { padding: var(--sp-5) var(--sp-4); border: 1px solid var(--rule); display: grid; gap: var(--sp-3); align-content: start; }
.enrol-step__n { font-family: var(--serif); font-size: 3.5rem; line-height: 1; color: var(--ink); opacity: 0.12; }
.enrol-step__h { font-family: var(--serif); font-size: var(--h3); font-weight: 400; }
.enrol-step__p { font-size: var(--body); color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) {
  .enrol-steps { grid-template-columns: 1fr; }
}
.faq { display: grid; gap: 0; }
.faq-item { border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  font-family: var(--serif); font-size: var(--h3); font-weight: 400;
  padding: var(--sp-5) 0 var(--sp-3); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-family: var(--mono); font-size: 1.25rem; opacity: 0.4; flex-shrink: 0; margin-left: var(--sp-3); transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: var(--body); line-height: 1.7; padding-bottom: var(--sp-5); display: none; }
.faq-item.open .faq-a { display: block; }
.not-for-grid { display: grid; grid-template-columns: 2fr 1fr; gap: var(--sp-6); align-items: start; }
.not-for-list { display: grid; gap: var(--sp-4); }
.not-for-item { border-top: 1px solid var(--rule); padding-top: var(--sp-4); }
.not-for-item__h { font-family: var(--serif); font-size: var(--h3); font-weight: 400; margin-bottom: var(--sp-3); }
.not-for-item__p { font-size: var(--body); color: var(--muted); line-height: 1.65; }
.not-for-aside { background: var(--paper-alt); border: 1px solid var(--rule); padding: var(--sp-5) var(--sp-4); }
.not-for-aside h3 { font-family: var(--serif); font-size: var(--h3); font-weight: 400; margin-bottom: var(--sp-3); }
.not-for-aside p { font-size: var(--body); line-height: 1.65; font-style: italic; color: var(--muted); }
@media (max-width: 900px) {
  .not-for-grid { grid-template-columns: 1fr; }
}
.final-close {
  background: var(--ink); color: var(--paper);
  padding: clamp(var(--sp-6), 14vw, var(--sp-7)) var(--gutter);
}
@media (max-width: 700px) {
  .final-close { padding: var(--sp-6) var(--gutter); }
  .final-close h2 { margin-bottom: var(--sp-4); }
  .price-stack { padding: var(--sp-3) 0; margin-bottom: var(--sp-4); }
}
.final-close__kicker { font-family: var(--mono); font-size: var(--label); letter-spacing: 3px; text-transform: uppercase; color: rgba(246,242,233,0.5); margin-bottom: var(--sp-4); }
.final-close h2 { font-family: var(--serif); font-size: var(--h1); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: var(--sp-5); text-wrap: balance; }
.final-close .closing-quote { border-left: 2px solid var(--accent); padding-left: var(--sp-4); font-family: var(--serif); font-style: italic; font-size: var(--lead); color: rgba(246,242,233,0.7); line-height: 1.6; margin-bottom: var(--sp-5); }
.price-stack__price { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; }
.price-stack__terms { font-family: var(--mono); font-size: var(--label); letter-spacing: 2px; text-transform: uppercase; color: rgba(246,242,233,0.45); }
.includes-list li { font-family: var(--mono); font-size: var(--label); letter-spacing: 1.5px; text-transform: uppercase; color: rgba(246,242,233,0.65); display: flex; gap: 10px; }
.includes-list li::before { content: '→'; color: var(--accent); flex-shrink: 0; }
.final-cta-row { display: flex; gap: var(--sp-3); align-items: center; flex-wrap: wrap; margin-bottom: var(--sp-5); justify-content: center; }
.final-disclaimer { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(246,242,233,0.3); line-height: 1.8; border-top: 1px solid rgba(246,242,233,0.1); padding-top: var(--sp-4); text-align: left; max-width: var(--read); margin-inline: auto; }
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(26,25,22,0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(246,242,233,0.12);
  padding: var(--sp-2) var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sb-info { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; min-width: 0; flex: 1; }
.sb-title { font-family: var(--serif); font-size: 1.0625rem; color: var(--paper); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.sb-price { font-family: var(--mono); font-size: var(--label); letter-spacing: 2px; text-transform: uppercase; color: rgba(246,242,233,0.55); }
@media (max-width: 900px) {
  .sticky-bar { padding: var(--sp-2) var(--sp-3); gap: var(--sp-2); }
  .sticky-bar .sb-info { flex-direction: column; gap: 2px; align-items: flex-start; }
  .sticky-bar .sb-price { font-size: 0.5625rem; letter-spacing: 1.5px; }
  .sticky-bar .btn { padding: 14px 18px; font-size: 0.5625rem; letter-spacing: 1.5px; }
}
@media (max-width: 420px) {
  .sticky-bar .sb-price { display: none; }
}
.footer { border-top: 1px solid var(--rule); padding: var(--sp-4) 0; margin-bottom: 72px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 2fr 1fr; gap: var(--sp-3) var(--sp-4); font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); line-height: 1.618; }
.footer-inner span:last-child { text-align: right; }
@media (max-width: 700px) {
  .footer { margin-bottom: 96px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner span:last-child { text-align: left; }
}
html { overflow-x: clip; }
@media (max-width: 480px) {
  .btn, .btn--lg { white-space: normal; }
}
@media (max-width: 600px) {
  .value-stack__row, .value-stack__total, .value-stack__price { grid-template-columns: 1fr; gap: var(--sp-1); }
  .value-stack__val { white-space: normal; }
  .proof-strip-inner { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr !important; }
}
.sb-info, .sb-meta { overflow-wrap: break-word; min-width: 0; }
@media (max-width: 600px) {
  .sb-title { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
  .sticky-bar .sb-info { align-items: stretch; }
  .sticky-bar .sb-title { width: 100%; max-width: 100%; }
}
