/* ============================================
   ASHERMAN'S COMPASS — Design Tokens & Styles
   Palette: Warm blush rose, deep plum, sage green
   Tone: Warm, trustworthy, feminine strength
   ============================================ */

:root, [data-theme='light'] {
  /* Type scale — fluid */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* 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;
  --space-32: 8rem;

  /* Surfaces — warm cream */
  --color-bg:              #faf8f5;
  --color-surface:         #fdf9f6;
  --color-surface-2:       #fff;
  --color-surface-offset:  #f3ede8;
  --color-surface-offset-2:#ece4dd;
  --color-divider:         #ddd4cc;
  --color-border:          #d4c9c0;

  /* Text */
  --color-text:         #2a1f1a;
  --color-text-muted:   #7a6b64;
  --color-text-faint:   #b9aaa3;
  --color-text-inverse: #fdf9f6;

  /* Primary — Deep Rose */
  --color-primary:          #9e3a5e;
  --color-primary-hover:    #7d2d4a;
  --color-primary-active:   #5f1f36;
  --color-primary-highlight:#f0dae5;

  /* Secondary — Warm Sage */
  --color-secondary:        #5a7a64;
  --color-secondary-hover:  #445d4c;
  --color-secondary-highlight: #d8e8dd;

  /* Accent — Blush */
  --color-accent:           #e8a4bc;
  --color-accent-light:     #f9edf3;

  /* Plum (deep headers, etc) */
  --color-plum:             #3d1f35;

  /* Success / warning */
  --color-success:    #437a22;
  --color-warning:    #964219;
  --color-error:      #a12c3f;

  /* Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(0.2 0.03 10 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.2 0.03 10 / 0.1);
  --shadow-lg: 0 12px 40px oklch(0.2 0.03 10 / 0.14);

  /* Content widths */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:   1200px;

  /* Transition */
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Work Sans', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-bg:              #1a1018;
  --color-surface:         #201520;
  --color-surface-2:       #261b26;
  --color-surface-offset:  #1e141c;
  --color-surface-offset-2:#241a24;
  --color-surface-dynamic: #2e222e;
  --color-divider:         #302230;
  --color-border:          #42303f;
  --color-text:            #e8dce4;
  --color-text-muted:      #9a8896;
  --color-text-faint:      #5e4d5b;
  --color-text-inverse:    #1a1018;
  --color-primary:          #d4789a;
  --color-primary-hover:    #bf5c82;
  --color-primary-active:   #a44069;
  --color-primary-highlight:#4a2535;
  --color-secondary:        #7aaa86;
  --color-secondary-hover:  #5d8f69;
  --color-secondary-highlight: #1e3525;
  --color-accent:           #c07090;
  --color-accent-light:     #2e1a28;
  --color-plum:             #e8dce4;
  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:              #1a1018;
    --color-surface:         #201520;
    --color-surface-2:       #261b26;
    --color-surface-offset:  #1e141c;
    --color-surface-offset-2:#241a24;
    --color-surface-dynamic: #2e222e;
    --color-divider:         #302230;
    --color-border:          #42303f;
    --color-text:            #e8dce4;
    --color-text-muted:      #9a8896;
    --color-text-faint:      #5e4d5b;
    --color-text-inverse:    #1a1018;
    --color-primary:          #d4789a;
    --color-primary-hover:    #bf5c82;
    --color-primary-active:   #a44069;
    --color-primary-highlight:#4a2535;
    --color-secondary:        #7aaa86;
    --color-secondary-hover:  #5d8f69;
    --color-secondary-highlight: #1e3525;
    --color-accent:           #c07090;
    --color-accent-light:     #2e1a28;
    --color-plum:             #e8dce4;
    --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.3);
    --shadow-md: 0 4px 16px oklch(0 0 0 / 0.4);
    --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.5);
  }
}

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
}
.container--wide {
  max-width: var(--content-wide);
}
.container--narrow {
  max-width: var(--content-narrow);
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--color-bg) 90%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition);
}
.nav--scrolled {
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-8);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-plum);
  white-space: nowrap;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.nav__links a {
  text-decoration: none;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}
.nav__links a:hover { color: var(--color-primary); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  padding: var(--space-2);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: block; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary-highlight);
}
.btn--secondary {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}
.btn--secondary:hover {
  background: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
}
.btn--lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
}
.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

/* ============ HERO ============ */
.hero {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  background: linear-gradient(160deg, var(--color-accent-light) 0%, var(--color-bg) 50%, var(--color-secondary-highlight) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, var(--color-primary-highlight) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-highlight);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-plum);
  line-height: 1.08;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  color: var(--color-primary);
}
.hero__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 52ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.hero__trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text-faint);
}
.hero__image {
  position: relative;
}
.hero__video-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  aspect-ratio: 9/7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-primary-highlight));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-8);
  text-align: center;
}
.hero__play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 32px oklch(from var(--color-primary) l c h / 0.4);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero__play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 48px oklch(from var(--color-primary) l c h / 0.5);
}
.hero__video-label {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-plum);
}
.hero__video-sublabel {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { order: -1; }
  .hero__video-card { aspect-ratio: 16/9; }
}

/* ============ PROOF BAR ============ */
.proof-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-6);
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-10);
}
.proof-stat {
  text-align: center;
}
.proof-stat__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.proof-stat__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ============ SECTIONS ============ */
.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.section--alt {
  background: var(--color-surface);
}
.section--plum {
  background: var(--color-plum);
  color: var(--color-text-inverse);
}
.section--plum .section__title,
.section--plum .section__eyebrow { color: var(--color-accent); }
.section__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-plum);
  line-height: 1.1;
  margin-bottom: var(--space-5);
}
.section__lead {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  max-width: 60ch;
}

/* ============ PROBLEM SECTION ============ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}
.problem-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: box-shadow var(--transition), transform var(--transition);
}
.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.problem-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}
.problem-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.problem-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============ STORY SECTION ============ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.story-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary-highlight), var(--color-accent-light));
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.story-image__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-8);
  text-align: center;
  position: relative;
}
.story-image__label {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-plum);
  line-height: 1.2;
}
.story-image__sublabel {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.story-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-plum);
  line-height: 1.4;
  margin-bottom: var(--space-6);
  position: relative;
  padding-left: var(--space-6);
  border-left: 3px solid var(--color-primary);
}
.story-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.story-sig {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.story-sig-title {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

/* ============ GUIDE CHAPTERS ============ */
.chapters-grid {
  display: grid;
  gap: var(--space-4);
}
.chapter-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: var(--space-5);
  align-items: center;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.chapter-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.chapter-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.chapter-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.chapter-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.chapter-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.chapter-badge--locked {
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.chapter-badge--free {
  background: var(--color-secondary-highlight);
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary-highlight);
}

/* VIDEO PLACEMENT CALLOUT */
.video-callout {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-primary-highlight));
  border: 2px dashed var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-3);
}
.video-callout__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.video-callout__text strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.video-callout__text span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 640px) {
  .chapter-card { grid-template-columns: 2.5rem 1fr; }
  .chapter-badge { display: none; }
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  align-items: start;
}
.pricing-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: var(--color-primary);
  border-width: 2px;
  background: var(--color-surface-2);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-plum);
  margin-bottom: var(--space-2);
}
.pricing-card__tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}
.pricing-card__price {
  margin-bottom: var(--space-6);
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.pricing-card__period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}
.pricing-card__features {
  list-style: none;
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}
.pricing-card__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-secondary-highlight);
  border: 2px solid var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%235a7a64' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
}
.pricing-card__cta { width: 100%; justify-content: center; }

/* Tracker card */
.pricing-card--tracker {
  background: linear-gradient(135deg, var(--color-secondary-highlight), var(--color-accent-light));
  border-color: var(--color-secondary);
}
.pricing-card--tracker .pricing-card__amount {
  color: var(--color-secondary);
}
.pricing-card--tracker .btn--primary {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.pricing-card--tracker .btn--primary:hover {
  background: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: var(--text-base);
}
.testimonial-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.testimonial-card__detail {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.testimonial-video-card {
  background: var(--color-primary-highlight);
  border: 2px dashed var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  text-align: center;
  min-height: 200px;
}
.testimonial-video-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
}
.testimonial-video-card__sub {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============ FAQ ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  text-align: left;
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-text-muted);
}
.faq-item.open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__answer {
  display: none;
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-item__answer { display: block; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-plum), #5a1540);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-10), 6vw, var(--space-16));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(232,164,188,0.15), transparent 70%);
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-4);
  position: relative;
}
.cta-banner__text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  position: relative;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--color-plum);
  color: rgba(255,255,255,0.6);
  padding-block: var(--space-12);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
  margin-bottom: var(--space-3);
}
.footer__brand-desc {
  font-size: var(--text-sm);
  line-height: 1.65;
  max-width: 36ch;
}
.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-4);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}
.footer__links a {
  text-decoration: none;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}
.footer__links a:hover { color: var(--color-accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
}
.footer__disclaimer {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  max-width: 70ch;
  line-height: 1.5;
  margin-top: var(--space-4);
}

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

/* ============ DARK TOGGLE ============ */
.theme-toggle {
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-2);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
}
.theme-toggle:hover { color: var(--color-primary); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
.fade-up--delay-1 { animation-delay: 0.1s; }
.fade-up--delay-2 { animation-delay: 0.2s; }
.fade-up--delay-3 { animation-delay: 0.3s; }

/* ============ TRACKER PAGE ============ */
.tracker-hero {
  background: linear-gradient(160deg, var(--color-secondary-highlight) 0%, var(--color-bg) 60%);
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}
.tracker-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-10);
}
.tracker-feature {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
}
.tracker-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-secondary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-4);
  color: var(--color-secondary);
}
.tracker-feature__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.tracker-feature__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============ MOBILE NAV DRAWER ============ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 200;
  flex-direction: column;
  padding: var(--space-8);
}
.mobile-nav.open { display: flex; }
.mobile-nav__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--color-text);
  padding: var(--space-2);
  cursor: pointer;
  margin-bottom: var(--space-8);
}
.mobile-nav__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.mobile-nav__links a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
}
.mobile-nav__links a:hover { color: var(--color-primary); }

/* ============ SCROLL REVEALS ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   THE COMPASS FUND
═══════════════════════════════════════════════════════════ */

.compass-fund-section {
  background: linear-gradient(135deg, var(--color-plum) 0%, #5a2347 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.compass-fund-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,164,188,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.fund-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .fund-inner { grid-template-columns: 1fr; gap: var(--space-10); }
}

/* Left copy */
.fund-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: var(--space-3) 0 var(--space-5);
}

.compass-fund-section .section__eyebrow {
  color: var(--color-blush);
  opacity: 1;
}

.fund-lead {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-4);
}

.fund-body {
  font-size: var(--text-base);
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-6);
}

.fund-pledge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-blush);
  letter-spacing: 0.01em;
}

/* Right counter card */
.fund-counter-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.fund-counter-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-8) var(--space-7);
  backdrop-filter: blur(8px);
}

.fund-counter-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-blush);
  margin-bottom: var(--space-2);
}

.fund-counter-amount {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-1);
}

.fund-counter-sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-6);
}

/* Progress bar */
.fund-bar-track {
  height: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: var(--space-2);
  margin-top: var(--space-2);
}

.fund-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-blush), #fff);
  border-radius: 99px;
  width: 0%;
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fund-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-6);
}

/* Stats row */
.fund-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.fund-stat__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-1);
}

.fund-stat__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.fund-counter-note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  text-align: center;
}

/* Pricing card fund note */
.pricing-fund-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  margin-top: var(--space-3);
  opacity: 0.85;
}

.pricing-card--featured .pricing-fund-note {
  color: rgba(255,255,255,0.8);
}
