/* ============================================================
   NAVI FOUNDERS — Stylesheet
   ------------------------------------------------------------
   GLOBAL
     1.  Reset & base
     2.  Design tokens (colors, fonts, spacing)
     3.  Typography
     4.  Layout helpers
     5.  Buttons & links
     6.  Header + mobile nav
   HOMEPAGE
     7.  Hero
     8.  Stats grid ("The Gap") + dot-grid viz
     9.  Founders cards
     10. Bridge / pillars
     11. Proof callout
     12. Final CTA
     13. Footer
   INNER PAGES (Method, About, Apply, Quiz, Science)
     14. Page hero
     15. Editorial section
     16. Phase grid (Method)
     17. Link cards (quiz/science teaser)
     18. Fit comparison
     19. Includes grid + guarantee
     20. Pricing
     21. About founder feature + evidence bento
     22. References / testimonials
     23. Partners marquee
     24. Apply page form
     25. Quiz form + result + loading
   RESPONSIVE
     26. Tablet (≤960)
     27. Mobile (≤720)
   ============================================================ */


/* ---------- 1. Reset & base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ---------- Keyboard focus indicator (a11y) ----------
   Only shows for keyboard users, not for mouse clicks. */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 3px;
  border-radius: 4px;
}
/* On dark backgrounds (hero, navy sections), focus ring uses white */
.hero :focus-visible,
.page-hero :focus-visible,
.section-navy :focus-visible,
.cta-final :focus-visible,
.site-footer :focus-visible,
.include-item--guarantee :focus-visible,
.pricing-card--featured :focus-visible {
  outline-color: var(--color-white);
}

/* ---------- Skip-to-content link (a11y) ----------
   Visually hidden until focused via keyboard. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}


/* ---------- 2. Design tokens ---------- */
:root {
  /* Brand colors */
  --color-navy:        #0A1F44;
  --color-navy-deep:   #061533;
  --color-navy-light:  #1A3567;
  --color-white:       #FFFFFF;
  --color-cream:       #FAF7F2;
  --color-cream-deep:  #F0EBE0;

  /* Text */
  --color-text:        #1A1F2E;
  --color-text-muted:  #5A6173;
  --color-border:      #E5E1D8;

  /* Fonts */
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-py:    clamp(72px, 10vw, 128px);
  --container-px:  clamp(20px, 5vw, 48px);
  --max-w:         1200px;
}


/* ---------- 3. Typography ---------- */
.eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(42px, 6.2vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 28px;
  max-width: 640px;
  text-wrap: balance;
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin-bottom: 24px;
  max-width: 900px;
}

.section-lead {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--color-text);
  max-width: 720px;
  margin-bottom: 64px;
}


/* ---------- 4. Layout helpers ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section-cream { background: var(--color-cream); }


/* ---------- Scroll reveal (progressive enhancement) ----------
   Content is fully visible by default. Only when JS adds .reveal-on to
   <html> (animation supported AND not reduced-motion) do .reveal blocks
   start hidden and gently fade/rise in when scrolled into view. So if JS
   ever fails, nothing is hidden. */
.reveal-on .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on .reveal.is-visible {
  opacity: 1;
  transform: none;
}


/* ---------- 5. Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  padding: 14px 26px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 31, 68, 0.18);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-navy);
}
.btn-light:hover {
  background: var(--color-cream);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.btn-lg {
  padding: 18px 32px;
  font-size: 16px;
}

.text-link {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
  padding-bottom: 2px;
  margin-top: 16px;
  transition: opacity 0.2s ease;
}
.text-link:hover { opacity: 0.65; }


/* ---------- 6. Header ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--container-px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.wordmark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--color-white);
}
.wordmark span {
  font-style: italic;
  font-weight: 400;
}

.primary-nav {
  display: flex;
  gap: 40px;
}
.primary-nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}
.primary-nav a:hover { color: var(--color-white); }
/* The Book-a-call nav link doubles as the mobile menu's CTA button, so it
   only appears there — on desktop the separate header button covers it. */
.primary-nav .mobile-apply-cta { display: none; }

/* ---------- Mobile nav toggle (hamburger) ----------
   Hidden on desktop. Appears at ≤720px via responsive section below. */
.nav-toggle {
  display: none;
  position: relative;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 100;
}
.nav-toggle-bar {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-toggle-bar:nth-child(1) { top: 11px; }
.nav-toggle-bar:nth-child(2) { top: 17px; }
.nav-toggle-bar:nth-child(3) { top: 23px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  top: 17px;
  transform: rotate(-45deg);
}


/* ---------- 7. Hero ----------
   Base is SOLID navy. The pseudo overlay's gradient starts at the same solid
   navy color, so there's no visible boundary where the photo region begins. */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  padding: 160px var(--container-px) 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Photo panel — right portion of hero. The photo fades against the hero's
   solid navy background via a CSS mask. A uniform navy tint overlay coats
   the photo so it feels naturally connected to the surrounding navy. */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 40%;
  background-image:
    linear-gradient(rgba(10, 31, 68, 0.22), rgba(10, 31, 68, 0.22)),
    url('images/photos/debate camera photo.jpg');
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 18%,
    rgba(0, 0, 0, 0.55) 32%,
    rgba(0, 0, 0, 0.9) 48%,
    black 60%,
    black 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 18%,
    rgba(0, 0, 0, 0.55) 32%,
    rgba(0, 0, 0, 0.9) 48%,
    black 60%,
    black 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}


/* ---------- 9. Founders ---------- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 8px;
}

/* Crimson-style big rectangular founder card with photo background */
.founder-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background-image: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  background-size: cover;
  background-position: center top;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(10, 31, 68, 0.22);
}

.founder-card.founder-card--photo {
  background-image:
    var(--photo, none),
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  background-size: cover, auto;
  background-position: center top, center;
  background-repeat: no-repeat, no-repeat;
}

/* Dark gradient at the bottom of the card so the overlay text stays readable */
.founder-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 31, 68, 0) 40%,
    rgba(10, 31, 68, 0.55) 70%,
    rgba(10, 31, 68, 0.95) 100%
  );
  pointer-events: none;
}

.founder-card-overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
  color: var(--color-white);
}

.founder-card-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.founder-card-role {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.founder-card-tagline {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 90%;
}


/* ---------- 10. Bridge / pillars ---------- */
.bridge { background: var(--color-white); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 72px;
  margin-top: 24px;
}

.pillar-number {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 36px;
  color: var(--color-navy);
  opacity: 0.38;
  margin-bottom: 12px;
}

.pillar-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  margin-bottom: 14px;
}

.pillar-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
}


/* ---------- Method journey (home: numbered vertical steps) ---------- */
.method-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 56px;
  align-items: center;
  margin-top: 52px;
}

/* overlapping photo cluster on the right */
.method-gallery {
  position: relative;
  min-height: 690px;
}
.method-gallery-card {
  position: absolute;
  width: 234px;
  height: 296px;
  border-radius: 14px;
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
  border: 5px solid var(--color-white);
  box-shadow: 0 22px 48px rgba(10, 31, 68, 0.22);
}
.method-gallery-card:nth-child(1) { top: 0;     left: 0;     transform: rotate(-5deg); z-index: 1; }
.method-gallery-card:nth-child(2) { top: 195px; left: 215px; transform: rotate(4deg);  z-index: 2; }
.method-gallery-card:nth-child(3) { top: 385px; left: 70px;  transform: rotate(-2deg); z-index: 3; }

.method-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 26px;
  padding-bottom: 44px;
}
.method-step:last-child {
  padding-bottom: 0;
}
/* connecting rail — centered on the numbers, running between them */
.method-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 24px;
  transform: translateX(-50%);
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}
.method-step-num {
  width: 48px;
  height: 48px;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: var(--color-navy);
  opacity: 0.55;
}
.method-step-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  margin-bottom: 10px;
}
.method-step-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  max-width: 620px;
}


/* ---------- Parent trust / transparency band (home) ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 24px;
}

.trust-item {
  padding-top: 22px;
  border-top: 2px solid var(--color-navy);
}

.trust-item-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.trust-item-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}


/* ---------- Proof callout card (homepage bridge to about page) ---------- */
.callout-section {
  padding: 0 var(--container-px) var(--section-py);
  background: var(--color-white);
}

.callout-card {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px);
  align-items: stretch;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-white);
  min-height: 340px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  box-shadow: 0 24px 50px rgba(10, 31, 68, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  max-width: var(--max-w);
  margin: 0 auto;
}

.callout-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(10, 31, 68, 0.22);
}

/* Static (non-clickable) variant — used for in-page display cards */
.callout-card.callout-card--static {
  cursor: default;
}
.callout-card.callout-card--static:hover {
  transform: none;
  box-shadow: none;
}

.callout-card-inner {
  padding: 52px 56px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Photo on the side (matches the guarantee card) */
.callout-card-photo {
  min-height: 100%;
  background-image:
    linear-gradient(rgba(10, 31, 68, 0.18), rgba(10, 31, 68, 0.18)),
    var(--photo, none);
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.callout-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
}

.callout-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.callout-sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
}

.callout-cta {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-white);
  border-bottom: 2px solid var(--color-white);
  padding-bottom: 2px;
}


/* ---------- 11. Final CTA ---------- */
.cta-final {
  background:
    radial-gradient(circle at 20% 90%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  color: var(--color-white);
  padding: var(--section-py) var(--container-px);
  text-align: center;
}

.cta-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: #D4A857;
  margin-bottom: 16px;
}

.cta-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 0 auto 40px;
}


/* ---------- 12. Footer ---------- */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px var(--container-px);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}

.footer-brand .wordmark {
  font-size: 22px;
  color: var(--color-white);
  margin-bottom: 6px;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-meta {
  text-align: right;
  font-size: 14px;
  line-height: 1.8;
}
.footer-meta a {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.footer-meta a:hover { border-bottom-color: currentColor; }


/* ============================================================
   INNER PAGES (Method, About, etc.)
   ============================================================ */

/* ---------- Page hero (compact navy bar) ---------- */
.page-hero {
  position: relative;
  min-height: 60vh;
  background-color: var(--color-navy);
  padding: 160px var(--container-px) 96px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Photo panel — right portion of page-hero, same mask + tint as .hero */
.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 40%;
  background-image:
    linear-gradient(rgba(10, 31, 68, 0.22), rgba(10, 31, 68, 0.22)),
    var(--photo, none);
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 18%,
    rgba(0, 0, 0, 0.55) 32%,
    rgba(0, 0, 0, 0.9) 48%,
    black 60%,
    black 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 18%,
    rgba(0, 0, 0, 0.55) 32%,
    rgba(0, 0, 0, 0.9) 48%,
    black 60%,
    black 100%
  );
  z-index: 0;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.page-hero-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--color-white);
  margin-bottom: 22px;
  max-width: 640px;
  text-wrap: balance;
}

.page-hero-sub {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  text-wrap: pretty;
}

/* Active nav link */
.primary-nav a.is-current {
  color: var(--color-white);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 2px;
}


/* ---------- Editorial section (title left, body right) ---------- */
.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px 88px;
  align-items: start;
}

/* 3-column variant — adds a side photo on the right.
   minmax(0, …fr) prevents the photo's intrinsic aspect-ratio from
   overriding our fr proportions. */
.editorial-row--with-photo {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.5fr) minmax(0, 0.9fr);
  gap: 48px 56px;
  align-items: stretch;
}

.editorial-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 10px;
  background-image:
    linear-gradient(rgba(10, 31, 68, 0.12), rgba(10, 31, 68, 0.12)),
    var(--photo, none);
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  box-shadow: 0 16px 36px rgba(10, 31, 68, 0.12);
}

.editorial-left .section-title {
  margin-bottom: 0;
}

.editorial-right .prose {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 24px;
}
.editorial-right .prose:last-child { margin-bottom: 0; }

.inline-link {
  color: var(--color-navy);
  font-weight: 600;
  border-bottom: 1.5px solid var(--color-navy);
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}
.inline-link:hover { opacity: 0.65; }


/* ---------- Navy section (white text inside) ---------- */
.section-navy {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  color: var(--color-white);
}

.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

.section-title--light {
  color: var(--color-white);
}


/* ---------- Project rotator (method "The Project": project ideas rolling up, overlaid on the photo) ---------- */
.project-rotator {
  position: absolute;
  top: 18px;
  left: -24px;
  min-width: 240px;
  background: var(--color-navy);
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: 0 12px 30px rgba(10, 31, 68, 0.34);
}
/* Variant for "The Principle" photo — overhangs the bottom-left edge,
   mirroring "The Project" card (which overhangs the top-left). */
.project-rotator--bottom {
  top: auto;
  bottom: 18px;
}
/* Static (non-rolling) single line inside a rotator card. */
.project-rotator-static {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--color-white);
  white-space: nowrap;
}
.project-rotator-window {
  height: 30px;
  overflow: hidden;
}
.project-rotator-list {
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-rotator-list li {
  height: 30px;
  line-height: 30px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--color-white);
  white-space: nowrap;
}


/* ---------- Phase grid ---------- */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.phase-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 36px 32px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.phase-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.phase-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

/* Subtle muted accent per phase — only on the label, body stays navy */
.phase-label--amber    { color: #D4A857; }
.phase-label--teal     { color: #7BB0AE; }
.phase-label--coral    { color: #D88880; }
.phase-label--lavender { color: #A29ECF; }

.phase-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 8px;
}

.phase-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.phase-body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}


/* ---------- Link cards (quiz + science) ---------- */
.link-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.link-card {
  display: block;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 44px 40px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10, 31, 68, 0.1);
  border-color: var(--color-navy);
}

/* Single-card row — centers the card with a max-width */
.link-cards-grid--single {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
}

/* Horizontal variant — text on left, big framed photo on right */
.link-card--horizontal {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: stretch;
  padding: 28px 28px 28px 36px;
}

/* Featured variant — bigger headline, more presence */
.link-card--featured {
  padding: 40px 40px 40px 48px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}
.link-card--featured .link-card-title {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.link-card--featured .link-card-body {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.link-card--featured .link-card-cta {
  font-size: 16px;
}

.link-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.link-card-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 100%;
  border-radius: 8px;
  background-image:
    linear-gradient(rgba(10, 31, 68, 0.1), rgba(10, 31, 68, 0.1)),
    var(--photo, none);
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.15);
}

.link-card-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.link-card-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.link-card-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.link-card-cta {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
  padding-bottom: 2px;
}


/* ---------- Fit comparison ---------- */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.fit-card {
  position: relative;
  background: var(--color-white);
  border-radius: 12px;
  padding: 44px 40px;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

/* Subtle colored top-stripe accent on each card */
.fit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-navy);
}
.fit-card--no::before {
  background: #C9C3B5;
}

.fit-card--no {
  background: transparent;
  border-style: dashed;
  border-color: #C9C3B5;
}

.fit-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--color-navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}

/* Small badge before the fit-label */
.fit-label::before {
  content: 'Yes';
  display: inline-block;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: 4px;
}

.fit-card--no .fit-label {
  color: var(--color-text-muted);
}
.fit-card--no .fit-label::before {
  content: 'No';
  background: #8C8576;
}

.fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fit-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
}
.fit-list li:last-child { margin-bottom: 0; }
.fit-list li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-navy);
}
.fit-card--yes .fit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 17px;
  color: var(--color-navy);
}
.fit-card--no .fit-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: var(--color-text-muted);
}
.fit-card--no .fit-list li strong {
  color: var(--color-text);
}


/* ---------- Includes grid ---------- */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin-top: 24px;
}

.include-item {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}

.include-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.include-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
}

/* "What's included" — two alternating rows: item list + overlapping photo cluster */
.includes-row {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 56px;
  align-items: center;
  margin-top: 64px;
}
.includes-row--first {
  margin-top: 36px;
}
.includes-row--reverse {
  grid-template-columns: 0.82fr 1fr;
}
.includes-list .include-item {
  padding: 28px 0;
}
.includes-list .include-body {
  font-size: 16px;
}
.includes-group-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.includes-group .includes-grid {
  margin-top: 0;
}
.include-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

/* Guarantee — bigger, more prominent, with a photo. Navy bg makes it pop
   against the white "What's included" section. */
.include-item--guarantee {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  border: none;
  border-radius: 14px;
  padding: 0;
  margin-top: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: stretch;
  box-shadow: 0 24px 50px rgba(10, 31, 68, 0.18);
}

.include-guarantee-text {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.include-guarantee-photo {
  min-height: 100%;
  aspect-ratio: 4 / 3;
  background-image:
    linear-gradient(rgba(10, 31, 68, 0.18), rgba(10, 31, 68, 0.18)),
    var(--photo, none);
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.include-item--guarantee .include-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: #D4A857;
  margin-bottom: 10px;
}
.include-item--guarantee .include-title {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: 14px;
}
.include-item--guarantee .include-body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}


/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 48px 44px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.18);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 44px;
  background: var(--color-cream);
  color: var(--color-navy);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
}
.pricing-card--featured .pricing-badge {
  background: var(--color-white);
}

.pricing-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  margin-bottom: 12px;
}
.pricing-card--featured .pricing-name { color: var(--color-white); }

.pricing-price {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  margin-bottom: 24px;
}
.pricing-card--featured .pricing-price { color: var(--color-white); }

.pricing-currency {
  font-size: 30px;
  font-weight: 600;
  vertical-align: 14px;
  letter-spacing: 0;
}

.pricing-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}
.pricing-card--featured .pricing-meta {
  border-top-color: rgba(255, 255, 255, 0.15);
}
.pricing-meta li {
  font-size: 15px;
  line-height: 1.5;
  padding: 8px 0;
  color: var(--color-text);
}
.pricing-card--featured .pricing-meta li {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  flex-grow: 1;
}
.pricing-card--featured .pricing-note {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-cta {
  align-self: stretch;
  text-align: center;
  justify-content: center;
}
.pricing-card--featured .pricing-cta {
  background: var(--color-white);
  color: var(--color-navy);
}
.pricing-card--featured .pricing-cta:hover {
  background: var(--color-cream);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}
.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-1px);
}

.pricing-scholarship {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--color-text-muted);
}


/* ---------- Price guarantee band (sits right under the cohort cards) ---------- */
.price-guarantee {
  margin-top: 32px;
  padding: 36px 40px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  box-shadow: 0 20px 44px rgba(10, 31, 68, 0.20);
}
.price-guarantee-head {
  margin-bottom: 26px;
}
.price-guarantee-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: #D4A857;
  margin-bottom: 4px;
}
.price-guarantee-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(23px, 2.4vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: 0;
}

/* Two distinct guarantees, side by side, each with a gold number badge */
.guarantee-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.guarantee-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.guarantee-item + .guarantee-item {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  padding-left: 32px;
}
.guarantee-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 168, 87, 0.55);
  color: #D4A857;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: 6px;
}
.guarantee-desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}


/* ---------- Scholarship card (compact, sits after pricing) ---------- */
.scholarship-card {
  display: flex;
  align-items: stretch;
  margin-top: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
}

.scholarship-photo {
  flex-shrink: 0;
  width: 190px;
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
}

.scholarship-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 0 26px 34px;
}

.scholarship-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.scholarship-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 640px;
}

.scholarship-cta {
  flex-shrink: 0;
  align-self: center;
  margin: 0 34px;
}


/* ============================================================
   PHOTO VARIANTS — avatars + evidence tiles
   ------------------------------------------------------------
   Uses stacked backgrounds: photo (via --photo custom prop)
   sits ON TOP of the navy gradient. If the photo file is
   missing, the navy gradient still shows through — no white
   gaps.
   ============================================================ */

/* Photo-backed evidence tile (stacked over navy gradient) */
.evidence-tile.evidence-tile--photo {
  background-image:
    var(--photo, none),
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  background-size: cover, auto;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.evidence-tile.evidence-tile--photo::before {
  background:
    linear-gradient(180deg, rgba(10, 31, 68, 0.0) 35%, rgba(10, 31, 68, 0.85) 100%);
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ---------- Hero anchor link ---------- */
.hero-anchor {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-anchor:hover {
  color: var(--color-white);
  border-bottom-color: var(--color-white);
}


/* ---------- Founder feature block ---------- */
.founder-feature {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px 64px;
  align-items: start;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--color-border);
}
.founder-feature:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 32px;
}

/* Alternating layout — Morris's photo on the right */
.founder-feature--reverse {
  grid-template-columns: 7fr 5fr;
}
.founder-feature--reverse .founder-feature-photo {
  order: 2;
}
.founder-feature--reverse .founder-feature-right {
  order: 1;
}

/* Big rectangular photo (replaces the small circle avatar) */
.founder-feature-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background-image:
    var(--photo, none),
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  background-size: cover, auto;
  background-position: center top, center;
  background-repeat: no-repeat, no-repeat;
  box-shadow: 0 12px 32px rgba(10, 31, 68, 0.12);
}

.founder-feature-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.founder-feature-role {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.founder-feature-tagline {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-navy);
  font-weight: 500;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.founder-feature-right .prose {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
}
.founder-feature-right .prose:last-child { margin-bottom: 0; }
.founder-feature-right .prose em {
  color: var(--color-text-muted);
  font-style: italic;
}


/* ---------- Evidence section ---------- */
.evidence-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 24px 0 64px;
}
.evidence-stats--home {
  grid-template-columns: repeat(3, 1fr);
  margin: 8px 0 56px;
}

.evidence-stat {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 32px 28px;
}

.evidence-stat-number {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  margin-bottom: 14px;
  /* Equal-width digits so the number doesn't shimmer while counting up */
  font-variant-numeric: tabular-nums;
}

.evidence-stat-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-navy);
}
.evidence-stat-label span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ---------- Evidence bento grid ---------- */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 14px;
  margin-bottom: 56px;
}


/* ---------- Evidence filmstrip (button-stepped horizontal strip) ----------
   Fixed-height 2-row horizontal grid: feature photos span both rows,
   smaller ones stack in pairs, forming one continuous stripe. Driven by
   native horizontal scroll (buttons nudge it) so the page's vertical
   scroll is never trapped; touch users can also swipe. */
.evidence-strip {
  position: relative;
  margin-bottom: 56px;
}

.evidence-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* old Edge */
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
}
.evidence-viewport::-webkit-scrollbar { display: none; }  /* Chrome/Safari */

.evidence-track {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-columns: 248px;
  gap: 14px;
  height: 360px;
  width: max-content;
}

.evidence-track .evidence-tile {
  grid-column: auto;
  grid-row: span 1;
  scroll-snap-align: start;
}
.evidence-track .evidence-tile--full { grid-row: span 2; }

.evidence-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(10, 31, 68, 0.14);
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.evidence-nav:hover { background: var(--color-navy); color: var(--color-white); }
.evidence-nav--prev { left: 8px; }
.evidence-nav--next { right: 8px; }
.evidence-nav[disabled] { opacity: 0; pointer-events: none; }

.evidence-tile {
  position: relative;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  /* default size: 2 cols × 1 row */
  grid-column: span 2;
  grid-row: span 1;
}

/* Bento size modifiers */
.evidence-tile--huge        { grid-column: span 4; grid-row: span 2; }
.evidence-tile--tall        { grid-column: span 2; grid-row: span 2; }
.evidence-tile--wide        { grid-column: span 3; grid-row: span 1; }
.evidence-tile--double-wide { grid-column: span 4; grid-row: span 1; }
.evidence-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.evidence-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(10, 31, 68, 0.18);
}

.evidence-tile-label {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: var(--color-white);
  letter-spacing: -0.005em;
}
.evidence-tile-label em {
  display: block;
  margin-top: 4px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  opacity: 0.85;
  font-size: 14px;
}
.evidence-tile--huge .evidence-tile-label {
  font-size: 22px;
  letter-spacing: -0.01em;
}
.evidence-tile--huge .evidence-tile-label em {
  font-size: 16px;
  margin-top: 6px;
}
.evidence-tile--tall .evidence-tile-label {
  font-size: 17px;
}

/* ---------- Evidence categories (tags) ---------- */
.evidence-categories-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--color-navy);
  margin-bottom: 16px;
}

/* ---------- Dual CTA buttons ---------- */
.cta-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-white);
  transform: translateY(-1px);
}


/* ============================================================
   PARTNERS / FUNDERS MARQUEE
   ============================================================ */
.marquee-section {
  background: var(--color-white);
  padding: 56px 0 64px;
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

.marquee {
  position: relative;
  overflow: hidden;
  /* Fade out the left and right edges so logos appear to dissolve in/out */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}

.marquee-logo {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  flex-shrink: 0;
  /* Uniform trailing space on EVERY logo (including the last of each copy)
     so the track is exactly 2x one copy and the -50% loop is seamless.
     Using gap would omit the space after the last item and break alignment. */
  margin-right: 64px;
  /* brightness(0) flattens every logo to a solid silhouette regardless of its
     original colors, so the whole strip reads as one uniform shade (no more
     light-vs-dark logos); opacity sets that shade — 0.72 black on white = ~#474747.
     (EU logo has its yellow stars knocked out to transparent in the PNG so they
     show as the strip background instead of darkening into a solid block.) */
  filter: brightness(0);
  opacity: 0.72;
}

@keyframes marquee-scroll {
  /* Track holds 3 identical copies; move by exactly one copy (a third) then loop. */
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}


/* ============================================================
   REFERENCES / TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  position: relative;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-navy);
  margin-bottom: 28px;
  padding-top: 18px;
  flex-grow: 1;
}
.testimonial-quote::before {
  content: '\201C'; /* curly opening quote */
  position: absolute;
  top: -8px;
  left: -4px;
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: var(--color-navy);
  opacity: 0.25;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background-image:
    var(--photo, none),
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  background-size: cover, auto;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-white);
}

.testimonial-attribution-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testimonial-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--color-navy);
}

.testimonial-role {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--color-text-muted);
}


/* ============================================================
   QUIZ
   ============================================================ */
.quiz-container { max-width: 760px; }

.quiz-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

/* One question block */
.quiz-question {
  margin-bottom: 48px;
}

.quiz-question-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--color-navy);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.quiz-prompt {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  color: var(--color-navy);
  margin-bottom: 18px;
}

.quiz-question textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 16px 18px;
  box-sizing: border-box;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.quiz-question textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  background: var(--color-white);
}

.quiz-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.quiz-word-count {
  font-family: var(--font-sans);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.quiz-word-count.is-short { color: #B86B45; }
.quiz-word-count.is-okay  { color: #1E7A56; }

.quiz-question-status {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-text-muted);
  text-align: right;
}

/* Optional age field */
.quiz-meta-block {
  margin: 56px 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-meta-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-navy);
}
.quiz-meta-optional {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: 6px;
}
.quiz-age-input {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 12px 14px;
  width: 160px;
}
.quiz-age-input:focus {
  outline: none;
  border-color: var(--color-navy);
  background: var(--color-white);
}

/* Privacy notice */
.quiz-privacy {
  margin-bottom: 24px;
  padding: 20px 24px;
  background: var(--color-cream);
  border-left: 3px solid var(--color-navy);
  border-radius: 0 6px 6px 0;
}
.quiz-privacy p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0;
}

/* Consent checkbox */
.quiz-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  cursor: pointer;
  user-select: none;
}
.quiz-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-navy);
  cursor: pointer;
}
.quiz-consent span {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
}

/* Error message */
.quiz-error {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #FBEAEA;
  border: 1px solid #E8B4B4;
  border-radius: 6px;
  font-size: 14px;
  color: #8B2C2C;
}

/* Submit */
.quiz-submit {
  width: 100%;
  justify-content: center;
}
.quiz-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.quiz-submit:disabled:hover {
  background: var(--color-navy);
  transform: none;
  box-shadow: none;
}

.quiz-meta-summary {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ---------- Loading state ---------- */
.quiz-loading-section {
  padding: clamp(96px, 14vw, 160px) var(--container-px);
  text-align: center;
}
.quiz-loading-content {
  max-width: 480px;
  margin: 0 auto;
}
.quiz-loading-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-navy);
  margin: 0 auto 28px;
  animation: quiz-spin 0.9s linear infinite;
}
@keyframes quiz-spin {
  to { transform: rotate(360deg); }
}
.quiz-loading-label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.quiz-loading-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--color-text-muted);
}

/* ---------- Result screen ---------- */
.quiz-result-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.quiz-result-thread p {
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--color-navy);
  margin-bottom: 20px;
}
.quiz-result-thread p:last-child { margin-bottom: 0; }

.quiz-result-questions-block {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.quiz-result-questions-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.quiz-result-questions {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: q;
}
.quiz-result-questions li {
  counter-increment: q;
  position: relative;
  padding: 24px 0 24px 56px;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text);
}
.quiz-result-questions li:last-child { border-bottom: none; }
.quiz-result-questions li::before {
  content: counter(q);
  position: absolute;
  left: 0;
  top: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-result-handoff {
  margin-top: 56px;
  padding: 40px 36px;
  background: var(--color-cream);
  border-radius: 12px;
  text-align: center;
}
.quiz-result-handoff-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-navy);
  margin-bottom: 28px;
}
.quiz-result-restart {
  margin-top: 18px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.quiz-result-restart a {
  color: var(--color-text-muted);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.quiz-result-restart a:hover { border-bottom-color: currentColor; }


/* ============================================================
   APPLY PAGE
   ============================================================ */
.apply-container { max-width: 1100px; }

.apply-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.apply-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 48px 44px;
}

.apply-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin-bottom: 14px;
}

.apply-form-intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.apply-field-hint {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--color-text-muted);
  margin: -4px 0 8px;
}

.apply-field-optional {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: 6px;
}

/* Child row — age stays narrow, school year takes the rest */
.apply-field-row--child {
  grid-template-columns: 120px 1fr;
}

.apply-field {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.apply-field label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-navy);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.apply-field input,
.apply-field textarea,
.apply-field select {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}
.apply-field input:focus,
.apply-field textarea:focus,
.apply-field select:focus {
  outline: none;
  border-color: var(--color-navy);
  background: var(--color-white);
}

/* Native select — custom caret, no OS chrome */
.apply-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%235A6173' stroke-width='1.6' stroke-linecap='round' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.apply-field select:invalid { color: var(--color-text-muted); }

/* Phone field — country picker + number as one unified control */
.phone-field {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.phone-field:focus-within {
  border-color: var(--color-navy);
  background: var(--color-white);
}
.phone-trigger {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  background: none;
  border: none;
  border-right: 1px solid var(--color-border);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text);
  border-radius: 6px 0 0 6px;
}
.phone-trigger:focus-visible { outline: 2px solid var(--color-navy); outline-offset: -2px; }
.phone-flag { font-size: 19px; line-height: 1; }
.phone-dial { font-weight: 500; }
.phone-caret {
  width: 8px; height: 8px; margin-left: 1px;
  border-right: 1.6px solid var(--color-text-muted);
  border-bottom: 1.6px solid var(--color-text-muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.phone-trigger[aria-expanded="true"] .phone-caret { transform: rotate(225deg) translateY(-2px); }
.phone-field > input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  background: none;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text);
}
.phone-field > input:focus { outline: none; }

.phone-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(10, 31, 68, 0.16);
  padding: 8px;
}
.phone-search {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 6px;
}
.phone-search:focus { outline: none; border-color: var(--color-navy); background: var(--color-white); }
.phone-list { list-style: none; margin: 0; padding: 0; max-height: 244px; overflow-y: auto; }
.phone-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
.phone-list li:hover,
.phone-list li.is-active { background: var(--color-cream); }
.phone-list .pl-flag { font-size: 18px; line-height: 1; }
.phone-list .pl-name { flex: 1; color: var(--color-text); }
.phone-list .pl-dial { color: var(--color-text-muted); font-variant-numeric: tabular-nums; }
.phone-list .pl-empty { padding: 14px 10px; color: var(--color-text-muted); font-style: italic; cursor: default; }
.phone-list .pl-empty:hover { background: none; }

.apply-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.apply-form .btn {
  margin-top: 12px;
  width: 100%;
}

.apply-disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
  font-style: italic;
}

/* Side panel */
.apply-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.apply-side-block {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.apply-side-block:last-child { border-bottom: none; }

.apply-side-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.apply-side-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-navy);
  border-bottom: 1.5px solid var(--color-navy);
  padding-bottom: 2px;
}

.apply-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
}
.apply-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
}
.apply-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply-side-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text);
}


/* ============================================================
   13. Responsive
   ============================================================ */
@media (max-width: 960px) {
  .founders-grid    { grid-template-columns: 1fr; gap: 24px; }
  .pillars-grid     { grid-template-columns: 1fr; gap: 48px; }
  .method-layout    { grid-template-columns: 1fr; gap: 0; }
  .method-gallery   { display: none; }
  .includes-row,
  .includes-row--reverse { grid-template-columns: 1fr; gap: 0; }
  .trust-grid       { grid-template-columns: 1fr; gap: 32px; }
  .editorial-row,
  .editorial-row--with-photo { grid-template-columns: 1fr; gap: 24px; }
  .editorial-photo            { max-width: 480px; }
  .apply-grid                 { grid-template-columns: 1fr; gap: 40px; }
  .apply-form                 { padding: 36px 28px; }
  .apply-field-row,
  .apply-field-row--child     { grid-template-columns: 1fr; gap: 18px; }
  .phase-grid       { grid-template-columns: 1fr; }
  .link-cards-grid  { grid-template-columns: 1fr; }
  .fit-grid         { grid-template-columns: 1fr; }
  .includes-grid    { grid-template-columns: 1fr; gap: 0; }
  .include-item--guarantee { grid-template-columns: 1fr; }
  .include-guarantee-photo { min-height: 240px; aspect-ratio: 16/9; }
  .include-guarantee-text  { padding: 36px 32px; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .evidence-track   { height: 300px; grid-auto-columns: 210px; }
  .price-guarantee   { padding: 28px 24px; }
  .guarantee-list    { grid-template-columns: 1fr; gap: 22px; }
  .guarantee-item + .guarantee-item { border-left: none; padding-left: 0; }
  .scholarship-card  { flex-direction: column; align-items: stretch; }
  .scholarship-photo { width: auto; height: 170px; }
  .scholarship-text  { padding: 26px 28px 0; }
  .scholarship-cta   { align-self: flex-start; margin: 16px 28px 28px; }
  .founder-feature,
  .founder-feature--reverse  { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid         { grid-template-columns: 1fr; gap: 20px; }
  .founder-feature--reverse .founder-feature-photo  { order: 0; }
  .founder-feature--reverse .founder-feature-right  { order: 1; }
  .evidence-stats   { grid-template-columns: repeat(2, 1fr); }

  /* Bento collapses to a simpler 2-column grid on tablets */
  .evidence-grid    { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .evidence-tile,
  .evidence-tile--huge,
  .evidence-tile--tall,
  .evidence-tile--wide,
  .evidence-tile--double-wide { grid-column: span 1; grid-row: span 1; }
  .evidence-tile--huge,
  .evidence-tile--double-wide { grid-column: span 2; grid-row: span 1; }
  .evidence-tile--huge        { grid-row: span 2; }
}

@media (max-width: 720px) {
  /* Mobile nav: toggle becomes visible, primary-nav becomes a slide-down overlay */
  .nav-toggle              { display: block; }
  .site-header             { padding: 20px var(--container-px); }
  .site-header .btn        { display: none; } /* hide Apply Now button on mobile — apply link is inside the overlay */

  .primary-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: var(--color-navy-deep);
    transform: translateY(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
    pointer-events: none;
  }
  .primary-nav[data-open="true"] {
    transform: translateY(0);
    pointer-events: auto;
  }
  .primary-nav a {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
  }
  .primary-nav a.is-current {
    border-bottom: 2px solid var(--color-white);
    padding-bottom: 4px;
  }
  /* Apply Now CTA inside the mobile overlay (re-shown; hidden on desktop) */
  .primary-nav .mobile-apply-cta {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 32px;
    background: var(--color-white);
    color: var(--color-navy);
    border-radius: 4px;
    font-size: 16px;
  }
  /* Lock body scroll while menu open */
  body.has-mobile-menu-open { overflow: hidden; }

  .hero                    { min-height: 88vh; padding: 120px 20px 80px; }
  .page-hero               { padding: 120px 20px 72px; }
  .footer-grid             { flex-direction: column; align-items: flex-start; }
  .footer-meta             { text-align: left; }
  .founder-card            { padding: 32px 28px; }
  .avatar                  { width: 80px; height: 80px; font-size: 32px; }
  .phase-card              { padding: 28px 24px; }
  .link-card               { padding: 32px 28px; }
  .link-card--horizontal   { grid-template-columns: 1fr; gap: 24px; padding: 32px 28px; }
  .link-card-photo         { max-width: 320px; aspect-ratio: 4 / 3; }
  .fit-card                { padding: 32px 28px; }
  .pricing-card            { padding: 36px 28px; }
  .pricing-price           { font-size: 44px; }
  .founder-feature-avatar  { width: 112px; height: 112px; font-size: 42px; }
  .founder-feature-name    { font-size: 26px; }
  .evidence-stats          { grid-template-columns: 1fr; }
  .evidence-grid           { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .evidence-tile,
  .evidence-tile--huge,
  .evidence-tile--tall,
  .evidence-tile--wide,
  .evidence-tile--double-wide { grid-column: span 1 !important; grid-row: span 1 !important; }
  .evidence-stat           { padding: 28px 24px; }
  .cta-buttons             { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; margin: 0 auto; }
  .callout-card-inner      { padding: 40px 28px; }
  .callout-card            { grid-template-columns: 1fr; min-height: 0; }
  .callout-card-photo      { min-height: 240px; aspect-ratio: 16 / 9; }
  .founder-card-overlay    { bottom: 24px; left: 24px; right: 24px; }
  .founder-card-name       { font-size: 24px; }
}


/* ============================================================
   QUESTIONS PAGE — FAQ accordion + Ask Navi (chatbot slot)
   ============================================================ */

/* ---------- FAQ accordion (native <details>) ---------- */
.faq-list {
  max-width: 820px;
  margin: 8px auto 0;
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 4px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.4;
  color: var(--color-navy);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--color-navy-light); }

/* Plus / minus icon — the vertical bar collapses when open */
.faq-icon {
  flex: 0 0 auto;
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 5px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }

.faq-answer {
  padding: 0 4px 26px;
  max-width: 680px;
}
.faq-answer p {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ---------- Ask Navi (chatbot slot) ---------- */
.ask-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ask-intro {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.ask-card {
  text-align: left;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(10, 31, 68, 0.08);
  overflow: hidden;
}

.ask-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
}
.ask-avatar {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ask-card-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-navy);
}
.ask-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.ask-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D4A857;
}

.ask-messages {
  padding: 26px 22px;
  min-height: 120px;
}
.ask-message {
  font-size: 16px;
  line-height: 1.6;
  padding: 14px 18px;
  border-radius: 14px;
  max-width: 92%;
}
.ask-message--bot {
  background: var(--color-cream);
  color: var(--color-text);
  border-bottom-left-radius: 4px;
}

.ask-input-row {
  display: flex;
  gap: 10px;
  padding: 16px 22px 22px;
  border-top: 1px solid var(--color-border);
}
.ask-input {
  flex: 1 1 auto;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 14px 16px;
}
.ask-input:disabled { cursor: not-allowed; }
.ask-send { flex: 0 0 auto; }
.ask-send:disabled,
.ask-send:disabled:hover {
  background: var(--color-navy);
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ask-disclaimer {
  margin: -4px 22px 20px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.ask-fallback {
  margin-top: 28px;
  font-size: 15px;
  color: var(--color-text-muted);
}

@media (max-width: 720px) {
  .faq-item summary { font-size: 17px; padding: 20px 2px; gap: 16px; }
  .ask-input-row    { flex-direction: column; }
  .ask-send         { width: 100%; }
  .ask-message      { max-width: 100%; }
}


/* ============================================================
   APPLY — FOCUSED FLOW (one question at a time + booking)
   A full-viewport overlay that takes over after "Continue", so the
   visitor focuses on one question at a time. Driven by apply.js.
   ============================================================ */
.flow {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: var(--color-cream);
  overflow-y: auto;
  display: none;
}
.flow.is-open { display: block; }
body.flow-open { overflow: hidden; }

/* Progress bar — fixed sliver across the very top */
.flow-progress {
  position: sticky;
  top: 0;
  height: 6px;
  background: rgba(10, 31, 68, 0.08);
  z-index: 5;
}
.flow-progress-bar {
  position: relative;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-navy), var(--color-navy-light));
  border-radius: 0 6px 6px 0;
  box-shadow: 0 0 14px rgba(10, 31, 68, 0.35);
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Top bar — back + step counter (aligned to the question column) */
.flow-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 680px;
  padding-top: 22px;
  padding-bottom: 4px;
  min-height: 48px;
}
.flow-back {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 10px 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease, transform 0.15s ease;
}
.flow-back:hover { color: var(--color-navy); transform: translateX(-2px); }
.flow-counter {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--color-text-muted);
}

/* Centered single-column viewport */
.flow-viewport {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px var(--container-px) 96px;
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flow-step { display: none; }
.flow-step.is-active {
  display: flex;
  flex-direction: column;
  animation: flowIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes flowIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.flow-q-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--color-navy);
  margin-bottom: 14px;
}
.flow-q {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  text-wrap: balance;
  margin-bottom: 14px;
}
.flow-q-hint {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.flow-input {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px 20px;
  width: 100%;
  resize: none;
  overflow: hidden;
  min-height: 64px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.flow-input::placeholder { color: var(--color-text-muted); }
.flow-input:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 6px 22px rgba(10, 31, 68, 0.10);
}

.flow-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.flow-actions .btn { min-width: 150px; }
.flow-key-hint {
  font-size: 12.5px;
  color: var(--color-text-muted);
}
.flow-key-hint kbd {
  font-family: var(--font-sans);
  font-size: 11px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 1px 6px;
  color: var(--color-text);
}

/* ---- Booking ---- */
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 28px;
  margin-top: 8px;
}
.booking-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--color-navy);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.booking-tz {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text-muted);
}
.booking-days {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 4px;
}
.day-chip {
  font-family: var(--font-sans);
  text-align: left;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.day-chip:hover { border-color: var(--color-navy); }
.day-chip .day-dow { font-weight: 600; font-size: 15px; color: var(--color-text); }
.day-chip .day-date { font-size: 13px; color: var(--color-text-muted); }
.day-chip.is-selected {
  background: var(--color-navy);
  border-color: var(--color-navy);
}
.day-chip.is-selected .day-dow,
.day-chip.is-selected .day-date { color: var(--color-white); }

.booking-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
  align-content: start;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 4px;
}
.slot-chip {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 8px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.slot-chip:hover { border-color: var(--color-navy); }
.slot-chip.is-selected {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}
.booking-empty {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--color-text-muted);
  grid-column: 1 / -1;
}

.flow-error {
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: #B23B3B;
}

/* ---- Done ---- */
.flow-step--done { text-align: center; align-items: center; }
.flow-done { max-width: 480px; margin: 0 auto; }
.flow-done-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-done .flow-q { margin-bottom: 12px; }
.flow-done-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 32px;
}

@media (max-width: 720px) {
  .booking { grid-template-columns: 1fr; gap: 24px; }
  .booking-days { max-height: 200px; flex-direction: row; flex-wrap: nowrap; overflow-x: auto; }
  .day-chip { flex: 0 0 auto; flex-direction: column; align-items: flex-start; gap: 2px; }
  .flow-actions .btn { width: 100%; }
}
