/* ============================================
   DESIGN TOKENS (Finley Reads Design System)
   ============================================ */
:root {
  /* Colors */
  --color-navy: #0F2B3C;
  --color-teal: #0D9488;
  --color-teal-hover: #0B7F74;
  --color-teal-active: #097A6F;
  --color-teal-light: rgba(13, 148, 136, 0.07);
  --color-teal-medium: rgba(13, 148, 136, 0.12);
  --color-coral: #E8614D;
  --color-coral-hover: #D4553F;
  --color-coral-active: #C04A36;
  --color-coral-light: rgba(232, 97, 77, 0.08);
  --color-warm-white: #FBF8F5;
  --color-white: #FFFFFF;
  --color-light-gray: #F3F5F7;
  --color-border: #E5EBF0;
  --color-navy-surface: #143548;
  --color-navy-raised: #183E54;

  /* Text */
  --color-text-primary: #0F2B3C;
  --color-text-body: rgba(15, 43, 60, 0.90);
  --color-text-secondary: rgba(15, 43, 60, 0.65);
  --color-text-tertiary: rgba(15, 43, 60, 0.45);
  --color-text-inverse: #FFFFFF;
  --color-text-inverse-body: rgba(255, 255, 255, 0.80);
  --color-text-inverse-secondary: rgba(255, 255, 255, 0.50);
  --color-success: #16A34A;
  --color-warning: #D97706;
  --color-error: #DC2626;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', 'Nunito', 'Helvetica Neue', sans-serif;
  --font-body: 'General Sans', 'Inter', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --text-hero: clamp(2.5rem, 1.5rem + 4vw, 4rem);
  --text-section: clamp(1.75rem, 1.25rem + 2vw, 2.75rem);
  --text-card: clamp(1.25rem, 1rem + 1vw, 1.5rem);
  --text-subhead: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --text-body: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-small: 0.875rem;
  --text-micro: 0.75rem;
  --text-eyebrow: 0.8125rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radius */
  --radius-micro: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 43, 60, 0.06), 0 1px 2px rgba(15, 43, 60, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 43, 60, 0.08), 0 2px 4px rgba(15, 43, 60, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 43, 60, 0.12), 0 4px 8px rgba(15, 43, 60, 0.06);
  --shadow-teal-glow: 0 4px 20px rgba(13, 148, 136, 0.20);
  --shadow-coral-glow: 0 4px 20px rgba(232, 97, 77, 0.20);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 150ms var(--ease-out);
  --transition-base: 200ms var(--ease-out);
  --transition-slow: 400ms var(--ease-out);
}


/* ============================================
   BASE RESET & GLOBALS
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-body);
  background-color: var(--color-warm-white);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; max-width: 68ch; }

::selection {
  background: rgba(13, 148, 136, 0.25);
  color: var(--color-text-primary);
}

:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a, button, [role="button"] {
  transition: color var(--transition-fast),
              background var(--transition-fast),
              border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast),
              opacity var(--transition-fast);
}

button { cursor: pointer; background: none; border: none; }

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


/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.text-teal { color: var(--color-teal); }


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 43, 60, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 64px;
  transition: box-shadow var(--transition-base);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--color-white);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
}

.nav__dropdown-trigger svg {
  transition: transform var(--transition-fast);
}

.nav__dropdown-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: var(--space-2);
  background: var(--color-navy-raised);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-trigger[aria-expanded="true"] + .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown-item {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.nav__dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__signin {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  white-space: nowrap;
}

.nav__signin:hover { color: var(--color-white); }

/* Nav CTA */
.btn--nav {
  padding: 10px 20px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 64px;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: calc(100dvh - 64px);
  background: var(--color-navy);
  padding: var(--space-8) var(--space-6);
  flex-direction: column;
  gap: var(--space-4);
  transform: translateX(100%);
  transition: transform 300ms var(--ease-out);
  z-index: 99;
  overflow-y: auto;
}

.nav__mobile[aria-hidden="false"] {
  transform: translateX(0);
}

.nav__mobile-link {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  padding: var(--space-3) 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__mobile-link:hover { color: var(--color-white); }

@media (max-width: 1023px) {
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
}

@media (max-width: 639px) {
  .nav { height: 56px; }
  .nav__mobile { top: 56px; height: calc(100dvh - 56px); max-width: 100%; }
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--teal {
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn--teal:hover {
  background: var(--color-teal-hover);
  box-shadow: var(--shadow-teal-glow);
  transform: translateY(-1px);
}

.btn--teal:active {
  background: var(--color-teal-active);
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-primary);
  border: 1.5px solid var(--color-border);
}

.btn--ghost:hover {
  background: rgba(13, 148, 136, 0.05);
  border-color: var(--color-teal);
}

.btn--ghost-dark {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.40);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

.btn--full { width: 100%; }

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-teal);
  text-decoration: none;
}

.pill-link:hover { text-decoration: underline; }


/* ============================================
   EYEBROW
   ============================================ */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-4);
}

.eyebrow--light { color: var(--color-teal); }


/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header .eyebrow {
  margin-bottom: var(--space-3);
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-heading--left { text-align: left; }

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


/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--color-warm-white);
  padding: clamp(48px, 8vw, 96px) 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: var(--space-12);
}

.hero__text {
  max-width: 600px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}

.hero__body {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: var(--color-text-body);
  max-width: 540px;
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.trust-badge svg { flex-shrink: 0; }

.trust-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* Hero visual / device frame */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-frame {
  width: 320px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
}

.device-frame__notch {
  width: 120px;
  height: 28px;
  background: var(--color-white);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.device-frame__notch::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--color-border);
  border-radius: 4px;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

/* App mockup */
.app-mockup {
  padding: 0;
}

.app-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.app-mockup__back { cursor: pointer; }

.app-mockup__level {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.app-mockup__progress-ring {
  position: relative;
  width: 28px;
  height: 28px;
}

.app-mockup__progress-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: var(--color-teal);
}

.app-mockup__content {
  padding: var(--space-4);
}

.app-mockup__illustration {
  margin-bottom: var(--space-4);
}

.app-mockup__scene {
  position: relative;
  height: 100px;
  background: #DDEFFA;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.app-mockup__sun {
  position: absolute;
  top: 12px;
  right: 20px;
  width: 24px;
  height: 24px;
  background: #E8614D;
  border-radius: 50%;
}

.app-mockup__cloud {
  position: absolute;
  background: white;
  border-radius: 20px;
  height: 12px;
}

.app-mockup__cloud--1 { top: 18px; left: 20px; width: 40px; }
.app-mockup__cloud--2 { top: 30px; left: 55px; width: 30px; }

.app-mockup__tree {
  position: absolute;
  bottom: 0;
}

.app-mockup__tree--1 {
  left: 30px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 40px solid #0B7F74;
}

.app-mockup__tree--2 {
  right: 40px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 32px solid #0D9488;
}

.app-mockup__ground {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 16px;
  background: #0B7F74;
  border-radius: 0;
}

.app-mockup__story {
  background: rgba(13, 148, 136, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-4);
}

.app-mockup__story-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-primary);
  max-width: none;
}

.app-mockup__highlight {
  background: rgba(13, 148, 136, 0.15);
  color: var(--color-teal);
  font-weight: 600;
  padding: 1px 3px;
  border-radius: 3px;
}

.app-mockup__phonics-bar {
  margin-bottom: var(--space-3);
}

.app-mockup__phonics-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.app-mockup__phonics-options {
  display: flex;
  gap: var(--space-2);
}

.app-mockup__phonics-chip {
  flex: 1;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-primary);
  text-align: center;
}

.app-mockup__phonics-chip--active {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

.app-mockup__footer {
  padding: var(--space-3) var(--space-4) var(--space-4);
}

.app-mockup__mascot-bubble {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(13, 148, 136, 0.08);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-3);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-teal);
}

.app-mockup__mini-dolphin {
  font-size: 16px;
  line-height: 1;
}


/* ============================================
   TRUSTED BY ROW
   ============================================ */
.trusted-row {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-warm-white);
}

.trusted-row__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.trusted-row__avatars {
  display: flex;
}

.trusted-row__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: white;
  border: 2px solid var(--color-warm-white);
  margin-left: -8px;
}

.trusted-row__avatar:first-child { margin-left: 0; }

.trusted-row__text {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.trusted-row__stars {
  display: flex;
  gap: 2px;
}

.trusted-row__stars svg { width: 16px; height: 16px; }

.trusted-row__text p {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--color-warm-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.step-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
}

.step-card__number {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(13, 148, 136, 0.10);
  line-height: 1;
}

.step-card__icon {
  margin-bottom: var(--space-5);
}

.step-card__icon svg { width: 40px; height: 40px; }

.step-card__title {
  font-family: var(--font-display);
  font-size: var(--text-card);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.step-card__desc {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Step connectors */
.steps-grid {
  position: relative;
}

@media (min-width: 1024px) {
  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 16px;
    height: 2px;
    background: var(--color-border);
    transform: translateY(-50%);
  }

  .step-card {
    position: relative;
  }
}


/* ============================================
   THE FINLEY METHOD (Alternating Split)
   ============================================ */
.method__row {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--color-warm-white);
}

.method__row--teal-tint {
  background: var(--color-teal-light);
}

.method__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.method__grid--reverse {
  direction: rtl;
}

.method__grid--reverse > * {
  direction: ltr;
}

.method__text .eyebrow { margin-bottom: var(--space-3); }

.method__text .section-heading {
  margin-bottom: var(--space-5);
}

.method__body {
  font-size: var(--text-body);
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

/* Method mockups */
.method-mockup {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.method-mockup__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Adaptive bars mockup */
.method-mockup__bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.method-mockup__bar-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.method-mockup__bar-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.method-mockup__bar {
  height: 8px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.method-mockup__bar-fill {
  height: 100%;
  background: var(--color-teal);
  border-radius: var(--radius-full);
  transition: width 1s ease-out;
}

.method-mockup__note {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding: var(--space-3);
  background: rgba(13, 148, 136, 0.05);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-teal);
}

.method-mockup__note svg { flex-shrink: 0; }

/* Pillars mockup */
.method-mockup__pillars {
  display: flex;
  gap: var(--space-3);
  align-items: flex-end;
  height: 160px;
}

.method-mockup__pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  height: 100%;
  justify-content: flex-end;
}

.method-mockup__pillar-bar {
  width: 100%;
  background: var(--color-teal);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  min-height: 20px;
}

.method-mockup__pillar span {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.2;
}

/* Story mockup */
.method-mockup__story-preview {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  background: rgba(13, 148, 136, 0.04);
  border-radius: var(--radius-md);
}

.method-mockup__story-line {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.method-mockup__word {
  font-size: 16px;
  color: var(--color-text-primary);
  line-height: 1.6;
}

.method-mockup__word--highlight {
  background: rgba(13, 148, 136, 0.12);
  color: var(--color-teal);
  font-weight: 600;
  padding: 1px 4px;
  border-radius: 3px;
}

.method-mockup__audio-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: var(--space-3);
  background: var(--color-navy);
  border-radius: var(--radius-sm);
}

.method-mockup__wave-bar {
  width: 4px;
  background: var(--color-teal);
  border-radius: 2px;
  opacity: 0.7;
}

/* Dashboard mockup */
.method-mockup__dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.method-mockup__stat-card {
  background: rgba(13, 148, 136, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
}

.method-mockup__stat-card--wide {
  grid-column: 1 / -1;
  text-align: left;
}

.method-mockup__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-1);
}

.method-mockup__stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.method-mockup__mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
  margin-top: var(--space-3);
}

.method-mockup__chart-bar {
  flex: 1;
  background: var(--color-teal);
  border-radius: 3px 3px 0 0;
  min-height: 4px;
  opacity: 0.8;
}

.method-mockup__chart-labels {
  display: flex;
  gap: 6px;
  margin-top: var(--space-1);
}

.method-mockup__chart-labels span {
  flex: 1;
  text-align: center;
  font-size: 10px;
  color: var(--color-text-tertiary);
}

.method-mockup__milestone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: rgba(13, 148, 136, 0.08);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-teal);
}


/* ============================================
   STATS / IMPACT
   ============================================ */
.stats {
  background: var(--color-navy);
  padding: clamp(48px, 8vw, 96px) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-teal);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat__unit {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 700;
  color: var(--color-teal);
}

.stat__label {
  display: block;
  font-size: 14px;
  color: var(--color-text-inverse-body);
  margin-top: var(--space-2);
  line-height: 1.5;
}

.stat__source {
  display: block;
  font-size: 12px;
  color: var(--color-text-inverse-secondary);
  margin-top: var(--space-1);
}


/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--color-navy);
  padding: clamp(48px, 8vw, 96px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--color-teal);
  opacity: 0.4;
}

.section-header--dark {
  color: var(--color-white);
}

.pricing__subtitle {
  font-size: var(--text-body);
  color: var(--color-text-inverse-body);
  margin-top: var(--space-3);
  max-width: 100%;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.pricing-card {
  background: var(--color-navy-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-top: 3px solid var(--color-teal);
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.15);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-teal);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: var(--space-6);
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.pricing-card__period {
  font-size: 14px;
  color: var(--color-text-inverse-secondary);
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--color-text-inverse-body);
  line-height: 1.5;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  flex-grow: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 14px;
  color: var(--color-text-inverse-body);
  max-width: none;
}

.pricing-card__features li svg { flex-shrink: 0; margin-top: 1px; }

.pricing-card__trial {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-inverse-secondary);
  margin-top: var(--space-3);
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--color-warm-white);
  padding: clamp(48px, 8vw, 96px) 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

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

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-5);
}

.testimonial-card__quote {
  font-size: var(--text-body);
  font-style: italic;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  flex-grow: 1;
  border: none;
  padding: 0;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.testimonial-card__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.testimonial-card__role {
  display: block;
  font-size: 13px;
  color: var(--color-text-secondary);
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--color-warm-white);
  padding: clamp(48px, 8vw, 96px) 0;
}

.faq__accordion {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.faq__question:hover {
  background: rgba(13, 148, 136, 0.03);
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--color-text-secondary);
  transition: transform 250ms ease-out;
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease-out;
}

.faq__answer p {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-body);
  color: var(--color-text-body);
  line-height: 1.6;
}

.faq__contact {
  text-align: center;
  margin-top: var(--space-8);
  font-size: var(--text-body);
  color: var(--color-text-secondary);
}


/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--color-navy);
  padding: clamp(64px, 10vw, 120px) 0;
  text-align: center;
}

.final-cta__content {
  max-width: 640px;
  margin: 0 auto;
}

.final-cta__headline {
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.final-cta__body {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: var(--color-text-inverse-body);
  margin-bottom: var(--space-8);
  max-width: 100%;
}

.final-cta__trust {
  font-size: 14px;
  color: var(--color-text-inverse-secondary);
  margin-top: var(--space-4);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-navy);
  padding: var(--space-12) 0 var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  margin-bottom: var(--space-4);
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: lowercase;
}

.dot-coral {
  display: inline-block;
  width: 0.22em;
  height: 0.22em;
  border-radius: 50%;
  background: var(--color-coral);
  margin-left: 0.04em;
  vertical-align: baseline;
  position: relative;
  top: -0.15em;
  font-size: 0;
  color: transparent;
}

.footer__tagline {
  font-size: 14px;
  color: var(--color-text-inverse-body);
  line-height: 1.6;
  max-width: 280px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.footer__link {
  font-size: 14px;
  color: var(--color-text-inverse-body);
  text-decoration: none;
}

.footer__link:hover { color: var(--color-white); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-6);
}

.footer__bottom p {
  font-size: 12px;
  color: var(--color-text-inverse-secondary);
  max-width: none;
}


/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   RESPONSIVE — TABLET (640-1023px)
   ============================================ */
@media (max-width: 1023px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .method__grid {
    gap: var(--space-8);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid .step-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__grid .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}


/* ============================================
   RESPONSIVE — MOBILE (< 640px)
   ============================================ */
@media (max-width: 639px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero__visual {
    order: -1;
  }

  .device-frame {
    width: 280px;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn { width: 100%; }

  .trust-badges {
    gap: var(--space-4);
  }

  .trust-badge {
    flex: 0 0 calc(50% - var(--space-2));
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid .step-card:last-child {
    max-width: 100%;
  }

  .method__grid,
  .method__grid--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    direction: ltr;
  }

  .method__grid--reverse .method__visual {
    order: -1;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid .pricing-card:last-child {
    max-width: 100%;
  }

  .pricing-card--featured {
    transform: none;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid .testimonial-card:last-child {
    max-width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .btn--full { width: 100%; }

  .section-heading {
    font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  }

  .method-mockup__pillars {
    height: 120px;
  }

  .method-mockup__pillar span {
    font-size: 9px;
  }
}

/* ============================================
   SECONDARY PAGE TEMPLATE
   ============================================ */
.hero__photo,
.method__image {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.hero__photo {
  display: block;
}

.page {
  background: var(--color-warm-white);
}

.page-hero {
  padding: clamp(48px, 8vw, 96px) 0;
}

.page-hero--light {
  background: var(--color-warm-white);
}

.page-hero--dark {
  background: var(--color-navy);
}

.narrow {
  max-width: 800px;
}

.page-title {
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

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

.page-lead {
  color: var(--color-text-body);
  max-width: 68ch;
}

.page-lead--light {
  color: var(--color-text-inverse-body);
}

.content-section {
  padding: clamp(48px, 8vw, 96px) 0;
}

.content-section--tint {
  background: var(--color-teal-light);
}

.prose-block h2,
.policy-content h2,
.policy-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
  margin-top: var(--space-12);
}

.prose-block h2:first-child,
.policy-content h2:first-child {
  margin-top: 0;
}

.prose-block p,
.policy-content p,
.policy-content li,
.policy-content td,
.policy-content th {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-body);
}

.editorial-image,
.founder-image {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-6);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: var(--space-10);
  align-items: start;
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-6);
}

.policy-content th,
.policy-content td {
  border: 1px solid var(--color-border);
  padding: 10px 12px;
  vertical-align: top;
}

.policy-content ul,
.policy-content ol {
  margin-left: 1.25rem;
  margin-bottom: var(--space-4);
}

/* Quiz wrapper */
.quiz-shell {
  max-width: 760px;
  margin: 0 auto;
}

.quiz-title {
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.quiz-subtitle {
  margin-top: var(--space-2);
  color: var(--color-text-secondary);
}

.quiz-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--space-2);
}

.progress-bar-track {
  height: 8px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--color-border);
}

.progress-fill {
  height: 100%;
  background: var(--color-teal);
  border-radius: var(--radius-full);
  transition: width 250ms ease-out;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  .hero__ctas .btn,
  .btn--full {
    width: 100%;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}
