/* ═══════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --sage:         #8FAF8A;
  --sage-mid:     #6A8F65;
  --sage-dark:    #456040;
  --sage-light:   #D4E4D0;
  --sage-pale:    #EEF5EC;
  --cream:        #FAF8F3;
  --cream-dark:   #F3EFE6;
  --peach:        #F2A98A;
  --peach-light:  #FBE8DF;
  --peach-pale:   #FEF5F1;
  --text:         #2C2C2C;
  --text-mid:     #5A5A5A;
  --text-light:   #8A8A8A;
  --white:        #FFFFFF;
  --safe-green:   #4A9660;
  --safe-bg:      #EAF5EE;
  --caution-yel:  #C8922A;
  --caution-bg:   #FEF5E0;
  --avoid-red:    #C0453A;
  --avoid-bg:     #FDECEA;
  --radius:       18px;
  --radius-sm:    10px;
  --shadow:       0 4px 24px rgba(70, 96, 64, 0.10);
  --shadow-lg:    0 16px 48px rgba(70, 96, 64, 0.14);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; }
a { text-decoration: none; color: inherit; transition: opacity 0.2s; }
a:hover { opacity: 0.75; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

/* ═══════════════════════════════════════
   SHARED
═══════════════════════════════════════ */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage-mid);
  margin-bottom: 14px;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 52px;
}
.section-h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease calc(var(--delay, 0s)), transform 0.75s ease calc(var(--delay, 0s));
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(250, 248, 243, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(143, 175, 138, 0.15);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(70,96,64,0.08); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sage-dark);
  opacity: 1 !important;
}
.brand-mark { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}
.nav-cta {
  background: var(--sage-dark) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  opacity: 1 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--sage-mid) !important; transform: translateY(-1px); opacity: 1 !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 199;
  background: var(--cream);
  border-bottom: 1px solid var(--sage-light);
  padding: 20px 24px;
  gap: 18px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 400;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 48px 90px;
  max-width: 1260px;
  margin: 0 auto;
  gap: 60px;
  overflow: hidden;
}

.hero-bg-elements { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-orb--1 {
  width: 560px; height: 560px;
  background: var(--sage-light);
  top: -120px; right: -80px;
}
.hero-orb--2 {
  width: 380px; height: 380px;
  background: var(--peach-light);
  bottom: -60px; left: 30%;
}

.food-float {
  position: absolute;
  font-size: 2rem;
  animation: gentleFloat 6s ease-in-out infinite;
  opacity: 0.55;
}
.food-float--1 { top: 18%; right: 12%; animation-delay: 0s; }
.food-float--2 { top: 60%; right: 5%; animation-delay: 1.2s; font-size: 1.6rem; }
.food-float--3 { top: 30%; left: 5%; animation-delay: 2.4s; font-size: 1.5rem; }
.food-float--4 { bottom: 20%; right: 20%; animation-delay: 0.8s; font-size: 1.4rem; }
.food-float--5 { top: 70%; left: 15%; animation-delay: 3s; font-size: 1.3rem; }

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 560px;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--sage-light);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(70,96,64,0.08);
  animation: fadeUp 0.7s ease both;
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--peach);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 22px;
  animation: fadeUp 0.75s 0.1s ease both;
}
.hero-h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 38px;
  animation: fadeUp 0.75s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp 0.75s 0.3s ease both;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--sage-dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(70,96,64,0.25);
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  opacity: 1 !important;
}
.cta-primary:hover {
  background: var(--sage-mid);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(70,96,64,0.3);
  opacity: 1 !important;
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-mid);
  opacity: 1 !important;
  transition: color 0.2s, gap 0.2s !important;
}
.cta-ghost:hover { color: var(--sage-dark); gap: 11px; opacity: 1 !important; }

/* hero phone */
.hero-mockup {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.9s 0.25s ease both;
}

.phone {
  width: 260px;
  height: 530px;
  background: #1A1A1A;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1.5px rgba(255,255,255,0.07);
  position: relative;
  z-index: 2;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 26px;
  background: #1A1A1A;
  border-radius: 0 0 16px 16px;
  z-index: 4;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 30px;
  overflow: hidden;
}
.phone-shadow {
  position: absolute;
  bottom: -24px; left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 32px;
  background: rgba(70,96,64,0.18);
  filter: blur(20px);
  border-radius: 50%;
  z-index: 1;
}

/* app ui inside hero phone */
.app-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 36px;
}
.app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--sage-dark);
}
.scan-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(70,96,64,0.04);
  margin: 8px 14px;
  border-radius: 16px;
}
.scan-frame {
  width: 130px; height: 100px;
  position: relative;
}
.scan-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--sage-dark);
  border-style: solid;
}
.sc-tl { top: 0; left: 0; border-width: 2.5px 0 0 2.5px; border-radius: 4px 0 0 0; }
.sc-tr { top: 0; right: 0; border-width: 2.5px 2.5px 0 0; border-radius: 0 4px 0 0; }
.sc-bl { bottom: 0; left: 0; border-width: 0 0 2.5px 2.5px; border-radius: 0 0 0 4px; }
.sc-br { bottom: 0; right: 0; border-width: 0 2.5px 2.5px 0; border-radius: 0 0 4px 0; }

.scan-line {
  position: absolute;
  top: 50%; left: 6px; right: 6px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
  animation: scanMove 2s ease-in-out infinite;
}
@keyframes scanMove {
  0%, 100% { top: 15%; opacity: 1; }
  50% { top: 80%; opacity: 0.6; }
}

.scan-hint {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

.app-tab-bar {
  display: flex;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 10px 0 12px;
}
.tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.6rem;
  color: var(--text-light);
}
.tab.active { color: var(--sage-dark); }

/* floating result cards */
.result-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  min-width: 168px;
  animation: floatCard 4s ease-in-out infinite;
}
.result-card--safe {
  top: 22%;
  right: -48px;
  animation-delay: 0s;
}
.result-card--caution {
  bottom: 22%;
  left: -48px;
  animation-delay: 2s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.result-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.result-dot.safe { background: var(--safe-green); }
.result-dot.caution { background: var(--avoid-red); }

.result-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}
.result-text span { font-size: 0.68rem; color: var(--text-light); }

/* ═══════════════════════════════════════
   PROBLEM
═══════════════════════════════════════ */
.problem {
  background: var(--cream-dark);
  padding: 110px 48px;
}
.problem-inner { max-width: 1100px; margin: 0 auto; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.problem-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.how-it-works { padding: 110px 48px; }
.hiw-inner { max-width: 1100px; margin: 0 auto; }

.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
}

.step {
  flex: 1;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s;
}
.step:hover { transform: translateY(-3px); }

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--sage-light);
  margin-bottom: 14px;
}

.step-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.step p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.step-arrow {
  flex-shrink: 0;
  padding: 0 16px;
  opacity: 0.4;
}

/* safety system */
.safety-system {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 40px;
  gap: 0;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.safety-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
}
.safety-item div { display: flex; flex-direction: column; gap: 2px; }
.safety-item strong { font-size: 0.85rem; font-weight: 600; }
.safety-item span { font-size: 0.75rem; color: var(--text-light); }

.safety-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.safety-item.safe .safety-dot { background: var(--safe-green); }
.safety-item.caution .safety-dot { background: var(--caution-yel); }
.safety-item.avoid .safety-dot { background: var(--avoid-red); }
.safety-item.safe strong { color: var(--safe-green); }
.safety-item.caution strong { color: var(--caution-yel); }
.safety-item.avoid strong { color: var(--avoid-red); }

.safety-divider {
  width: 1px;
  height: 40px;
  background: var(--sage-light);
  margin: 0 8px;
}

/* ═══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
.features { background: var(--sage-pale); padding: 110px 48px; }
.features-inner { max-width: 1100px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.feat-icon {
  width: 46px; height: 46px;
  background: var(--sage-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--sage-light);
}

.feat h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.feat p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.feat p em { font-style: italic; }

/* ═══════════════════════════════════════
   BUILT FOR MOMS
═══════════════════════════════════════ */
.built-for-moms { padding: 110px 48px; }
.bfm-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.bfm-text { flex: 1; }
.bfm-text .section-h2 { margin-bottom: 20px; }

.bfm-text p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 16px;
}

.bfm-points {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bfm-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 400;
}

.bfm-visual { flex: 1; }

.bfm-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bfm-result-card {
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.safe-card { background: var(--safe-bg); border: 1px solid rgba(74,150,96,0.18); }
.avoid-card { background: var(--avoid-bg); border: 1px solid rgba(192,69,58,0.18); }

.brc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.brc-header strong { font-size: 0.8rem; font-weight: 600; }
.brc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.safe-dot { background: var(--safe-green); }
.avoid-dot { background: var(--avoid-red); }
.safe-card .brc-header strong { color: var(--safe-green); }
.avoid-card .brc-header strong { color: var(--avoid-red); }

.brc-product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.brc-emoji { font-size: 1.6rem; }
.brc-name {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}
.brc-brand { font-size: 0.75rem; color: var(--text-light); }

.brc-reason {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
}

/* ═══════════════════════════════════════
   APP PREVIEW
═══════════════════════════════════════ */
.app-preview { background: var(--cream-dark); padding: 110px 48px; }
.ap-inner { max-width: 1100px; margin: 0 auto; }

.preview-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
}

.preview-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pphone-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-phone {
  width: 180px;
  height: 360px;
  background: #1A1A1A;
  border-radius: 30px;
  padding: 10px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.mini-phone--lg {
  width: 210px;
  height: 420px;
}

.mini-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 18px;
  background: #1A1A1A;
  border-radius: 0 0 12px 12px;
  z-index: 3;
}
.mini-screen {
  width: 100%; height: 100%;
  background: var(--cream);
  border-radius: 22px;
  overflow: hidden;
}
.mini-ui {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 26px;
}
.mini-topbar {
  padding: 10px 14px 6px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage-dark);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Scan mini */
.mini-scan-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(70,96,64,0.04);
  margin: 8px 10px;
  border-radius: 12px;
}
.mini-scan-frame {
  width: 78px; height: 56px;
  position: relative;
}
.msf-corner {
  position: absolute;
  width: 13px; height: 13px;
  border-color: var(--sage-dark);
  border-style: solid;
}
.c-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.c-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.c-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.c-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.mini-hint { font-size: 0.58rem; color: var(--text-light); }

/* Results mini */
.results-content {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.res-product-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.res-emoji { font-size: 1.4rem; }
.res-name { display: block; font-size: 0.7rem; font-weight: 600; color: var(--text); }
.res-brand { font-size: 0.58rem; color: var(--text-light); }

.res-badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  align-self: flex-start;
}
.safe-badge { background: var(--safe-bg); color: var(--safe-green); }

.res-ingredients {
  background: var(--white);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.res-ing-title { font-size: 0.58rem; font-weight: 600; color: var(--text-light); margin-bottom: 2px; }
.res-ing-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  color: var(--text);
}
.res-ing-row span:last-child { margin-left: auto; }
.ring-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.safe-ring { background: var(--safe-green); }
.ring-status { font-size: 0.58rem; font-weight: 600; }
.safe-status { color: var(--safe-green); }

.res-note {
  font-size: 0.6rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.5;
}

/* Prefs mini */
.prefs-content {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.65rem;
}
.pref-row--toggles { margin-top: 4px; }
.pref-label { color: var(--text-mid); font-weight: 400; }
.pref-chip {
  background: var(--cream-dark);
  border-radius: 100px;
  padding: 3px 9px;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text);
}
.selected-chip { background: var(--sage-light); color: var(--sage-dark); }
.pref-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.pref-tag {
  background: var(--cream-dark);
  border-radius: 100px;
  padding: 3px 8px;
  font-size: 0.58rem;
  color: var(--text-mid);
}
.active-tag { background: var(--sage-light); color: var(--sage-dark); font-weight: 500; }

/* shared mini tabbar */
.mini-tabbar {
  display: flex;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 7px 0 9px;
}
.mini-tab {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
}
.active-tab { color: var(--sage-dark); }

.pphone--left .mini-phone { transform: rotate(-3deg); }
.pphone--right .mini-phone { transform: rotate(3deg); }
.pphone--center .mini-phone { transform: translateY(-24px); }

/* ═══════════════════════════════════════
   WAITLIST
═══════════════════════════════════════ */
.waitlist {
  background: var(--sage-dark);
  padding: 120px 48px;
  text-align: center;
}
.waitlist-inner { max-width: 560px; margin: 0 auto; }

.wl-icon { font-size: 2.5rem; margin-bottom: 20px; }
.waitlist .section-eyebrow { color: var(--sage-light); }

.wl-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 18px;
}
.wl-h2 em { font-style: italic; color: var(--sage-light); }

.wl-p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.78;
  margin-bottom: 40px;
}

.wl-form {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: 100px;
  padding: 5px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  margin-bottom: 16px;
}
.wl-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
}
.wl-input::placeholder { color: var(--text-light); }

.wl-btn {
  background: var(--sage-mid);
  color: var(--white);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  border: none;
}
.wl-btn:hover { background: var(--sage); transform: scale(1.02); }

.wl-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

.wl-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--white);
}
.wl-success.visible { display: flex; }
.wl-success-icon { font-size: 2.5rem; }
.wl-success strong { font-size: 1.1rem; font-weight: 600; }
.wl-success p { font-size: 0.875rem; color: rgba(255,255,255,0.65); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: #1F2820; padding: 64px 48px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 1 !important;
}
.footer-brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.footer-tagline {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.footer-links-group {
  display: flex;
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  opacity: 1 !important;
}
.footer-col a:hover { color: var(--white); opacity: 1 !important; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  opacity: 1 !important;
}
.footer-social a:hover { color: var(--white); opacity: 1 !important; }

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  max-width: 680px;
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding-top: 120px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-mockup { display: none; }
  .bfm-inner { flex-direction: column; gap: 48px; }
  .footer-top { flex-direction: column; }
  .footer-links-group { flex-wrap: wrap; gap: 36px; }
}

@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 100px 24px 70px; }
  .problem { padding: 70px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .how-it-works { padding: 70px 24px; }
  .steps-row { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .features { padding: 70px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .built-for-moms { padding: 70px 24px; }
  .app-preview { padding: 70px 24px; }
  .preview-phones { flex-direction: column; align-items: center; }
  .pphone--left .mini-phone,
  .pphone--right .mini-phone,
  .pphone--center .mini-phone { transform: none; }
  .waitlist { padding: 80px 24px; }
  .wl-form { flex-direction: column; border-radius: 16px; }
  .wl-btn { border-radius: 100px; }
  .footer { padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
