/* ══════════════════════════════════════
   ParentGrove — Shared Stylesheet
   parentgrove.ca
══════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #F2E8D5;
  color: #2D2B28;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2 { font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif; }
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select { font-family: inherit; }
ul { list-style: none; }

/* ── Tokens ── */
:root {
  --primary: #1E3A2B;
  --primary-dark: #152A1E;
  --primary-med: #2A4D38;
  --primary-light: #3D6B4E;
  --secondary: #C5953B;
  --secondary-light: #D4AD5E;
  --secondary-muted: #A67D32;
  --background: #F2E8D5;
  --background-alt: #EDE1CC;
  --background-warm: #E8DBC6;
  --sage: #7DA078;
  --sage-light: #A8C4A0;
  --rose: #C47B8E;
  --rose-light: #DEAAB8;
  --lavender: #8E8199;
  --blue-accent: #5B9BD5;
  --earth: #8B7355;
  --earth-light: #B8A68A;
  --text: #2D2B28;
  --text-secondary: #4A4744;
  --text-muted: #6B665E;
  --border: #DDD0BC;
  --border-dark: #D0C3AD;
  --shadow-sm: 0 1px 3px rgba(21,42,30,.08), 0 1px 2px rgba(21,42,30,.06);
  --shadow-md: 0 4px 12px rgba(21,42,30,.10), 0 2px 4px rgba(21,42,30,.06);
  --shadow-lg: 0 12px 32px rgba(21,42,30,.12), 0 4px 8px rgba(21,42,30,.08);
  --shadow-glow: 0 0 40px rgba(197,149,59,.15);
}

/* ── Layout helpers ── */
.container { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 768px; margin: 0 auto; padding: 0 24px; }
.container-xs { max-width: 448px; margin: 0 auto; padding: 0 24px; }

/* ── Animations ── */
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.anim-card { opacity: 0; }
.anim-card.fired {
  animation: slideUpFade 0.5s ease-out forwards;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(21,42,30,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 1px 8px rgba(0,0,0,.15);
}
.nav-inner {
  max-width: 1152px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -.02em; white-space: nowrap; }
.nav-logo img { height: 36px; width: auto; flex-shrink: 0; }
.nav-logo span { color: var(--secondary); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,.80); transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  margin-left: 8px; padding: 8px 20px;
  background: var(--secondary); color: #fff;
  font-size: 14px; font-weight: 600; border-radius: 9999px;
  transition: background .15s, box-shadow .15s;
  box-shadow: 0 2px 8px rgba(197,149,59,.3);
}
.nav-cta:hover { background: var(--secondary-light); color: #fff; box-shadow: 0 4px 12px rgba(197,149,59,.4); }
.nav-hamburger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.nav-hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-mobile { display: none; background: var(--primary-dark); border-top: 1px solid rgba(255,255,255,.08); padding: 16px 24px; flex-direction: column; gap: 16px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 14px; color: rgba(255,255,255,.80); }
.nav-mobile a:hover { color: #fff; }
.nav-mobile .nav-cta { text-align: center; color: #fff; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  background-color: #0F1F15;
  background-image: url('images/hero-canopy.jpg');
  background-size: cover; background-position: center top;
  display: flex; align-items: center; overflow: hidden; padding-top: 64px;
}
#hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(165deg, rgba(15,31,21,.93) 0%, rgba(21,42,30,.90) 25%, rgba(30,58,43,.85) 50%, rgba(42,77,56,.70) 75%, rgba(201,184,150,.4) 100%);
}
#hero > * { position: relative; z-index: 1; }
.hero-blob-1 {
  position: absolute; top: -128px; right: -128px;
  width: 480px; height: 480px; border-radius: 50%;
  background: rgba(197,149,59,.08); filter: blur(80px); pointer-events: none;
}
.hero-blob-2 {
  position: absolute; bottom: -64px; left: -96px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(125,160,120,.08); filter: blur(80px); pointer-events: none;
}
.hero-blob-3 {
  position: absolute; top: 40%; right: 10%;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(196,123,142,.06); filter: blur(60px); pointer-events: none;
}
.hero-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.015) 0%, transparent 70%);
  border: 1px solid rgba(255,255,255,.04); pointer-events: none;
}
.hero-ring-2 {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(197,149,59,.06); pointer-events: none;
}
.hero-grid {
  position: relative; max-width: 1152px; margin: 0 auto; padding: 96px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 9999px;
  border: 1px solid rgba(125,160,120,.3); background: rgba(125,160,120,.08);
  color: var(--sage-light); font-size: 12px; font-weight: 600; letter-spacing: .05em; margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--sage);
  animation: pulse 2s ease-in-out infinite;
}
.hero-h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 24px; }
.hero-h1 em { color: var(--secondary); font-style: normal; }
.hero-subtext { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.65; margin-bottom: 40px; max-width: 400px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--secondary); color: var(--primary-dark);
  font-size: 14px; font-weight: 600; border-radius: 9999px;
  transition: background .15s, box-shadow .15s;
  box-shadow: 0 2px 8px rgba(197,149,59,.25);
}
.btn-primary:hover { background: var(--secondary-light); box-shadow: 0 4px 16px rgba(197,149,59,.35); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; color: rgba(255,255,255,.8);
  font-size: 14px; font-weight: 500; border-radius: 9999px; transition: color .15s;
}
.btn-ghost:hover { color: #fff; }
.hero-stats { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.5); font-size: 12px; }
.hero-stats-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.2); }

/* Phone mockup */
.hero-phone-wrap { display: flex; justify-content: center; align-items: center; }
.hero-phone-glow {
  position: absolute; inset: -16px; border-radius: 56px;
  background: rgba(197,149,59,.12); filter: blur(40px); transform: scale(1.15);
}
.hero-phone {
  position: relative; width: 260px; height: 520px;
  background: linear-gradient(to bottom, #2A4D38, #1E3A2B, #152A1E);
  border-radius: 48px; border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 32px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05) inset; overflow: hidden;
}
.phone-statusbar { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px 8px; }
.phone-statusbar-time { color: rgba(255,255,255,.5); font-size: 10px; }
.phone-notch { width: 80px; height: 16px; background: #000; border-radius: 9999px; }
.phone-battery { width: 12px; height: 8px; border: 1px solid rgba(255,255,255,.3); border-radius: 2px; }
.phone-content { padding: 8px 16px 0; }
.phone-greeting-sub { color: rgba(255,255,255,.5); font-size: 10px; margin-bottom: 2px; }
.phone-greeting { color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 16px; }
.phone-card { border-radius: 16px; padding: 12px; margin-bottom: 10px; }
.phone-card-label { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.phone-card-title { color: #fff; font-size: 12px; font-weight: 500; }
.phone-card-sub { font-size: 9px; margin-top: 2px; }
.phone-card-checkin { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); }
.phone-card-checkin .phone-card-label { color: rgba(255,255,255,.5); }
.checkin-options { display: flex; gap: 6px; margin-top: 8px; }
.checkin-opt { flex: 1; border-radius: 8px; padding: 6px 0; text-align: center; font-size: 8px; }
.checkin-opt-active { background: rgba(143,174,139,.20); color: var(--sage); }
.checkin-opt-idle { background: rgba(255,255,255,.05); color: rgba(255,255,255,.4); }
.phone-card-health { background: rgba(143,174,139,.12); border: 1px solid rgba(143,174,139,.20); }
.phone-card-health .phone-card-label { color: var(--sage); }
.phone-card-health .phone-card-sub { color: rgba(255,255,255,.5); }
.phone-card-finance { background: rgba(197,149,59,.10); border: 1px solid rgba(197,149,59,.20); }
.phone-card-finance .phone-card-label { color: var(--secondary); }
.phone-card-finance .phone-card-sub { color: rgba(255,255,255,.5); }
.phone-card-bar { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.phone-bar-track { flex: 1; height: 4px; background: rgba(255,255,255,.08); border-radius: 9999px; overflow: hidden; }
.phone-bar-fill { height: 100%; width: 60%; background: var(--secondary); border-radius: 9999px; }
.phone-bar-count { color: rgba(255,255,255,.4); font-size: 9px; }
.phone-card-row { display: flex; gap: 8px; }
.phone-card-stripe { width: 4px; border-radius: 9999px; align-self: stretch; flex-shrink: 0; }
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.3);
}
.scroll-hint-wheel {
  width: 20px; height: 28px; border: 1px solid rgba(255,255,255,.2); border-radius: 9999px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-hint-dot {
  width: 4px; height: 6px; background: rgba(255,255,255,.4); border-radius: 9999px;
  animation: bounce 1.5s ease-in-out infinite;
}

/* ══════════════════════════════════════
   PAIN POINTS
══════════════════════════════════════ */
#pain-points {
  background: linear-gradient(180deg, #152A1E 0%, #1A3124 100%);
  padding: 96px 0;
  position: relative;
}
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin-bottom: 12px; }
.section-heading p { font-size: 14px; max-width: 480px; margin: 0 auto; line-height: 1.65; }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; text-align: left; }
.pain-card {
  border-radius: 16px; padding: 24px;
  border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.025);
  transition: background .2s, border-color .2s, box-shadow .2s;
  backdrop-filter: blur(4px);
}
.pain-card:hover {
  background: rgba(255,255,255,.05); border-color: rgba(197,149,59,.15);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.pain-card-quote { color: #fff; font-weight: 600; font-size: 15px; margin-bottom: 12px; line-height: 1.4; }
.pain-card-answer { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.65; }

/* ══════════════════════════════════════
   FOUNDERS PREVIEW
══════════════════════════════════════ */
#founders-preview {
  background: linear-gradient(180deg, #1A3124 0%, #152A1E 100%);
  padding: 96px 0;
}
.founders-eyebrow {
  color: var(--sage); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px;
}
.founders-quote {
  font-size: clamp(18px, 2.5vw, 24px); font-weight: 300; color: #fff;
  line-height: 1.6; margin-bottom: 32px; font-style: italic;
}
.founders-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 32px; }
.founder-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px; padding: 16px 20px;
}
.founder-avatar {
  position: relative; flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.founder-avatar svg { width: 28px; height: 28px; color: #fff; }
.founder-badge {
  position: absolute; bottom: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid #152A1E;
  display: flex; align-items: center; justify-content: center;
}
.founder-badge svg { width: 10px; height: 10px; color: #fff; }
.founder-name { color: #fff; font-weight: 600; font-size: 14px; }
.founder-title { font-size: 12px; font-weight: 600; margin-top: 2px; color: rgba(255,255,255,.85); }
.founder-role { color: rgba(255,255,255,.75); font-size: 11px; margin-top: 2px; }
.founders-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--secondary); font-size: 14px; font-weight: 500; transition: color .15s;
}
.founders-link:hover { color: var(--secondary-light); }
.founders-link svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════
   EXPERT COMMUNITY
══════════════════════════════════════ */
#experts {
  background: #F2E8D5;
  padding: 96px 0;
  position: relative;
}
#experts::before {
  content: '';
  display: block; height: 80px; margin-top: -80px; pointer-events: none;
  position: relative; z-index: 2;
  background: linear-gradient(180deg, #152A1E 0%, #2A3A2A 30%, #6B665E 55%, #B8A88A 75%, #F2E8D5 100%);
}
#experts .section-heading h2 { color: var(--primary-dark); }
#experts .section-heading p { color: var(--text-muted); }
.experts-eyebrow {
  color: var(--sage); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px;
}
.expert-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.expert-card {
  background: rgba(255,255,255,.55); border-radius: 16px; padding: 16px;
  border: 1px solid var(--border); transition: border-color .2s, box-shadow .2s, transform .2s;
  box-shadow: var(--shadow-sm); backdrop-filter: blur(4px);
}
.expert-card:hover {
  border-color: rgba(197,149,59,.3); box-shadow: var(--shadow-md);
  transform: translateY(-2px); background: rgba(255,255,255,.7);
}
.expert-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px; margin-bottom: 12px;
}
.expert-icon svg { width: 20px; height: 20px; }
.expert-card h3 { color: var(--primary-dark); font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.expert-card p { color: var(--text-muted); font-size: 12px; }
.expert-footnote { text-align: center; margin-top: 40px; color: var(--text-muted); font-size: 12px; max-width: 448px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════
   PILLARS
══════════════════════════════════════ */
#features { background: #F2E8D5; padding: 96px 0; }
#features .section-heading h2 { color: var(--primary-dark); }
#features .section-heading p { color: var(--text-muted); }
.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; text-align: left; }
.pillar-health {
  background: rgba(255,255,255,.5); border-radius: 16px; padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); backdrop-filter: blur(4px);
}
.pillar-wealth {
  background: linear-gradient(135deg, #1E3A2B 0%, #152A1E 100%);
  border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow-lg);
}
.pillar-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px; margin-bottom: 16px;
}
.pillar-icon svg { width: 20px; height: 20px; }
.pillar-health h3 { color: var(--primary-dark); font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.pillar-wealth h3 { color: #fff; font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.pillar-health > p { color: var(--text-secondary); font-size: 12px; margin-bottom: 16px; }
.pillar-wealth > p { color: rgba(255,255,255,.80); font-size: 12px; margin-bottom: 16px; }
.pillar-list { display: flex; flex-direction: column; gap: 8px; }
.pillar-item { display: flex; align-items: center; gap: 8px; }
.pillar-check {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pillar-check svg { width: 10px; height: 10px; }
.pillar-health .pillar-item span:last-child { color: var(--text-secondary); font-size: 14px; }
.pillar-wealth .pillar-item span:last-child { color: rgba(255,255,255,.85); font-size: 14px; }

/* ══════════════════════════════════════
   MODULES
══════════════════════════════════════ */
#modules {
  background: linear-gradient(180deg, #152A1E 0%, #0F1F15 50%, #152A1E 100%);
  padding: 96px 0;
  position: relative;
}
#modules::before {
  content: '';
  display: block; height: 80px; margin-top: -80px; pointer-events: none;
  position: relative; z-index: 2;
  background: linear-gradient(180deg, #F2E8D5 0%, #B8A88A 25%, #6B665E 50%, #2A3A2A 75%, #152A1E 100%);
}
#modules .section-heading h2 { color: #fff; }
#modules .section-heading p { color: rgba(255,255,255,.85); }
.modules-eyebrow {
  color: var(--secondary); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px;
}
.modules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; text-align: left; }
.module-card {
  border-radius: 16px; padding: 20px;
  border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.025);
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.module-card:hover {
  background: rgba(255,255,255,.05); border-color: rgba(197,149,59,.12);
  box-shadow: 0 4px 20px rgba(0,0,0,.2); transform: translateY(-1px);
}
.module-card-inner { display: flex; align-items: flex-start; gap: 16px; }
.module-icon {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 16px;
}
.module-icon svg { width: 24px; height: 24px; }
.module-head { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.module-head h3 { color: #fff; font-weight: 600; font-size: 14px; }
.module-tag {
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06); padding: 2px 8px; border-radius: 9999px;
}
.module-card p { color: rgba(255,255,255,.80); font-size: 13px; line-height: 1.6; }

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
#how-it-works {
  background-color: #F2E8D5;
  background-image: url('images/parenting-reading.jpg');
  background-size: cover; background-position: center;
  padding: 96px 0;
  position: relative;
}
#how-it-works::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: rgba(242,232,213,.92);
}
#how-it-works > * { position: relative; z-index: 1; }
#how-it-works::before {
  content: '';
  display: block; height: 80px; margin-top: -80px; pointer-events: none;
  position: relative; z-index: 2;
  background: linear-gradient(180deg, #152A1E 0%, #2A3A2A 25%, #6B665E 50%, #B8A88A 75%, #F2E8D5 100%);
}
#how-it-works .section-heading h2 { color: var(--primary-dark); }
#how-it-works .section-heading p { color: var(--text-muted); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; text-align: left; }
.step-wrap { position: relative; display: flex; flex-direction: column; }
.step-arrow {
  display: none; position: absolute; top: 32px; right: -12px; z-index: 10;
  align-items: center;
}
.step-wrap:not(:last-child) .step-arrow { display: flex; }
.step-arrow-line { width: 20px; height: 1px; background: var(--border); }
.step-arrow-head { color: rgba(197,149,59,.5); margin-left: -2px; }
.step-card { border-radius: 16px; padding: 24px; flex: 1; }
.step-number {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 16px;
}
.step-card h3 { font-size: 15px; font-weight: 600; color: var(--primary-dark); margin-bottom: 6px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════
   FEATURE CARDS
══════════════════════════════════════ */
#feature-cards { background: #F2E8D5; padding: 96px 0; }
#feature-cards .section-heading h2 { color: var(--primary-dark); }
#feature-cards .section-heading p { color: var(--text-muted); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left; }
.feature-card {
  background: rgba(255,255,255,.5); border-radius: 16px; padding: 24px;
  border: 1px solid var(--border); transition: border-color .2s, box-shadow .2s, transform .2s;
  box-shadow: var(--shadow-sm); backdrop-filter: blur(4px);
}
.feature-card:hover {
  border-color: rgba(197,149,59,.3); box-shadow: var(--shadow-md);
  transform: translateY(-2px); background: rgba(255,255,255,.7);
}
.feature-card-inner { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 16px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-head { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.feature-head h3 { font-weight: 600; color: var(--primary-dark); font-size: 14px; }
.feature-tag {
  font-size: 10px; font-weight: 600; color: var(--text-muted);
  background: rgba(0,0,0,.05); padding: 2px 8px; border-radius: 9999px;
}
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ══════════════════════════════════════
   SOCIAL PROOF
══════════════════════════════════════ */
#social-proof {
  background: #F2E8D5; padding: 48px 0;
}
.social-inner {
  max-width: 768px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 20px; text-align: center;
}
.avatars { display: flex; flex-shrink: 0; }
.avatars > div {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff;
  margin-left: -8px; display: flex; align-items: center; justify-content: center;
}
.avatars > div:first-child { margin-left: 0; }
.avatar-initials { font-size: 10px; font-weight: 700; color: #fff; }
.social-text { font-size: 14px; font-weight: 500; color: var(--primary-dark); }
.social-divider { width: 1px; height: 32px; background: var(--border); }
.social-cta { display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 500; color: var(--secondary); flex-shrink: 0; transition: color .15s; }
.social-cta:hover { color: var(--secondary-light); }

/* ══════════════════════════════════════
   WAITLIST CTA
══════════════════════════════════════ */
#waitlist {
  background-color: #F2E8D5;
  background-image: url('images/parenting-hands.jpg');
  background-size: cover; background-position: center top;
  padding: 96px 0 120px;
  position: relative;
}
#waitlist::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: rgba(242,232,213,.90);
}
#waitlist > * { position: relative; z-index: 1; }
#waitlist .section-heading h2 { color: var(--primary-dark); }
#waitlist .section-heading p { color: var(--text-muted); }
.waitlist-form-wrap { display: flex; flex-direction: column; gap: 12px; }
.waitlist-input {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--border); background: rgba(255,255,255,.6);
  color: var(--text); font-size: 14px;
  transition: border-color .15s, box-shadow .15s;
}
.waitlist-input::placeholder { color: rgba(107,102,94,.5); }
.waitlist-input:focus { outline: none; box-shadow: 0 0 0 3px rgba(197,149,59,.2); border-color: var(--secondary); }
.stage-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.stage-pill {
  padding: 6px 12px; border-radius: 9999px; font-size: 12px; font-weight: 500;
  border: 1px solid var(--border); background: rgba(255,255,255,.5); color: var(--text-muted);
  transition: background .15s, border-color .15s, color .15s; cursor: pointer;
}
.stage-pill:hover { border-color: rgba(197,149,59,.4); }
.stage-pill.active { background: var(--primary-dark); color: #fff; border-color: var(--primary-dark); }
.province-wrap { position: relative; }
.province-select {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--border); background: rgba(255,255,255,.6);
  color: var(--text); font-size: 14px; appearance: none; cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.province-select:focus { outline: none; box-shadow: 0 0 0 3px rgba(197,149,59,.2); border-color: var(--secondary); }
.province-chevron {
  position: absolute; top: 50%; right: 16px; transform: translateY(-50%);
  pointer-events: none; color: var(--text-muted);
}
.province-chevron svg { width: 16px; height: 16px; }
.btn-waitlist {
  width: 100%; padding: 12px 24px; background: var(--secondary); color: #fff;
  font-weight: 600; font-size: 14px; border-radius: 12px;
  transition: background .15s, box-shadow .15s; cursor: pointer;
  box-shadow: 0 2px 8px rgba(197,149,59,.2);
}
.btn-waitlist:hover { background: var(--secondary-light); box-shadow: 0 4px 16px rgba(197,149,59,.3); }
.btn-waitlist:disabled { opacity: .6; cursor: not-allowed; }
.waitlist-footnote { color: rgba(138,134,128,.5); font-size: 12px; margin-top: 20px; }
.app-badges { margin-top: 32px; display: flex; justify-content: center; gap: 16px; }
.app-badge {
  display: flex; align-items: center; gap: 8px; padding: 10px 16px;
  border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,.5);
  opacity: .5; cursor: not-allowed; user-select: none;
}
.app-badge svg { width: 20px; height: 20px; color: var(--primary-dark); flex-shrink: 0; }
.app-badge-text p:first-child { font-size: 8px; color: var(--text-muted); line-height: 1; }
.app-badge-text p:last-child { font-size: 12px; font-weight: 600; color: var(--primary-dark); margin-top: 2px; line-height: 1; }

/* Confirmation state */
.waitlist-confirm { display: none; flex-direction: column; gap: 16px; }
.waitlist-confirm.show { display: flex; }
.waitlist-form-section.hidden { display: none; }
.confirm-card {
  background: rgba(143,174,139,.10); border: 1px solid rgba(143,174,139,.25);
  border-radius: 16px; padding: 24px;
}
.confirm-position {
  display: inline-block; background: var(--primary-dark); color: #fff;
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 9999px; margin-bottom: 12px;
}
.confirm-title { font-weight: 600; color: var(--primary-dark); margin-bottom: 4px; }
.confirm-sub { color: var(--text-muted); font-size: 14px; }
.confirm-sub strong { color: var(--primary-dark); }
.referral-card {
  background: rgba(255,255,255,.5); border: 1px solid var(--border); border-radius: 16px; padding: 20px; text-align: left;
}
.referral-card h4 { font-size: 14px; font-weight: 600; color: var(--primary-dark); margin-bottom: 4px; }
.referral-card > p { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.referral-btns { display: flex; gap: 8px; }
.btn-twitter {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; background: #1DA1F2; color: #fff;
  font-size: 12px; font-weight: 600; border-radius: 12px; transition: background .15s;
}
.btn-twitter:hover { background: #1a94e0; }
.btn-copy {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; background: rgba(0,0,0,.05); color: var(--text);
  font-size: 12px; font-weight: 600; border-radius: 12px; transition: background .15s; cursor: pointer;
}
.btn-copy:hover { background: rgba(0,0,0,.08); }
.error-msg { color: #ef4444; font-size: 14px; margin-top: 12px; display: none; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: linear-gradient(180deg, #152A1E 0%, #0F1F15 100%);
  color: rgba(255,255,255,.75); font-size: 14px;
  position: relative;
}
footer::before {
  content: '';
  display: block; height: 80px; margin-top: -80px; pointer-events: none;
  position: relative; z-index: 2;
  background: linear-gradient(180deg, #F2E8D5 0%, #B8A88A 25%, #6B665E 50%, #2A3A2A 75%, #152A1E 100%);
}
.footer-inner { max-width: 1152px; margin: 0 auto; padding: 48px 24px 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-bottom: 40px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-logo img { height: 48px; width: auto; flex-shrink: 0; }
.footer-brand-name { font-size: 20px; font-weight: 700; color: #fff; white-space: nowrap; }
.footer-brand-name span { color: var(--secondary); }
.footer-brand p { line-height: 1.65; max-width: 280px; }
.footer-col h4 { color: #fff; font-weight: 600; margin-bottom: 12px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { transition: color .15s; }
.footer-col ul a:hover { color: #fff; }
.footer-legal { line-height: 1.65; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { transition: color .15s; }
.footer-bottom-links a:hover { color: #fff; }

/* ══════════════════════════════════════
   FOUNDERS PAGE
══════════════════════════════════════ */
.founders-hero {
  background: linear-gradient(165deg, #0F1F15 0%, #152A1E 50%, #1E3A2B 100%);
  padding: 96px 0 80px; margin-top: 64px;
}
.founders-hero .eyebrow {
  color: var(--secondary); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px;
}
.founders-hero h1 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: #fff;
  line-height: 1.15; margin-bottom: 24px;
}
.founders-hero p { color: rgba(255,255,255,.85); font-size: 18px; line-height: 1.6; max-width: 640px; margin: 0 auto; }

.timeline-section { padding: 96px 0; }
.timeline { position: relative; max-width: 768px; margin: 0 auto; padding: 0 24px; }
.timeline-line { position: absolute; left: 44px; top: 0; bottom: 0; width: 1px; background: var(--border-dark); }
.timeline-item { position: relative; display: flex; gap: 32px; margin-bottom: 64px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: relative; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid;
  background: #2E2A24; display: flex; align-items: center; justify-content: center; z-index: 1;
}
.timeline-dot-inner { width: 12px; height: 12px; border-radius: 50%; }
.timeline-content { padding-top: 4px; padding-bottom: 16px; }
.timeline-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 8px;
}
.timeline-content h3 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.timeline-content p { color: var(--text-muted); line-height: 1.65; }

.mission-section { background: #EDE1CC; padding: 96px 0; }
.mission-section .eyebrow {
  color: var(--secondary); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px;
}
.mission-section h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--primary-dark); margin-bottom: 48px; }
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.mission-card { text-align: center; padding: 24px; }
.mission-card .emoji { font-size: 40px; margin-bottom: 16px; }
.emoji-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 16px;
}
.emoji-icon.henry-icon { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 20px; }
.roadmap-card .emoji-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px; }
.mission-card h3 { font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.mission-card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

.henry-section { background: var(--background); padding: 96px 0; }
.henry-card {
  background-color: #152A1E;
  background-image: url('images/founders-seedling.jpg');
  background-size: cover; background-position: center;
  border-radius: 24px; padding: 40px;
  text-align: center; position: relative; overflow: hidden; max-width: 768px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.henry-card::after {
  content: ''; position: absolute; inset: 0; z-index: 0; border-radius: 24px;
  background: rgba(21,42,30,.85);
}
.henry-card .inner { position: relative; z-index: 1; }
.henry-card .decor-tr { position: absolute; top: 0; right: 0; width: 160px; height: 160px; background: rgba(197,149,59,.10); border-bottom-left-radius: 100%; }
.henry-card .decor-bl { position: absolute; bottom: 0; left: 0; width: 128px; height: 128px; background: rgba(143,174,139,.10); border-top-right-radius: 100%; }
.henry-card .inner { position: relative; }
.henry-card .emoji { font-size: 48px; margin-bottom: 20px; }
.henry-card .eyebrow { color: var(--secondary); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px; }
.henry-card h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.henry-card p { color: rgba(255,255,255,.85); line-height: 1.65; max-width: 560px; margin: 0 auto 24px; }
.henry-card .footnote { color: rgba(255,255,255,.55); font-size: 14px; font-style: italic; }

.roadmap-section { background: #F2E8D5; padding: 96px 0; }
.roadmap-section .eyebrow {
  color: var(--secondary); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px;
}
.roadmap-section h2 { font-size: 28px; font-weight: 700; color: var(--primary-dark); }
.roadmap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.roadmap-card {
  background: var(--background); border-radius: 16px; padding: 24px;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.roadmap-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.roadmap-card .emoji { font-size: 28px; margin-bottom: 12px; }
.roadmap-card h3 { font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.roadmap-card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

.founders-cta { background: var(--background); padding: 64px 0 120px; }
.founders-cta h2 { font-size: 24px; font-weight: 700; color: var(--primary-dark); margin-bottom: 16px; }
.founders-cta p { color: var(--text-muted); margin-bottom: 32px; }
.founders-cta .cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn-secondary {
  padding: 12px 32px; border: 1px solid var(--border-dark); color: var(--primary-dark);
  font-weight: 600; font-size: 14px; border-radius: 9999px; transition: background .15s;
}
.btn-secondary:hover { background: rgba(0,0,0,.03); }

/* ══════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════ */
.legal-page { background: var(--background); padding-top: 96px; padding-bottom: 64px; }
.legal-inner { max-width: 768px; margin: 0 auto; padding: 0 24px; }
.legal-back {
  font-size: 14px; color: var(--secondary); display: inline-flex; align-items: center; gap: 4px;
  margin-bottom: 24px; transition: color .15s;
}
.legal-back:hover { color: var(--secondary-light); }
.legal-page h1 { font-size: 36px; font-weight: 700; color: var(--primary-dark); margin-bottom: 16px; }
.legal-page .legal-subtitle { color: var(--text-muted); margin-bottom: 40px; }
.legal-intro-box {
  background: linear-gradient(135deg, #1E3A2B, #152A1E); border-radius: 16px; padding: 24px;
  color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.65; margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}
.legal-warning-box {
  background: rgba(197,149,59,.15); border: 1px solid rgba(197,149,59,.30);
  border-radius: 16px; padding: 20px; margin-bottom: 40px;
}
.legal-warning-box p { font-size: 14px; color: var(--text); line-height: 1.65; }
.legal-section { border-bottom: 1px solid var(--border-dark); padding-bottom: 32px; margin-bottom: 32px; }
.legal-section:last-of-type { border-bottom: none; }
.legal-section h2 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 16px; }
.legal-section .content { color: var(--text-secondary); font-size: 14px; line-height: 1.65; white-space: pre-line; }
.legal-footer-nav {
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border-dark);
  display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px;
}
.legal-footer-nav a { transition: color .15s; }
.legal-footer-nav a.primary-link { color: var(--secondary); }
.legal-footer-nav a.primary-link:hover { text-decoration: underline; }
.legal-footer-nav a.muted-link { color: var(--text-muted); }
.legal-footer-nav a.muted-link:hover { color: var(--primary-dark); }

/* ══════════════════════════════════════
   UTILITY
══════════════════════════════════════ */
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Color helpers for icons */
.c-sage { color: var(--sage); }
.c-gold { color: var(--secondary); }
.c-rose { color: var(--rose); }
.c-lav  { color: var(--lavender); }
.c-blue { color: var(--blue-accent); }
.bg-sage { background: rgba(143,174,139,.12); }
.bg-gold { background: rgba(197,149,59,.12); }
.bg-rose { background: rgba(212,132,154,.12); }
.bg-lav  { background: rgba(155,142,160,.12); }
.bg-blue { background: rgba(91,155,213,.12); }
.bg-sage-c { background: rgba(143,174,139,.15); }
.bg-gold-c { background: rgba(197,149,59,.20); }

/* ══════════════════════════════════════
   INDEX.HTML COMPATIBILITY
   (class name aliases used by homepage)
══════════════════════════════════════ */
.hero-inner {
  position: relative; max-width: 1152px; margin: 0 auto; padding: 96px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
#hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 24px; letter-spacing: -.02em; }
#hero h1 em { color: var(--secondary); font-style: normal; text-shadow: 0 0 40px rgba(197,149,59,.2); }
.hero-sub { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 40px; max-width: 420px; }
.section-inner { max-width: 960px; margin: 0 auto; padding: 0 24px; text-align: center; }
.section-inner h2 { margin-bottom: 12px; }
.section-sub { font-size: 14px; max-width: 560px; margin: 0 auto 48px; line-height: 1.65; text-align: center; }
#pain-points .section-sub { color: rgba(255,255,255,.85); }
#experts .section-sub,
#features .section-sub,
#how-it-works .section-sub,
#feature-cards .section-sub { color: var(--text-muted); }
#modules .section-sub { color: rgba(255,255,255,.85); }
.section-eyebrow {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 12px;
}
#founders-preview .section-eyebrow { color: var(--sage); }
#modules .section-eyebrow { color: var(--secondary); }
#experts .section-eyebrow { color: var(--sage); }
.founders-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 32px; }
.experts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; text-align: left; }
.experts-footnote { text-align: center; margin-top: 40px; color: var(--text-muted); font-size: 12px; max-width: 448px; margin-left: auto; margin-right: auto; }

/* Icon color variants used by index.html */
.expert-icon-rose { background: rgba(212,132,154,.12); color: var(--rose); }
.expert-icon-sage { background: rgba(143,174,139,.12); color: var(--sage); }
.expert-icon-gold { background: rgba(197,149,59,.12); color: var(--secondary); }
.expert-icon-lavender { background: rgba(155,142,160,.12); color: var(--lavender); }
.expert-icon-rose svg, .expert-icon-sage svg, .expert-icon-gold svg, .expert-icon-lavender svg { color: inherit; }

.module-icon-gold { background: rgba(197,149,59,.12); color: var(--secondary); }
.module-icon-sage { background: rgba(143,174,139,.12); color: var(--sage); }
.module-icon-rose { background: rgba(212,132,154,.12); color: var(--rose); }
.module-icon-blue { background: rgba(91,155,213,.12); color: var(--blue-accent); }
.module-icon-lavender { background: rgba(155,142,160,.12); color: var(--lavender); }
.module-icon-gold svg, .module-icon-sage svg, .module-icon-rose svg, .module-icon-blue svg, .module-icon-lavender svg { color: inherit; }

.feature-icon-sage { background: rgba(143,174,139,.12); color: var(--sage); }
.feature-icon-gold { background: rgba(197,149,59,.12); color: var(--secondary); }
.feature-icon-rose { background: rgba(212,132,154,.12); color: var(--rose); }
.feature-icon-lavender { background: rgba(155,142,160,.12); color: var(--lavender); }
.feature-icon-sage svg, .feature-icon-gold svg, .feature-icon-rose svg, .feature-icon-lavender svg { color: inherit; }

/* Pain card with blockquote variant */
.pain-card blockquote { color: #fff; font-weight: 600; font-size: 15px; margin-bottom: 12px; line-height: 1.4; }
.pain-card p { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.65; }

/* Module/feature card flat layout (no .module-card-inner wrapper) */
.module-card h3 { color: #fff; font-weight: 600; font-size: 14px; margin: 8px 0 4px; }
.feature-card h3 { font-weight: 600; color: var(--primary-dark); font-size: 14px; margin: 4px 0 4px; }

/* Pillar header wrapper */
.pillar-header { margin-bottom: 16px; }
.pillar-header .pillar-icon { margin-bottom: 12px; }
.pillar-health .pillar-header h3 { color: var(--primary-dark); font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.pillar-wealth .pillar-header h3 { color: #fff; font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.pillar-health .pillar-header p { color: var(--text-secondary); font-size: 12px; }
.pillar-wealth .pillar-header p { color: rgba(255,255,255,.65); font-size: 12px; }
.pillar-health .pillar-icon { background: rgba(143,174,139,.12); }
.pillar-wealth .pillar-icon { background: rgba(197,149,59,.20); }
.pillar-health .pillar-check { background: rgba(143,174,139,.15); }
.pillar-health .pillar-check svg { color: var(--sage); }
.pillar-wealth .pillar-check svg { color: var(--secondary); }
.pillar-list li { display: flex; align-items: center; gap: 8px; }
.pillar-health .pillar-list li { color: var(--text-secondary); font-size: 14px; }
.pillar-wealth .pillar-list li { color: rgba(255,255,255,.75); font-size: 14px; }

/* Step card without step-wrap parent */
.step-card { border-radius: 16px; padding: 24px; border: 1px solid var(--border); background: rgba(255,255,255,.4); }

/* Section headings for experts/features/modules on green bg */
#pain-points .section-inner h2 { color: #fff; }
#experts .section-inner h2 { color: var(--primary-dark); }
#features .section-inner h2 { color: var(--primary-dark); }
#modules .section-inner h2 { color: #fff; }
#how-it-works .section-inner h2 { color: var(--primary-dark); }
#feature-cards .section-inner h2 { color: var(--primary-dark); }
#waitlist .section-inner h2 { color: var(--primary-dark); }

/* Scroll hint line variant */
.scroll-hint-line {
  width: 1px; height: 40px; background: rgba(255,255,255,.2);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 640px) {
  .expert-grid, .experts-grid { grid-template-columns: 1fr 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .social-divider { display: none; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-grid, .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-phone-wrap { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .founders-hero h1 { font-size: 28px; }
  .timeline-item { gap: 20px; }
  .timeline-line { left: 36px; }
}

@media (min-width: 768px) and (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
}
