/* ============================================================
   AISIN — style.css  v2.0  Premium Minimalist
   Single source of truth. Every page links this file.
   8 design rules:
   1. One job per section
   2. Whitespace is content (120px sections)
   3. Crimson = btn-primary + hero-stat + hero-eyebrow ONLY
   4. Typography IS the design (88px H1, Cormorant 300)
   5. Copy cut to 1-2 sentences max
   6. One primary CTA per page
   7. Rhythm: eyebrow → H → body → content
   8. Mobile-first breakpoints
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap&subset=latin');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --off-white:     #F5F3EE;
  --near-black:    #0E0E0C;
  --stone:         #EDEAE3;
  --sand:          #C4BAA8;
  --muted:         #8A8678;
  --crimson:       #9B1C2E;
  --crimson-light: #E8637A;
  --dark-bg:       #0E0E0C;
  --dark-border:   #1E1E1C;
  --dark-muted:    #6A6860;
  --dark-meta:     #3E3E3C;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --text-label:   11px;
  --text-body:    17px;
  --text-card:    26px;
  --text-section: 48px;
  --text-hero:    88px;

  --s1:   8px;  --s2:  16px;  --s3:  24px;  --s4:  32px;
  --s5:  48px;  --s6:  64px;  --s7:  96px;
  --s8: 120px;  --s9: 160px;

  --page-pad:   72px;
  --page-pad-m: 24px;
  --nav-h:      68px;
  --t-fast:   0.2s ease;
  --t-reveal: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── BASE ── */
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--off-white); color: var(--near-black);
  font-family: var(--font-body); font-size: var(--text-body);
  line-height: 1.8; -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: var(--font-body); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: var(--s3);
  background: var(--crimson); color: #F5F3EE;
  padding: var(--s1) var(--s2); font-size: 13px; z-index: 200; transition: top 0.2s;
}
.skip-link:focus { top: var(--s1); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity var(--t-reveal), transform var(--t-reveal); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed; top: 0; left: 0; width: 0%; height: 2px;
  background: var(--crimson); z-index: 200; transition: width 0.1s linear;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: sticky; top: 0; height: var(--nav-h);
  padding: 0 var(--page-pad);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,243,238,0);
  border-bottom: 0.5px solid transparent;
  z-index: 100;
  transition: background 0.35s ease, border-color 0.35s ease;
}
nav.scrolled {
  background: var(--off-white);
  border-bottom-color: var(--sand);
}

.nav-logo {
  font-family: var(--font-display); font-size: 17px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--near-black); text-decoration: none; flex-shrink: 0;
}

.nav-links { display: flex; gap: var(--s5); list-style: none; align-items: center; }
.nav-item { position: relative; }

.nav-item > a,
.nav-item > button {
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  color: var(--muted); text-decoration: none; background: none; border: none;
  cursor: pointer; padding: 4px 0; display: flex; align-items: center; gap: 4px;
  transition: color var(--t-fast); white-space: nowrap;
}
.nav-item > a:hover,
.nav-item > button:hover,
.nav-item.active > a,
.nav-item.active > button { color: var(--near-black); }

.nav-chevron { font-size: 9px; opacity: 0.5; transition: transform var(--t-fast); display: inline-block; }
.nav-item.open .nav-chevron { transform: rotate(180deg); }

/* Dropdown — 6px padding bridges the gap so clicks register */
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  padding-top: 6px; background: transparent;
  min-width: 220px; z-index: 110;
}
.nav-item.open .nav-dropdown { display: block; }
.nav-dropdown-inner {
  background: var(--off-white); border: 0.5px solid var(--sand);
  box-shadow: 0 8px 32px rgba(14,14,12,0.08);
}
.nav-dropdown a,
.nav-dropdown-inner a {
  display: block; padding: 11px var(--s2);
  font-family: var(--font-body); font-size: 13px; color: var(--muted);
  text-decoration: none; border-bottom: 0.5px solid var(--stone);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-dropdown a:last-child,
.nav-dropdown-inner a:last-child { border-bottom: none; }
.nav-dropdown a:hover,
.nav-dropdown-inner a:hover { background: var(--stone); color: var(--near-black); }
.nav-dropdown-sub {
  font-family: var(--font-mono); font-size: 10px; color: var(--sand);
  letter-spacing: 0.04em; display: block; margin-top: 2px;
}

.nav-join {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: #F5F3EE !important; background: var(--crimson);
  padding: 9px 22px; text-decoration: none;
  border: none; cursor: pointer; transition: opacity var(--t-fast); white-space: nowrap;
}
.nav-join:hover { opacity: 0.88; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px; z-index: 120;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px; background: var(--near-black);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--off-white); border-top: 0.5px solid var(--sand);
  overflow-y: auto; z-index: 99; padding: var(--s3) var(--page-pad-m);
}
.nav-mobile.open { display: block; }
.nav-mobile-item { border-bottom: 0.5px solid var(--sand); }
.nav-mobile-item > a,
.nav-mobile-item > button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: var(--s2) 0; font-family: var(--font-body);
  font-size: 15px; color: var(--near-black); background: none; border: none;
  cursor: pointer; text-align: left; text-decoration: none;
}
.nav-mobile-sub { display: none; padding-bottom: var(--s2); }
.nav-mobile-sub.open { display: block; }
.nav-mobile-sub a {
  display: block; padding: 8px 0 8px var(--s2); font-size: 14px;
  color: var(--muted); text-decoration: none; border-bottom: 0.5px solid var(--stone);
}
.nav-mobile-sub a:last-child { border-bottom: none; }
.nav-mobile-join {
  display: block; margin-top: var(--s3); padding: 14px var(--s3);
  background: var(--crimson); color: #F5F3EE; text-align: center;
  font-size: 14px; font-weight: 500; text-decoration: none;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: var(--s2) var(--page-pad); border-bottom: 0.5px solid var(--sand);
  display: flex; align-items: center; justify-content: flex-start;
  gap: 8px; width: 100%;
  font-family: var(--font-mono); font-size: var(--text-label);
  color: var(--muted); letter-spacing: 0.04em; flex-wrap: nowrap;
}
.breadcrumb > * { flex-shrink: 0; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--near-black); }
.breadcrumb-sep { opacity: 0.35; }
.breadcrumb-current { color: var(--near-black); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: var(--font-mono); font-size: var(--text-label);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ''; display: block; width: 20px; height: 0.5px;
  background: currentColor; flex-shrink: 0;
}
/* Rule 3: hero eyebrow is the ONE crimson label allowed on homepage */
/* Eyebrow on dark backgrounds */
.eyebrow-dark { color: var(--dark-muted); }
.eyebrow-dark::before { background: var(--dark-muted); }

.eyebrow-hero { color: var(--crimson); margin-bottom: 0; }
.eyebrow-hero::before { background: var(--crimson); }

.body-copy {
  font-family: var(--font-body); font-size: var(--text-body);
  font-weight: 400; line-height: 1.8; color: var(--muted); max-width: 540px;
}
.mono-label {
  font-family: var(--font-mono); font-size: var(--text-label);
  letter-spacing: 0.04em; color: var(--muted);
}
.on-dark       { color: #F0EDE6; }
.on-dark-muted { color: var(--dark-muted); }
.on-dark-label { color: var(--dark-muted); }

/* ============================================================
   BUTTONS — Rule 6: one .btn-primary per page
   ============================================================ */
.btn-primary {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: #F5F3EE; background: var(--crimson); padding: 14px 36px;
  text-decoration: none; display: inline-block; border: none; cursor: pointer;
  transition: opacity var(--t-fast); line-height: 1;
}
.btn-primary:hover { opacity: 0.88; }

.btn-ghost {
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  color: var(--near-black); text-decoration: none; background: none;
  border: none; cursor: pointer; padding-bottom: 2px; display: inline-block;
  border-bottom: 0.5px solid transparent; transition: border-color var(--t-fast);
}
.btn-ghost:hover { border-bottom-color: var(--near-black); }

.btn-apply {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--near-black); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  border-bottom: 0.5px solid var(--sand); padding-bottom: 2px;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.btn-apply:hover { border-color: var(--near-black); }

/* ============================================================
   FORMS
   ============================================================ */
.form-label {
  font-family: var(--font-mono); font-size: var(--text-label);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--near-black);
  background: var(--off-white); border: 0.5px solid var(--sand);
  padding: 12px 16px; outline: none; width: 100%;
  appearance: none; -webkit-appearance: none; border-radius: 0;
  transition: border-color var(--t-fast);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--near-black); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--sand); }
.form-textarea { resize: vertical; min-height: 80px; line-height: 1.6; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '↓'; position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); font-size: 11px; color: var(--muted); pointer-events: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field { margin-bottom: 12px; }
.form-submit {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: #F5F3EE; background: var(--crimson); padding: 14px 36px;
  border: none; cursor: pointer; margin-top: 8px;
  transition: opacity var(--t-fast); display: inline-block;
}
.form-submit:hover { opacity: 0.88; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-note {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--muted); margin-top: 12px; letter-spacing: 0.04em;
}
.form-success {
  display: none; font-family: var(--font-display); font-size: 22px;
  font-weight: 300; font-style: italic; color: var(--near-black);
  padding: 24px 0; line-height: 1.4;
}
.form-honeypot {
  display: none !important; visibility: hidden !important;
  position: absolute !important; left: -9999px !important;
}
.status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border: 0.5px solid;
}
.status-open { color: #2D7A4F; border-color: #2D7A4F; background: #F0FAF4; }
.status-closed { color: var(--muted); border-color: var(--sand); }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ============================================================
   HOMEPAGE SECTIONS — Rule 1: 4 sections only
   ============================================================ */

/* 1. HERO — full width, Rule 4 */
/* ── HERO: display:block — bulletproof, no flex ambiguity ── */
.hero {
  display: block;
  padding: var(--s9) var(--page-pad) var(--s8);
  border-bottom: 0.5px solid var(--sand);
}

.hero-eyebrow-wrap { margin-bottom: var(--s4); }

.hero-title {
  display: block;
  font-family: var(--font-display); font-size: var(--text-hero);
  font-weight: 300; line-height: 1.03; letter-spacing: -0.01em;
  color: var(--near-black); max-width: 880px;
  margin-bottom: var(--s4);
}
.hero-title em { font-style: italic; font-weight: 400; }

.hero-stat-inline {
  font-family: var(--font-display); font-size: var(--text-hero);
  font-weight: 300; color: var(--crimson); line-height: 1;
}

.hero-sub {
  display: block;
  font-family: var(--font-body); font-size: 19px; font-weight: 400;
  line-height: 1.75; color: var(--muted); max-width: 540px;
  margin-bottom: var(--s5);
}
.hero-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s7);
}

/* Stats row */
.hero-ticker {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding-top: var(--s5);
  border-top: 0.5px solid var(--sand);
  max-width: 760px;
}
.ticker-sep { display: none; }
.ticker-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 var(--s4);
  border-right: 0.5px solid var(--sand);
}
.ticker-item:first-child { padding-left: 0; }
.ticker-item:last-child { border-right: none; padding-right: 0; }
.ticker-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 300;
  color: var(--near-black); line-height: 1;
}
.ticker-label {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  color: var(--muted); letter-spacing: 0.06em;
}

/* MARQUEE — CSS-only infinite scroll, replaces static badges */
.marquee-strip {
  overflow: hidden; white-space: nowrap;
  border-bottom: 0.5px solid var(--sand); padding: 18px 0;
}
.marquee-track {
  display: inline-flex; gap: var(--s7);
  animation: marquee-scroll 28s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-mono); font-size: var(--text-label);
  color: var(--muted); letter-spacing: 0.10em; text-transform: uppercase; flex-shrink: 0;
}
.marquee-dot { color: var(--sand); margin: 0 12px; }

/* 2. PROGRAMS — 3 numbered steps, always visible, no tabs */
.programs-section { border-bottom: 0.5px solid var(--sand); }
.programs-intro {
  padding: var(--s8) var(--page-pad) var(--s6);
  border-bottom: 0.5px solid var(--sand);
  max-width: 100%;
}
.programs-intro .eyebrow { margin-bottom: var(--s3); }
.programs-intro h2 {
  font-family: var(--font-display); font-size: var(--text-section);
  font-weight: 300; line-height: 1.1; color: var(--near-black);
  margin-top: var(--s3);
}

.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--sand); gap: 1px;
}
.program-step {
  background: var(--off-white); padding: var(--s7) var(--s5);
  display: flex; flex-direction: column; transition: background var(--t-fast);
}
.program-step:hover { background: var(--stone); }
.step-number {
  font-family: var(--font-display); font-size: 88px; font-weight: 300;
  color: var(--stone); line-height: 0.9; margin-bottom: var(--s4);
  transition: color var(--t-fast);
}
.program-step:hover .step-number { color: var(--sand); }
.step-label {
  font-family: var(--font-mono); font-size: var(--text-label);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--s2);
}
.step-title {
  font-family: var(--font-display); font-size: 30px; font-weight: 400;
  color: var(--near-black); line-height: 1.2; margin-bottom: var(--s2);
}
.step-spec {
  font-family: var(--font-mono); font-size: var(--text-label);
  color: var(--muted); letter-spacing: 0.04em; margin-bottom: var(--s5);
}
.step-link {
  margin-top: auto; font-family: var(--font-body); font-size: 13px;
  color: var(--near-black); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 0.5px solid var(--sand); padding-bottom: 2px;
  width: fit-content; transition: border-color var(--t-fast);
}
.step-link:hover { border-color: var(--near-black); }

/* 3. SOCIAL PROOF — 1 stat + 2 short quotes, light background */
.proof-section { background: var(--stone); border-bottom: 0.5px solid var(--sand); }
.proof-inner { padding: var(--s8) var(--page-pad); }
.proof-stat {
  font-family: var(--font-display); font-size: 72px; font-weight: 300;
  color: var(--near-black); line-height: 1; margin-bottom: 12px;
}
.proof-stat-sub {
  font-family: var(--font-body); font-size: var(--text-body);
  color: var(--muted); margin-bottom: var(--s7);
}
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }
.proof-quote-mark {
  font-family: var(--font-display); font-size: 72px; color: var(--sand);
  line-height: 0.8; margin-bottom: var(--s2); display: block;
}
.proof-quote {
  font-family: var(--font-display); font-size: 22px; font-weight: 300;
  font-style: italic; color: var(--near-black); line-height: 1.55; margin-bottom: var(--s3);
}
.proof-name { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--near-black); }
.proof-role { font-family: var(--font-mono); font-size: var(--text-label); color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; }

/* 4. CTA BAND — only dark element on homepage */
.cta-band {
  background: var(--dark-bg); padding: var(--s8) var(--page-pad);
  border-bottom: 0.5px solid var(--dark-border);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s6); flex-wrap: wrap;
}
.cta-band-title {
  font-family: var(--font-display); font-size: 56px; font-weight: 300;
  color: #F0EDE6; line-height: 1.08; max-width: 560px;
}
.cta-band-title em { font-style: italic; }
.cta-band-right { display: flex; flex-direction: column; align-items: flex-start; gap: var(--s3); }
.cta-band-note { font-family: var(--font-mono); font-size: var(--text-label); color: var(--dark-muted); letter-spacing: 0.04em; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.hero-inner {
  padding: var(--s8) var(--page-pad) var(--s7);
  border-bottom: 0.5px solid var(--sand);
}
.hero-inner h1 {
  font-family: var(--font-display); font-size: 64px; font-weight: 300;
  line-height: 1.06; color: var(--near-black); margin-bottom: var(--s3);
}
.hero-inner .hero-sub {
  font-family: var(--font-body); font-size: var(--text-body);
  color: var(--muted); line-height: 1.75; max-width: 560px; margin-bottom: 0;
}
.hero-badges { display: flex; gap: var(--s1); flex-wrap: wrap; margin-top: var(--s3); }
.hero-badge {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); padding: 4px 10px; border: 0.5px solid var(--sand);
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section-pad    { padding: var(--s8) var(--page-pad); }
.section-pad-sm { padding: var(--s7) var(--page-pad); }
.section-header { margin-bottom: var(--s6); max-width: 680px; }
.section-header .eyebrow { margin-bottom: var(--s3); }
.section-header h2 {
  font-family: var(--font-display); font-size: var(--text-section);
  font-weight: 300; line-height: 1.1; color: var(--near-black); margin-top: var(--s3);
}
.section-title {
  font-family: var(--font-display); font-size: var(--text-section);
  font-weight: 300; line-height: 1.1; color: var(--near-black);
}

/* ============================================================
   PROGRAM DETAIL PAGES
   ============================================================ */
.program-featured { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 0.5px solid var(--sand); }
.program-featured-content { padding: var(--s7) var(--page-pad); border-right: 0.5px solid var(--sand); }
.program-featured-meta { padding: var(--s7) var(--page-pad); display: flex; flex-direction: column; justify-content: space-between; }
.program-layer-label { font-family: var(--font-mono); font-size: var(--text-label); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--s2); }
.program-title { font-family: var(--font-display); font-size: 32px; font-weight: 400; color: var(--near-black); line-height: 1.2; margin-bottom: var(--s2); }
.program-desc  { font-family: var(--font-body); font-size: var(--text-body); color: var(--muted); line-height: 1.7; margin-bottom: var(--s4); }
.program-spec  { font-family: var(--font-mono); font-size: var(--text-label); color: var(--muted); letter-spacing: 0.04em; margin-bottom: 6px; }

.curriculum-table  { border: 0.5px solid var(--sand); width: 100%; }
.curriculum-header { display: grid; grid-template-columns: 72px 1fr 140px; background: var(--stone); border-bottom: 0.5px solid var(--sand); }
.curriculum-row    { display: grid; grid-template-columns: 72px 1fr 140px; border-bottom: 0.5px solid var(--stone); }
.curriculum-row:last-child { border-bottom: none; }
.curriculum-row.muted-row  { background: var(--stone); }
.curriculum-cell   { padding: 16px 20px; font-family: var(--font-body); font-size: 14px; color: var(--near-black); border-right: 0.5px solid var(--sand); }
.curriculum-cell:last-child { border-right: none; }
.curriculum-cell.head { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.curriculum-cell.week { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.curriculum-cell.muted-text { font-style: italic; color: var(--muted); }
.curriculum-cell.meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }

.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 0.5px solid var(--sand); border-bottom: 0.5px solid var(--sand); }
.who-card { padding: var(--s6) var(--s5); border-right: 0.5px solid var(--sand); }
.who-card:last-child { border-right: none; }
.who-role { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--near-black); margin-bottom: 10px; }
.who-desc { font-family: var(--font-body); font-size: 14px; color: var(--muted); line-height: 1.7; }

.learn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--sand); border-top: 0.5px solid var(--sand); border-bottom: 0.5px solid var(--sand); }
.learn-card { background: var(--off-white); padding: var(--s5) var(--s4); }
.learn-num { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 12px; }
.learn-title { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--near-black); margin-bottom: 10px; }
.learn-desc { font-family: var(--font-body); font-size: 14px; color: var(--muted); line-height: 1.65; }

.faq-item { border-bottom: 0.5px solid var(--sand); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 22px var(--page-pad); cursor: pointer; font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--near-black); background: none; border: none; width: 100%; text-align: left; transition: background var(--t-fast); }
.faq-question:hover { background: var(--stone); }
.faq-icon { font-size: 20px; color: var(--muted); transition: transform var(--t-fast); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--near-black); }
.faq-answer { display: none; padding: 0 var(--page-pad) var(--s3); font-family: var(--font-body); font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 680px; }
.faq-item.open .faq-answer { display: block; }

.apply-band { padding: var(--s8) var(--page-pad); border-bottom: 0.5px solid var(--dark-border); display: flex; align-items: center; justify-content: space-between; gap: var(--s5); background: var(--dark-bg); }

/* ============================================================
   JOIN PAGE
   ============================================================ */
.join-layout { display: grid; grid-template-columns: 1.2fr 1fr; border-bottom: 0.5px solid var(--sand); }
.join-form-col { padding: var(--s8) var(--page-pad); border-right: 0.5px solid var(--sand); }
.join-social-col { padding: var(--s8) var(--page-pad); background: var(--stone); display: flex; flex-direction: column; justify-content: center; }
.eoi-title { font-family: var(--font-display); font-size: 72px; font-weight: 300; line-height: 1.06; color: var(--near-black); margin-bottom: var(--s2); }
.eoi-sub { font-family: var(--font-body); font-size: var(--text-body); color: var(--muted); line-height: 1.65; margin-bottom: var(--s5); max-width: 440px; }
.join-stat { margin-bottom: var(--s4); }
.join-stat-num { font-family: var(--font-display); font-size: 52px; font-weight: 300; color: var(--near-black); line-height: 1; }
.join-stat-label { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--near-black); margin-top: 6px; }
.join-stat-sub { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.04em; margin-top: 3px; }
.join-about { padding: var(--s7) var(--page-pad); border-top: 0.5px solid var(--sand); border-bottom: 0.5px solid var(--sand); max-width: 680px; }

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--sand); border-top: 0.5px solid var(--sand); border-bottom: 0.5px solid var(--sand); }
.founder-card { background: var(--off-white); padding: var(--s7) var(--page-pad); border-right: 0.5px solid var(--sand); }
.join-card    { background: var(--stone); padding: var(--s7) var(--page-pad); }
.member-role-tag { font-family: var(--font-mono); font-size: var(--text-label); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.member-name { font-family: var(--font-display); font-size: 44px; font-weight: 300; color: var(--near-black); margin-bottom: var(--s3); }
.member-bio  { font-family: var(--font-body); font-size: var(--text-body); color: var(--muted); line-height: 1.75; margin-bottom: var(--s5); }
.research-label { font-family: var(--font-mono); font-size: var(--text-label); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--s3); }
.research-item  { margin-bottom: var(--s4); padding-left: var(--s2); border-left: 1px solid var(--sand); }
.research-tag   { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; display: block; margin-bottom: 6px; }
.research-title { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--near-black); margin-bottom: 6px; }
.research-desc  { font-family: var(--font-body); font-size: 13px; color: var(--muted); line-height: 1.65; }
.cred-header { font-family: var(--font-mono); font-size: var(--text-label); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: var(--s5) 0 var(--s3); }
.cred-item { display: flex; gap: 14px; margin-bottom: var(--s2); align-items: flex-start; }
.cred-dot  { width: 5px; height: 5px; border-radius: 50%; background: var(--sand); margin-top: 7px; flex-shrink: 0; }
.cred-text { font-family: var(--font-body); font-size: 14px; color: var(--near-black); line-height: 1.5; }
.cred-text span { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.04em; margin-top: 2px; }
.social-links { display: flex; gap: var(--s2); flex-wrap: wrap; margin-top: var(--s4); }
.social-link  { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); text-decoration: none; padding: 6px 14px; border: 0.5px solid var(--sand); transition: border-color var(--t-fast), color var(--t-fast); }
.social-link:hover { border-color: var(--near-black); color: var(--near-black); }

/* ============================================================
   AIRTABLE SKELETON
   ============================================================ */
.airtable-wrap { border: 0.5px solid var(--sand); overflow: hidden; position: relative; min-height: 200px; }
.airtable-wrap iframe { display: block; border: none; }
.airtable-skeleton { position: absolute; inset: 0; background: var(--stone); display: flex; align-items: center; justify-content: center; z-index: 2; transition: opacity 0.4s ease; }
.airtable-skeleton.loaded { opacity: 0; pointer-events: none; }
.skeleton-text { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; animation: skeleton-pulse 1.4s ease-in-out infinite; }
@keyframes skeleton-pulse { 0%,100%{opacity:1} 50%{opacity:.25} }

/* ============================================================
   LIVE SECTION / NEWSLETTER / COPY BTN / STICKY CTA / 404
   ============================================================ */
.live-section { padding: var(--s8) var(--page-pad); border-bottom: 0.5px solid var(--sand); }
.live-intro { font-family: var(--font-body); font-size: var(--text-body); color: var(--muted); line-height: 1.7; max-width: 560px; margin-bottom: var(--s5); }

.newsletter { padding: var(--s8) var(--page-pad); border-bottom: 0.5px solid var(--sand); display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s7); align-items: center; }
.newsletter-title { font-family: var(--font-display); font-size: 40px; font-weight: 300; line-height: 1.2; color: var(--near-black); margin-bottom: var(--s2); }
.newsletter-form { display: flex; flex-direction: column; gap: 0; }
.newsletter-form .form-label { margin-bottom: 10px; display: block; }
.newsletter-form-row { display: flex; }
.newsletter-input { font-family: var(--font-body); font-size: 14px; color: var(--near-black); background: var(--off-white); border: 0.5px solid var(--sand); border-right: none; padding: 12px 16px; outline: none; flex: 1; transition: border-color var(--t-fast); }
.newsletter-input:focus { border-color: var(--near-black); }
.newsletter-input::placeholder { color: var(--sand); }
.newsletter-btn { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: #F5F3EE; background: var(--crimson); border: none; padding: 12px 24px; cursor: pointer; transition: opacity var(--t-fast); text-decoration: none; display: inline-flex; align-items: center; }
.newsletter-btn:hover { opacity: 0.88; }
.newsletter-note { font-family: var(--font-mono); font-size: 10px; color: var(--muted); margin-top: 10px; letter-spacing: 0.04em; }

.copy-btn { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; color: var(--muted); background: none; border: 0.5px solid var(--sand); padding: 4px 10px; cursor: pointer; transition: all var(--t-fast); display: inline-flex; align-items: center; gap: 4px; }
.copy-btn:hover { border-color: var(--muted); color: var(--near-black); }
.copy-btn.copied { color: #2D7A4F; border-color: #2D7A4F; }

.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--crimson); z-index: 90; padding: 16px var(--page-pad-m); transform: translateY(0); transition: transform 0.3s ease; }
.mobile-sticky-cta a { display: block; font-family: var(--font-body); font-size: 14px; font-weight: 500; color: #F5F3EE; text-align: center; text-decoration: none; }

.not-found { padding: var(--s8) var(--page-pad); border-bottom: 0.5px solid var(--sand); }
.not-found-num   { font-family: var(--font-display); font-size: 140px; font-weight: 300; color: var(--stone); line-height: 1; margin-bottom: var(--s5); }
.not-found-title { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--near-black); margin-bottom: var(--s2); }
.not-found-sub   { font-family: var(--font-body); font-size: var(--text-body); color: var(--muted); margin-bottom: var(--s5); }
.not-found-cta   { display: flex; gap: var(--s4); flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--dark-bg); padding: var(--s7) var(--page-pad) var(--s5); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s6); padding-bottom: var(--s5); border-bottom: 0.5px solid var(--dark-border); margin-bottom: var(--s3); }
.footer-logo    { font-family: var(--font-display); font-size: 18px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: #F0EDE6; margin-bottom: 12px; display: block; text-decoration: none; }
.footer-tagline { font-family: var(--font-body); font-size: 13px; color: var(--dark-muted); line-height: 1.65; max-width: 240px; }
.footer-col-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark-muted); margin-bottom: var(--s2); }
.footer-links   { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-family: var(--font-body); font-size: 13px; color: var(--dark-muted); text-decoration: none; transition: color var(--t-fast); }
.footer-links a:hover { color: #F0EDE6; }
.footer-bottom  { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy    { font-family: var(--font-mono); font-size: 11px; color: var(--dark-meta); letter-spacing: 0.04em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --page-pad: 48px; }
  .hero-title { font-size: 72px; }
  .programs-grid { grid-template-columns: 1fr; }
  .program-step  { padding: var(--s6) var(--page-pad); }
  .step-number   { font-size: 72px; }
  .proof-grid    { grid-template-columns: 1fr; gap: var(--s5); }
  .cta-band      { flex-direction: column; align-items: flex-start; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: var(--s4); }
}

@media (max-width: 768px) {
  :root { --page-pad: var(--page-pad-m); --s8: 80px; --s9: 96px; }
  nav { padding: 0 var(--page-pad-m); }
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }
  .breadcrumb   { padding: var(--s2) var(--page-pad-m); }
  .hero          { padding: var(--s7) var(--page-pad-m) var(--s6); }
  .hero-title    { font-size: 48px; margin-bottom: var(--s3); }
  .hero-sub      { font-size: 17px; max-width: 100%; margin-bottom: var(--s4); }
  .hero-cta      { flex-direction: column; align-items: flex-start; gap: var(--s3); margin-bottom: var(--s5); }
  .hero-ticker { flex-wrap: wrap; max-width: 100%; }
  .ticker-item {
    flex: 1 1 calc(50% - var(--s4));
    border-right: none;
    padding-right: 0;
    border-bottom: 0.5px solid var(--sand);
    padding-bottom: var(--s3);
    margin-bottom: var(--s3);
  }
  .ticker-item:nth-child(odd) { padding-left: 0; }
  .ticker-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
  .hero-inner    { padding: var(--s6) var(--page-pad-m) var(--s5); }
  .hero-inner h1 { font-size: 40px; }
  .programs-intro { padding: var(--s6) var(--page-pad-m) var(--s5); }
  .programs-grid  { grid-template-columns: 1fr; }
  .program-step   { padding: var(--s5) var(--page-pad-m); }
  .step-number    { font-size: 56px; }
  .proof-inner    { padding: var(--s6) var(--page-pad-m); }
  .proof-stat     { font-size: 56px; }
  .proof-grid     { grid-template-columns: 1fr; gap: var(--s4); }
  .cta-band       { padding: var(--s6) var(--page-pad-m); flex-direction: column; align-items: flex-start; gap: var(--s4); }
  .cta-band-title { font-size: 36px; }
  .join-layout    { grid-template-columns: 1fr; }
  .join-form-col  { padding: var(--s6) var(--page-pad-m); border-right: none; border-bottom: 0.5px solid var(--sand); }
  .join-social-col { padding: var(--s6) var(--page-pad-m); }
  .eoi-title      { font-size: 48px; }
  .form-row       { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .founder-card   { border-right: none; border-bottom: 0.5px solid var(--sand); padding: var(--s6) var(--page-pad-m); }
  .join-card      { padding: var(--s6) var(--page-pad-m); }
  .who-grid       { grid-template-columns: 1fr; }
  .who-card       { border-right: none; border-bottom: 0.5px solid var(--sand); }
  .who-card:last-child { border-bottom: none; }
  .learn-grid     { grid-template-columns: 1fr; }
  .program-featured { grid-template-columns: 1fr; }
  .program-featured-content { border-right: none; border-bottom: 0.5px solid var(--sand); padding: var(--s5) var(--page-pad-m); }
  .program-featured-meta    { padding: var(--s5) var(--page-pad-m); }
  .faq-question  { padding: 18px var(--page-pad-m); font-size: 14px; }
  .faq-answer    { padding: 0 var(--page-pad-m) var(--s3); }
  .apply-band    { padding: var(--s6) var(--page-pad-m); flex-direction: column; align-items: flex-start; }
  .apply-band-copy { font-size: 32px; }
  .section-pad    { padding: var(--s6) var(--page-pad-m); }
  .section-pad-sm { padding: var(--s5) var(--page-pad-m); }
  .live-section  { padding: var(--s6) var(--page-pad-m); }
  .newsletter    { padding: var(--s6) var(--page-pad-m); grid-template-columns: 1fr; gap: var(--s5); }
  .newsletter-form-row { flex-direction: column; }
  .newsletter-input    { border-right: 0.5px solid var(--sand); }
  .not-found     { padding: var(--s6) var(--page-pad-m); }
  .not-found-num { font-size: 88px; }
  .not-found-title { font-size: 32px; }
  footer { padding: var(--s6) var(--page-pad-m) var(--s4); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s4); }
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .hero-title   { font-size: 36px; }
  .eoi-title    { font-size: 38px; }
  .proof-stat   { font-size: 44px; }
  .footer-top   { grid-template-columns: 1fr; }
  .not-found-num { font-size: 64px; }
}

/* ============================================================
   UTILITY CLASSES — eliminates inline styles
   ============================================================ */

/* Page title (programs hero H1) */
.page-title {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 300;
  line-height: 1.06; color: var(--near-black);
}


/* Label variants — muted only (Rule 3: no crimson here) */
.label-muted {
  font-family: var(--font-mono); font-size: var(--text-label);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: 12px;
}

/* Section inner pad */
.section-inner { padding: var(--s7) var(--page-pad); }
.section-inner-sm { padding: var(--s6) var(--page-pad); }

/* Program page hero */
.program-hero {
  padding: var(--s8) var(--page-pad) var(--s7);
  border-bottom: 0.5px solid var(--sand);
}

/* How-it-works detail grid */
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s7); align-items: start;
}
.how-left { }
.how-right { border-top: 0.5px solid var(--sand); }
.how-row {
  display: grid; grid-template-columns: 120px 1fr; gap: var(--s3);
  padding: 20px 0; border-bottom: 0.5px solid var(--sand);
}
.how-row:last-child { border-bottom: none; }
.how-key { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--dark-muted); }
.how-val { font-family: var(--font-body); font-size: 14px; color: #F0EDE6; }

/* Two column program cards */
.two-col-programs {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--sand);
}
.two-col-programs .program-card {
  padding: var(--s6) var(--page-pad);
  border-right: 0.5px solid var(--sand);
}
.two-col-programs .program-card:last-child { border-right: none; }

/* Where this leads grid */
.leads-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--sand);
}
.leads-card {
  background: var(--off-white); padding: var(--s5) var(--s4);
}
.leads-label {
  font-family: var(--font-mono); font-size: var(--text-label);
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.leads-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  color: var(--near-black); margin-bottom: 10px;
}
.leads-desc {
  font-family: var(--font-body); font-size: 13px; color: var(--muted); line-height: 1.7;
}

/* Dark how-it-works section */
.dark-section { background: var(--dark-bg); border-bottom: 0.5px solid var(--dark-border); }
.dark-section .section-inner { padding: var(--s7) var(--page-pad); }

/* Testimonial pair */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--sand); }
.testimonial-card { background: var(--off-white); padding: var(--s5); }
.testimonial-quote { font-family: var(--font-body); font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: var(--s3); }
.testimonial-quote::before { content: '\201C'; font-family: var(--font-display); font-size: 22px; color: var(--muted); margin-right: 2px; vertical-align: -2px; }
.testimonial-name { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--near-black); }
.testimonial-role { font-family: var(--font-mono); font-size: 10px; color: var(--muted); margin-top: 4px; letter-spacing: .04em; }

/* Cross-link bar */
.crosslink-bar {
  padding: var(--s4) var(--page-pad);
  border-bottom: 0.5px solid var(--sand);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s3);
}
.crosslink-label { font-family: var(--font-mono); font-size: var(--text-label); color: var(--muted); margin-bottom: 6px; }
.crosslink-title { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--near-black); }

/* Responsive overrides for new utilities */
@media (max-width: 768px) {
  .program-hero { padding: var(--s6) var(--page-pad-m) var(--s5); }
  .how-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .two-col-programs { grid-template-columns: 1fr; }
  .two-col-programs .program-card { border-right: none; border-bottom: 0.5px solid var(--sand); padding: var(--s5) var(--page-pad-m); }
  .leads-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .crosslink-bar { padding: var(--s4) var(--page-pad-m); }
  .section-inner { padding: var(--s6) var(--page-pad-m); }
  .section-inner-sm { padding: var(--s5) var(--page-pad-m); }
  .dark-section .section-inner { padding: var(--s6) var(--page-pad-m); }
  .how-row { grid-template-columns: 100px 1fr; }
}

/* ── FLEX UTILITIES ── */
.flex-row { display: flex; gap: var(--s3); flex-wrap: wrap; align-items: center; }
.flex-col { display: flex; flex-direction: column; gap: var(--s3); }

/* ── BORDER UTILITIES ── */
.border-b { border-bottom: 0.5px solid var(--sand); }
.border-t  { border-top: 0.5px solid var(--sand); }

/* ── SPACING UTILITIES ── */
.mb-2 { margin-bottom: var(--s2); }
.mb-3 { margin-bottom: var(--s3); }
.mb-4 { margin-bottom: var(--s4); }
.mb-5 { margin-bottom: var(--s5); }
.mt-3 { margin-top: var(--s3); }
.mt-4 { margin-top: var(--s4); }


/* ── WHO CARD LABEL (muted, not crimson) ── */
.who-label {
  font-family: var(--font-mono);
  font-size: var(--text-label); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 12px; display: block;
}

/* ── CURRICULUM WEEK NUMBER ── */
.curriculum-cell.week { color: var(--muted); }

/* ── DARK HOW-IT-WORKS ── */
.how-section {
  background: var(--dark-bg);
  border-bottom: 0.5px solid var(--dark-border);
  padding: var(--s8) var(--page-pad);
}
.how-title {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 300;
  color: #F0EDE6; line-height: 1.1; margin-bottom: var(--s3);
}
.how-body {
  font-family: var(--font-body);
  font-size: 15px; color: var(--dark-muted); line-height: 1.75;
}

/* ── APPLY CROSS-LINK BAR ── */
.crosslink {
  padding: var(--s4) var(--page-pad);
  border-bottom: 0.5px solid var(--sand);
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: var(--s3);
}
.crosslink-meta { font-family: var(--font-mono); font-size: var(--text-label); color: var(--muted); margin-bottom: 6px; }
.crosslink-name { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--near-black); }

/* ── TABLER ICON UTILITIES ── */
.icon-stat {
  width: 36px; height: 36px;
  background: var(--stone); border: 0.5px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s2); flex-shrink: 0;
}
.icon-stat i { font-size: 18px; color: var(--crimson); }
.ticker-item .icon-stat { margin-bottom: 8px; }

.icon-prog {
  width: 44px; height: 44px;
  background: var(--stone); border: 0.5px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s3); order: -1;
}
.icon-prog i { font-size: 24px; color: var(--crimson); }
/* step-number comes visually after the icon via CSS order */
.step-number { order: 0; }
.step-label  { order: 1; }
.step-title  { order: 2; }
.step-spec   { order: 3; }
.step-link   { order: 4; }

/* Mobile responsive for new utilities */
@media (max-width: 768px) {
  .program-hero { padding: var(--s6) var(--page-pad-m) var(--s5); }
  .program-hero h1 { font-size: 40px; }
  .how-section { padding: var(--s6) var(--page-pad-m); }
  .crosslink { padding: var(--s3) var(--page-pad-m); }
}

/* ── FOOTER LINK ICONS ── */
.footer-links a i {
  font-size: 14px;
  vertical-align: -2px;
  margin-right: 4px;
  opacity: 0.7;
}
.footer-links a:hover i { opacity: 1; }

/* ── SOCIAL LINK ICONS ── */
.social-link i {
  font-size: 14px;
  vertical-align: -2px;
  margin-right: 4px;
}

body.page-join { padding-bottom: 0; }

/* ── LEADS CARD inner elements ── */
.leads-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--near-black); margin-bottom: 10px; line-height: 1.3; }
.leads-card p  { font-family: var(--font-body); font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── HOW SECTION heading ── */
.how-section .how-title { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: #F0EDE6; line-height: 1.1; margin-bottom: var(--s3); }
.how-section p.how-body { font-family: var(--font-body); font-size: 15px; color: var(--dark-muted); line-height: 1.75; }

/* ── APPLY BAND on dark bg ── */
.apply-band { background: var(--dark-bg); border-bottom: 0.5px solid var(--dark-border); padding: var(--s8) var(--page-pad); display: flex; align-items: center; justify-content: space-between; gap: var(--s5); flex-wrap: wrap; }
.apply-band-sub  { font-family: var(--font-body); font-size: 15px; color: var(--dark-muted); margin-top: var(--s2); max-width: 480px; line-height: 1.65; }
.eyebrow-crimson-light { color: var(--crimson-light); }
.eyebrow-crimson-light::before { background: var(--crimson-light); }
.btn-apply-light { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--crimson-light); text-decoration: none; border-bottom: 0.5px solid var(--crimson-light); padding-bottom: 2px; display: inline-flex; align-items: center; gap: 4px; transition: opacity var(--t-fast); }
.btn-apply-light:hover { opacity: 0.75; }

/* ── Responsive apply-band ── */
@media (max-width: 768px) {
  .apply-band { padding: var(--s6) var(--page-pad-m); flex-direction: column; align-items: flex-start; }
  .apply-band-copy { font-size: 32px; }
}

/* ── BTN HERO — bold outline, not filled crimson (saves crimson for CTA band) ── */


/* Hero secondary CTA — outline, not filled crimson */
.btn-hero {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--near-black); background: transparent;
  padding: 13px 32px; text-decoration: none;
  display: inline-block; border: 1px solid var(--near-black); cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast); line-height: 1;
}
.btn-hero:hover { background: var(--near-black); color: var(--off-white); }
