/* ============================================
   KASSY WELLNESS - GLOBAL STYLESHEET
   Scientific Serenity Design System v3.0
   ============================================ */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* All Round Gothic - Custom font loaded via @font-face */
@font-face {
  font-family: 'All Round Gothic';
  src: url('/fonts/all-round-gothic-book.woff2') format('woff2'),
       url('/fonts/all-round-gothic-book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'All Round Gothic';
  src: url('/fonts/all-round-gothic-book.woff2') format('woff2'),
       url('/fonts/all-round-gothic-book.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* --- CSS CUSTOM PROPERTIES (Design Tokens) --- */
:root {
  /* Brand Colors */
  --emerald: #2D6A4F;
  --emerald-dark: #1B4332;
  --emerald-light: #40916C;
  --coral: #E07A5F;
  --coral-dark: #D4654E;
  --coral-light: #F4A582;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --black: #000000;

  /* RGB Channels (for rgba() usage — change once, update everywhere) */
  --emerald-rgb: 45, 106, 79;
  --emerald-dark-rgb: 27, 67, 50;
  --coral-rgb: 224, 122, 95;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;

  /* Fonts */
  --font-heading: 'All Round Gothic', 'All Round Gothic Regular', 'Trebuchet MS', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-mono: 'SF Mono', 'Monaco', 'Courier New', monospace;

  /* Spacing Scale */
  --container-max: 1280px;
  --container-wide: 1440px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 10rem;
  --space-7xl: 12rem;

  /* Section Padding (consistent vertical rhythm) */
  --section-padding: 5rem;
  --section-padding-lg: 8rem;
  --section-padding-xl: 10rem;

  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.7s ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(var(--black-rgb), 0.05);
  --shadow-md: 0 4px 6px -1px rgba(var(--black-rgb), 0.1);
  --shadow-lg: 0 10px 40px -10px rgba(var(--emerald-rgb), 0.08);
  --shadow-xl: 0 20px 60px -15px rgba(var(--emerald-rgb), 0.08);
  --shadow-2xl: 0 25px 50px -12px rgba(var(--black-rgb), 0.15);
  --shadow-hero-img: 0 30px 80px -20px rgba(var(--emerald-rgb), 0.2);

  /* Border radius scale */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 3rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--emerald);
  background-color: var(--cream);
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- UTILITY CLASSES --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.1;
  color: var(--emerald);
}

.heading-hero {
  font-size: clamp(3rem, 8vw, 10rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
  font-weight: 300;
}

.heading-xl {
  font-size: clamp(2.5rem, 5vw, 7rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 5rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.heading-md {
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.2;
}

.heading-sm {
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.3;
}

.text-xl {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  line-height: 1.6;
}

.text-lg {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.7;
}

.text-base {
  font-size: 1rem;
  line-height: 1.7;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Mono Label */
.mono-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
}

.mono-label-sm {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

/* Text Colors */
.text-emerald { color: var(--emerald); }
.text-coral { color: var(--coral); }
.text-white { color: var(--white); }
.text-emerald-60 { color: rgba(45,106,79,0.6); }
.text-emerald-40 { color: rgba(45,106,79,0.4); }
.text-emerald-30 { color: rgba(45,106,79,0.3); }
.text-white-60 { color: rgba(255,255,255,0.6); }
.text-white-40 { color: rgba(255,255,255,0.4); }
.text-white-70 { color: rgba(255,255,255,0.7); }
.text-white-80 { color: rgba(255,255,255,0.8); }

/* Font Styles */
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.no-italic { font-style: normal; }
em, i { font-style: normal; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.3em; }

/* --- BACKGROUNDS --- */
.bg-cream { background-color: var(--cream); }
.bg-white { background-color: var(--white); }
.bg-emerald { background-color: var(--emerald); }
.bg-coral { background-color: var(--coral); }

/* --- LAYOUT HELPERS --- */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.grid-3-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-4-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .grid-2-col { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3-col { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-2-col { gap: 5rem; }
  .grid-3-col { gap: 3rem; }
  .grid-4-col { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
  .container { padding: 0 3rem; }
}

/* --- HEADER / NAVIGATION --- */
.header {
  position: fixed;
  top: 1rem;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 1rem;
}

.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
}

.header-bar {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(45,106,79,0.05);
  padding: 0 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 1.25rem;
  transition: opacity var(--transition-base);
}

.header-logo:hover img {
  opacity: 0.7;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--emerald);
  transition: color var(--transition-base);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--coral);
}

.header-cta {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--white);
  background: var(--coral);
  padding: 0.625rem 1.75rem;
  border-radius: 9999px;
  transition: background var(--transition-base);
  display: none;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--coral-dark);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  color: var(--emerald);
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 1024px) {
  .header {
    top: 2.5rem;
    padding: 0 3rem;
  }
  .header-bar {
    border-radius: 9999px;
    padding: 0 3rem;
    height: 6rem;
  }
  .header-logo img { height: 1.75rem; }
  .header-nav { display: flex; }
  .header-cta { display: block; }
  .mobile-menu-btn { display: none; }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--emerald-dark);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(45,106,79,0.3);
  color: var(--emerald);
}

.btn-secondary:hover {
  border-color: var(--emerald);
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
}

.btn-coral:hover {
  background: var(--coral-dark);
}

.btn-lg {
  padding: 1.5rem 3rem;
  font-size: 0.75rem;
}

/* --- SECTION TITLE COMPONENT --- */
.section-title {
  margin-bottom: 3rem;
  max-width: 56rem;
}

.section-title-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-title-index {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  border: 1px solid #E07A5F;
  color: #E07A5F;
  letter-spacing: 0.1em;
}

.section-title-index.light {
  border-color: #E07A5F;
  color: #E07A5F;
}

.section-title-subtitle {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--coral);
}

.section-title-subtitle.light {
  color: rgba(255,255,255,0.7);
}

.section-title h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: rgba(45, 106, 79, 0.55);
  font-weight: 300;
  line-height: 1.75;
  max-width: 38rem;
  margin-top: 1.25rem;
}
.section-subtitle.light {
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 1024px) {
  .section-title { margin-bottom: 6rem; }
  .section-title-meta { gap: 1.5rem; margin-bottom: 2.5rem; }
}

/* --- TAG / PILL COMPONENT --- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border-radius: 9999px;
  border: 1px solid rgba(45,106,79,0.1);
  box-shadow: var(--shadow-sm);
}

.tag-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 2s infinite;
}

.tag-text {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--emerald);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* --- CARD COMPONENTS --- */
.card {
  background: var(--white);
  border: 1px solid rgba(45,106,79,0.05);
  border-radius: 2.5rem;
  padding: 2rem;
  transition: all var(--transition-slow);
}

.card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(45,106,79,0.1);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.card-icon.emerald-bg {
  background: var(--emerald);
}

.card-icon.emerald-bg svg {
  color: var(--white);
  width: 1.5rem;
  height: 1.5rem;
}

.card-tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--coral);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.card p {
  color: rgba(45,106,79,0.6);
  line-height: 1.7;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .card { padding: 2.5rem; }
  .card-icon { width: 4rem; height: 4rem; margin-bottom: 2.5rem; }
  .card h3 { font-size: 1.5rem; }
  .card p { font-size: 1rem; }
}

/* --- ROUNDED IMAGE --- */
.rounded-image {
  border-radius: 2.5rem;
  overflow: hidden;
}

.rounded-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease;
}

.rounded-image-grayscale img {
  filter: grayscale(100%);
}

.rounded-image-grayscale:hover img {
  filter: grayscale(0%);
}

@media (min-width: 1024px) {
  .rounded-image { border-radius: 4rem; }
}

/* --- DIVIDER LINE --- */
.divider {
  height: 1px;
  background: rgba(45,106,79,0.1);
}

.divider-coral {
  height: 1px;
  background: var(--coral);
  width: 3rem;
}

.divider-white {
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* ============================================
   HERO SECTION — Editorial
   ============================================ */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  padding: 10rem 0 4rem;
}
@media (min-width: 1024px) {
  .hero {
    padding: 12rem 0 5rem;
  }
}

/* ---- Row 1: Headline + Aside ---- */
.hero-top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .hero-top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3.5rem;
  }
}

/* ---- Headline Block ---- */
.hero-headline {
  flex-shrink: 0;
}
.hero-headline .tag {
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--emerald);
  line-height: 0.92;
}

/* ---- Aside Block ---- */
.hero-aside {
  max-width: 24rem;
}
@media (min-width: 768px) {
  .hero-aside {
    padding-bottom: 0.5rem;
  }
}
.hero-aside p {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: rgba(45, 106, 79, 0.5);
  font-weight: 300;
  line-height: 1.8;
  border-left: 1px solid rgba(224, 122, 95, 0.3);
  padding-left: 1.75rem;
  margin-bottom: 2rem;
}
.hero-aside .btn {
  white-space: nowrap;
}

/* ---- Row 2: Cinematic Image ---- */
.hero-cinema {
  position: relative;
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-cinema {
    border-radius: 2.5rem;
  }
}
.hero-cinema img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
@media (min-width: 768px) {
  .hero-cinema img {
    height: 60vh;
  }
}
@media (min-width: 1280px) {
  .hero-cinema img {
    height: 70vh;
  }
}

/* ---- Floating Stats Bar ---- */
.hero-stats {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(27, 67, 50, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .hero-stats {
    bottom: 1.5rem;
    left: auto;
    right: 1.5rem;
    width: auto;
    max-width: 28rem;
    padding: 1.5rem 2.5rem;
    gap: 2rem;
    border-radius: 1.5rem;
  }
}
.hero-stat {
  text-align: center;
  flex: 1;
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  color: var(--coral);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: block;
}
.hero-stat-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ============================================
   WHY PRECISION SECTION (Icon Grid)
   ============================================ */
.section-precision {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.section-precision::before,
.section-precision::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(45,106,79,0.1), transparent);
}

.section-precision::before { top: 0; }
.section-precision::after { bottom: 0; }

.precision-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  color: var(--emerald);
  line-height: 1.3;
}

.precision-cta-box {
  margin-top: 6rem;
  padding: 3rem;
  background: var(--emerald);
  border-radius: 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.precision-cta-box .tag {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.precision-cta-box .tag-text {
  color: rgba(255,255,255,0.6);
}

.precision-cta-quote {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  line-height: 1.3;
  font-weight: 300;
  font-style: normal;
  max-width: 42rem;
}

.precision-cta-icon {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 2rem auto 0;
}

.precision-cta-icon-inner {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.precision-cta-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--white);
}

@media (min-width: 1024px) {
  .section-precision { padding: 12rem 0; }
  .precision-cta-box {
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 3rem;
  }
  .precision-cta-icon {
    margin: 0;
  }
}

/* ============================================
   FRAMEWORK SECTION (3 Phases - Dark)
   ============================================ */
.section-framework {
  padding: 5rem 0;
  background: var(--emerald);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

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

.framework-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2.5rem;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}

.framework-phase {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  transition: background var(--transition-slow);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.framework-phase:last-child {
  border-bottom: none;
}

.framework-phase:hover {
  background: rgba(255,255,255,0.05);
}

.framework-phase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.framework-phase-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  color: var(--coral);
}

.framework-phase-code {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}

.framework-phase h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.framework-phase p {
  opacity: 0.4;
  line-height: 1.7;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
}

.framework-phase-footer {
  margin-top: 3rem;
  position: relative;
}

.framework-phase-line {
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.1);
  position: relative;
}

.framework-phase-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--coral);
  transition: width var(--transition-slower);
}
.framework-phase:hover .framework-phase-line::after {
  width: 100%;
}

.framework-phase-footer-meta {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.framework-phase-footer-meta span {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: rgba(255,255,255,0.2);
}

@media (min-width: 768px) {
  .framework-grid { grid-template-columns: repeat(3, 1fr); }
  .framework-phase {
    padding: 3rem;
    min-height: 450px;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .framework-phase:last-child { border-right: none; }
}

@media (min-width: 1024px) {
  .section-framework { padding: 10rem 0; }
  .framework-grid { border-radius: 3rem; }
  .framework-phase { padding: 4rem; }
}

/* ============================================
   PATH SELECTION (Her / His)
   ============================================ */
.section-paths {
  padding: 5rem 0;
  background: var(--cream);
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 1000px;
  border-radius: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(45,106,79,0.1);
}

.path-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all var(--transition-slower);
  min-height: 500px;
}

.path-card--her { background: var(--coral); }
.path-card--his { background: var(--emerald); }

.path-card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.path-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: all 1s ease;
}

.path-card:hover .path-card-bg img {
  transform: scale(1.05);
}

.path-card--her .path-card-bg img {
  object-position: center 15%;
}

.path-card--his .path-card-bg img {
  object-position: center 15%;
}

/* Bottom gradient for text readability */
.path-card-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  z-index: 1;
  pointer-events: none;
}
.path-card--her .path-card-bg::after {
  background: linear-gradient(to top, rgba(224, 122, 95, 0.95) 0%, rgba(224, 122, 95, 0.7) 40%, transparent 100%);
}
.path-card--his .path-card-bg::after {
  background: linear-gradient(to top, rgba(45, 106, 79, 0.95) 0%, rgba(45, 106, 79, 0.7) 40%, transparent 100%);
}

.path-card-content {
  position: relative;
  z-index: 10;
  margin-bottom: 0.5rem;
}

.path-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.path-card-line {
  width: 4rem;
  height: 0.1875rem;
  margin-bottom: 0;
}

.path-card--her .path-card-line { background: var(--emerald); }
.path-card--his .path-card-line { background: var(--cream); }

.path-card p {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.6;
  max-width: 24rem;
  margin-bottom: 3rem;
}

.path-card-footer {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.path-card-id {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.path-card-action {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.path-card-action span {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.path-card-action-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  transition: all var(--transition-slow);
}

.path-card:hover .path-card-action-btn {
  background: var(--white);
  transform: scale(1.1);
}

.path-card-action-btn svg {
  width: 1rem;
  height: 1rem;
  color: var(--white);
}

.path-card:hover .path-card-action-btn svg {
  color: var(--emerald);
}

@media (min-width: 1024px) {
  .paths-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    border-radius: 4rem;
  }
  .path-card {
    padding: 3rem;
    min-height: auto;
  }
}

/* ============================================
   CONCIERGE CARE SECTION
   ============================================ */
.section-concierge {
  padding: 5rem 0;
  background: var(--cream);
}

.concierge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.concierge-image {
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  order: 2;
}

.concierge-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.concierge-content {
  order: 1;
}

.concierge-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.concierge-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.concierge-feature svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.concierge-feature-title {
  font-weight: 500;
  color: var(--emerald);
  font-size: 1rem;
}

.concierge-feature-desc {
  font-size: 0.75rem;
  color: rgba(45,106,79,0.6);
}

@media (min-width: 1024px) {
  .section-concierge { padding: 8rem 0; }
  .concierge-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .concierge-image {
    order: 1;
    border-radius: 4rem;
  }
  .concierge-image img { height: 600px; }
  .concierge-content { order: 2; }
  .concierge-features { gap: 1.5rem; }
}

/* ============================================
   INVESTMENT SECTION
   ============================================ */
.section-investment {
  padding: 6rem 0;
  background: var(--cream);
}

.investment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.investment-price {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 10rem);
  color: var(--emerald);
  letter-spacing: -0.04em;
  line-height: 1;
}

.investment-price .coral-dot { color: var(--coral); }

.investment-component {
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(45,106,79,0.05);
  border-radius: 1.5rem;
  transition: all var(--transition-slow);
}

.investment-component:hover {
  border-color: rgba(45,106,79,0.2);
  box-shadow: var(--shadow-xl);
}

.investment-component-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.investment-component-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.investment-component-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: rgba(45,106,79,0.3);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.investment-component-divider {
  height: 1px;
  width: 2rem;
  background: rgba(45,106,79,0.1);
}

.investment-component h4 {
  font-size: 1.25rem;
}

.investment-component-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.investment-badge {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--coral);
  padding: 0.25rem 0.75rem;
  background: rgba(224,122,95,0.05);
  border-radius: 0.375rem;
}

.investment-component-value {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(45,106,79,0.4);
}

.investment-component p {
  color: rgba(45,106,79,0.5);
  font-size: 0.875rem;
  max-width: 36rem;
  transition: color var(--transition-base);
}

.investment-component:hover p {
  color: rgba(45,106,79,0.7);
}

@media (min-width: 640px) {
  .investment-component-header { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .section-investment { padding: 10rem 0; }
  .investment-grid { grid-template-columns: 5fr 7fr; gap: 5rem; }
  .investment-component { padding: 2rem; border-radius: 2.5rem; }
}

/* ============================================
   FAQ SECTION
   Clean divider-based accordion — no nested cards
   ============================================ */
.section-faq {
  padding: 5rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.faq-wrapper {
  max-width: 52rem;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem;
}

/* --- Header --- */
.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-header-quote {
  display: none;
}

.faq-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  color: var(--emerald);
  margin: 0 0 0.75rem;
}

.faq-header-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: rgba(var(--emerald-rgb), 0.45);
  line-height: 1.6;
}

/* --- Accordion items — divider lines, no cards --- */
.faq-item {
  background: none;
  border: none;
  border-radius: 0;
  border-top: 1px solid rgba(var(--emerald-rgb), 0.08);
  padding: 1.75rem 0;
  margin-bottom: 0;
  transition: none;
}

.faq-item:last-of-type {
  border-bottom: 1px solid rgba(var(--emerald-rgb), 0.08);
}

.faq-item:hover {
  border-color: rgba(var(--emerald-rgb), 0.08);
  box-shadow: none;
}

/* --- Question row --- */
.faq-question {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding-right: 2.5rem;
}

.faq-question-marker {
  display: none;
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.0625rem, 1.4vw, 1.3125rem);
  font-weight: 300;
  color: var(--emerald);
  line-height: 1.45;
  margin: 0;
  transition: color var(--transition-base);
}

.faq-item.faq-open .faq-question h3 {
  color: var(--coral);
}

/* --- Answer --- */
.faq-answer {
  padding-left: 0;
  margin-top: 1.25rem;
}

.faq-answer-inner {
  display: block;
}

.faq-answer-marker {
  display: none;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.05vw, 1rem);
  color: rgba(var(--emerald-rgb), 0.55);
  line-height: 1.8;
  margin: 0;
  max-width: 42rem;
}

/* --- CTA link inside answer — hidden when closed --- */
.faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--coral);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 0;
  margin-left: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, gap var(--transition-base), color var(--transition-base);
}

.faq-item.faq-open .faq-cta-link {
  max-height: 3rem;
  opacity: 1;
  margin-top: 1rem;
}

.faq-cta-link:hover {
  gap: 0.75rem;
  color: var(--coral-dark);
}

.faq-cta-link svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* --- Bottom CTA --- */
.faq-bottom-cta {
  margin-top: 3rem;
  text-align: center;
}

.faq-bottom-cta-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.faq-bottom-cta-inner span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(var(--emerald-rgb), 0.4);
}

.faq-bottom-cta-inner a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--coral);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-base);
}

.faq-bottom-cta-inner a:hover { color: var(--coral-dark); }

/* --- Desktop --- */
@media (min-width: 1024px) {
  .section-faq { padding: 8rem 0; }
  .faq-wrapper { padding: 3.5rem 4rem; border-radius: var(--radius-2xl); }
  .faq-header { margin-bottom: 4rem; }
  .faq-item { padding: 2rem 0; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--emerald);
  color: var(--white);
  padding: 5rem 0 0;
  border-radius: 36px;
  margin: 0 1.5rem 1.5rem;
}

/* --- Footer Main: 3-column grid --- */
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
}

/* --- Left Column: Brand Authority --- */
.footer-authority {
  max-width: 28rem;
}

.footer-authority-logo {
  height: 1.5rem;
  filter: brightness(0) invert(1);
  margin-bottom: 0.75rem;
}

.footer-authority-subtitle {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.5rem;
}

.footer-authority-desc {
  font-size: 0.9375rem;
  opacity: 0.55;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  opacity: 0.5;
}

.footer-trust-item svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--coral);
  opacity: 1;
}

.footer-geo {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.3;
  line-height: 1.8;
}

/* --- Middle Column: Strategic Links --- */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.25rem;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white);
  opacity: 0.55;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: opacity var(--transition-base);
  display: block;
}

.footer-nav a:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav a:hover {
  opacity: 1;
}

/* --- Right Column: Conversion CTA --- */
.footer-cta {
  display: flex;
  flex-direction: column;
}

.footer-cta-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.footer-cta .btn {
  display: inline-block;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  align-self: flex-start;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-contact a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--white);
  opacity: 0.45;
  transition: opacity var(--transition-base);
}

.footer-contact a:hover {
  opacity: 1;
}

/* --- Bottom Strip --- */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.footer-bottom-left p {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.3;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-right a {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.3;
  transition: opacity var(--transition-base);
}

.footer-bottom-right a:hover {
  opacity: 0.7;
}

.footer-bottom-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.5rem;
}

/* --- Footer Responsive --- */
/* When medical disclaimer is directly before footer,
   disclaimer gets top rounding, footer gets bottom only */
.medical-disclaimer + .footer,
.section-about-cta + .footer,
.invest-cta + .footer,
.section-dark-cta + .footer {
  border-radius: 0 0 36px 36px;
}

@media (min-width: 768px) {
  .footer {
    border-radius: 40px;
    margin: 0 1.5rem 1.5rem;
  }
  .medical-disclaimer + .footer,
  .section-about-cta + .footer,
  .invest-cta + .footer,
  .section-dark-cta + .footer {
    border-radius: 0 0 40px 40px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 5rem 0 0;
    border-radius: 48px;
    margin: 0 3rem 3rem;
  }
  .medical-disclaimer + .footer,
  .section-about-cta + .footer,
  .invest-cta + .footer,
  .section-dark-cta + .footer {
    border-radius: 0 0 48px 48px;
  }
  .footer-main {
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 5rem;
  }
  .footer-cta-heading {
    font-size: 1.75rem;
  }
}

/* ============================================
   COMPARISON SECTION
   Infographic feature card grid
   Used on: her-path, his-path
   ============================================ */

/* Container — no dark bg, lives on cream section */
.model-card {
  /* transparent on cream */
}

/* Tile grid — flexbox for natural last-row centering */
.model-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.125rem;
  margin-top: 3rem;
}

/* Individual tiles — white on cream */
.model-tile {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(var(--emerald-rgb), 0.06);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Tile header row: icon + number */
.model-tile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.625rem;
}

.model-tile__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(var(--emerald-rgb), 0.04);
  color: var(--coral);
}
.model-tile__icon svg {
  width: 19px;
  height: 19px;
}

.model-tile__num {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  color: rgba(var(--emerald-rgb), 0.15);
}

/* Title */
.model-tile__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--emerald);
  line-height: 1.35;
  margin: 0;
}

/* Description */
.model-tile__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(var(--emerald-rgb), 0.45);
  margin: 0;
}

/* Tablet: 2 columns */
@media (min-width: 640px) {
  .model-tile {
    width: calc(50% - 0.5625rem);
  }
}

/* Desktop: 3 columns */
@media (min-width: 1024px) {
  .model-grid {
    gap: 1.375rem;
    margin-top: 3.5rem;
  }
  .model-tile {
    width: calc(33.333% - 0.92rem);
    padding: 2rem 1.75rem;
  }
  .model-tile__title {
    font-size: 1.125rem;
  }
}

/* ============================================
   EXPERIENCE PAGE - Phase Sections
   ============================================ */
.phase-section {
  min-height: 100vh;
  padding: 8rem 0;
  display: flex;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(45,106,79,0.05);
}

.phase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.phase-number-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid rgba(45,106,79,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--coral);
}

.phase-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(45,106,79,0.4);
}

.phase-image {
  aspect-ratio: 4/5;
  border-radius: 4rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  position: relative;
}

.phase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 1s ease;
}

.phase-image:hover img {
  filter: grayscale(0%);
}

.phase-caption {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--cream);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(45,106,79,0.1);
  max-width: 16rem;
  box-shadow: var(--shadow-xl);
  display: none;
}

@media (min-width: 1024px) {
  .phase-grid { grid-template-columns: 1fr 1fr; gap: 8rem; }
  .phase-caption { display: block; }
}

/* ============================================
   DARK CTA SECTION (reusable)
   ============================================ */
.section-dark-cta {
  padding: 10rem 0;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.section-dark-cta h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--white);
  letter-spacing: -0.03em;
  max-width: 56rem;
  margin: 0 auto 3rem;
  line-height: 1.1;
}

.section-dark-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .section-dark-cta-buttons { flex-direction: row; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Staggered animations */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 420px);
  background: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 6rem 2.5rem 2.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
  overflow-y: auto;
}

/* Backdrop overlay */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(var(--emerald-dark-rgb), 0.3);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.mobile-menu.is-open,
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.mobile-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Close button */
.mobile-menu-close {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--emerald);
  cursor: pointer;
  background: rgba(var(--emerald-rgb), 0.06);
  border: none;
  transition: background var(--transition-base), transform var(--transition-base);
}

.mobile-menu-close:hover {
  background: rgba(var(--emerald-rgb), 0.12);
  transform: rotate(90deg);
}

.mobile-menu-close svg {
  width: 18px;
  height: 18px;
}

/* Navigation label */
.mobile-menu-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.5rem;
}

/* Nav links */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-menu-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--emerald);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(var(--emerald-rgb), 0.06);
  transition: color var(--transition-base), padding-left var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-nav a::after {
  content: '\2192';
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  color: var(--coral);
}

.mobile-menu-nav a:hover {
  color: var(--coral);
  padding-left: 0.5rem;
}

.mobile-menu-nav a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* CTA area */
.mobile-menu-cta {
  margin-top: auto;
  padding-top: 2rem;
}

.mobile-menu-cta .btn {
  width: 100%;
  text-align: center;
  display: block;
  padding: 1.125rem 2rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-full);
}

/* Contact info below CTA */
.mobile-menu-contact {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(var(--emerald-rgb), 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-contact a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--emerald);
  opacity: 0.5;
  transition: opacity var(--transition-base);
}

.mobile-menu-contact a:hover {
  opacity: 1;
}

/* Legacy link styles (fallback for un-updated pages) */
.mobile-menu > a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--emerald);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(var(--emerald-rgb), 0.06);
  transition: color var(--transition-base);
}

.mobile-menu > a:hover { color: var(--coral); }

.mobile-menu > a.btn {
  margin-top: auto;
  text-align: center;
  border-bottom: none;
  font-size: 0.8125rem;
  padding: 1.125rem 2rem;
  border-radius: var(--radius-full);
}

/* ============================================
   SPECIAL: Grid background overlay
   ============================================ */
.grid-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  opacity: 0.03;
  background-image: linear-gradient(var(--emerald) 1px, transparent 1px),
    linear-gradient(90deg, var(--emerald) 1px, transparent 1px);
  background-size: 100px 100px;
}

/* ============================================
   ACCESSIBILITY: Focus Styles (WCAG 2.1 AA)
   ============================================ */
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

/* Remove default outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Skip Navigation (screen readers) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--emerald);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: top var(--transition-base);
}
.skip-link:focus {
  top: 1rem;
}

/* Visually Hidden (screen reader only) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Decorative SVG icons — hide from screen readers */
svg[aria-hidden="true"],
.icon-decorative {
  pointer-events: none;
}

/* ============================================
   FORM RESETS & BASE STYLES
   ============================================ */
input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--emerald);
  border: 1px solid rgba(var(--emerald-rgb), 0.15);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.25rem;
  background: var(--white);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(var(--emerald-rgb), 0.1);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(var(--emerald-rgb), 0.35);
}

textarea {
  min-height: 6rem;
  resize: vertical;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: var(--space-sm);
}

/* ============================================
   SHARED: Track Badge (Her Path / His Path)
   ============================================ */
.track-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.5rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(var(--emerald-rgb), 0.08);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}
.track-badge .mono-label {
  font-size: 0.5625rem;
}
.track-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.track-badge-dot--coral { background: var(--coral); }
.track-badge-dot--emerald { background: var(--emerald); }

/* ============================================
   SHARED: Framework Cards (3-Phase)
   Used on: precision-reset, her-path, his-path
   ============================================ */
.fw-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .fw-card-grid { grid-template-columns: repeat(3, 1fr); }
}
.fw-card {
  background: var(--white);
  border: 1px solid rgba(var(--emerald-rgb), 0.06);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-slow), border-color var(--transition-slow);
}
@media (min-width: 1024px) {
  .fw-card { padding: var(--space-3xl); }
}
.fw-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(var(--emerald-rgb), 0.12);
}
.fw-card-phase {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-md);
}
.fw-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--emerald);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}
.fw-card p {
  color: rgba(var(--emerald-rgb), 0.55);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.fw-card-deliverables {
  margin-top: auto;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(var(--emerald-rgb), 0.06);
}
.fw-card-deliverables span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--emerald-rgb), 0.35);
  margin-bottom: var(--space-sm);
}
.fw-card-deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fw-card-deliverables li {
  font-size: 0.8125rem;
  color: rgba(var(--emerald-rgb), 0.6);
  padding: 0.375rem 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.fw-card-deliverables li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

/* ============================================
   SHARED: Comparison Table
   Used on: her-path, his-path
   ============================================ */
.comparison-section {
  padding: var(--section-padding-lg) 0;
  background: var(--cream);
}

/* ============================================
   SHARED: Investment CTA
   Used on: her-path, his-path
   ============================================ */
.invest-cta {
  padding: var(--section-padding-xl) 0;
  background: var(--emerald);
  text-align: center;
}
.invest-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: var(--space-lg);
}
.invest-cta p {
  color: rgba(var(--white-rgb), 0.6);
  font-size: 1.0625rem;
  max-width: 36rem;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

/* ============================================
   SHARED: Intake Form Components
   Used on: her-intake, his-intake
   ============================================ */
.intake-hero {
  padding: 10rem 0 4rem;
  background: var(--cream);
}

.progress-bar-section {
  padding: 0 0 2rem;
  background: var(--cream);
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}
.progress-track {
  height: 3px;
  background: rgba(var(--emerald-rgb), 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--coral);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.form-card {
  background: var(--white);
  border: 1px solid rgba(var(--emerald-rgb), 0.06);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .form-card { padding: var(--space-3xl); }
}
.form-section {
  /* display controlled by individual page styles */
}
.form-field {
  margin-bottom: var(--space-xl);
}

.question-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.question-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(var(--emerald-rgb), 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.question-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--emerald);
}

.option-btn {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(var(--emerald-rgb), 0.1);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: left;
  font-size: 0.9375rem;
  color: var(--emerald);
  margin-bottom: var(--space-sm);
}
.option-btn:hover {
  border-color: rgba(var(--emerald-rgb), 0.25);
  background: rgba(var(--emerald-rgb), 0.02);
}
.option-btn.selected {
  border-color: var(--emerald);
  background: rgba(var(--emerald-rgb), 0.04);
}
.option-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid rgba(var(--emerald-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}
.option-btn.selected .option-check {
  border-color: var(--emerald);
  background: var(--emerald);
}

.info-box {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}
.info-box--coral {
  background: rgba(var(--coral-rgb), 0.06);
  color: rgba(var(--emerald-rgb), 0.7);
  border: 1px solid rgba(var(--coral-rgb), 0.1);
}
.info-box--emerald {
  background: rgba(var(--emerald-rgb), 0.04);
  color: rgba(var(--emerald-rgb), 0.7);
  border: 1px solid rgba(var(--emerald-rgb), 0.08);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(var(--emerald-rgb), 0.06);
}
.btn-back {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--emerald-rgb), 0.4);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color var(--transition-base);
}
.btn-back:hover { color: var(--emerald); }
.btn-next {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--emerald);
  border: none;
  cursor: pointer;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  transition: background var(--transition-base);
}
.btn-next:hover { background: var(--emerald-dark); }

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: rgba(var(--emerald-rgb), 0.6);
  line-height: 1.5;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  accent-color: var(--emerald);
}

.results-card {
  background: var(--white);
  border: 1px solid rgba(var(--emerald-rgb), 0.06);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  max-width: 48rem;
  margin: 2rem auto 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .results-card { padding: var(--space-3xl); }
}
.summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
  text-align: left;
}
@media (min-width: 640px) {
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
}
.summary-item {
  padding: var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-lg);
}
.next-step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  text-align: left;
  margin-bottom: var(--space-lg);
}
.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(var(--emerald-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--emerald);
  flex-shrink: 0;
}

/* ============================================
   SHARED: Pre-Footer CTA — Rounded + Margin
   ============================================ */
.prefooter-cta {
  border-radius: 1.5rem;
  margin: 1rem 1rem 1rem;
}
@media (min-width: 768px) {
  .prefooter-cta {
    border-radius: 2rem;
    margin: 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 1280px) {
  .prefooter-cta {
    border-radius: 2.5rem;
    margin: 2.5rem 2.5rem 2.5rem;
  }
}

/* ============================================
   SHARED: Logo Sizing (replaces inline styles)
   ============================================ */
.header-logo img {
  height: 28px;
  width: auto;
}
.footer-brand img {
  height: 24px;
  width: auto;
  display: block;
  margin-bottom: var(--space-lg);
}

/* ============================================
   SVG ICONS (inline usage reference)
   Inline SVG icons used throughout the site. Upload
   SVGs for: Menu, X, ChevronRight, ArrowRight,
   Shield, Zap, Activity, MapPin, Smartphone,
   Clock, Dna, Atom, FlaskConical, Droplets,
   Plus, Brain, ShieldCheck, Share2, CheckCircle2,
   Award, Home, ChevronDown
   (All from Lucide Icons - https://lucide.dev)
   ============================================ */

/* ============================================
   ANIMATIONS & INTERACTIVITY
   ============================================ */

/* --- Ambient: Blob Float --- */
@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33%       { transform: translateY(-20px) scale(1.02); }
  66%       { transform: translateY(10px) scale(0.98); }
}

@keyframes blobDrift {
  0%, 100% { transform: translateX(0) translateY(0); }
  50%       { transform: translateX(15px) translateY(-10px); }
}

.hero-bg-blob-1 {
  animation: blobFloat 12s ease-in-out infinite;
}

.hero-bg-blob-2 {
  animation: blobDrift 16s ease-in-out infinite;
}

/* --- Ambient: Slow Spin --- */
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.precision-cta-icon {
  animation: slowSpin 20s linear infinite;
}

.about-hero-circle {
  animation: slowSpin 60s linear infinite;
}

/* --- Header Scroll State --- */
.header--scrolled .header-bar {
  box-shadow: 0 8px 32px rgba(var(--emerald-rgb), 0.12);
}

/* --- Scroll Reveal Base States --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger Delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Hero Entrance Sequence --- */
[data-hero-seq] {
  opacity: 0;
  transform: translateY(24px);
}
[data-hero-seq].hero-entered {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-image-overlay {
  transform: translateY(20px);
}
.hero-overlay-entered .hero-image-overlay {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

/* --- FAQ Accordion --- */
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.4s ease, margin-top 0.3s ease;
}
.faq-item.faq-open .faq-answer {
  max-height: 600px;
  margin-top: 1.25rem;
}
.faq-question {
  position: relative;
  user-select: none;
}
.faq-question::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%232D6A4F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14'/%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.25;
}
.faq-item.faq-open .faq-question::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E07A5F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
  transform: translateY(-50%);
  opacity: 0.7;
}

/* --- Reduced Motion Override --- */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-blob-1,
  .hero-bg-blob-2,
  .precision-cta-icon,
  .about-hero-circle {
    animation: none;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  [data-hero-seq] {
    opacity: 1;
    transform: none;
  }
  .hero-image-overlay {
    transform: none;
  }
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumb {
  padding: 1rem 0;
  margin-bottom: 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(45, 106, 79, 0.4);
}

.breadcrumb-list li a {
  color: rgba(45, 106, 79, 0.5);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumb-list li a:hover {
  color: var(--emerald);
}

.breadcrumb-list li.active {
  color: var(--emerald);
}

.breadcrumb-separator {
  color: rgba(45, 106, 79, 0.25);
  font-size: 0.75rem;
}

/* ============================================
   FOOTER-ADJACENT DARK SECTIONS
   Dark CTA sections that sit directly before
   the disclaimer/footer get matching margins
   so they merge into one rounded block.
   ============================================ */
.invest-cta + .medical-disclaimer,
.section-dark-cta + .medical-disclaimer,
.section-diff + .medical-disclaimer,
.section-about-cta + .medical-disclaimer {
  border-radius: 0;
  border-top: none;
}

.invest-cta:has(+ .medical-disclaimer),
.section-dark-cta:has(+ .medical-disclaimer),
.section-diff:has(+ .medical-disclaimer),
.section-about-cta:has(+ .medical-disclaimer),
.invest-cta:has(+ .footer),
.section-dark-cta:has(+ .footer),
.section-about-cta:has(+ .footer) {
  margin: 0 1.5rem;
  border-radius: 36px 36px 0 0;
}

@media (min-width: 768px) {
  .invest-cta:has(+ .medical-disclaimer),
  .section-dark-cta:has(+ .medical-disclaimer),
  .section-diff:has(+ .medical-disclaimer),
  .section-about-cta:has(+ .medical-disclaimer),
  .invest-cta:has(+ .footer),
  .section-dark-cta:has(+ .footer),
  .section-about-cta:has(+ .footer) {
    margin: 0 1.5rem;
    border-radius: 40px 40px 0 0;
  }
}

@media (min-width: 1024px) {
  .invest-cta:has(+ .medical-disclaimer),
  .section-dark-cta:has(+ .medical-disclaimer),
  .section-diff:has(+ .medical-disclaimer),
  .section-about-cta:has(+ .medical-disclaimer),
  .invest-cta:has(+ .footer),
  .section-dark-cta:has(+ .footer),
  .section-about-cta:has(+ .footer) {
    margin: 0 3rem;
    border-radius: 48px 48px 0 0;
  }
}

/* ============================================
   MEDICAL DISCLAIMER
   ============================================ */
.medical-disclaimer {
  padding: 0;
  margin: 0 1.5rem 0;
  background: var(--emerald);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 36px 36px 0 0;
}

@media (min-width: 768px) {
  .medical-disclaimer {
    margin: 0 1.5rem 0;
    border-radius: 40px 40px 0 0;
  }
}

@media (min-width: 1024px) {
  .medical-disclaimer {
    margin: 0 3rem 0;
    border-radius: 48px 48px 0 0;
  }
}

.medical-disclaimer .container {
  padding-top: 0;
  padding-bottom: 0;
}

.medical-disclaimer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0 1rem;
}

.medical-disclaimer-inner svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.medical-disclaimer p {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
  max-width: none;
  text-align: left;
  margin: 0;
}

/* ============================================
   E-E-A-T ATTRIBUTION
   ============================================ */
.medical-attribution {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(45, 106, 79, 0.03);
  border: 1px solid rgba(45, 106, 79, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.medical-attribution-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.medical-attribution-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--emerald);
}

.medical-attribution-text {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(45, 106, 79, 0.5);
}

.medical-attribution-text strong {
  color: var(--emerald);
  font-weight: 500;
}

/* ============================================
   LEGAL PAGE STYLES
   ============================================ */
.legal-content {
  padding: 10rem 0 6rem;
  background: var(--cream);
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--emerald);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.legal-content .legal-effective {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(45, 106, 79, 0.4);
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--emerald);
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--emerald);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  font-size: 1rem;
  color: rgba(45, 106, 79, 0.65);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 48rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  max-width: 48rem;
}

.legal-content ul li {
  font-size: 1rem;
  color: rgba(45, 106, 79, 0.65);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 0 6rem;
  background: var(--cream);
}

.error-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 12rem);
  color: rgba(45, 106, 79, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--emerald);
  margin-bottom: 1rem;
}

.error-page p {
  font-size: 1.0625rem;
  color: rgba(45, 106, 79, 0.55);
  max-width: 28rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.error-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   KASSY ICON SYSTEM — Molecular Transparency
   Overlapping translucent circles behind thin-stroke icons
   ============================================ */
.kw-icon {
  position: relative;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.kw-icon::before,
.kw-icon::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  transition: transform 0.7s ease;
}
.kw-icon::before {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(var(--emerald-rgb), 0.15);
  transform: translate(-8px, -4px);
}
.kw-icon::after {
  width: 3rem;
  height: 3rem;
  background: rgba(var(--coral-rgb), 0.20);
  transform: translate(12px, 8px);
}
.kw-icon svg {
  position: relative;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--emerald);
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

/* Hover states for parent cards */
.fw-card:hover .kw-icon::before,
.subpage-card:hover .kw-icon::before,
.philosophy-card:hover .kw-icon::before,
.framework-phase:hover .kw-icon::before,
.investment-component:hover .kw-icon::before,
.card:hover .kw-icon::before {
  transform: translate(-8px, -4px) scale(1.25);
}
.fw-card:hover .kw-icon::after,
.subpage-card:hover .kw-icon::after,
.philosophy-card:hover .kw-icon::after,
.framework-phase:hover .kw-icon::after,
.investment-component:hover .kw-icon::after,
.card:hover .kw-icon::after {
  transform: translate(12px, 8px) scale(1.1);
}
.fw-card:hover .kw-icon svg,
.subpage-card:hover .kw-icon svg,
.philosophy-card:hover .kw-icon svg,
.framework-phase:hover .kw-icon svg,
.investment-component:hover .kw-icon svg,
.card:hover .kw-icon svg {
  opacity: 1;
}

/* Dark variant (for dark-background sections) */
.kw-icon--light::before {
  background: rgba(255, 248, 240, 0.15);
  mix-blend-mode: screen;
}
.kw-icon--light::after {
  background: rgba(var(--coral-rgb), 0.2);
  mix-blend-mode: screen;
}
.kw-icon--light svg {
  color: rgba(255, 248, 240, 0.8);
}
.framework-phase:hover .kw-icon--light svg {
  color: var(--cream);
  opacity: 1;
}

/* Phase icon (inline with phase label on experience page) */
.phase-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phase-icon::before,
.phase-icon::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  transition: transform 0.7s ease;
}
.phase-icon::before {
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(var(--emerald-rgb), 0.1);
  transform: translate(-3px, -2px);
}
.phase-icon::after {
  width: 1.375rem;
  height: 1.375rem;
  background: rgba(var(--coral-rgb), 0.12);
  transform: translate(4px, 3px);
}
.phase-icon svg {
  position: relative;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  color: var(--emerald);
  opacity: 0.5;
}


/* ============================================
   ACCESSIBILITY WIDGET
   Floating accessibility controls panel
   Injected via JS — no HTML modification needed
   ============================================ */

/* --- Trigger Button --- */
.a11y-trigger {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(var(--emerald-rgb), 0.1);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              background var(--transition-base),
              opacity var(--transition-base);
}

.a11y-trigger:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-xl);
  background: var(--emerald);
}

.a11y-trigger:hover svg {
  color: var(--white);
}

.a11y-trigger svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--emerald);
  transition: color var(--transition-base);
}

/* Tooltip */
.a11y-trigger-tooltip {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateX(-0.5rem) translateY(-50%);
  background: var(--emerald);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.a11y-trigger:hover .a11y-trigger-tooltip {
  opacity: 1;
  transform: translateX(-0.75rem) translateY(-50%);
}

/* Hide trigger when panel is open */
.a11y-widget.is-open .a11y-trigger {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

/* --- Panel --- */
.a11y-panel {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 340px;
  max-height: calc(100vh - 3rem);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(var(--emerald-rgb), 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.a11y-widget.is-open .a11y-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Panel Header */
.a11y-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(var(--emerald-rgb), 0.06);
  flex-shrink: 0;
}

.a11y-panel-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--emerald);
  margin: 0;
  line-height: 1;
}

.a11y-panel-close {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--emerald-rgb), 0.06);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-base), transform var(--transition-base);
  color: var(--emerald);
}

.a11y-panel-close:hover {
  background: rgba(var(--emerald-rgb), 0.12);
  transform: rotate(90deg);
}

.a11y-panel-close svg {
  width: 14px;
  height: 14px;
}

/* Panel Body */
.a11y-panel-body {
  padding: 0.75rem 1.5rem 1.5rem;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

/* Category */
.a11y-category {
  margin-bottom: 1rem;
}

.a11y-category:last-child {
  margin-bottom: 0;
}

.a11y-category-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(var(--emerald-rgb), 0.35);
  display: block;
  margin-bottom: 0.5rem;
  padding-left: 0.125rem;
}

/* Options Grid */
.a11y-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* Individual Option Button */
.a11y-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-md);
  background: rgba(var(--emerald-rgb), 0.025);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  font-family: inherit;
}

.a11y-option:hover {
  background: rgba(var(--emerald-rgb), 0.06);
  border-color: rgba(var(--emerald-rgb), 0.08);
}

/* Active state */
.a11y-option[aria-pressed="true"],
.a11y-option.is-active {
  background: rgba(var(--coral-rgb), 0.07);
  border-color: rgba(var(--coral-rgb), 0.18);
}

.a11y-option[aria-pressed="true"] .a11y-option-icon,
.a11y-option.is-active .a11y-option-icon {
  background: var(--coral);
}

.a11y-option[aria-pressed="true"] .a11y-option-icon svg,
.a11y-option.is-active .a11y-option-icon svg {
  color: var(--white);
}

/* Icon circle */
.a11y-option-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(var(--emerald-rgb), 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.a11y-option-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--emerald);
  transition: color var(--transition-base);
}

/* Label */
.a11y-option-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--emerald);
  line-height: 1.25;
}

/* Reset button special look */
.a11y-option--reset {
  background: rgba(var(--emerald-rgb), 0.05);
}

.a11y-option--reset:hover {
  background: rgba(var(--emerald-rgb), 0.10);
}

/* --- Reading Guide --- */
.a11y-reading-guide {
  position: fixed;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--coral);
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 0 8px rgba(var(--coral-rgb), 0.35),
              0 0 2px rgba(var(--coral-rgb), 0.6);
}

html.a11y-reading-guide .a11y-reading-guide {
  opacity: 1;
}

/* --- Mobile --- */
@media (max-width: 639px) {
  .a11y-panel {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    max-height: calc(100vh - 1.5rem);
    border-radius: var(--radius-lg);
  }

  .a11y-trigger {
    bottom: 1rem;
    right: 1rem;
  }
}


/* ============================================
   ACCESSIBILITY FEATURE OVERRIDES
   Applied via classes on <html> element
   Each feature uses !important for precedence
   Widget itself is excluded from overrides
   ============================================ */

/* --- Text Size: Large (120%) --- */
html.a11y-large-text {
  font-size: 120% !important;
}

/* --- Text Size: X-Large (140%) --- */
html.a11y-xlarge-text {
  font-size: 140% !important;
}

/* --- High Contrast --- */
html.a11y-high-contrast body {
  background-color: #000 !important;
  color: #fff !important;
}

html.a11y-high-contrast *:not(.a11y-widget):not(.a11y-widget *) {
  border-color: #555 !important;
}

html.a11y-high-contrast h1:not(.a11y-widget *),
html.a11y-high-contrast h2:not(.a11y-widget *),
html.a11y-high-contrast h3:not(.a11y-widget *),
html.a11y-high-contrast h4:not(.a11y-widget *),
html.a11y-high-contrast p:not(.a11y-widget *),
html.a11y-high-contrast span:not(.a11y-widget *),
html.a11y-high-contrast li:not(.a11y-widget *),
html.a11y-high-contrast label:not(.a11y-widget *),
html.a11y-high-contrast div:not(.a11y-widget *) {
  color: #fff !important;
}

html.a11y-high-contrast a:not(.a11y-widget *) {
  color: #FFD700 !important;
  text-decoration: underline !important;
}

html.a11y-high-contrast section:not(.a11y-widget),
html.a11y-high-contrast .header-bar,
html.a11y-high-contrast .card:not(.a11y-widget *),
html.a11y-high-contrast .fw-card:not(.a11y-widget *),
html.a11y-high-contrast .footer {
  background-color: #111 !important;
}

html.a11y-high-contrast img:not(.a11y-widget img) {
  filter: contrast(1.2) !important;
}

html.a11y-high-contrast button:not(.a11y-widget button) {
  color: #fff !important;
  border-color: #888 !important;
}

/* --- Invert Colors --- */
html.a11y-invert-colors {
  filter: invert(1) hue-rotate(180deg) !important;
}

html.a11y-invert-colors img,
html.a11y-invert-colors video,
html.a11y-invert-colors iframe {
  filter: invert(1) hue-rotate(180deg) !important;
}

/* Re-invert the widget so it stays normal */
html.a11y-invert-colors .a11y-widget {
  filter: invert(1) hue-rotate(180deg) !important;
}

/* --- Grayscale --- */
html.a11y-grayscale {
  filter: grayscale(100%) !important;
}

html.a11y-grayscale .a11y-widget {
  filter: grayscale(0%) !important;
}

/* --- Highlight Links --- */
html.a11y-highlight-links a:not(.a11y-widget a) {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
  color: var(--coral) !important;
  outline: 1px dashed var(--coral) !important;
  outline-offset: 2px !important;
}

/* --- Large Cursor --- */
html.a11y-large-cursor,
html.a11y-large-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24'%3E%3Cpath fill='%232D6A4F' stroke='%23fff' stroke-width='1' d='M5.5 3.21V20.8l4.86-4.86h7.43L5.5 3.21z'/%3E%3C/svg%3E") 4 4, auto !important;
}

/* --- Enhanced Keyboard Navigation --- */
html.a11y-keyboard-nav *:focus-visible {
  outline: 3px solid var(--coral) !important;
  outline-offset: 4px !important;
  box-shadow: 0 0 0 6px rgba(var(--coral-rgb), 0.2) !important;
}

/* --- Dyslexia Font --- */
html.a11y-dyslexia-font *:not(.a11y-widget *):not(.a11y-category-label):not(.a11y-trigger-tooltip) {
  font-family: 'OpenDyslexic', 'Comic Sans MS', sans-serif !important;
}

/* --- Line Height --- */
html.a11y-line-height *:not(.a11y-widget *) {
  line-height: 2.2 !important;
}

/* --- Letter Spacing --- */
html.a11y-letter-spacing *:not(.a11y-widget *) {
  letter-spacing: 0.12em !important;
  word-spacing: 0.16em !important;
}

/* --- Stop Animations --- */
html.a11y-stop-animations *:not(.a11y-widget *),
html.a11y-stop-animations *:not(.a11y-widget *)::before,
html.a11y-stop-animations *:not(.a11y-widget *)::after {
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}

/* --- Reduced Motion — Widget respect --- */
@media (prefers-reduced-motion: reduce) {
  .a11y-panel {
    transition: opacity 0.15s ease;
    transform: none;
  }

  .a11y-widget.is-open .a11y-panel {
    transform: none;
  }
}

/* ============================================
   FOUNDER STORY TRUST ARCHITECTURE
   Cross-site founder link components
   ============================================ */

/* --- Shared: Founder Story text link with arrow --- */
.founder-excerpt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--coral);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  transition: gap 0.3s ease, color 0.3s ease;
}

.founder-excerpt-link:hover {
  gap: 0.75rem;
}

.founder-excerpt-link svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* --- Founder Excerpt (Homepage mid-page insert) --- */
.section-founder-excerpt {
  padding: 6rem 0;
  background: var(--cream);
  border-top: 1px solid rgba(45,106,79,0.05);
  border-bottom: 1px solid rgba(45,106,79,0.05);
}

.founder-excerpt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .founder-excerpt-grid {
    grid-template-columns: auto 1fr;
    gap: 3.5rem;
    text-align: left;
  }
}

.founder-excerpt-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(45,106,79,0.1);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .founder-excerpt-image {
    width: 140px;
    height: 140px;
    margin: 0;
  }
}

.founder-excerpt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(30%);
  transition: filter 0.6s ease;
}

.founder-excerpt-image:hover img {
  filter: grayscale(0%);
}

.founder-excerpt-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--emerald);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.founder-excerpt-text {
  font-size: 1rem;
  color: rgba(45,106,79,0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

/* --- About page: link spacing within founder section --- */
.section-founder .founder-excerpt-link {
  margin-top: 1.5rem;
}

/* --- Founder Pull Quote (Experience page trust moment) --- */
.section-founder-quote {
  padding: 5rem 0;
  background: var(--cream);
  border-top: 1px solid rgba(45,106,79,0.05);
  position: relative;
  z-index: 10;
}

.founder-quote-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.founder-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--emerald);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  font-style: normal;
}

.founder-quote-attribution {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  font-style: normal;
  display: block;
}

.founder-quote-inner .founder-excerpt-link {
  justify-content: center;
}

/* --- Founder Context (Service page "Why This Exists") --- */
.section-founder-context {
  padding: 4rem 0;
  background: var(--cream);
  border-top: 1px solid rgba(45,106,79,0.05);
  border-bottom: 1px solid rgba(45,106,79,0.05);
}

.founder-context-inner {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.founder-context-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  color: var(--emerald);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.founder-context-text {
  font-size: 0.9375rem;
  color: rgba(45,106,79,0.6);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.founder-context-inner .founder-excerpt-link {
  justify-content: center;
}
