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

/* Picture elements are transparent to layout so existing img selectors keep working */
picture { display: contents; }

:root {
  --cream:       #FDF8F0;
  --cream-dark:  #F5EDE0;
  --sage:        #A8BFA0;
  --sage-light:  #C8D9C0;
  --sage-pale:   #E8F0E4;
  --sage-deep:   #7A9A6E;
  --warm-brown:  #8B7355;
  --text-dark:   #3D3A35;
  --text-med:    #6B6560;
  --text-light:  #9A9490;
  --blush:       #E8D5CC;
  --white:       #FFFFFF;
  --font-serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:   'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

/* =========================================
   UTILITY ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.25s; }
.stagger-3 { transition-delay: 0.4s; }
.stagger-4 { transition-delay: 0.55s; }

/* Gentle floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}
@keyframes breathe {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
@keyframes gentlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168, 191, 160, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(168, 191, 160, 0); }
}
@keyframes driftLeaf1 {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(80px, 120px) rotate(45deg); opacity: 0; }
}
@keyframes driftLeaf2 {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(-60px, 100px) rotate(-30deg); opacity: 0; }
}
@keyframes driftLeaf3 {
  0%   { transform: translate(0, 0) rotate(15deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(40px, 140px) rotate(60deg); opacity: 0; }
}
@keyframes growLine {
  from { width: 0; }
  to   { width: 60px; }
}
@keyframes labelReveal {
  from { letter-spacing: 0.5em; opacity: 0; }
  to   { letter-spacing: 0.25em; opacity: 1; }
}
@keyframes sproutGrow {
  0%   { transform: scaleY(0) translateY(4px); opacity: 0; }
  60%  { transform: scaleY(1.1) translateY(0); opacity: 1; }
  100% { transform: scaleY(1) translateY(0); opacity: 1; }
}
@keyframes leafUnfurl {
  0%   { transform: rotate(-20deg) scale(0); opacity: 0; }
  70%  { transform: rotate(5deg) scale(1.1); opacity: 1; }
  100% { transform: rotate(0deg) scale(1); opacity: 1; }
}

/* =========================================
   NAVIGATION
   ========================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
  padding: 0.6rem 2rem;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  transition: color 0.4s;
}
nav.scrolled .nav-logo {
  color: var(--sage-deep);
  text-shadow: none;
}
.nav-logo span {
  font-weight: 300;
  font-style: italic;
  opacity: 0.7;
  margin-left: 0.3em;
  font-size: 0.85em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
  transition: color 0.4s, text-shadow 0.4s;
  position: relative;
}
nav.scrolled .nav-links a {
  color: var(--text-med);
  text-shadow: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; background: var(--white); }
nav.scrolled .nav-links a:hover { color: var(--sage-deep); }
nav.scrolled .nav-links a:hover::after { background: var(--sage); }
.nav-cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 50px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  transition: background 0.3s, transform 0.3s !important;
}
.nav-cta:hover {
  background: var(--sage-deep) !important;
  transform: translateY(-1px) !important;
}
.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}
nav.scrolled .mobile-toggle span {
  background: var(--text-dark);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--text-dark);
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 28, 25, 0.10) 0%,
    rgba(30, 28, 25, 0.12) 25%,
    rgba(30, 28, 25, 0.30) 45%,
    rgba(30, 28, 25, 0.58) 65%,
    rgba(30, 28, 25, 0.72) 100%
  );
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}
.hero-bg-orb.orb1 {
  width: 600px; height: 600px;
  background: var(--sage-light);
  top: -200px; right: -100px;
  animation: breathe 8s ease-in-out infinite;
}
.hero-bg-orb.orb2 {
  width: 400px; height: 400px;
  background: var(--blush);
  bottom: -100px; left: -50px;
  animation: breathe 10s ease-in-out infinite 2s;
}
.hero-bg-orb.orb3 {
  width: 300px; height: 300px;
  background: var(--sage);
  top: 50%; left: 60%;
  animation: breathe 12s ease-in-out infinite 4s;
}

/* Decorative leaf accents */
.leaf-accent {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}
.leaf-accent svg {
  fill: var(--sage-deep);
}
.leaf-1 {
  top: 15%; left: 5%;
  animation: floatSlow 9s ease-in-out infinite;
}
.leaf-2 {
  bottom: 20%; right: 8%;
  animation: floatSlow 11s ease-in-out infinite 3s;
  transform: rotate(45deg);
}
.leaf-3 {
  top: 60%; left: 80%;
  animation: floatSlow 8s ease-in-out infinite 1.5s;
  transform: rotate(-30deg);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem 2rem 8rem;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3);
}
.hero-sprout-icon {
  margin-bottom: 1.2rem;
}
.hero-sprout-icon svg {
  width: 52px;
  height: 52px;
  color: var(--sage-light);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  opacity: 0.85;
}
.hero h1 em {
  font-style: italic;
  color: var(--sage-light);
  font-weight: 400;
}
.hero-h1-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35), 0 1px 2px rgba(0,0,0,0.25);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sage);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: gentlePulse 3s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(168, 191, 160, 0.3);
}
.hero-cta:hover {
  background: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122, 154, 110, 0.35);
  animation: none;
}
.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.hero-cta:hover svg { transform: translateY(3px); }
/* Leaf accent on CTA hover */
.hero-cta {
  position: relative;
  overflow: visible;
}
.hero-cta .cta-leaf {
  position: absolute;
  right: -8px;
  top: -10px;
  width: 22px;
  height: 22px;
  fill: var(--sage-light);
  opacity: 0;
  transform: rotate(-20deg) scale(0);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.hero-cta:hover .cta-leaf {
  opacity: 0.7;
  transform: rotate(0deg) scale(1);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  opacity: 0.5;
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
.scroll-sprout {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.35);
}

/* =========================================
   SECTION SHARED
   ========================================= */
section {
  position: relative;
}
.section-pad {
  padding: 7rem 2rem;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
/* Section label with letter-spacing reveal */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  opacity: 0;
  transition: letter-spacing 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section-label.visible {
  letter-spacing: 0.25em;
  opacity: 1;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.section-heading em {
  font-style: italic;
  color: var(--sage-deep);
}
/* Organic underline that grows in on reveal */
.section-heading::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin: 1.2rem auto 0;
  background: linear-gradient(90deg, transparent, var(--sage-light), var(--sage), var(--sage-light), transparent);
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}
.section-heading.visible::after,
.visible .section-heading::after {
  width: 60px;
}
.section-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-med);
  line-height: 1.9;
  max-width: 600px;
}
/* Organic vine divider between sections */
.divider-vine {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.5rem 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.divider-vine.visible {
  opacity: 1;
}
.divider-vine-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage-light));
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.divider-vine-line.right {
  background: linear-gradient(90deg, var(--sage-light), transparent);
}
.divider-vine.visible .divider-vine-line {
  width: 50px;
}
.divider-vine svg {
  width: 20px;
  height: 20px;
  fill: var(--sage);
  opacity: 0.4;
  transform: scaleY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}
.divider-vine.visible svg {
  transform: scaleY(1);
}

.divider-leaf {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  opacity: 0.2;
}
.divider-leaf svg {
  width: 30px;
  fill: var(--sage);
}

/* Floating leaf particles — pure CSS */
.leaf-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.leaf-particle {
  position: absolute;
  opacity: 0;
}
.leaf-particle svg {
  fill: var(--sage);
  opacity: 0.06;
}
.leaf-particle:nth-child(1) {
  top: 10%; left: 8%;
  animation: driftLeaf1 14s ease-in-out infinite;
}
.leaf-particle:nth-child(2) {
  top: 30%; right: 12%;
  animation: driftLeaf2 18s ease-in-out infinite 3s;
}
.leaf-particle:nth-child(3) {
  top: 60%; left: 15%;
  animation: driftLeaf3 16s ease-in-out infinite 7s;
}
.leaf-particle:nth-child(4) {
  top: 45%; right: 6%;
  animation: driftLeaf1 20s ease-in-out infinite 10s;
}
.leaf-particle:nth-child(5) {
  top: 75%; left: 80%;
  animation: driftLeaf2 15s ease-in-out infinite 5s;
}

/* =========================================
   PROBLEM SECTION — Cinematic Split
   ========================================= */
.problem {
  background: var(--cream);
  text-align: center;
  overflow: hidden;
}
.problem .section-text {
  margin: 0 auto 0;
  max-width: 650px;
}

/* Intro area */
.problem-intro {
  padding-bottom: 3rem;
}

/* Cinematic split panels */
.problem-split {
  display: flex;
  align-items: stretch;
  width: 100%;
  position: relative;
}

.problem-panel {
  position: relative;
  flex: 1;
  height: 55vh;
  min-height: 380px;
  max-height: 600px;
  overflow: hidden;
  cursor: default;
}

.problem-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform: scale(1);
}

/* Dark gradient overlay for text legibility */
.problem-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(61, 58, 53, 0) 0%,
    rgba(61, 58, 53, 0.15) 40%,
    rgba(61, 58, 53, 0.7) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.problem-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem 2rem;
  z-index: 2;
  text-align: center;
}

.problem-panel-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.problem-panel-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* OR divider — prominent centered circle */
.problem-split-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.problem-split-or {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--sage-deep);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25), 0 0 0 4px rgba(168, 191, 160, 0.3);
  letter-spacing: 0.05em;
}

/* Payoff statement */
.problem-payoff {
  padding: 4rem 2rem 5rem;
  text-align: center;
}

.problem-payoff-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-med);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.problem-payoff-until {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--sage-deep);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Ken Burns keyframes for subtle image drift */
@keyframes kenBurnsLeft {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
@keyframes kenBurnsRight {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(1%, -1%); }
}

/* =========================================
   SOLUTION SECTION
   ========================================= */
.solution {
  background: linear-gradient(180deg, var(--sage-pale) 0%, var(--cream) 100%);
}
.solution-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.solution-header .section-text {
  max-width: 600px;
}
/* Full-width image with soft vignette fade + parallax */
.solution-image-full {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 4rem;
  overflow: hidden;
}
.solution-image-full::before,
.solution-image-full::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
.solution-image-full::before {
  top: 0;
  height: 140px;
  background: linear-gradient(180deg, var(--sage-pale) 0%, rgba(232,240,228,0) 100%);
}
.solution-image-full::after {
  bottom: 0;
  height: 140px;
  background: linear-gradient(0deg, var(--cream) 0%, rgba(253,248,240,0) 100%);
}
.solution-image-full img {
  width: 100%;
  height: 75vh;
  min-height: 480px;
  max-height: 700px;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform: translateY(0) scale(1.15);
}
/* Screen reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.solution-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
/* Editorial Open feature style */
.solution-feature {
  text-align: center;
  padding: 0.5rem 0;
}
.solution-feature-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--sage);
  margin-bottom: 0.8rem;
  line-height: 1;
}
.solution-feature h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.solution-feature h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--sage-light);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}
.solution-feature p {
  font-size: 0.9rem;
  color: var(--text-med);
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
  background: var(--cream);
  text-align: center;
}

/* Mode Slider — Before / After */
.mode-slider {
  margin: 3.5rem auto;
  max-width: 960px;
}
.mode-slider-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.mode-slider-after,
.mode-slider-before {
  width: 100%;
}
.mode-slider-after {
  display: block;
}
.mode-slider-after img,
.mode-slider-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mode-slider-before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}
.mode-slider-before img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  max-width: none;
}
/* Placeholder styling */
.mode-slider-after .image-placeholder,
.mode-slider-before .image-placeholder {
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0;
}
.mode-slider-after .image-placeholder {
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream-dark) 100%);
}
.mode-slider-before .image-placeholder {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--blush) 100%);
}
.mode-slider-container .image-placeholder span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
/* Drag handle */
.mode-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  pointer-events: none;
}
.mode-slider-line {
  flex: 1;
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}
.mode-slider-knob {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  pointer-events: auto;
  cursor: ew-resize;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mode-slider-knob:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.mode-slider-knob svg {
  width: 20px;
  height: 20px;
  color: var(--sage-deep);
}
/* Labels below slider */
.mode-slider-labels {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0.5rem 0;
}
.mode-slider-label-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
}
.mode-slider-label-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.step {
  text-align: center;
  position: relative;
}
.step-visual {
  margin-bottom: 1.5rem;
}
.step-visual-placeholder {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--sage-pale) 100%);
  border: 2px dashed rgba(168, 191, 160, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-visual-placeholder span {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-light);
  opacity: 0.6;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 15px rgba(168, 191, 160, 0.3);
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}
.step p {
  font-size: 0.92rem;
  color: var(--text-med);
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* =========================================
   LIFESTYLE IMAGE BREAK
   ========================================= */
.image-break {
  position: relative;
  height: 55vh;
  min-height: 350px;
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(253,248,240,0.3) 0%, rgba(253,248,240,0) 30%, rgba(253,248,240,0) 70%, rgba(253,248,240,0.5) 100%);
}
.image-break-quote {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  max-width: 500px;
  padding: 0 2rem;
}
.image-break-quote p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  line-height: 1.5;
}

/* =========================================
   WHY DIFFERENT
   ========================================= */
.why-different {
  background: var(--white);
}
.why-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.why-header .section-text {
  max-width: 620px;
}
.why-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
/* Editorial Open — why features */
.why-feature {
  text-align: center;
  padding: 0.5rem 0;
}
.why-feature h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.why-feature h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--sage-light);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}
.why-feature p {
  font-size: 0.88rem;
  color: var(--text-med);
  font-weight: 300;
  line-height: 1.7;
}
.why-image-full {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.why-image-full img {
  width: 100%;
  height: auto;
  display: block;
}
.why-image-full .image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--sage-light);
  border-radius: 20px;
}
.why-image-full .image-placeholder span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-pale) 100%);
  text-align: center;
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
/* Editorial Open — quote cards */
.quote-card {
  padding: 1.5rem 1rem;
  position: relative;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.quote-card p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-med);
  line-height: 1.7;
}
.quote-author {
  margin-top: 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--sage);
}

/* =========================================
   WAITLIST SECTION
   ========================================= */
.waitlist {
  background: var(--sage-pale);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(168, 191, 160, 0.15);
  filter: blur(60px);
}
.waitlist-inner {
  position: relative;
  z-index: 2;
}
.waitlist-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2.5rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist-form input {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.5rem;
  border: 1.5px solid rgba(168, 191, 160, 0.3);
  border-radius: 50px;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.waitlist-form input::placeholder {
  color: var(--text-light);
}
.waitlist-form input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(168, 191, 160, 0.15);
}
.waitlist-form button {
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 50px;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(168, 191, 160, 0.3);
}
.waitlist-form button:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(122, 154, 110, 0.35);
}
.waitlist-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1rem;
}
.waitlist-feedback {
  text-align: center;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.waitlist-feedback p {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.waitlist-success {
  background: var(--sage-pale);
  color: var(--sage-deep);
  padding: 3rem 2rem;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.95) translateY(15px);
  transition: none;
}
.waitlist-success.animate-in {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.waitlist-success p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}
.success-icon {
  display: block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  background: var(--sage-deep);
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 auto 1.2rem;
  opacity: 0;
  transform: scale(0);
}
.animate-in .success-icon {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease 0.2s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}
.waitlist-error {
  background: #fdf0f0;
  color: #a04040;
  animation: shakeError 0.5s ease;
}
@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  15%, 45%, 75% { transform: translateX(-6px); }
  30%, 60%, 90% { transform: translateX(6px); }
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 2rem;
  text-align: center;
}
.footer-sprout {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.footer-sprout svg {
  width: 32px;
  height: 32px;
  fill: var(--sage);
  opacity: 0.4;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--sage-light);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.footer-details {
  font-size: 0.8rem;
  line-height: 2;
  opacity: 0.6;
}
.footer-details a {
  color: var(--sage-light);
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer-details a:hover { opacity: 0.8; }
.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 2rem auto;
}

/* =========================================
   RESPONSIVE
   ========================================= */
.mobile-break { display: none; }
@media (max-width: 900px) {
  .mobile-break { display: block; }
  .section-text[style*="white-space"] { white-space: normal !important; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    align-items: center;
  }
  .nav-links.open a {
    color: var(--text-dark) !important;
    text-shadow: none !important;
    font-size: 0.9rem;
  }
  .nav-links.open a:hover {
    color: var(--sage-deep) !important;
  }
  .mobile-toggle { display: flex; }
  .solution-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }
  .problem-split {
    flex-direction: column;
  }
  .problem-panel {
    height: 45vh;
    min-height: 280px;
  }
  .problem-split-divider {
    top: auto;
    bottom: auto;
    /* Center between stacked panels */
    top: 50%;
  }
  .problem-split-or {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
  .problem-payoff-until {
    font-size: 2.4rem;
  }
  .problem-payoff-text {
    font-size: 1.25rem;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 350px;
  }
  .step::after { display: none !important; }
  .mode-slider-after .image-placeholder,
  .mode-slider-before .image-placeholder {
    height: 280px;
  }
  .why-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .quotes-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  .section-pad {
    padding: 5rem 1.5rem;
  }
  .solution-image-full img {
    height: 45vh;
    min-height: 280px;
  }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.2rem; }
  .section-heading { font-size: 1.8rem; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input { width: 100%; }
  .waitlist-form button { width: 100%; }
  .why-features {
    grid-template-columns: 1fr;
  }
  .problem-panel {
    height: 35vh;
    min-height: 240px;
  }
  .problem-panel-content h3 {
    font-size: 1.4rem;
  }
  .problem-payoff-until {
    font-size: 2rem;
  }
  .problem-payoff-text {
    font-size: 1.1rem;
  }
  .step-visual-placeholder {
    height: 140px;
  }
}

/* (hero-image-showcase removed — image is now full-bleed background) */