/* Design tokens, reset, shared components: see tokens.css */

/* ═══════════════════════════════════════════════════
   LANDING PAGE — page-specific overrides
   ═══════════════════════════════════════════════════ */
html { scroll-snap-type: none; }
.s {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.s-auto {
  min-height: auto;
  overflow: visible;
}

/* Ambient glow — subtle radial highlight behind every section */
.ambient-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(107,127,94,0.04) 0%, transparent 60%);
  z-index: 0;
}

/* Shared floating video — top-left of any section (mirrors .rhy-float-video) */
.float-video {
  position: absolute; top: 24px; left: 24px; z-index: 10;
  width: 240px; overflow: visible;
}
.float-video .play-btn { width: 32px; height: 32px; }
.float-video .play-ring { width: 32px; height: 32px; }
.float-video .play-icon { width: 10px; height: 10px; }

/* ═══════════════════════════════════════════════════
   PROGRESS DOTS
   ═══════════════════════════════════════════════════ */
.dots {
  position: fixed; right: 20px; top: 50%;
  transform: translateY(-50%); z-index: 500;
  display: flex; flex-direction: column; gap: 14px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cream-ghost); cursor: none;
  transition: background 0.4s, transform 0.3s;
  position: relative; border: none;
}
.dot.active { background: var(--sage); transform: scale(1.4); }
.dot-label {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--cream-ghost); white-space: nowrap;
  opacity: 0; transition: opacity 0.3s, color 0.3s;
  pointer-events: none;
}
.dots:hover .dot-label { opacity: 1; }
.dot.active .dot-label { color: var(--sage); opacity: 1; }

/* Helpers, buttons, animations: see tokens.css */

/* ═══════════════════════════════════════════════════
   TEXT GLOW & BADGE GLOW
   ═══════════════════════════════════════════════════ */
h2 em[style*="color"], .paths-header h2 em, .rhy-header h2 em, .process-header h2 em,
.final-text h2 em, .story-row .story-text h2 em, .email-capture-inner h2 em,
.proof-header h2 em {
  text-shadow: none;
}
.wi-header h2 em, .pain-header h2 em {
  text-shadow: none;
}

/* ═══════════════════════════════════════════════════
   SECTION 0 — STICKY TOP BAR
   ═══════════════════════════════════════════════════ */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 56px; z-index: 200;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex; justify-content: center; align-items: center;
  padding: 0 28px; padding-top: env(safe-area-inset-top); border-bottom: 1px solid var(--border-light);
}
.top-social { display: flex; gap: 14px; align-items: center; }
.top-social a { display: flex; color: var(--cream-faint); opacity: 0.7; transition: opacity 0.3s; }
.top-social a:hover { opacity: 1; }
.top-social svg { width: 20px; height: 20px; fill: currentColor; }
.top-rotate {
  font-size: 0.72rem; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--cream-mid); height: 20px; overflow: hidden; text-align: center;
}
.top-rotate span {
  display: block; height: 20px; line-height: 20px;
  animation: rotateText 25s infinite; text-align: center;
}
@keyframes rotateText {
  0%,18% { transform: translateY(0); }
  20%,38% { transform: translateY(-20px); }
  40%,58% { transform: translateY(-40px); }
  60%,78% { transform: translateY(-60px); }
  80%,98% { transform: translateY(-80px); }
  100% { transform: translateY(-100px); }
}
.top-ctas { display: flex; gap: 10px; align-items: center; justify-self: end; }
.top-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 20px; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.6px; text-transform: uppercase;
  background: var(--sage); color: white; border-radius: 20px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
  box-shadow: 0 0 16px var(--sage-glow);
  animation: ctaGlow 2.5s ease-in-out infinite;
}
.top-cta:hover { transform: scale(1.06); background: var(--sage-light); box-shadow: 0 4px 24px rgba(107,127,94,0.45); animation: none; }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 16px var(--sage-glow); }
  50% { box-shadow: 0 0 24px rgba(107,127,94,0.45); }
}

/* Top bar quote */
.top-quote {
  display: flex; align-items: center; gap: 10px;
  justify-content: center; overflow: hidden;
  padding: 0 16px;
}
.top-quote-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--border-terra);
  box-shadow: 0 0 12px rgba(196,149,106,0.2);
}
.top-quote-text {
  font-family: var(--font-display); font-size: 1.05rem;
  font-style: italic; font-weight: 300;
  color: var(--cream); line-height: 1.4;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   PILLAR DIVIDERS — chapter headings
   ═══════════════════════════════════════════════════ */
.pillar-divider {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 48px 24px 16px;
  overflow: hidden;
}
.pillar-divider::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(107,127,94,0.03) 0%, transparent 65%);
  pointer-events: none;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin: 0;
  max-width: 600px;
}
.pillar-line {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
  margin-top: 14px;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIAL CAROUSEL
   ═══════════════════════════════════════════════════ */
.tc-wrap {
  text-align: center; max-width: 520px; margin: 0 auto;
  z-index: 2; position: relative;
}
.tc-viewport {
  position: relative; min-height: 320px; overflow: hidden;
  margin-top: 24px;
}
.tc-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center;
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.tc-slide.tc-active {
  opacity: 1; transform: translateX(0);
  position: relative; pointer-events: auto;
}
.tc-slide.tc-exit {
  opacity: 0; transform: translateX(-40px);
}
.tc-quote {
  font-family: var(--font-display);
  font-size: 4rem; line-height: 1; font-weight: 300;
  color: rgba(184,155,110,0.25);
  margin-bottom: -8px;
}
.tc-avatar {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(184,155,110,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 30px rgba(184,155,110,0.1);
  margin-bottom: 16px;
}
.tc-viewport::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,155,110,0.1) 0%, rgba(184,155,110,0.04) 40%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.tc-slide { z-index: 1; }
.tc-text {
  font-size: 0.9rem; color: var(--cream-mid); font-weight: 300;
  line-height: 1.8; font-style: italic;
  max-width: 460px;
}
.tc-name {
  font-size: 0.8rem; color: var(--cream); font-weight: 500;
  margin-top: 16px; letter-spacing: 0.3px;
}
.tc-role {
  font-size: 0.7rem; color: var(--cream-faint); font-weight: 300;
  margin-top: 2px;
}
.tc-dots {
  display: flex; justify-content: center; gap: 10px; margin-top: 24px;
}
.tc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none;
  cursor: pointer; transition: all 0.3s;
  padding: 0;
}
.tc-dot.tc-dot-active {
  background: rgba(184,155,110,0.5);
  transform: scale(1.3);
}
@media (max-width: 768px) {
  .tc-viewport { min-height: 360px; }
  .tc-text { font-size: 0.84rem; }
}

/* First pillar — account for fixed nav bar */
.pillar-divider--first { padding-top: 80px; }

/* Pillar with centered video (pillar 2) */
.pillar-divider--with-video { padding-top: 48px; }
.pillar-video-center {
  width: 200px; margin: 0 auto 24px;
  border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(184,155,110,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 60px rgba(184,155,110,0.12), 0 0 120px rgba(184,155,110,0.05);
}
.pillar-video-center .video-box {
  position: relative; width: 100%; padding-bottom: 100%; height: 0;
  border-radius: 50%; overflow: hidden;
  background: rgba(255,255,255,0.03);
  box-shadow: none; border: none;
}
.pillar-video-center .video-box video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%; object-fit: cover;
}
.pillar-video-center .play-btn { width: 36px; height: 36px; }
.pillar-video-center .play-ring { width: 36px; height: 36px; }
.pillar-video-center .play-icon { width: 12px; height: 12px; }

@media(max-width:768px) {
  .pillar-divider { padding: 32px 16px 12px; }
  .pillar-title { font-size: clamp(1.1rem, 4.5vw, 1.6rem); }
  .pillar-video-center { width: 150px; margin-bottom: 16px; }
}

/* ═══════════════════════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════════════════════ */
.hero {
  background: var(--bg-warm); padding: 120px 24px 24px;
}
.hero .orb-1 { top: -10%; right: -5%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(184,155,110,0.06), transparent 70%); }
.hero .orb-2 { bottom: -15%; left: -10%; width: 550px; height: 550px; background: radial-gradient(circle, rgba(184,155,110,0.04), transparent 70%); }
.hero .orb-3 { top: 40%; left: 35%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(184,155,110,0.03), transparent 70%); animation: pulse 6s ease-in-out infinite alternate; }
.hero-grid {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px; max-width: 800px; width: 100%; z-index: 2;
}
.hero-avatar {
  width: clamp(100px, 14vw, 160px); height: clamp(100px, 14vw, 160px); border-radius: 50%;
  border: 2px solid var(--sage);
  box-shadow: 0 0 30px rgba(107,127,94,0.5), 0 0 80px rgba(107,127,94,0.2);
  object-fit: cover;
}
.section-avatar { width: clamp(80px, 12vw, 140px); height: clamp(80px, 12vw, 140px); border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.12); box-shadow: 0 4px 20px rgba(0,0,0,0.3); z-index: 2; }
.hero-avatar-wrap { position: relative; margin-bottom: 8px; }
.hero-avatar-wrap .section-avatar { width: clamp(100px, 13vw, 150px); height: clamp(100px, 13vw, 150px); animation: avatarZoom 4s ease-in-out infinite, glowPulse 3s ease-in-out infinite; }
.rhythms .hero-avatar-wrap .section-avatar { width: clamp(80px, 10vw, 120px); height: clamp(80px, 10vw, 120px); }
.hero-avatar-ring { position: absolute; inset: -8px; border-radius: 50%; border: 1.5px solid rgba(107,127,94,0.3); animation: pulse 3s ease-in-out infinite alternate; }
.status-indicator { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 30px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(8px); font-size: 0.75rem; box-shadow: 0 2px 16px rgba(0,0,0,0.2), 0 0 30px rgba(107,127,94,0.08); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: statusPulse 2s infinite; box-shadow: 0 0 12px rgba(74,222,128,0.4); }
.status-text { font-family: var(--font-body); font-size: 0.75rem; color: var(--sage-light); text-align: left; min-height: 1.2em; font-weight: 300; white-space: nowrap; }
.hero-eyebrow {
  display: inline-block; font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  font-weight: 300; color: var(--cream-mid);
  background: rgba(107,127,94,0.1); border: 1px solid rgba(107,127,94,0.25);
  border-radius: 20px; padding: 10px 22px; margin-bottom: 8px; line-height: 1.5;
}
.rose-pulse {
  display: inline-block; font-style: normal; font-size: 1.4rem;
  vertical-align: middle; animation: rosePulse 2s infinite;
}
.hero-yip {
  display: inline-block; text-align: center; font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 700; letter-spacing: 6px;
  color: var(--cream); line-height: 1; margin-bottom: 12px; text-decoration: none;
  padding: 4px 16px; background: var(--sage-pale);
  border: 1px solid rgba(107,127,94,0.3); border-radius: 20px;
  text-shadow: 0 0 40px rgba(107,127,94,0.4), 0 0 80px rgba(107,127,94,0.15);
}
.hero-h1 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 4px; color: var(--cream);
  max-width: 700px;
}
.hero-h1 em { font-style: italic; color: var(--sage-light); }
.hero-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem); font-weight: 300;
  color: var(--cream-mid); line-height: 1.7; margin-bottom: 4px;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
/* Video row with cycle sides */
.hero-video-row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px, 4vw, 48px); z-index: 2; margin: 16px 0; width: 100%;
}
.cycle-row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(32px, 5vw, 64px); z-index: 2; margin: 16px 0; width: 100%;
}
.cycle-vs {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300; color: var(--cream-faint); font-style: italic;
}
.cycle-side {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.cycle-avatar {
  width: 60px; height: 60px; border-radius: 50%; object-fit: cover;
}
.cycle-num {
  font-family: var(--font-display); font-weight: 300; line-height: 1;
  font-size: clamp(2rem, 3vw, 2.8rem); color: var(--cream-faint);
}
.cycle-num-sage { color: var(--sage); }
.cycle-label {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.2px;
  font-weight: 400; color: var(--cream-faint); text-align: center; line-height: 1.4;
}
.hero-body {
  font-size: clamp(0.92rem, 1.1vw, 1.02rem); font-weight: 300;
  color: var(--cream-light); line-height: 1.75; max-width: 540px;
  margin-left: auto; margin-right: auto;
}
.hero-meet {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 300; color: var(--cream); margin-top: 4px;
}
.hero-meet em { font-style: italic; color: var(--sage); }
.hero-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--cream-light); font-weight: 300;
  letter-spacing: 0.3px; text-align: center; margin-top: 12px; line-height: 1.5;
}
.hero-cta-wrap { display: flex; flex-direction: column; gap: 6px; align-items: center; margin-top: 4px; }
.hero-micro { font-size: 0.75rem; color: var(--cream-faint); font-weight: 300; }

/* Video */
.hero-video-wrap { max-width: 220px; width: 100%; z-index: 2; margin: 4px auto 0; position: relative; overflow: visible; }
.hero-video-wrap::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 140%; height: 140%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(107,127,94,0.45) 0%, rgba(107,127,94,0.2) 30%, rgba(107,127,94,0.08) 50%, transparent 70%);
  border-radius: 50%; filter: blur(30px); pointer-events: none; z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}
.video-box {
  position: relative; width: 100%; padding-bottom: 100%; height: 0;
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,0.03); border: none;
  border-radius: 50%; overflow: hidden; cursor: pointer;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 80px rgba(184,155,110,0.14), 0 0 160px rgba(184,155,110,0.06);
  transition: box-shadow 0.4s var(--ease);
}
.video-box:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 100px rgba(184,155,110,0.18), 0 0 200px rgba(184,155,110,0.07); }
.video-box video, .video-box .audio-poster {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: none; border-radius: 50%; object-fit: cover; object-position: center center;
}
.video-box.playing .play-btn { opacity: 0; pointer-events: none; }
.video-box.playing .video-label { opacity: 0; }
.video-box video::-webkit-media-controls { display: none !important; }
.video-box video::-webkit-media-controls-enclosure { display: none !important; }
.video-box video::-webkit-media-controls-panel { display: none !important; }
.video-box video::-webkit-media-controls-start-playback-button { display: none !important; }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  border-radius: 50%; z-index: 1; transition: opacity 0.6s var(--ease); pointer-events: none;
}
.video-box.playing .video-overlay { opacity: 0; }
.play-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(107,127,94,0.5);
  background: rgba(0,0,0,0.35); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), background 0.4s, border-color 0.4s, opacity 0.5s var(--ease);
  box-shadow: none; animation: none;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: rgba(107,127,94,0.25); border-color: rgba(107,127,94,0.8); }
.play-btn svg { width: 12px; height: 12px; fill: var(--cream); margin-left: 2px; opacity: 0.9; transition: opacity 0.3s; }
.play-btn:hover svg { opacity: 1; }
.play-ring { position: absolute; inset: -6px; border-radius: 50%; border: 1px solid rgba(107,127,94,0.2); animation: playPulse 2.4s ease-in-out infinite; }
.play-btn::after {
  content: ''; position: absolute; inset: -20px; border-radius: 50%;
  border: 1px solid rgba(107,127,94,0.1);
  animation: playPulse 2.4s ease-in-out infinite 1.2s;
}
.video-label {
  position: absolute; top: 62%; left: 50%; transform: translateX(-50%);
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream-light); font-weight: 400; z-index: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5); transition: opacity 0.5s var(--ease);
}
.video-caption {
  position: absolute;
  left: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  text-align: left;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(0.88rem, 1.2vw, 1.05rem); font-weight: 300;
  color: var(--cream); line-height: 1.55;
  padding: 14px 18px;
  background: rgba(107,127,94,0.1);
  border: 1px solid rgba(107,127,94,0.2);
  border-radius: 16px 16px 16px 4px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.video-caption::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid rgba(107,127,94,0.2);
}
.video-caption.vis { opacity: 1; }
.video-ts {
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 300;
  color: rgba(247,243,238,0.3); z-index: 3;
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none; letter-spacing: 0.5px;
}
.video-box.playing .video-ts { opacity: 1; }

/* ═══════════════════════════════════════════════════
   SECTION 1.5 — STATS
   ═══════════════════════════════════════════════════ */
.demo-stats { background: var(--bg-deep); padding: 60px 48px; min-height: auto; scroll-snap-align: none; position: relative; overflow: visible; display: flex; flex-direction: column; align-items: center; }
.demo-stats .ambient-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 50% 50%, rgba(107,127,94,0.1) 0%, transparent 60%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 960px; width: 100%; z-index: 2; padding-top: 16px; margin: 0 auto; }
.stat-card { text-align: center; padding: 36px 20px; border-radius: 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 4px 24px rgba(0,0,0,0.2), 0 0 40px rgba(107,127,94,0.06); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(107,127,94,0.15), 0 0 60px rgba(107,127,94,0.1); }
.stat-avatar { width: clamp(100px, 16vw, 180px); height: clamp(100px, 16vw, 180px); border-radius: 50%; object-fit: cover; border: 3px solid var(--sage); box-shadow: 0 0 30px var(--sage-glow), 0 0 60px rgba(107,127,94,0.15); margin: -40px auto 12px; }
.stat-num { font-family: var(--font-body); font-size: clamp(2.8rem, 4.5vw, 4rem); font-weight: 300; color: var(--sage-light); display: inline-block; }
.stat-unit { font-family: var(--font-body); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 300; color: var(--cream-faint); }
.stat-label { font-size: 1rem; color: var(--cream); display: block; margin-top: 10px; font-weight: 500; line-height: 1.3; }
.stat-sub { font-size: 0.72rem; color: rgba(247,243,238,0.25); display: block; margin-top: 4px; font-weight: 300; font-style: italic; }
.stat-sub-highlight { font-size: 0.78rem; color: var(--sage-light); display: block; margin-top: 6px; font-weight: 400; font-style: italic; text-shadow: 0 0 12px rgba(107,127,94,0.3); }

/* ═══════════════════════════════════════════════════
   SECTION 1.75 — THE WRONG BUSINESS IDEA
   ═══════════════════════════════════════════════════ */
.wrong-idea {
  background: var(--bg); flex-direction: column;
  padding: 48px 48px; gap: 28px;
}
.wrong-idea .orb-1 { top: 15%; left: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(196,149,106,0.12), transparent 70%); }

/* Header */
.wi-header { text-align: center; z-index: 2; max-width: 640px; }
.wi-header h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 20px;
}
.wi-header h2 em { font-style: italic; color: var(--terra); }
.wi-header p {
  font-size: clamp(0.92rem, 1.1vw, 1.02rem); color: var(--cream-light);
  font-weight: 300; line-height: 1.7;
}

/* Comparison layout */
.wi-compare {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; z-index: 2; max-width: 820px; width: 100%;
}

/* Column wrapper */
.wi-col {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 20px; max-width: 320px;
}
.wi-col-accent .wi-bullet { background: #e74c3c; }

/* Circle cards */
.wi-card {
  width: clamp(200px, 22vw, 260px); height: clamp(200px, 22vw, 260px);
  padding: 24px 20px; border-radius: 50%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  text-align: center; gap: 6px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.wi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }

.wi-card-accent {
  border-color: #c0392b;
  border-width: 2px;
  background: linear-gradient(160deg, rgba(192,57,43,0.1), rgba(192,57,43,0.03));
  box-shadow: 0 0 30px rgba(192,57,43,0.15);
}

.wi-card-icon { font-size: 1.6rem; line-height: 1; }
.wi-card-title {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 400; color: var(--cream);
}
.wi-card-duration {
  font-family: var(--font-body); font-size: 1.5rem;
  font-weight: 300; color: var(--sage-light); line-height: 1;
}
.wi-card-accent .wi-card-duration { color: #e74c3c; }

/* List below circle */
.wi-card-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  text-align: left; width: 100%;
}
.wi-card-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--cream-light); font-weight: 300; line-height: 1.5;
}
.wi-bullet {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cream-faint); flex-shrink: 0;
}

/* Takeaway below list */
.wi-card-takeaway {
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem; color: var(--cream-mid); font-weight: 300; line-height: 1.6;
  text-align: center;
}
.wi-card-takeaway strong { color: var(--cream); font-weight: 500; }

/* ═══════════════════════════════════════════════════
   CORE DIFFERENCE — PROFILE CARDS
   ═══════════════════════════════════════════════════ */
.cd-wrap {
  z-index: 2; max-width: 820px; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  background: none; border-radius: 0;
  padding: 0; position: relative;
}
/* Subtle ambient glow behind the card area */
.cd-wrap::before {
  display: none;
}
.cd-title {
  font-family: var(--font-display); font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 400; color: #fff; text-align: center;
  margin-bottom: 32px; letter-spacing: 0.5px;
}

/* Cards container */
.cd-cards {
  display: grid; grid-template-columns: 1fr auto 1fr;
  width: 100%; align-items: stretch;
}

/* Profile card */
.cd-profile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 20px 22px;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s, background 0.4s;
}
.cd-profile:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}
.cd-profile--her { border-color: rgba(212,169,154,0.3); }
.cd-profile--her:hover {
  border-color: rgba(212,169,154,0.5);
  box-shadow: 0 12px 40px rgba(212,169,154,0.15), 0 0 80px rgba(212,169,154,0.08);
}
.cd-profile--him { border-color: rgba(107,127,94,0.3); }
.cd-profile--him:hover {
  border-color: rgba(107,127,94,0.5);
  box-shadow: 0 12px 40px rgba(107,127,94,0.15), 0 0 80px rgba(107,127,94,0.08);
}

/* Card header */
.cd-profile-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px; padding-bottom: 16px;
}
.cd-profile--her .cd-profile-header { border-bottom: 1px solid rgba(212,169,154,0.2); }
.cd-profile--him .cd-profile-header { border-bottom: 1px solid rgba(107,127,94,0.2); }
.cd-profile-symbol { font-size: 1.6rem; line-height: 1; }
.cd-profile--her .cd-profile-symbol { color: #e2bfb3; }
.cd-profile--him .cd-profile-symbol { color: #a4c490; }
.cd-profile-name {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 400; color: #fff; letter-spacing: 0.3px;
}

/* Attribute rows inside each card */
.cd-attr {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0; transform: translateY(12px);
  animation: cdAttrIn 0.5s var(--ease) forwards;
  animation-delay: calc(0.5s + var(--d, 0) * 0.1s);
}
.cd-attr:last-child { border-bottom: none; }
.cd-cards:not(.vis) .cd-attr { animation: none; }

@keyframes cdAttrIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero value — large and bright */
.cd-attr-value {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 400; line-height: 1.3;
  margin-bottom: 2px;
}
.cd-profile--her .cd-attr-value { color: #e8c8bc; }
.cd-profile--him .cd-attr-value { color: #b5cf9f; }

/* Optional detail line */
.cd-attr-detail {
  display: block;
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 300; font-style: italic; line-height: 1.4;
  margin-bottom: 2px;
}
.cd-profile--her .cd-attr-detail { color: rgba(232,200,188,0.6); }
.cd-profile--him .cd-attr-detail { color: rgba(181,207,159,0.6); }

/* Metric label — small uppercase */
.cd-attr-label {
  display: block; font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 1.2px;
  font-weight: 500; color: rgba(255,255,255,0.45); margin-bottom: 4px;
}

/* VS Divider */
.cd-vs {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 40px 20px 0; align-self: stretch;
}
.cd-vs-line {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
}
.cd-vs-text {
  font-family: var(--font-display); font-style: italic;
  font-size: 0.85rem; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 2px;
}

/* Full-width banner */
.wi-banner {
  width: 100%;
  padding: 48px 48px;
  background: linear-gradient(135deg, rgba(196,149,106,0.12), rgba(107,127,94,0.08));
  border-top: 1px solid var(--border-terra);
  border-bottom: 1px solid var(--border-terra);
  position: relative;
  overflow: hidden;
}
.wi-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,149,106,0.08), transparent 70%);
  pointer-events: none;
}
.wi-banner-inner {
  display: flex; align-items: flex-start; gap: 24px;
  max-width: 740px; margin: 0 auto;
  position: relative; z-index: 1;
}
.wi-banner-emoji {
  font-size: 2.8rem; line-height: 1;
  flex-shrink: 0;
}
.wi-banner-speech {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-terra);
  border-radius: 16px; border-top-left-radius: 4px;
  padding: 20px 24px;
}
.wi-banner-speech::before {
  content: '';
  position: absolute; top: 16px; left: -8px;
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid var(--border-terra);
}
.wi-banner-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-style: italic; font-weight: 300;
  color: var(--cream-mid); line-height: 1.7;
  margin: 0;
}
.wi-banner-text em { font-style: italic; color: var(--terra); font-weight: 400; }

/* ═══════════════════════════════════════════════════
   SECTION 2 — THE REAL PROBLEM
   ═══════════════════════════════════════════════════ */
.pain {
  background: var(--bg); flex-direction: column;
  padding: 48px 48px; gap: 28px;
}
.pain .orb-1 { top: 20%; right: 10%; width: 400px; height: 400px; background: radial-gradient(circle, var(--terra-pale), transparent 70%); }

/* Header */
.pain-header { text-align: center; z-index: 2; max-width: 640px; }
.pain-header h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 20px;
}
.pain-header h2 em { font-style: italic; color: var(--terra); }
.pain-header p {
  font-size: clamp(0.92rem, 1.1vw, 1.02rem); color: var(--cream-light);
  font-weight: 300; line-height: 1.7;
}

/* Shift diagram — old way vs her way */
.shift-diagram {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 0 clamp(20px, 3vw, 40px); align-items: start;
  max-width: 760px; width: 100%; z-index: 2;
}
.shift-col {
  display: flex; flex-direction: column; gap: 16px;
}
.shift-col-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.8px;
  font-weight: 500; color: var(--cream-faint); text-align: center;
  padding-bottom: 12px; border-bottom: 1px solid var(--border-light);
}
.shift-col-label-sage { color: var(--sage-muted); border-color: rgba(107,127,94,0.25); }
.shift-item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; border-radius: 16px;
  font-size: 0.95rem; font-weight: 300; line-height: 1.4;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.shift-item:hover { transform: translateY(-2px); }
.shift-item-old {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border-light);
  color: var(--cream-faint); text-decoration: line-through;
  text-decoration-color: rgba(196,149,106,0.4);
}
.shift-item-new {
  background: rgba(107,127,94,0.08); border: 1px solid rgba(107,127,94,0.25);
  color: var(--cream);
}
.shift-item-new:hover { box-shadow: 0 8px 24px rgba(107,127,94,0.15); }
.shift-icon { font-size: 1.4rem; flex-shrink: 0; }
.shift-arrow-col {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 40px; /* align with items below label */
}
.shift-arrow {
  height: 56px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--sage); opacity: 0.6;
}

.pain-transition {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--sage-muted);
  text-align: center; z-index: 2; max-width: 500px;
}



/* ═══════════════════════════════════════════════════
   SECTION 5 — MY STORY CTA
   ═══════════════════════════════════════════════════ */
.story {
  background: var(--bg); flex-direction: column;
  padding: 48px 48px; gap: 0;
}
.story .orb-1 { top: 20%; right: 5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(107,127,94,0.1), transparent 70%); }
.story-cta-wrap {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; z-index: 2; gap: 28px; max-width: 600px;
}
.story-cta-photo {
  width: clamp(100px, 14vw, 160px); height: clamp(100px, 14vw, 160px); border-radius: 50%; object-fit: cover;
  border: 3px solid var(--sage); box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.story-cta-heading {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300; line-height: 1.2; color: var(--cream);
}
.story-cta-heading em { font-style: italic; color: var(--sage); }
.story-btn { font-size: 1rem; padding: 18px 48px; }

/* ═══════════════════════════════════════════════════
   SECTION 6 — SOCIAL PROOF
   ═══════════════════════════════════════════════════ */
.proof {
  background: var(--bg-warm); flex-direction: column;
  padding: 48px 48px; gap: 28px;
}
.proof .orb-1 { top: 20%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,169,154,0.08), transparent 70%); }
.proof-header { text-align: center; z-index: 2; }
.proof-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; margin-bottom: 14px; line-height: 1.2; }
.proof-header h2 em { font-style: italic; color: var(--sage); }
.proof-header p { font-size: clamp(0.9rem, 1.1vw, 1.02rem); color: var(--cream-light); font-weight: 300; }

/* Carousel */
.test-carousel {
  position: relative; width: 100%; max-width: 620px;
  z-index: 2; display: flex; align-items: center; gap: 16px;
}
.test-stage { position: relative; flex: 1; min-height: 280px; }
.test-slide {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; text-align: center; padding: 28px 28px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 24px; opacity: 0; transform: translateX(40px) scale(0.96);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.test-slide.active {
  opacity: 1; transform: translateX(0) scale(1); pointer-events: auto;
  position: relative;
}
.test-slide.exit-left {
  opacity: 0; transform: translateX(-40px) scale(0.96);
}

/* Profile frame */
.test-photo {
  width: 64px; height: 64px; border-radius: 50%; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(107,127,94,0.3);
  background: rgba(107,127,94,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.test-initials {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 500;
  color: var(--sage-light); letter-spacing: 1px;
}

/* Quote */
.test-quote-mark {
  font-family: var(--font-display); font-size: 2.5rem; line-height: 1;
  color: var(--sage); opacity: 0.4; margin-bottom: -4px;
}
.test-quote {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7; color: var(--cream-mid); font-weight: 300;
  max-width: 480px; margin-bottom: 14px;
}
.test-stars {
  color: var(--terra); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 10px;
}
.test-author-name { font-weight: 500; font-size: 0.9rem; margin-bottom: 2px; }
.test-author-role { font-size: 0.75rem; color: var(--cream-faint); letter-spacing: 0.5px; }

/* Arrows */
.test-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--cream-mid); cursor: pointer; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.test-arrow:hover {
  background: rgba(107,127,94,0.15); border-color: var(--sage);
  transform: scale(1.08);
}

/* Dots */
.test-dots {
  display: flex; gap: 10px; justify-content: center; z-index: 2;
}
.test-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}
.test-dot.active {
  background: var(--sage); width: 24px; border-radius: 4px;
}

/* ═══════════════════════════════════════════════════
   SECTION 7 — THREE PATHS
   ═══════════════════════════════════════════════════ */
.paths {
  background: var(--bg);
  padding: 40px 48px; gap: 20px;
  align-items: center; overflow: visible;
}
.paths .orb-1 { top: 15%; right: 15%; width: 400px; height: 400px; background: radial-gradient(circle, var(--sage-pale), transparent 70%); }
.paths-header { text-align: center; z-index: 2; }
.paths-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; margin-bottom: 14px; line-height: 1.2; }
.paths-header h2 em { font-style: italic; color: var(--sage); }
.paths-header p { font-size: clamp(0.9rem, 1.1vw, 1.02rem); color: var(--cream-light); font-weight: 300; max-width: 550px; margin: 0 auto; line-height: 1.7; }
.paths-grid {
  display: flex; justify-content: center;
  gap: 28px; max-width: 560px; width: 100%; z-index: 2;
}
.path-card {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: 24px; padding: 44px 36px; text-align: center;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), box-shadow 0.4s, border-color 0.4s, background 0.4s;
}
.path-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 48px rgba(107,127,94,0.15), 0 8px 24px rgba(0,0,0,0.2);
  border-color: var(--sage);
}
.path-card.featured {
  border-color: var(--sage);
  background: linear-gradient(160deg, rgba(107,127,94,0.15), rgba(107,127,94,0.05));
}
.path-card.featured:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 48px rgba(107,127,94,0.25), 0 8px 24px rgba(0,0,0,0.2);
}
.path-badge {
  display: inline-block; padding: 4px 12px; font-size: 0.65rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px; background: var(--sage-pale);
  border: 1px solid var(--border); border-radius: 20px; color: var(--sage-muted); margin-bottom: 16px;
}
/* Path card reuses .hero-video-wrap / .video-box from hero section */
.path-card .hero-video-wrap { max-width: 200px; margin: 0 auto 16px; }

.path-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; margin-bottom: 12px; }
.path-card p { font-size: 0.95rem; color: var(--cream-light); font-weight: 300; line-height: 1.7; margin-bottom: 18px; }
.path-shift { font-size: 0.78rem; font-style: italic; color: var(--sage-muted); display: block; margin-bottom: 20px; }
.paths-footer {
  text-align: center; z-index: 2; max-width: 520px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.paths-footer-title {
  font-family: var(--font-display); font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400; color: var(--cream); letter-spacing: 0.3px;
}
.paths-email-label {
  font-size: 0.92rem; color: var(--cream-light); font-weight: 300;
}
.paths-footer .email-row {
  display: flex; gap: 8px; width: 100%; max-width: 480px; justify-content: center;
}
.paths-footer .email-row input {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 50px; padding: 12px 20px; color: var(--cream);
  font-size: 0.85rem; font-family: var(--font-body); outline: none; transition: border-color 0.3s;
}
.paths-footer .email-row input::placeholder { color: var(--cream-faint); }
.paths-footer .email-row input:focus { border-color: var(--sage); }
.paths-footer .email-row button {
  padding: 12px 28px; border-radius: 50px; background: var(--sage); color: white; border: none;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.4px;
  transition: transform 0.3s var(--ease), background 0.3s; cursor: pointer; white-space: nowrap;
}
.paths-footer .email-row button:hover { transform: scale(1.04); background: var(--sage-light); }
.paths-footer .email-msg { font-size: 0.82rem; color: var(--sage-light); font-weight: 400; min-height: 1.2em; }
.paths-footer .email-msg.error { color: #f87171; }
.paths-email-sub {
  font-size: 0.78rem; font-style: italic; color: var(--sage-muted); font-weight: 300;
}

/* How-It-Works expandable inside DFY card */
.how-expand { margin: 16px 0 20px; }
.how-toggle {
  cursor: pointer; list-style: none; font-family: var(--font-display);
  font-size: 0.9rem; color: var(--sage-muted); letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: color 0.3s;
}
.how-toggle::-webkit-details-marker { display: none; }
.how-toggle:hover { color: var(--sage-light); }
.how-arrow { transition: transform 0.3s; display: inline-block; font-size: 0.75rem; }
details[open] .how-arrow { transform: rotate(180deg); }
.how-inner { margin-top: 20px; text-align: left; }
.how-sub { font-size: 0.78rem; color: var(--cream-light); font-weight: 300; margin-bottom: 16px; text-align: center; }
.how-steps { display: flex; flex-direction: column; gap: 14px; }
.how-step {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.8rem; color: var(--cream-light); font-weight: 300; line-height: 1.6;
}
.how-step strong { color: var(--cream); font-weight: 500; }
.how-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.8rem;
  background: var(--sage-pale); border: 1px solid var(--sage); color: var(--sage-light);
}

/* ═══════════════════════════════════════════════════
   DFY INTERACTIVE — Tabs, Flip Cards, Chat, Stepper
   ═══════════════════════════════════════════════════ */

/* --- Tab Bar --- */
.dfy-tabs {
  display: flex; justify-content: center; gap: 6px; z-index: 2;
  background: rgba(255,255,255,0.06); border-radius: 14px;
  padding: 6px; width: fit-content; margin: 0 auto;
  border: 1px solid rgba(107,127,94,0.3);
  box-shadow: 0 0 20px rgba(107,127,94,0.1);
}
.dfy-tab {
  padding: 10px 24px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; font-size: 0.85rem; font-weight: 600;
  font-family: var(--font-body); background: transparent;
  color: var(--cream-faint); transition: all 0.25s var(--ease);
  letter-spacing: 0.3px;
}
.dfy-tab.active {
  background: var(--sage); color: white; border-color: var(--sage);
  box-shadow: 0 4px 16px rgba(107,127,94,0.3);
}
.dfy-tab:hover:not(.active) {
  color: var(--cream); background: rgba(107,127,94,0.15);
  border-color: rgba(107,127,94,0.3);
}

/* --- Content & Panels --- */
.dfy-content {
  max-width: 800px; width: 100%; margin: 0 auto; z-index: 2;
}
.dfy-panel {
  display: block;
  margin-bottom: 32px;
}
.dfy-section-title {
  font-family: var(--font-display); font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 400; font-style: italic; color: var(--sage-light);
  text-align: center; margin: 24px 0 12px; z-index: 2; position: relative;
}

/* --- Poker Cards Grid --- */
.dfy-cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; padding: 12px 0;
  max-width: 900px; margin: 0 auto;
}
.dfy-card {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(30,30,30,0.85);
  border: 1px solid rgba(143,166,126,0.2);
  border-radius: 20px;
  padding: 32px 20px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.dfy-card:hover {
  transform: translateY(-5px);
  border-color: rgba(143,166,126,0.45);
}

/* Avatar circle */
.dfy-card-avatar-wrap {
  position: relative; width: 100px; height: 100px; margin-bottom: 20px;
}
.dfy-card-avatar-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(143,166,126,0.5);
}
.dfy-card-avatar {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(20,20,20,0.8);
}

/* Title */
.dfy-card h4 {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 600; color: var(--cream);
  text-align: center; margin: 0 0 8px;
}

/* Description */
.dfy-card p {
  font-size: 0.85rem; color: rgba(245,242,237,0.55);
  font-style: italic; font-weight: 400;
  line-height: 1.5; text-align: center; margin: 0;
}

/* --- Chat Demo --- */
.dfy-chat {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; max-width: 520px;
  margin: 0 auto;
}
.dfy-chat-header {
  padding: 14px 20px; font-family: var(--font-display);
  font-size: 1rem; font-weight: 400; color: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.dfy-chat-status {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage-light); display: inline-block;
  box-shadow: 0 0 6px rgba(107,127,94,0.5);
}
.dfy-chat-window {
  padding: 20px; min-height: 280px; max-height: 360px;
  overflow-y: auto; display: flex; flex-direction: column; gap: 12px;
}
.dfy-chat-bubble {
  max-width: 80%; padding: 12px 16px; border-radius: 14px;
  font-size: 0.85rem; line-height: 1.6; font-weight: 300;
  animation: dfyChatIn 0.3s var(--ease);
}
@keyframes dfyChatIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.dfy-chat-bubble--user {
  align-self: flex-end; background: var(--sage);
  color: white; border-bottom-right-radius: 4px;
}
.dfy-chat-bubble--ai {
  align-self: flex-start;
  background: rgba(255,255,255,0.06);
  color: var(--cream-light); border-bottom-left-radius: 4px;
  border: 1px solid var(--border);
}
.dfy-chat-typing {
  align-self: flex-start; display: flex; gap: 5px;
  padding: 12px 18px; background: rgba(255,255,255,0.06);
  border-radius: 14px; border-bottom-left-radius: 4px;
  border: 1px solid var(--border);
}
.dfy-chat-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage-muted);
  animation: dfyDotBounce 1.4s infinite ease-in-out;
}
.dfy-chat-dot:nth-child(2) { animation-delay: 0.16s; }
.dfy-chat-dot:nth-child(3) { animation-delay: 0.32s; }
@keyframes dfyDotBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-6px); opacity: 1; }
}
.dfy-chat-replay {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; width: 100%; padding: 12px;
  border: none; border-top: 1px solid var(--border);
  background: transparent; color: var(--sage-muted);
  font-size: 0.78rem; font-family: var(--font-body);
  cursor: pointer; transition: color 0.3s, background 0.3s;
  letter-spacing: 0.3px;
}
.dfy-chat-replay:hover {
  color: var(--sage-light); background: rgba(107,127,94,0.08);
}

/* --- How It Works Flow --- */
.correction-flow { display: flex; flex-direction: column; align-items: center; gap: 8px; max-width: 500px; width: 100%; margin: 0 auto; }
.flow-step { display: flex; align-items: center; gap: 20px; width: 100%; text-align: left; padding: 16px 24px; border-radius: 16px; background: rgba(255,255,255,0.02); border: 1px solid var(--border-light); opacity: 0.2; transform: scale(0.95); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), border-color 0.6s, box-shadow 0.6s; }
.flow-step.active { opacity: 1; transform: scale(1); border-color: var(--sage); box-shadow: 0 0 20px rgba(107,127,94,0.08); }
.flow-icon-avatar { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.08); box-shadow: none; flex-shrink: 0; transition: border-color 0.6s, box-shadow 0.6s; }
.flow-step.active .flow-icon-avatar { border-color: var(--sage); box-shadow: 0 0 24px rgba(107,127,94,0.2); }
.flow-arrow { display: flex; align-items: center; justify-content: center; color: var(--cream-faint); font-size: 1.2rem; opacity: 0.3; transition: opacity 0.6s, color 0.6s; }
.flow-arrow.active { opacity: 1; color: var(--sage-light); }
.flow-step h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; margin: 0 0 6px 0; color: var(--cream); }
.flow-step p { font-size: 0.78rem; color: var(--cream-light); font-weight: 300; line-height: 1.5; margin: 0; }
.flow-result { font-family: var(--font-display); font-style: italic; font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--sage-light); text-align: center; max-width: 500px; margin: 16px auto 0; opacity: 0; transition: opacity 0.8s var(--ease); }
.flow-result.vis { opacity: 1; }

/* --- DFY Mobile --- */
@media (max-width: 768px) {
  .dfy-tabs { gap: 4px; padding: 4px; }
  .dfy-tab { padding: 8px 14px; font-size: 0.72rem; }
  .dfy-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 100%; }
  .dfy-card { padding: 24px 14px 20px; }
  .dfy-card-avatar-wrap { width: 80px; height: 80px; margin-bottom: 14px; }
  .dfy-card h4 { font-size: 0.85rem; }
  .dfy-card p { font-size: 0.75rem; }
  .dfy-chat-window { min-height: 240px; padding: 16px; }
  .dfy-chat-bubble { max-width: 88%; font-size: 0.82rem; }
  .correction-flow { gap: 4px; }
  .flow-step { padding: 12px 16px; gap: 14px; }
  .flow-icon-avatar { width: 52px; height: 52px; }
  .flow-step h3 { font-size: 1rem; margin-bottom: 2px; }
}

/* ═══════════════════════════════════════════════════
   SECTION 2.5 — HORMONAL RHYTHMS
   ═══════════════════════════════════════════════════ */
.rhythms {
  background: var(--bg-deep);
  padding: 40px 48px; gap: 12px;
  position: relative; overflow: visible;
}
.rhy-float-video {
  position: absolute; top: 24px; left: 24px; z-index: 10;
  width: 240px; overflow: visible;
}
.rhy-float-video .play-btn { width: 32px; height: 32px; }
.rhy-float-video .play-ring { width: 32px; height: 32px; }
.rhy-float-video .play-icon { width: 10px; height: 10px; }
.rhythms .orb-1 { top: 30%; right: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,169,154,0.08), transparent 70%); }
.rhythms .badge { margin-bottom: 10px; }
.rhythms .section-cta { margin-top: 8px; }
.rhy-cta-hidden { display: none !important; }
.rhy-header { text-align: center; z-index: 2; }
.rhy-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 3rem); font-weight: 700; margin-bottom: 8px; line-height: 1.12; }
.rhy-header h2 em { font-style: italic; color: var(--sage); }
.rhy-header p { font-size: clamp(0.9rem, 1.1vw, 1.02rem); color: var(--cream-light); font-weight: 300; max-width: 520px; margin: 0 auto; line-height: 1.7; }

.rhy-tabs {
  display: flex; justify-content: center; gap: 6px; z-index: 2;
  background: rgba(255,255,255,0.06); border-radius: 14px;
  padding: 6px; width: fit-content; margin: 0 auto;
  border: 1px solid rgba(107,127,94,0.3);
  box-shadow: 0 0 20px rgba(107,127,94,0.1);
}
.rhy-tab {
  padding: 10px 24px; border-radius: 10px; border: 1px solid rgba(107,127,94,0.25); cursor: pointer;
  font-size: 0.85rem; font-weight: 600; font-family: var(--font-body);
  background: rgba(255,255,255,0.04); color: var(--cream-mid); transition: all 0.25s var(--ease);
  letter-spacing: 0.3px; position: relative;
}
.rhy-tab:not(.active) { animation: tabHint 2.5s ease-in-out 2; }
@keyframes tabHint {
  0%, 100% { border-color: rgba(107,127,94,0.25); }
  50% { border-color: rgba(107,127,94,0.6); box-shadow: 0 0 12px rgba(107,127,94,0.15); }
}
.rhy-tab.active { background: var(--sage); color: white; border-color: var(--sage); box-shadow: 0 4px 16px rgba(107,127,94,0.3); animation: none; }
.rhy-tab:hover { color: var(--cream); background: rgba(107,127,94,0.15); border-color: rgba(107,127,94,0.3); }

.rhy-content { max-width: 1100px; width: 100%; margin: 0 auto; z-index: 2; display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-start; }
.rhy-panel { display: block; flex: 1; min-width: 0; }
.rhy-vs { display: none; flex-direction: column; align-items: center; gap: 16px; margin: 0 24px; align-self: stretch; }
.rhy-vs.show { display: flex; }
.rhy-vs-line { width: 1px; flex: 1; background: linear-gradient(to bottom, transparent, var(--border), transparent); }
.rhy-vs span { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--cream-faint); }

.rhy-cycle-title { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rhy-cycle-icon {
  width: 36px; height: 36px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; font-size: 1rem;
}
.rhy-cycle-title h3 { font-size: 1.05rem; font-weight: 600; }
.rhy-cycle-title small { font-size: 0.68rem; color: var(--cream-faint); letter-spacing: 1px; text-transform: uppercase; display: block; }

.rhy-chart-wrap {
  background: rgba(255,255,255,0.02); border-radius: 16px;
  padding: 14px 16px 8px; border: 1px solid var(--border-light); margin-bottom: 8px;
}
@keyframes rhyFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.rhy-chart-title { display: block; text-align: center; font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 300; letter-spacing: 0.15em; margin-bottom: 6px; }
.rhy-chart-legend { display: flex; gap: 16px; margin-bottom: 8px; justify-content: center; }
.rhy-legend-item { font-size: 0.68rem; display: flex; align-items: center; gap: 5px; color: var(--cream-faint); }
.rhy-legend-line { width: 14px; height: 3px; border-radius: 2px; display: inline-block; }

.cycle-compare { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 3vw, 40px); z-index: 2; margin: 8px 0; width: 100%; }
.cycle-compare-side { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cycle-compare-icon { font-size: 1.8rem; }
.cycle-compare-text { font-size: 0.9rem; color: var(--cream-mid); font-weight: 300; text-align: center; line-height: 1.5; }
.cycle-compare-text strong { color: var(--cream); font-weight: 500; }
.hormone-explainers { display: flex; gap: 10px; margin-top: 12px; }
.hormone-pill {
  flex: 1; display: flex; flex-direction: column; gap: 4px;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.03); border-left: 3px solid var(--pill-color);
}
.hormone-pill-name { font-size: 0.72rem; font-weight: 600; color: var(--pill-color); text-transform: uppercase; letter-spacing: 0.5px; }
.hormone-pill-desc { font-size: 0.7rem; color: var(--cream-mid); font-weight: 300; line-height: 1.5; }
.rhy-phases { display: grid; grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)); gap: 12px; }
.rhy-phases.female { grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); }
.rhy-phases-horizontal { display: flex; flex-wrap: nowrap; gap: 12px; overflow-x: auto; width: 100%; padding: 4px; }
.rhy-phases-horizontal .rhy-phase { min-width: 140px; flex: 1; }
.rhy-phase {
  border-radius: 16px; padding: 20px 16px;
  border: 1px solid var(--border-light); transition: all 0.3s var(--ease);
  background: var(--phase-bg);
}
.rhy-phase:hover { transform: translateY(-2px); filter: brightness(1.3); border-color: var(--phase-accent); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.rhy-phase-icon { font-size: 1.2rem; margin-bottom: 8px; }
.rhy-phase-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.rhy-phase-name { font-size: 0.9rem; font-weight: 600; color: var(--phase-accent); margin-bottom: 4px; }
.rhy-phase-range { font-size: 0.7rem; color: var(--cream-faint); margin-bottom: 10px; }
.rhy-phase-trait { font-size: 0.75rem; color: var(--cream-light); line-height: 1.7; }
.rhy-season {
  font-size: 0.6rem; padding: 2px 8px; border-radius: 20px;
  background: rgba(255,255,255,0.06); color: var(--cream-faint);
  font-style: italic; font-family: var(--font-display);
}

/* ═══════════════════════════════════════════════════
   CYCLE PHASES ROW (horizontal cards)
   ═══════════════════════════════════════════════════ */
.cycle-wheels-row { width: 100%; z-index: 2; margin-top: 24px; }
.cycle-phases-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  width: 100%; max-width: 1000px; margin: 0 auto;
}
.cycle-phase-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 24px 16px; text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.cycle-phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.cycle-phase-icon {
  width: 52px; height: 52px; border-radius: 14px; border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 12px; backdrop-filter: blur(4px);
}
.cycle-phase-name {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; line-height: 1.3; margin-bottom: 4px;
}
.cycle-phase-season {
  font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cream-faint); margin-bottom: 6px; font-weight: 400;
}
.cycle-phase-range {
  font-family: var(--font-body); font-size: 0.72rem; color: var(--cream-mid);
  font-weight: 300; margin-bottom: 12px;
}
.cycle-phase-traits {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.cycle-phase-traits li {
  font-size: 0.75rem; color: var(--cream-light); font-weight: 300; line-height: 1.5;
}

.rhy-insight {
  margin-top: 32px; padding: 24px; border-radius: 16px;
  background: linear-gradient(135deg, var(--sage-pale), rgba(196,149,106,0.08));
  border: 1px solid var(--border); text-align: center;
  width: 100%; flex-basis: 100%;
}
.rhy-insight p {
  font-family: var(--font-display); font-size: 1rem; font-style: italic;
  color: var(--cream-mid); line-height: 1.7; max-width: 550px; margin: 0 auto;
}
.rhy-insight .rhy-insight-sub { color: var(--cream-faint); font-size: 0.88rem; display: block; margin-top: 4px; }

/* ═══════════════════════════════════════════════════
   SECTION 8 — HOW IT WORKS
   ═══════════════════════════════════════════════════ */
.process {
  background: var(--bg-warm); flex-direction: column;
  padding: 80px 48px; gap: 48px;
}
.process .orb-1 { bottom: 20%; left: 10%; width: 400px; height: 400px; background: radial-gradient(circle, var(--sage-pale), transparent 70%); }
.process-header { text-align: center; z-index: 2; }
.process-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; margin-bottom: 14px; line-height: 1.2; }
.process-header h2 em { font-style: italic; color: var(--sage); }
.process-header p { font-size: clamp(0.9rem, 1.1vw, 1.02rem); color: var(--cream-light); font-weight: 300; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.timeline {
  display: flex; flex-direction: column; gap: 0;
  max-width: 520px; width: 100%; z-index: 2; position: relative;
}
.timeline::before {
  content: ''; position: absolute; left: 18px; top: 18px;
  bottom: 18px; width: 1px; background: var(--border);
}
.tl-step {
  display: flex; gap: 24px; align-items: flex-start; padding-bottom: 36px;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 500;
  background: var(--sage-pale); border: 1.5px solid var(--sage); color: var(--sage-light);
  position: relative; z-index: 1;
}
.tl-content h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 6px; color: var(--cream); }
.tl-content p { font-size: 0.88rem; color: var(--cream-light); font-weight: 300; line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   SECTION 9 — FINAL CTA
   ═══════════════════════════════════════════════════ */
.final {
  background: var(--bg-deep); flex-direction: column;
  gap: 28px; padding: 80px 48px;
}
.final .orb-1 {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--sage-glow) 0%, var(--terra-glow) 40%, transparent 70%);
  animation: pulse 8s ease-in-out infinite alternate;
}
.final-avatar {
  width: clamp(80px, 10vw, 120px); height: clamp(80px, 10vw, 120px); border-radius: 50%; object-fit: cover;
  border: 3px solid var(--sage); box-shadow: 0 0 40px var(--sage-glow); z-index: 2;
}
.final-text { text-align: center; max-width: 680px; z-index: 2; }
.final-text h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; margin-bottom: 20px; line-height: 1.3;
}
.final-text h2 em { font-style: italic; color: var(--sage); }
.final-reveal {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem); color: var(--sage-muted);
  line-height: 1.6; font-weight: 300; margin-bottom: 36px; z-index: 2;
}
.final-reveal span { opacity: 0; transition: opacity 0.06s; }
.final-reveal span.lit { opacity: 1; }
.final-cta-wrap { z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.final-micro { font-size: 0.78rem; color: var(--cream-faint); font-weight: 300; }
.final-alt { z-index: 2; font-size: 0.82rem; color: var(--cream-faint); margin-top: 8px; }
.final-alt a { color: var(--sage-muted); border-bottom: 1px solid var(--sage-pale); transition: color 0.3s; }
.final-alt a:hover { color: var(--terra); }
.final-quote {
  z-index: 2; font-family: var(--font-display); font-style: italic;
  font-size: 0.92rem; color: var(--cream-faint); margin-top: 20px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  padding: 24px; text-align: center; font-size: 0.72rem;
  color: var(--cream-faint); border-top: 1px solid var(--border-light); background: var(--bg-footer);
}
.footer a { color: var(--sage-muted); transition: color 0.3s; }
.footer a:hover { color: var(--sage-light); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  html { cursor: auto; }
  .cur-dot, .cur-ring { display: none; }
  .dots { display: none; }

  /* Top bar */
  .top-social { display: none; }
  .top-quote { display: none; }
  .top-bar { padding: 0 12px; }
  .top-rotate { position: relative; left: 0; transform: none; font-size: 0.62rem; }
  .top-ctas { gap: 6px; }
  .top-cta { padding: 5px 12px; font-size: 0.6rem; }
  .top-cta-outline { display: none; }

  /* Floating videos — in flow on mobile instead of absolute */
  .float-video {
    position: static;
    width: 100%;
    max-width: 200px;
    margin: 0 auto 16px;
  }

  /* Hero */
  .hero { padding: 72px 20px 40px; }
  .status-text { min-width: 200px; font-size: 0.75rem; }
  .hero-video-row { gap: 16px; }
  .cycle-avatar { width: 44px; height: 44px; }
  .cycle-num { font-size: 1.6rem; }
  .cycle-label { font-size: 0.58rem; }
  .hero-video-wrap { max-width: min(90vw, 420px); }
  .video-caption {
    position: relative; left: auto; top: auto; transform: none;
    width: 100%; text-align: center; margin-top: 12px;
    border-radius: 12px; font-size: 0.85rem;
  }
  .video-caption::before { display: none; }
  .play-btn { width: 36px; height: 36px; }
  .play-btn svg { width: 12px; height: 12px; }

  /* Stats */
  .demo-stats { padding: 60px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-avatar { margin: -24px auto 8px; }

  /* Wrong Idea */
  .wrong-idea { padding: 48px 20px; gap: 28px; }
  .wi-compare { flex-direction: column; align-items: center; gap: 0; }
  .wi-col { max-width: 260px; }
  .wi-card { width: 200px; height: 200px; padding: 20px 16px; }

  /* Core Difference responsive */
  .cd-wrap { padding: 32px 20px; border-radius: 20px; }
  .cd-cards { grid-template-columns: 1fr; gap: 20px; }
  .cd-vs {
    flex-direction: row; padding: 0 16px; gap: 12px; align-self: auto;
  }
  .cd-vs-line {
    width: auto; height: 1px; flex: 1;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
  }
  .cd-profile { padding: 24px 20px; }
  .cd-profile:hover { transform: translateY(-3px); }
  .cd-attr-value { font-size: 1.05rem; }
  .wi-banner { padding: 32px 20px; }
  .wi-banner-inner { gap: 16px; }
  .wi-banner-emoji { font-size: 2rem; }
  .wi-banner-speech { padding: 16px 18px; }

  /* Pain / Real Problem */
  .pain { padding: 48px 20px; }
  .shift-diagram { grid-template-columns: 1fr auto 1fr; gap: 0 12px; }
  .shift-item { padding: 14px 14px; font-size: 0.82rem; gap: 10px; }
  .shift-icon { font-size: 1.1rem; }
  .shift-arrow { font-size: 1rem; height: 48px; }

  /* Rhythms */
  .rhythms { padding: 24px 16px; gap: 10px; }
  .rhy-float-video {
    position: static;
    width: 100%;
    max-width: 200px;
    margin: 0 auto 16px;
  }
  .cycle-compare { gap: 20px; }
  .cycle-compare-icon { font-size: 1.8rem; }
  .cycle-compare-text { font-size: 0.78rem; }
  .hormone-explainers { flex-direction: column; }
  .hormone-pill { padding: 8px 12px; }
  .rhy-phases-horizontal { flex-wrap: wrap; }
  .rhy-phases-horizontal .rhy-phase { min-width: 120px; }
  .cycle-phases-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cycle-phase-card { padding: 18px 12px; }
  .cycle-phase-icon { width: 42px; height: 42px; font-size: 1.2rem; }
  .cycle-phase-name { font-size: 0.82rem; }
  .cycle-phase-traits li { font-size: 0.7rem; }
  .rhy-content { flex-direction: column; }
  .rhy-vs.show { flex-direction: row; margin: 12px 0 32px; }
  .rhy-vs-line { width: auto; height: 1px; flex: 1; background: linear-gradient(to right, transparent, var(--border), transparent); }
  .rhy-phases { gap: 6px; }
  .rhy-phase { padding: 12px 10px; }
  .rhy-tab { padding: 6px 16px; font-size: 0.78rem; }


  /* Story */
  .story { padding: 48px 20px; }
  .story-btn { padding: 14px 36px; font-size: 0.9rem; }

  /* Proof */
  .proof { padding: 48px 20px; }
  .test-carousel { gap: 8px; }
  .test-arrow { width: 36px; height: 36px; }
  .test-slide { padding: 24px 16px; }
  .test-photo { width: 52px; height: 52px; margin-bottom: 12px; }
  .test-initials { font-size: 0.95rem; }

  /* Paths */
  .paths { padding: 24px 16px; gap: 12px; }
  .paths-grid { grid-template-columns: 1fr; }
  .path-card:hover { transform: translateY(-4px) scale(1.02); }
  .path-card.featured:hover { transform: translateY(-4px) scale(1.02); }
  .paths-footer .email-row { flex-direction: column; }
  .paths-footer .email-row input, .paths-footer .email-row button { width: 100%; }

  /* Process */
  .process { padding: 48px 20px; }

  /* Final */
  .final { padding: 48px 20px; }
}

@media (max-width: 480px) {
  .hero { padding: 64px 16px 32px; }
  .stats-grid { grid-template-columns: 1fr; }
  .cycle-phases-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .wi-card { width: 170px; height: 170px; padding: 16px 12px; }
  .pain { padding: 36px 16px; gap: 32px; }
  .final { padding: 36px 16px; }
  .btn-primary { padding: 14px 32px; font-size: 0.82rem; }
}
@media (max-width: 375px) {
  .hero-h1 { font-size: 2rem; }
}

/* ═══════════════════════════════════════════════════
   SOCIAL STAT CARDS (reuses .stat-card design)
   ═══════════════════════════════════════════════════ */
.connect-section { background: var(--bg-deep); padding: 40px 48px; }
.connect-section .ambient-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 50% 50%, rgba(107,127,94,0.1) 0%, transparent 60%); }

/* Story text (centered, video is now floating top-left) */
.story-text {
  text-align: center; z-index: 2; max-width: 600px; margin: 0 auto 32px;
}
.story-text .badge { margin-bottom: 10px; }
.story-text h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; margin-bottom: 14px; line-height: 1.2;
}
.story-text h2 em { font-style: italic; color: var(--sage); }
.story-text p {
  font-size: clamp(0.85rem, 1.1vw, 1rem); color: var(--cream-mid);
  font-weight: 300; max-width: 520px; margin: 0 auto; line-height: 1.7;
}


.stat-card-link { text-decoration: none; color: inherit; display: block; cursor: pointer; }
.social-stat-icon { display: block; margin: 8px auto 0; }
.social-stat-icon svg { width: clamp(2.4rem, 4vw, 3.2rem); height: clamp(2.4rem, 4vw, 3.2rem); fill: var(--sage-light); }

/* ═══════════════════════════════════════════════════
   SECTION CTA (popup-style link under each section)
   ═══════════════════════════════════════════════════ */
.section-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 24px; border-radius: 30px;
  background: rgba(107,127,94,0.1); border: 1px solid rgba(107,127,94,0.3);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 400;
  color: var(--sage-light); text-decoration: none;
  transition: all 0.3s var(--ease); z-index: 3; margin-top: 16px;
}
.section-cta:hover {
  background: rgba(107,127,94,0.2); border-color: var(--sage);
  transform: translateY(-2px); box-shadow: 0 4px 20px rgba(107,127,94,0.15);
}

/* ═══════════════════════════════════════════════════
   DEMO CHAT BUBBLE
   ═══════════════════════════════════════════════════ */
.demo-chat-bubble {
  position: fixed; top: 24px; left: 40px; z-index: 200;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 6px 20px 20px 20px;
  background: rgba(180,40,40,0.12); border: 1.5px solid rgba(220,60,60,0.6);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  text-decoration: none; color: var(--cream);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 0 30px rgba(220,60,60,0.1);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  animation: bubbleSlideIn 0.6s ease-out 1.5s both;
  max-width: 320px;
}
.demo-chat-bubble:hover {
  transform: translateY(-2px);
  background: rgba(180,40,40,0.2);
  box-shadow: 0 8px 32px rgba(220,60,60,0.2), 0 0 40px rgba(220,60,60,0.1);
}
.demo-chat-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0;
  animation: statusPulse 2s infinite;
  box-shadow: 0 0 8px rgba(74,222,128,0.4);
}
.demo-chat-text {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 400;
  line-height: 1.4; color: var(--cream-light);
}
.demo-chat-arrow { flex-shrink: 0; color: var(--sage-light); opacity: 0.6; transition: opacity 0.3s, transform 0.3s; }
.demo-chat-bubble:hover .demo-chat-arrow { opacity: 1; transform: translateX(2px); }
@keyframes bubbleSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .demo-chat-bubble { left: 16px; right: 16px; max-width: none; bottom: 20px; padding: 12px 18px; }
}

/* ═══════════════════════════════════════════════════
   SITE NAVIGATION
   ═══════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; height: 56px; z-index: 600;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex; justify-content: center; align-items: center;
  padding: 0 32px; padding-top: env(safe-area-inset-top); border-bottom: 1px solid var(--border-light);
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 400;
  color: var(--cream); letter-spacing: 0.3px; white-space: nowrap;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-link {
  font-size: 0.78rem; font-weight: 400; color: var(--cream-mid);
  letter-spacing: 0.3px; transition: color 0.3s;
}
.nav-link:hover { color: var(--cream); }
.nav-cta {
  display: inline-flex; align-items: center; padding: 8px 20px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.4px;
  background: var(--sage); color: white; border-radius: 24px;
  transition: transform 0.3s var(--ease), background 0.3s;
  box-shadow: 0 0 16px var(--sage-glow);
}
.nav-cta:hover { transform: scale(1.05); background: var(--sage-light); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; height: 20px; cursor: pointer; background: none; border: none; padding: 0;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--cream); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 56px; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 0;
    background: rgba(0,0,0,0.96); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease);
  }
  .nav-links.open { max-height: 300px; }
  .nav-link, .nav-cta {
    display: block; width: 100%; padding: 16px 32px; text-align: left;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-cta { border-radius: 0; text-align: center; }
  .hero { padding-top: 80px; }
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════ */
.testimonials {
  background: var(--bg-warm); flex-direction: column;
  padding: 80px 48px; gap: 40px;
}
.testimonials .orb-1 {
  top: 20%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,169,154,0.08), transparent 70%);
}
.testimonials-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 32px; z-index: 2; width: 100%; max-width: 960px;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; width: 100%;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 24px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107,127,94,0.4);
  box-shadow: 0 12px 40px rgba(107,127,94,0.1);
}
.testimonial-quote-mark {
  font-family: var(--font-display); font-size: 2.5rem; line-height: 1;
  color: var(--sage); opacity: 0.5; margin-bottom: 8px;
}
.testimonial-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7; color: var(--cream-mid); font-weight: 300;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-initials {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 500;
  color: var(--sage-light); background: var(--sage-pale);
  border: 1px solid rgba(107,127,94,0.3);
}
.testimonial-photo {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(107,127,94,0.3); flex-shrink: 0;
}
.testimonial-name {
  display: block; font-size: 0.85rem; font-weight: 500; color: var(--cream);
}
.testimonial-role {
  display: block; font-size: 0.72rem; color: var(--cream-faint); font-weight: 300;
}

@media (max-width: 768px) {
  .testimonials { padding: 48px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════ */
.faq-section {
  background: var(--bg); flex-direction: column;
  padding: 80px 48px; gap: 40px;
}
.faq-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 32px; z-index: 2; width: 100%; max-width: 680px;
}
.faq-list {
  display: flex; flex-direction: column; gap: 0;
  width: 100%;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-size: 0.95rem; font-weight: 400; color: var(--cream);
  transition: color 0.3s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--sage-light); }
.faq-icon {
  font-size: 1.3rem; color: var(--sage); flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  font-weight: 300;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 20px;
  animation: faqFadeIn 0.3s var(--ease);
}
.faq-answer p {
  font-size: 0.88rem; color: var(--cream-mid); font-weight: 300;
  line-height: 1.7;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .faq-section { padding: 48px 20px; }
  .faq-question { font-size: 0.88rem; padding: 16px 0; }
}

/* ═══════════════════════════════════════════════════
   EMAIL CAPTURE SECTION
   ═══════════════════════════════════════════════════ */
.email-capture-section {
  background: var(--bg-deep); flex-direction: column;
  padding: 80px 48px; position: relative;
}
.email-capture-section .orb-1 {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--sage-glow), transparent 70%);
}
.email-capture-inner {
  text-align: center; z-index: 2; max-width: 520px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.email-capture-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300; line-height: 1.3; color: var(--cream);
}
.email-capture-inner h2 em { font-style: italic; color: var(--sage); }
.email-capture-inner > p {
  font-size: clamp(0.88rem, 1.1vw, 1rem); color: var(--cream-mid);
  font-weight: 300; line-height: 1.7; max-width: 420px;
}
.email-capture-form {
  display: flex; gap: 8px; width: 100%; max-width: 460px; margin-top: 8px;
}
.email-capture-form input {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 50px; padding: 14px 22px; color: var(--cream);
  font-size: 0.88rem; font-family: var(--font-body); outline: none;
  transition: border-color 0.3s;
}
.email-capture-form input::placeholder { color: var(--cream-faint); }
.email-capture-form input:focus { border-color: var(--sage); }
.email-capture-form .btn-primary {
  white-space: nowrap; padding: 14px 28px; font-size: 0.82rem;
}
.email-capture-note {
  font-size: 0.72rem; color: var(--cream-faint); font-weight: 300; font-style: italic;
}

@media (max-width: 768px) {
  .email-capture-section { padding: 48px 20px; }
  .email-capture-form { flex-direction: column; }
  .email-capture-form input, .email-capture-form .btn-primary { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   INLINE EMAIL BAR (repeating CTA between sections)
   ═══════════════════════════════════════════════════ */
.inline-email-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; padding: 16px 32px;
  background: transparent; position: relative;
  flex-wrap: wrap; z-index: 2; width: 100%; max-width: 640px;
  margin: 0 auto;
}
.inline-email-avatar {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.inline-email-form {
  display: flex; gap: 8px; max-width: 440px; flex: 1; min-width: 0;
}
.inline-email-form input {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 50px; padding: 12px 20px; color: var(--cream);
  font-size: 0.85rem; font-family: var(--font-body); outline: none;
  transition: border-color 0.3s;
}
.inline-email-form input::placeholder { color: var(--cream-faint); }
.inline-email-form input:focus { border-color: var(--sage); }
.inline-email-form .btn-primary {
  white-space: nowrap; padding: 12px 24px; font-size: 0.8rem;
}
.inline-email-msg {
  font-size: 0.82rem; color: var(--sage-light); font-weight: 400;
  width: 100%; text-align: center; min-height: 0;
}
.inline-email-msg:empty { display: none; }
.inline-email-msg.error { color: #f87171; }
.inline-email-note {
  font-size: 0.68rem; color: var(--cream-faint); font-weight: 300;
  font-style: italic; width: 100%; text-align: center;
}
@media (max-width: 768px) {
  .inline-email-bar { padding: 20px 16px; gap: 10px; }
  .inline-email-form { flex-direction: column; min-width: 0; width: 100%; }
  .inline-email-form input, .inline-email-form .btn-primary { width: 100%; }
  .inline-email-avatar { width: 40px; height: 40px; }
}

/* ═══════════════════════════════════════════════════
   FOOTER ENHANCEMENTS
   ═══════════════════════════════════════════════════ */
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.footer-links {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.footer-links a {
  font-size: 0.75rem; color: var(--cream-faint); transition: color 0.3s;
  letter-spacing: 0.3px;
}
.footer-links a:hover { color: var(--sage-light); }

/* ═══════════════════════════════════════════════════
   COLOR CONTRAST FIX
   ═══════════════════════════════════════════════════ */
/* Increase faint text opacity for better WCAG AA compliance */
.hero-micro, .email-capture-note, .stat-sub { color: rgba(247,243,238,0.45); }

/* ═══════════════════════════════════════════════════
   MOBILE TOUCH TARGET FIX
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .btn-primary, .btn-outline, .section-cta, .nav-cta {
    min-height: 44px;
  }
}

/* ═══════════════════════════════════════════════════
   TIP BADGE (next to title)
   ═══════════════════════════════════════════════════ */
.yip-badge {
  display: inline-block; padding: 4px 14px;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--sage-light); background: var(--sage-pale);
  border: 1px solid rgba(107,127,94,0.3); border-radius: 20px;
  vertical-align: middle; margin-left: 8px;
  font-style: normal;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS 4-COLUMN GRID
   ═══════════════════════════════════════════════════ */
.testimonials-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px) {
  .testimonials-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonials-grid-4 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   CASE STUDY CAROUSEL / SPOTLIGHT
   ═══════════════════════════════════════════════════ */
.cs-carousel {
  position: relative;
  width: 100%;
  max-width: 720px;
  z-index: 2;
}

.cs-slide {
  display: none;
  align-items: center;
  gap: 40px;
  padding: 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(107,127,94,0.2);
  border-radius: 24px;
  animation: csFadeIn 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
.cs-slide.active {
  display: flex;
}

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

/* Photo */
.cs-photo-wrap {
  flex-shrink: 0;
}
.cs-photo {
  width: clamp(100px, 18vw, 140px);
  height: clamp(100px, 18vw, 140px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--sage);
  box-shadow: 0 0 30px rgba(107,127,94,0.3), 0 0 60px rgba(107,127,94,0.12);
}

/* Content */
.cs-content {
  flex: 1;
  min-width: 0;
}
.cs-quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--sage);
  opacity: 0.4;
  margin-bottom: 4px;
}
.cs-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: var(--cream-mid);
  font-weight: 300;
  margin-bottom: 16px;
}
.cs-result {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(107,127,94,0.2), rgba(196,149,106,0.1));
  border: 1px solid rgba(107,127,94,0.35);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sage-light);
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.cs-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cs-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
}
.cs-role {
  font-size: 0.75rem;
  color: var(--cream-faint);
  font-weight: 300;
}

/* Dots */
.cs-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.cs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.cs-dot.active {
  background: var(--sage);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(107,127,94,0.4);
}
.cs-dot:hover:not(.active) {
  background: rgba(107,127,94,0.4);
}

/* Responsive */
@media (max-width: 640px) {
  .cs-slide {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    gap: 24px;
  }
  .cs-author {
    align-items: center;
  }
  .cs-quote-mark {
    font-size: 2.5rem;
  }
}

/* ═══════════════════════════════════════════════════
   INLINE EMAIL — always side by side
   ═══════════════════════════════════════════════════ */
.inline-email-form {
  flex-wrap: nowrap;
}
@media (max-width: 480px) {
  .inline-email-form { flex-direction: column; }
  .inline-email-form input { width: 100%; }
  .inline-email-form .btn-primary { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════
   GROWTH TIMELINE + HIRING VS AI
   ═══════════════════════════════════════════════════ */
.growth-timeline {
  background: var(--bg-light);
  flex-direction: column;
  padding: 56px 48px;
  gap: 0;
}
.gt-header {
  text-align: center; z-index: 2; margin-bottom: 32px;
}
.gt-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 10px;
}
.gt-header h2 em {
  font-style: italic; color: var(--sage);
  text-shadow: none;
}
.gt-header p {
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  color: var(--cream-light); font-weight: 300; max-width: 500px;
  margin: 0 auto; line-height: 1.7;
}

/* Timeline — animated steps */
.gt-steps {
  display: flex; justify-content: center; gap: 0;
  max-width: 900px; width: 100%; z-index: 2;
  margin-bottom: 48px; position: relative;
}
.gt-steps-line {
  position: absolute; top: 50px; left: 12%; right: 12%;
  height: 2px; background: rgba(107,127,94,0.1);
}
.gt-steps-line-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--sage), rgba(107,127,94,0.3));
  transition: width 1.6s cubic-bezier(0.22,1,0.36,1);
}
.gt-steps.gt-active .gt-steps-line-fill { width: 100%; }

.gt-step {
  flex: 1; text-align: center; position: relative; z-index: 1;
  padding: 0 16px;
}
.gt-step-marker {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 18px; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(107,127,94,0.06);
  border: 1px solid rgba(107,127,94,0.2);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.gt-step:hover .gt-step-marker {
  transform: scale(1.08);
  border-color: var(--sage);
  box-shadow: 0 0 40px rgba(107,127,94,0.25), 0 0 80px rgba(107,127,94,0.08);
}
.gt-step-ring {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(107,127,94,0.15);
  animation: playPulse 3s ease-in-out infinite;
}
.gt-step-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 300;
  color: var(--sage-light); line-height: 1;
}
.gt-step-unit {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--cream-faint);
}
.gt-step h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 400; color: var(--cream); margin-bottom: 8px;
}
.gt-step p {
  font-size: 0.84rem; color: var(--cream-light); font-weight: 300;
  line-height: 1.6; max-width: 240px; margin: 0 auto;
}

/* Staggered reveal */
.gt-step-reveal {
  opacity: 0; transform: translateY(30px) scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.gt-step-reveal.gt-vis { opacity: 1; transform: translateY(0) scale(1); }
.gt-step:nth-child(2).gt-step-reveal { transition-delay: 0s; }
.gt-step:nth-child(3).gt-step-reveal { transition-delay: 0.2s; }
.gt-step:nth-child(4).gt-step-reveal { transition-delay: 0.4s; }

/* Hiring vs AI comparison */
.gt-compare-header {
  text-align: center; z-index: 2; margin-bottom: 24px;
}
.gt-compare-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300; line-height: 1.2;
}
.gt-compare-header h2 em {
  font-style: italic; color: var(--sage);
  text-shadow: none;
}
.gt-compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; max-width: 640px; width: 100%;
  z-index: 2; margin-bottom: 36px;
}
.gt-compare-col {
  background: rgba(255,255,255,0.03);
  border-radius: 14px; padding: 22px 24px;
}
.gt-compare-hiring { border: 1px solid var(--border-terra); }
.gt-compare-ai { border: 1px solid rgba(107,127,94,0.2); }
.gt-compare-col h4 {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 400; text-align: center; margin-bottom: 14px;
}
.gt-compare-hiring h4 { color: var(--terra-light); }
.gt-compare-ai h4 { color: var(--sage-light); }
.gt-compare-col ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.gt-compare-col ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.84rem; color: var(--cream-light); font-weight: 300;
  line-height: 1.5;
}
.gt-x { color: var(--terra); flex-shrink: 0; margin-top: 1px; }
.gt-check { color: var(--sage); flex-shrink: 0; margin-top: 1px; }

/* CTA */
.gt-cta { text-align: center; z-index: 2; }

/* Mobile */
@media (max-width: 768px) {
  .growth-timeline { padding: 40px 20px; }
  .gt-steps { flex-direction: column; gap: 32px; }
  .gt-steps-line { display: none; }
  .gt-step-marker { width: 80px; height: 80px; }
  .gt-step-num { font-size: 1.8rem; }
  .gt-compare { grid-template-columns: 1fr; }
  .gt-compare-col { padding: 18px 16px; }
  .gt-reveal { transform: translateY(20px); }
  .gt-reveal.gt-vis { transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS SECTION
   ═══════════════════════════════════════════════════ */
.how-section {
  background: var(--bg-deep);
  padding: 32px 48px 24px; gap: 16px;
  z-index: 2;
}
.how-section .correction-flow { gap: 4px; max-width: 600px; }
.how-section .flow-step { padding: 12px 20px; }
.how-section .flow-icon-avatar { width: 56px; height: 56px; }
.how-section .flow-step h3 { font-size: 1.15rem; margin-bottom: 4px; }
.how-section .flow-step p { font-size: 0.88rem; line-height: 1.5; }
.how-section .flow-arrow { font-size: 1.1rem; }

/* How It Works - horizontal cards */
.hiw-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 900px; width: 100%; z-index: 2; margin: 0 auto;
}
.hiw-card {
  text-align: center; padding: 32px 24px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border-light);
  border-radius: 20px; transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), 0 0 40px rgba(184,155,110,0.05);
}
.hiw-card:hover { border-color: rgba(184,155,110,0.2); box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 60px rgba(184,155,110,0.1); }
.hiw-card h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 400;
  color: var(--cream); margin-bottom: 10px;
}
.hiw-card p {
  font-size: 0.88rem; color: var(--cream-mid); font-weight: 300;
  line-height: 1.7; font-style: italic;
}
@media (max-width: 768px) {
  .hiw-cards { grid-template-columns: 1fr; max-width: 400px; }
}

.how-section .orb-1 {
  top: 30%; left: 10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(107,127,94,0.08), transparent 70%);
}
.how-section-header {
  text-align: center; z-index: 2; max-width: 700px; margin: 0 auto;
}
.how-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--cream);
}
@media (max-width: 768px) {
  .how-section { padding: 32px 16px; gap: 16px; }
}

/* ═══════════════════════════════════════════════════
   PRIVACY SECTION
   ═══════════════════════════════════════════════════ */
/* ─── Privacy Section ─── */
.privacy-section {
  background: var(--bg-deep);
  padding: 40px 48px 24px; gap: 16px;
}
.privacy-section .orb-1 {
  top: 50%; right: 10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,127,94,0.08), transparent 70%);
}
.privacy-header {
  text-align: center; z-index: 2; max-width: 700px; margin: 0 auto;
}
.privacy-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300; line-height: 1.15; color: var(--cream);
}

@media (max-width: 768px) {
  .privacy-section { padding: 24px 16px; gap: 20px; }
}

/* ═══════════════════════════════════════════════════
   AURORA BLOBS — large blurred gradient lights behind elements
   (inspired by skalers.io style)
   ═══════════════════════════════════════════════════ */

/* Base blob: absolutely positioned, blurred, behind content */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.6;
}

/* ── Hero: blob behind video + blob behind title ── */
.hero .hero-grid { position: relative; z-index: 1; }
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: 30%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(107,127,94,0.35) 0%, rgba(107,127,94,0.1) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none; z-index: 0;
}

/* ── Rhythms: blob behind charts ── */
.rhythms .rhy-content { position: relative; z-index: 1; }
.rhythms::after {
  content: '';
  position: absolute;
  width: 600px; height: 400px;
  bottom: 10%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(107,127,94,0.3) 0%, rgba(143,166,126,0.12) 40%, transparent 70%);
  filter: blur(90px);
  pointer-events: none; z-index: 0;
}
.cycle-compare-side .hero-avatar-wrap { filter: drop-shadow(0 0 30px rgba(107,127,94,0.4)); }

/* ── What He Does: blob behind card grid ── */
.paths .dfy-content { position: relative; z-index: 1; }
.paths::after {
  content: '';
  position: absolute;
  width: 700px; height: 500px;
  top: 40%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(107,127,94,0.3) 0%, rgba(143,166,126,0.1) 45%, transparent 70%);
  filter: blur(100px);
  pointer-events: none; z-index: 0;
}
/* dfy-card glow */
.dfy-card { box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 0 30px rgba(107,127,94,0.08); }
.dfy-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 40px rgba(107,127,94,0.15); }

/* ── Chat Terminal: blob behind terminal ── */
.chat-section .terminal-layout { position: relative; z-index: 1; }
.chat-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 500px;
  top: 45%; left: 55%; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(107,127,94,0.35) 0%, rgba(143,166,126,0.12) 40%, transparent 70%);
  filter: blur(90px);
  pointer-events: none; z-index: 0;
}
.chat-section .terminal-window { box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 50px rgba(107,127,94,0.15), 0 0 100px rgba(107,127,94,0.06); }

/* ── Privacy: two blobs — warm behind Generic AI, sage behind TIP ── */
.privacy-section .cd-wrap { position: relative; z-index: 1; }
.privacy-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  top: 40%; left: 25%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,169,154,0.3) 0%, rgba(212,169,154,0.08) 45%, transparent 70%);
  filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.privacy-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  top: 45%; right: 10%;
  background: radial-gradient(circle, rgba(107,127,94,0.35) 0%, rgba(107,127,94,0.1) 45%, transparent 70%);
  filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.cd-profile--him { box-shadow: 0 0 30px rgba(107,127,94,0.15), 0 0 60px rgba(107,127,94,0.08); }
.cd-profile--her { box-shadow: 0 0 30px rgba(212,169,154,0.1), 0 0 60px rgba(212,169,154,0.05); }

/* ── How It Works: blob behind flow ── */
.how-section .correction-flow { position: relative; z-index: 1; }
.how-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 600px;
  top: 40%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(107,127,94,0.3) 0%, rgba(143,166,126,0.1) 45%, transparent 70%);
  filter: blur(90px);
  pointer-events: none; z-index: 0;
}
.flow-step.active { box-shadow: 0 0 30px rgba(107,127,94,0.15), 0 0 60px rgba(107,127,94,0.08); }
.flow-step.active .flow-icon-avatar { box-shadow: 0 0 30px rgba(107,127,94,0.3), 0 0 60px rgba(107,127,94,0.12); }

/* ── Connect: blob behind stat cards ── */
.connect-section::after {
  content: '';
  position: absolute;
  width: 700px; height: 400px;
  bottom: 15%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(107,127,94,0.3) 0%, rgba(143,166,126,0.1) 45%, transparent 70%);
  filter: blur(100px);
  pointer-events: none; z-index: 0;
}
.stat-card { box-shadow: 0 4px 24px rgba(0,0,0,0.2), 0 0 30px rgba(107,127,94,0.12), 0 0 60px rgba(107,127,94,0.06); }
.stat-card:hover { box-shadow: 0 12px 40px rgba(107,127,94,0.2), 0 0 60px rgba(107,127,94,0.15), 0 0 100px rgba(107,127,94,0.08); }
