/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  --ivory: #fdf8f5;
  --blush: #f5e6e8;
  --rose: #e8b4b8;
  --rose-deep: #c97c84;
  --moon: #d4c5e2;
  --moon-deep: #9b7fc0;
  --sun: #f6d860;
  --sun-warm: #f0a844;
  --ink: #2a1f2d;
  --sage: #a8d4b0;
  --muted: #8a7490;
  --menstrual: #c97c84;
  --follicular: #f0a844;
  --ovulation: #a8d4b0;
  --luteal: #9b7fc0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --section-py: clamp(5rem, 9vw, 9rem);
  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 32px rgba(42, 31, 45, 0.08);
  --shadow-hover: 0 12px 48px rgba(42, 31, 45, 0.16);
}

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

html { scroll-behavior: smooth; cursor: none; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: var(--font-body); }

/* =============================================
   CUSTOM CURSOR
============================================= */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--rose-deep);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201, 124, 132, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease;
}

body:has(a:hover) #cursor-dot,
body:has(button:hover) #cursor-dot { width: 12px; height: 12px; background: var(--moon-deep); }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 52px; height: 52px; border-color: rgba(155, 127, 192, 0.6); }

@media (max-width: 768px) {
  html { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
}

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }

p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--muted); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1rem;
}

.eyebrow.moon-color { color: var(--moon-deep); }
.eyebrow.sun-color { color: var(--sun-warm); }

/* =============================================
   LAYOUT UTILITIES
============================================= */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); }

section { padding: var(--section-py) 0; position: relative; overflow: hidden; }
section.bg-ivory { background: var(--ivory); }
section.bg-blush { background: var(--blush); }
section.bg-ink { background: var(--ink); color: white; }
section.bg-ink p { color: rgba(253, 248, 245, 0.7); }
section.bg-ink .eyebrow { color: var(--rose); }

/* =============================================
   SCROLL ANIMATION
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

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

/* =============================================
   BACKGROUND BLOBS
============================================= */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
}

/* =============================================
   NAVIGATION
============================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(253, 248, 245, 0.85);
  border-bottom: 1px solid rgba(232, 180, 184, 0.2);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-logo span { color: var(--rose-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover { background: var(--rose-deep) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--ivory);
  border-bottom: 1px solid rgba(232, 180, 184, 0.3);
  padding: 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 12px 40px rgba(42, 31, 45, 0.12);
}

.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; color: var(--ink); font-weight: 500; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: none;
}

.btn-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 4px 16px rgba(42, 31, 45, 0.2);
}

.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 124, 132, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(42, 31, 45, 0.2);
}

.btn-secondary:hover {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
  transform: translateY(-2px);
}

.btn-moon {
  background: var(--moon-deep);
  color: white;
  box-shadow: 0 4px 16px rgba(155, 127, 192, 0.3);
}

.btn-moon:hover {
  background: #8a6db0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(155, 127, 192, 0.45);
}

.btn-sun {
  background: var(--sun-warm);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(240, 168, 68, 0.3);
}

.btn-sun:hover {
  background: #e09535;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240, 168, 68, 0.45);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* =============================================
   SECTION 1: HERO
============================================= */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--ivory);
  padding-top: 0;
  padding-bottom: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-text { position: relative; z-index: 2; }

.hero-text h1 {
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero-subhead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack .av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  margin-left: -8px;
}

.avatar-stack .av:first-child { margin-left: 0; }
.av-1 { background: var(--rose-deep); }
.av-2 { background: var(--moon-deep); }
.av-3 { background: var(--sun-warm); }
.av-4 { background: var(--sage); }

.social-proof-text {
  font-size: 0.85rem;
  color: var(--muted);
}

.social-proof-text strong { color: var(--ink); }

/* ORBIT VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

.orbit-container {
  position: relative;
  width: 380px;
  height: 380px;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-1 {
  width: 160px; height: 160px;
  border-color: rgba(212, 197, 226, 0.5);
  animation: orbitSpin 25s linear infinite;
}

.orbit-ring-2 {
  width: 280px; height: 280px;
  border-color: rgba(246, 216, 96, 0.35);
  animation: orbitSpin 40s linear infinite reverse;
}

.orbit-ring-3 {
  width: 370px; height: 370px;
  border-color: rgba(201, 124, 132, 0.2);
  animation: orbitSpin 60s linear infinite;
}

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--moon-deep), var(--rose-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(155, 127, 192, 0.4);
}

.orbit-center-text {
  font-family: var(--font-display);
  font-size: 2rem;
  color: white;
  font-style: italic;
}

/* Moon orbiting body */
.moon-body {
  position: absolute;
  top: 50%; left: 50%;
  width: 52px; height: 52px;
  margin-top: -26px; margin-left: -26px;
  transform-origin: 0 0;
  animation: moonOrbit 12s linear infinite;
}

@keyframes moonOrbit {
  from { transform: rotate(0deg) translateX(140px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}

.moon-body-inner {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #c8b8e0, var(--moon-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(155, 127, 192, 0.5);
  animation: moonFloat 7s ease-in-out infinite;
}

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

/* Sun orbiting body */
.sun-body {
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 48px;
  margin-top: -24px; margin-left: -24px;
  transform-origin: 0 0;
  animation: sunOrbit 18s linear infinite reverse;
}

@keyframes sunOrbit {
  from { transform: rotate(90deg) translateX(190px) rotate(-90deg); }
  to { transform: rotate(450deg) translateX(190px) rotate(-450deg); }
}

.sun-body-inner {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--sun), var(--sun-warm));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  animation: sunPulse 5s ease-in-out infinite;
}

@keyframes sunPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(240, 168, 68, 0.4); }
  50% { box-shadow: 0 0 40px rgba(240, 168, 68, 0.75), 0 0 70px rgba(246, 216, 96, 0.3); }
}

/* Phase dots floating */
.phase-float {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  animation: phaseFloat 6s ease-in-out infinite;
}

.phase-float-1 { background: var(--menstrual); top: 8%; right: 15%; animation-delay: 0s; }
.phase-float-2 { background: var(--follicular); top: 70%; right: 5%; animation-delay: 1.5s; }
.phase-float-3 { background: var(--ovulation); bottom: 10%; left: 10%; animation-delay: 3s; }
.phase-float-4 { background: var(--luteal); top: 20%; left: 5%; animation-delay: 4.5s; }

@keyframes phaseFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-18px) scale(1.2); opacity: 1; }
}

/* Hero blobs */
.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--moon);
  top: -100px; right: -100px;
}

.hero-blob-2 {
  width: 300px; height: 300px;
  background: var(--sun);
  bottom: -50px; right: 200px;
  opacity: 0.2;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-subhead { margin: 0 auto 2.5rem; }
  .hero-buttons { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { height: 300px; }
  .orbit-container { width: 260px; height: 260px; }
  .orbit-ring-3 { width: 250px; height: 250px; }
  .orbit-ring-2 { width: 200px; height: 200px; }
  .orbit-ring-1 { width: 120px; height: 120px; }
  @keyframes moonOrbit {
    from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
  }
  @keyframes sunOrbit {
    from { transform: rotate(90deg) translateX(130px) rotate(-90deg); }
    to { transform: rotate(450deg) translateX(130px) rotate(-450deg); }
  }
}

/* =============================================
   SECTION 2: WHAT IS EASEL
============================================= */
#what {
  background: var(--blush);
}

.what-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.what-header h2 { margin-bottom: 1rem; }

/* STATS ROW */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label { font-size: 0.85rem; font-weight: 500; color: var(--muted); letter-spacing: 0.05em; }

/* CYCLE WHEEL */
.cycle-wheel-wrap {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.cycle-wheel-canvas {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  height: 320px;
}

#cycleCanvas { border-radius: 50%; }

.wheel-center-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.wheel-center-label span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
}

.wheel-center-label small {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

.cycle-phases-list { flex: 1; }

.phase-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: white;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.phase-item:hover { transform: translateX(6px); box-shadow: var(--shadow-hover); }

.phase-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

.phase-item-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.phase-item-info p { font-size: 0.85rem; }

@media (max-width: 768px) {
  .cycle-wheel-wrap { flex-direction: column; align-items: center; gap: 2.5rem; }
  .cycle-wheel-canvas { width: 260px; height: 260px; }
  #cycleCanvas { width: 260px; height: 260px; }
}

/* =============================================
   SECTION 3: BENEFITS
============================================= */
#benefits {
  background: var(--ink);
}

.benefits-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.benefits-header h2 { color: white; margin-bottom: 1rem; }

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

.benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, background 0.3s;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-deep), var(--moon-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); }
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.benefit-card h4 {
  color: white;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.benefit-card p { font-size: 0.9rem; color: rgba(253, 248, 245, 0.6); }

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   SECTION 4: WHISPER SPLIT
============================================= */
#whispers {
  background: var(--ivory);
  padding: var(--section-py) 0;
}

.whispers-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.whispers-header h2 { margin-bottom: 1rem; }

.whispers-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.whisper-panel {
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.moon-panel {
  background: linear-gradient(160deg, #1a0f2e, #2d1f4a);
}

.sun-panel {
  background: linear-gradient(160deg, #2d1a00, #4a2e00);
}

.whisper-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.moon-icon { background: rgba(155, 127, 192, 0.2); animation: moonFloat 7s ease-in-out infinite; }
.sun-icon { background: rgba(240, 168, 68, 0.2); animation: sunPulse 5s ease-in-out infinite; }

.whisper-panel h3 { color: white; margin-bottom: 0.75rem; }
.whisper-panel .eyebrow { margin-bottom: 0.5rem; }

.whisper-panel > p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.whisper-cards { display: flex; flex-direction: column; gap: 0.75rem; }

.whisper-card {
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1rem;
  position: relative;
}

.whisper-card::before {
  content: '"';
  font-size: 2rem;
  font-family: var(--font-display);
  position: absolute;
  top: -2px; left: 10px;
  line-height: 1;
  opacity: 0.4;
}

.moon-card {
  background: rgba(212, 197, 226, 0.12);
  border: 1px solid rgba(212, 197, 226, 0.2);
  color: var(--moon);
  padding-left: 2rem;
}

.sun-card {
  background: rgba(246, 216, 96, 0.1);
  border: 1px solid rgba(246, 216, 96, 0.2);
  color: var(--sun);
  padding-left: 2rem;
}

.whisper-card-author {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.4rem;
  display: block;
}

@media (max-width: 768px) {
  .whispers-split { grid-template-columns: 1fr; }
}

/* =============================================
   SECTION 5: WHY HE SHOULD CONVINCE HER
============================================= */
#for-him {
  background: var(--blush);
}

.for-him-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: center;
}

.for-him-reasons { }

.reason-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
  align-items: flex-start;
}

.reason-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--sun-warm);
  line-height: 0.9;
  flex-shrink: 0;
  width: 3rem;
}

.reason-content h4 { margin-bottom: 0.4rem; font-size: 1.2rem; }
.reason-content p { font-size: 0.9rem; }

/* Mock phone with chat bubble */
.mock-phone {
  background: var(--ink);
  border-radius: 28px;
  padding: 2rem 1.5rem;
  max-width: 300px;
  position: relative;
  box-shadow: 0 24px 64px rgba(42, 31, 45, 0.25);
}

.mock-phone::before {
  content: '';
  display: block;
  width: 60px; height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  margin: 0 auto 1.5rem;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.phone-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: white;
}

.phone-name { color: white; font-size: 0.9rem; font-weight: 600; }
.phone-status { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

.chat-bubbles { display: flex; flex-direction: column; gap: 0.75rem; }

.easel-tip {
  background: rgba(155, 127, 192, 0.2);
  border: 1px solid rgba(155, 127, 192, 0.35);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
  color: var(--moon);
  line-height: 1.5;
}

.easel-tip-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moon-deep);
  margin-bottom: 0.35rem;
}

.chat-bubble-out {
  background: var(--rose-deep);
  border-radius: 16px 4px 16px 16px;
  padding: 0.9rem 1rem;
  font-size: 0.82rem;
  color: white;
  align-self: flex-end;
  max-width: 85%;
  line-height: 1.5;
}

.chat-bubble-in {
  background: rgba(255,255,255,0.08);
  border-radius: 4px 16px 16px 16px;
  padding: 0.9rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
  max-width: 85%;
  line-height: 1.5;
}

.chat-time { font-size: 0.65rem; color: rgba(255,255,255,0.3); text-align: right; margin-top: 0.25rem; }

@media (max-width: 768px) {
  .for-him-inner { grid-template-columns: 1fr; }
  .mock-phone { max-width: 100%; }
}

/* =============================================
   SECTION 6: WHY SHE SHOULD ASK HIM
============================================= */
#for-her {
  background: var(--ivory);
}

.for-her-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: center;
}

.for-her-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.her-quote-card {
  background: linear-gradient(160deg, #1a0f2e, #2d1f4a);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
}

.her-quote-card .big-quote {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--moon-deep);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 0.5rem;
}

.her-quote-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: white;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.her-quote-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--moon);
  font-family: var(--font-body);
}

.for-her-reasons h2 { margin-bottom: 2rem; }
.for-her-reasons h2 em { font-style: italic; color: var(--rose-deep); }

.her-reason-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.her-reason-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.her-reason-content h4 { margin-bottom: 0.3rem; font-size: 1.1rem; }
.her-reason-content p { font-size: 0.875rem; }

@media (max-width: 768px) {
  .for-her-inner { grid-template-columns: 1fr; }
}

/* =============================================
   SECTION 7: 4 PHASES
============================================= */
#phases {
  background: var(--blush);
  overflow: visible;
}

.phases-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.phases-header h2 { margin-bottom: 1rem; }

.phases-scroll-wrap {
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--rose) transparent;
  -webkit-overflow-scrolling: touch;
}

.phases-scroll-wrap::-webkit-scrollbar { height: 4px; }
.phases-scroll-wrap::-webkit-scrollbar-track { background: transparent; }
.phases-scroll-wrap::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 4px; }

.phases-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 1.5rem;
}

.phase-card {
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.phase-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.phase-menstrual { background: linear-gradient(160deg, #8b3a45, #c97c84); }
.phase-follicular { background: linear-gradient(160deg, #8a5a00, #f0a844); }
.phase-ovulation { background: linear-gradient(160deg, #2a5a38, #a8d4b0); }
.phase-luteal { background: linear-gradient(160deg, #4a2a7a, #9b7fc0); }

.phase-card-emoji { font-size: 2.5rem; margin-bottom: 1rem; }

.phase-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
  color: white;
}

.phase-duration {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.phase-section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.3rem;
}

.phase-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.phase-card-divider {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 0.75rem 0;
}

@media (max-width: 768px) {
  .phases-track { grid-template-columns: repeat(4, 280px); }
}

/* =============================================
   SECTION 8: RELATIONSHIP SCORE
============================================= */
#score {
  background: var(--ink);
}

.score-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.score-text h2 { color: white; margin-bottom: 1rem; }
.score-text > p { font-size: 1rem; margin-bottom: 2.5rem; }

.score-ways { display: flex; flex-direction: column; gap: 1.25rem; }

.score-way {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.score-way-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.score-way-text h4 { color: white; font-size: 1rem; margin-bottom: 0.25rem; }
.score-way-text p { font-size: 0.875rem; }

.score-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.score-ring-wrap {
  position: relative;
  width: 240px; height: 240px;
}

#scoreCanvas { position: absolute; top: 0; left: 0; }

.score-ring-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.score-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: white;
  line-height: 1;
}

.score-denom { font-size: 1.2rem; color: rgba(255,255,255,0.4); }

.score-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.score-status {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--sage);
  text-align: center;
}

.score-bars { width: 100%; }

.score-bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.score-bar-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  width: 110px;
  flex-shrink: 0;
}

.score-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.5s ease;
  width: 0;
}

.score-bar-fill.fill-her { background: linear-gradient(90deg, var(--rose), var(--rose-deep)); }
.score-bar-fill.fill-him { background: linear-gradient(90deg, var(--sun), var(--sun-warm)); }
.score-bar-fill.fill-shared { background: linear-gradient(90deg, var(--sage), #7ab586); }

.score-bar-pct {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  width: 30px;
  text-align: right;
}

@media (max-width: 768px) {
  .score-inner { grid-template-columns: 1fr; }
}

/* =============================================
   SECTION 9: TESTIMONIALS
============================================= */
#testimonials {
  background: var(--ivory);
}

.testimonials-header { text-align: center; max-width: 520px; margin: 0 auto 4rem; }
.testimonials-header h2 { margin-bottom: 0.75rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.testimonial-card:nth-child(2) { background: var(--ink); }
.testimonial-card:nth-child(2) .testimonial-text { color: rgba(255,255,255,0.75); }
.testimonial-card:nth-child(2) .testimonial-name { color: white; }
.testimonial-card:nth-child(2) .testimonial-role { color: rgba(255,255,255,0.4); }
.testimonial-card:nth-child(2) .stars { color: var(--sun); }

.stars { color: var(--sun-warm); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.testimonial-footer { display: flex; align-items: center; gap: 1rem; }

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.testimonial-role { font-size: 0.78rem; color: var(--muted); }

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

@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   SECTION 10: FINAL CTA
============================================= */
#cta-final {
  background: var(--ink);
  text-align: center;
  position: relative;
}

.cta-final-inner { position: relative; z-index: 2; }

.cta-final-inner h2 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  max-width: 720px;
  margin: 0 auto 1.25rem;
}

.cta-final-inner h2 em { color: var(--rose); font-style: italic; }

.cta-sub {
  color: rgba(253,248,245,0.6) !important;
  font-size: 1.1rem !important;
  max-width: 500px;
  margin: 0 auto 3rem !important;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trust-line {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* Big moon/sun decoration */
.cta-moon-deco {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(155,127,192,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}

.cta-sun-deco {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,168,68,0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; right: -150px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: white;
}

.footer-logo span { color: var(--rose); }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   LANGUAGE SWITCHER
============================================= */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1rem;
  background: rgba(42, 31, 45, 0.06);
  border-radius: 100px;
  padding: 0.25rem;
}

.lang-switcher a {
  display: flex;
  align-items: center;
  padding: 0.35rem 0.5rem;
  border-radius: 100px;
  transition: all 0.2s ease;
  opacity: 0.5;
}

.lang-switcher a svg {
  display: block;
  border-radius: 2px;
}

.lang-switcher a.active {
  background: var(--ink);
  opacity: 1;
}

.lang-switcher a:not(.active):hover {
  opacity: 0.85;
}

.mobile-menu .lang-switcher-mobile {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(232, 180, 184, 0.2);
}

.mobile-menu .lang-switcher-mobile a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  color: var(--muted);
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
}

.mobile-menu .lang-switcher-mobile a svg {
  display: block;
  border-radius: 2px;
  flex-shrink: 0;
}

.mobile-menu .lang-switcher-mobile a.active {
  background: var(--ink);
  color: white;
}

.mobile-menu .lang-switcher-mobile a:not(.active) {
  border-color: rgba(42, 31, 45, 0.15);
}

@media (max-width: 768px) {
  .lang-switcher { display: none; }
}
