/* ══════════════════════════════════════════════════════════
   @emotional_energy — Complete Stylesheet
   ══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --blush: #FDE2E4;
  --blush-deep: #fce8ea;
  --sage: #E2ECE9;
  --sage-deep: #d5e8e3;
  --midnight: #2D3142;
  --midnight-deep: #1a1c28;
  --gold: #D4AF37;
  --gold-dark: #b8922a;
  --rose: #C0667A;
  --rose-dark: #a85567;
  --pink-mid: #F5B8BC;
  --deep-green: #1E2D2F;
  --cream: #F7F1E3;
  --antique: #FCFBF7;
  --muted: #8A8FA8;
  --soft-green: #C4D8D2;
  --white: #FFFFFF;

  /* Typography Scale */
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 36px;
  --text-hero: clamp(36px, 5.5vw, 68px);

  /* Leading */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', 'DM Sans', sans-serif;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--midnight);
  background: var(--antique);
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CONTAINER ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(253, 226, 228, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(192, 102, 122, 0.1);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: 4px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--midnight);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  background: var(--rose);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192, 102, 122, 0.35);
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { padding: 8px 16px; font-size: 12px; }
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--blush) 0%, #fce8ea 40%, #fde8e8 70%, #fff0f1 100%);
}

/* Radial pulse background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(192, 102, 122, 0.12) 0%, transparent 65%);
  animation: radialpulse 8s ease-in-out infinite;
}
@keyframes radialpulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.8; }
}

/* Floating hearts */
.hearts-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.heart {
  position: absolute;
  font-size: 20px;
  color: var(--rose);
  animation: floatheart linear infinite;
  will-change: transform, opacity;
}
.h1 { left: 8%;  bottom: -30px; font-size: 14px; opacity: 0.08; animation-duration: 22s; animation-delay: 0s; }
.h2 { left: 18%; bottom: -30px; font-size: 24px; opacity: 0.12; animation-duration: 18s; animation-delay: 3s; }
.h3 { left: 38%; bottom: -30px; font-size: 16px; opacity: 0.07; animation-duration: 25s; animation-delay: 1.5s; }
.h4 { left: 55%; bottom: -30px; font-size: 28px; opacity: 0.10; animation-duration: 20s; animation-delay: 5s; }
.h5 { left: 72%; bottom: -30px; font-size: 12px; opacity: 0.09; animation-duration: 16s; animation-delay: 2s; }
.h6 { left: 88%; bottom: -30px; font-size: 20px; opacity: 0.11; animation-duration: 23s; animation-delay: 7s; }
@keyframes floatheart {
  0%   { transform: translateY(0) translateX(0); opacity: inherit; }
  25%  { transform: translateY(-25vh) translateX(15px); }
  50%  { transform: translateY(-50vh) translateX(-10px); }
  75%  { transform: translateY(-75vh) translateX(12px); }
  100% { transform: translateY(-110vh) translateX(0); opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 100px 24px 80px;
}

/* Staggered reveals */
.hero-tag,
.hero-h1,
.hero-sub,
.hero-ctas {
  opacity: 0;
  transform: translateY(24px);
}
.hero-tag  { animation: fadeup 0.7s var(--ease-out) 0.3s forwards; }
.hero-h1   { animation: fadeup 0.7s var(--ease-out) 0.5s forwards; }
.hero-sub  { animation: fadeup 0.7s var(--ease-out) 0.7s forwards; }
.hero-ctas { animation: fadeup 0.7s var(--ease-out) 0.9s forwards; }
@keyframes fadeup {
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--rose);
  background: rgba(192, 102, 122, 0.1);
  border: 1px solid rgba(192, 102, 122, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--midnight);
  margin-bottom: 20px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  line-height: var(--leading-relaxed);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-note {
  font-size: var(--text-sm);
  color: var(--muted);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  margin: 0 auto;
  animation: scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ══════════════════════════════════════════════════════════
   BUTTONS (SHARED)
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.97); }

/* Ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: ripple-anim 0.5s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(3); opacity: 0; }
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, #a85567 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(192, 102, 122, 0.35);
  font-size: 17px;
  padding: 18px 40px;
}
.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(192, 102, 122, 0.45);
}

.btn-rose {
  background: linear-gradient(135deg, var(--rose) 0%, #a85567 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(192, 102, 122, 0.3);
}
.btn-rose:hover { box-shadow: 0 10px 28px rgba(192, 102, 122, 0.45); }

.btn-sage {
  background: linear-gradient(135deg, #2D5A5A 0%, #1E3C3C 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(45, 90, 90, 0.3);
  font-weight: 700;
}
.btn-sage:hover { 
  box-shadow: 0 10px 28px rgba(45, 90, 90, 0.45);
  transform: translateY(-4px) scale(1.02);
}

.btn-gold {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
  color: #1a1408;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.btn-gold:hover { 
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
  transform: translateY(-5px) scale(1.04);
}

.btn-ghost-blush {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost-blush:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.btn-ghost {
  background: transparent;
  color: var(--midnight);
  border: 2px solid rgba(45, 49, 66, 0.15);
}
.btn-ghost:hover {
  background: rgba(45, 49, 66, 0.05);
  border-color: rgba(45, 49, 66, 0.3);
}

/* Pulse glow animation for primary CTAs */
.pulse-glow {
  animation: pulseglow 2.5s ease-in-out infinite;
}
@keyframes pulseglow {
  0%, 100% { box-shadow: 0 6px 20px rgba(192, 102, 122, 0.3); }
  50% { box-shadow: 0 6px 30px rgba(192, 102, 122, 0.55), 0 0 0 6px rgba(192, 102, 122, 0.08); }
}
.glow-gold {
  animation: glowgold 2.5s ease-in-out infinite;
}
@keyframes glowgold {
  0%, 100% { box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6), 0 0 0 6px rgba(212, 175, 55, 0.1); }
}

/* ══════════════════════════════════════════════════════════
   SECTION TAGS
   ══════════════════════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-tag-center {
  display: block;
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tag-rose {
  background: rgba(192, 102, 122, 0.12);
  color: var(--rose);
  border: 1px solid rgba(192, 102, 122, 0.25);
}
.tag-sage {
  background: rgba(30, 45, 47, 0.08);
  color: var(--deep-green);
  border: 1px solid rgba(30, 45, 47, 0.2);
}
.tag-gold {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-dark);
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.tag-final {
  color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════════════════════════
   PAIN HOOK
   ══════════════════════════════════════════════════════════ */
.pain-hook {
  background: var(--midnight);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.pain-hook::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,102,122,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pain-header {
  text-align: center;
  margin-bottom: 60px;
}
.pain-header .section-tag-center { color: var(--pink-mid); }
.pain-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  line-height: var(--leading-tight);
  margin-bottom: 20px;
}
.pain-h2 em { color: var(--pink-mid); font-style: italic; }
.pain-sub { color: var(--muted); font-size: var(--text-lg); max-width: 560px; margin: 0 auto; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.pain-card:hover {
  border-color: rgba(245, 184, 188, 0.3);
  transform: translateY(-4px);
}
.pain-image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
}
.pain-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
  opacity: 0.8;
}
.pain-card:hover .pain-img {
  transform: scale(1.05);
  opacity: 1;
}
.pain-count {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--pink-mid);
  line-height: 1;
  margin-bottom: 4px;
}
.pain-count-label {
  font-size: var(--text-sm);
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pain-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  line-height: var(--leading-normal);
  margin-bottom: 12px;
}
.pain-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: var(--leading-relaxed);
}

/* ══════════════════════════════════════════════════════════
   PRODUCT SELECTION GRID
   ══════════════════════════════════════════════════════════ */
.product-selection {
  padding: 100px 0;
  background: var(--antique);
}
.selection-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.selection-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--midnight);
  margin-bottom: 20px;
}
.selection-sub {
  color: var(--muted);
  font-size: var(--text-lg);
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .selection-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

.selection-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  overflow: hidden;
}

.tier-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.selection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}

.tier-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.tier-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--midnight);
  margin-bottom: 12px;
}

.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 20px;
}

.tier-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
  flex-grow: 1;
}

.tier-features {
  list-style: none;
  margin-bottom: 32px;
}
.tier-features li {
  font-size: 13px;
  color: var(--midnight);
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-weight: 700;
}

.tier-btn {
  width: 100%;
  text-transform: none;
  font-size: 14px;
}

.btn-minor {
  background: var(--white);
  color: var(--rose);
  border: 2px solid var(--rose);
  font-weight: 700;
}
.btn-minor:hover { 
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(192, 102, 122, 0.2);
}

/* Featured Card Highlights */
.selection-card.featured {
  border-color: rgba(212,175,55,0.4);
  background: linear-gradient(180deg, var(--white) 0%, #fffbf0 100%);
  transform: scale(1.05);
  z-index: 10;
}
@media (max-width: 900px) {
  .selection-card.featured { transform: scale(1); }
}

.gold-ribbon {
  background: var(--gold) !important;
  color: var(--midnight-deep) !important;
  font-weight: 800 !important;
}

.gold-price {
  color: var(--gold-dark);
}

.tier-popular {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--deep-green);
  color: var(--white);
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 0;
  letter-spacing: 1.5px;
}

.tier-communication .tier-features li::before { color: var(--deep-green); }
.tier-masterclass .tier-features li::before { color: var(--gold); }

/* Shimmer for featured */
.selection-card.featured::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(45deg, transparent, rgba(212,175,55,0.05), transparent);
  animation: selectionshimmer 6s infinite;
  pointer-events: none;
}
@keyframes selectionshimmer {
  0% { transform: translateX(-100%) translateY(-100%); }
  25%, 100% { transform: translateX(100%) translateY(100%); }
}

/* ══════════════════════════════════════════════════════════
   PRODUCT SECTIONS — SHARED
   ══════════════════════════════════════════════════════════ */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-layout.reverse { direction: rtl; }
.product-layout.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .product-layout,
  .product-layout.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
}

.product-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: var(--leading-tight);
  margin-bottom: 18px;
}
.product-h2 em { font-style: italic; }
.dark-text { color: var(--deep-green); }
.product-h2.dark-text em { color: var(--deep-green); }
.gold-text { color: var(--antique); }
.gold-text em { color: var(--gold); }
.antique-text { color: rgba(252, 251, 247, 0.75); }

.product-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--muted);
  margin-bottom: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.feature-list li {
  font-size: var(--text-base);
  color: var(--midnight);
  padding-left: 20px;
  position: relative;
  line-height: var(--leading-relaxed);
}
.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 12px;
  top: 3px;
}
.dark-list li { color: var(--deep-green); }
.dark-list li::before { color: var(--deep-green); }

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.proof-avatars { display: flex; }
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  border: 2px solid var(--white);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.a1 { background: var(--rose); }
.a2 { background: var(--soft-green); color: var(--deep-green); }
.a3 { background: var(--gold); color: var(--midnight); }
.proof-text { font-size: var(--text-sm); color: var(--muted); }
.proof-text strong { color: var(--midnight); }

.no-catch {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-top: 12px;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--deep-green);
  background: rgba(30, 45, 47, 0.06);
  border: 1px solid rgba(30, 45, 47, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.gold-guarantee {
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
}

/* ══════════════════════════════════════════════════════════
   MOCKUP WRAPPERS
   ══════════════════════════════════════════════════════════ */
.mockup-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  transition: transform 0.1s ease;
}
.mockup-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.mockup-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--rose);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.sage-badge {
  background: var(--deep-green);
  color: var(--cream);
}
.gold-badge {
  background: var(--gold);
  color: var(--midnight-deep);
}
.gold-shimmer-ring {
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-lg) + 8px);
  border: 2px solid transparent;
  background: linear-gradient(transparent, transparent) padding-box,
              linear-gradient(135deg, var(--gold), transparent, var(--gold)) border-box;
  animation: shimmerring 3s linear infinite;
  pointer-events: none;
  z-index: -1; /* Move behind the image badge if needed, or just let transparency work */
}
@keyframes shimmerring {
  0% { background: linear-gradient(transparent, transparent) padding-box,
                   linear-gradient(0deg, var(--gold), transparent, var(--gold)) border-box; }
  100% { background: linear-gradient(transparent, transparent) padding-box,
                     linear-gradient(360deg, var(--gold), transparent, var(--gold)) border-box; }
}

/* ══════════════════════════════════════════════════════════
   FREE PRODUCT SECTION
   ══════════════════════════════════════════════════════════ */
.free-product {
  background: linear-gradient(145deg, var(--blush) 0%, var(--blush-deep) 100%);
  padding: 100px 0;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 80px 0;
}
.t1 { background: var(--white); }
.t2 { background: var(--cream); }
.t3 { background: var(--midnight-deep); }

.section-tag-center.t1 { color: var(--muted); }

.testi-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  text-align: center;
  color: var(--midnight);
  margin-bottom: 48px;
  line-height: var(--leading-tight);
}
.t3 .testi-h2 { color: var(--antique); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .testi-grid {
    grid-template-columns: 1fr;
    overflow-x: auto;
    padding-bottom: 16px;
  }
}

.testi-card {
  background: var(--antique);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.dark-testi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.dark-testi:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

.stars {
  font-size: 14px;
  color: var(--rose);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.gold-stars { color: var(--gold); }

.testi-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  line-height: var(--leading-relaxed);
  color: var(--midnight);
  margin-bottom: 20px;
}
.dark-testi blockquote { color: rgba(252, 251, 247, 0.85); }

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-img.gold-border {
  border: 1px solid var(--gold);
}
.testi-author span {
  font-size: var(--text-sm);
  color: var(--muted);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   $4.99 PRODUCT
   ══════════════════════════════════════════════════════════ */
.product-499 {
  background: linear-gradient(145deg, var(--sage) 0%, var(--sage-deep) 100%);
  padding: 100px 0;
}
.product-499 .product-lead { color: rgba(30,45,47,0.65); }

/* ══════════════════════════════════════════════════════════
   SCRIPT PREVIEW
   ══════════════════════════════════════════════════════════ */
.script-preview {
  background: var(--cream);
  padding: 100px 0;
}
.script-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  text-align: center;
  color: var(--midnight);
  margin-bottom: 36px;
  line-height: var(--leading-tight);
}
.script-h2 em { color: var(--rose); font-style: italic; }

.script-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  position: relative;
}
.tab-btn.active {
  background: var(--deep-green);
  color: var(--cream);
  border-color: transparent;
}
.tab-btn:hover:not(.active) {
  background: rgba(0,0,0,0.07);
  color: var(--midnight);
}

.script-content-wrap {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.script-content {
  display: none;
  animation: tabfadein 0.25s ease;
}
.script-content.active { display: block; }
@keyframes tabfadein {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.script-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.script-situation {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}
.script-situation-text {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: 20px;
  line-height: var(--leading-relaxed);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.script-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--deep-green);
  margin-bottom: 10px;
}
.script-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--midnight);
  line-height: var(--leading-relaxed);
}

.script-blur-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent 0%, var(--cream) 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}
.script-blur-cta {
  text-align: center;
  padding: 20px;
  position: relative;
}
.script-blur-cta p {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: 14px;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   $9.99 PRODUCT
   ══════════════════════════════════════════════════════════ */
.product-999 {
  background: linear-gradient(160deg, var(--midnight) 0%, var(--midnight-deep) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.product-999::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.product-999-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.product-999-header .section-tag { margin: 0 auto 16px; }
.product-999-layout {
  align-items: start;
}

.feature-grid-999 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.f999-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.f999-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-3px);
}
.f999-icon { font-size: 24px; margin-bottom: 10px; }
.f999-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 6px;
}
.f999-card p { font-size: var(--text-sm); color: rgba(252,251,247,0.55); line-height: 1.6; }

/* Roadmap */
.roadmap-preview { margin-bottom: 28px; }
.roadmap-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(212,175,55,0.6);
  margin-bottom: 14px;
}
.roadmap-days { display: flex; flex-direction: column; gap: 8px; }
.roadmap-day {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
}
.roadmap-day.unlocked {
  background: rgba(255,255,255,0.03);
}
.roadmap-day.locked {
  background: rgba(212,175,55,0.04);
  border-color: rgba(212,175,55,0.15);
  opacity: 0.7;
}
.day-num {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  min-width: 44px;
}
.day-title {
  font-size: 13px;
  color: rgba(252,251,247,0.7);
}

/* Top review */
.top-review { margin-bottom: 24px; }
.gold-quote {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(252,251,247,0.85);
  line-height: var(--leading-relaxed);
  margin: 8px 0;
}
.quote-attr { font-size: var(--text-sm); color: rgba(212,175,55,0.7); }

/* ══════════════════════════════════════════════════════════
   COMPARISON TABLE
   ══════════════════════════════════════════════════════════ */
.comparison {
  background: var(--antique);
  padding: 100px 0;
}
.comp-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  text-align: center;
  color: var(--midnight);
  margin-bottom: 48px;
}
.comp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
/* Mobile card alternative — hidden on desktop */
.comp-mobile-cards { display: none; }
.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.comp-table th,
.comp-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: var(--text-sm);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.comp-table thead th { vertical-align: top; padding-top: 28px; padding-bottom: 24px; }
.comp-feature-th {
  text-align: left !important;
  font-weight: 500;
  color: var(--muted);
  font-size: var(--text-xs);
  letter-spacing: 1px;
  width: 35%;
}
.comp-table td:first-child {
  text-align: left;
  color: var(--midnight);
  font-size: var(--text-base);
}
.comp-tier-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.free-label { color: var(--rose); }
.paid1-label { color: var(--deep-green); }
.paid2-label { color: var(--gold); }
.comp-price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--midnight);
}
.gold-price { color: var(--gold-dark); }
.comp-pages { font-size: var(--text-xs); color: var(--muted); margin-top: 4px; }
.featured-col {
  background: rgba(46, 49, 66, 0.03);
  border-left: 1px solid rgba(212,175,55,0.2);
  border-right: 1px solid rgba(212,175,55,0.2);
}
.comp-best-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--midnight-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.check { color: var(--rose); font-size: 16px; font-weight: 700; }
.gold-check { color: var(--gold-dark); }
.cross { color: rgba(0,0,0,0.2); }
.comp-table tfoot td { border-bottom: none; padding: 24px 20px; }

.comp-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.comp-btn:hover { transform: translateY(-2px); }
.comp-btn-free {
  background: rgba(192, 102, 122, 0.1);
  color: var(--rose);
  border: 1px solid rgba(192, 102, 122, 0.25);
}
.comp-btn-sage {
  background: var(--deep-green);
  color: var(--cream);
}
.comp-btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1408;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}

/* ══════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(160deg, var(--blush) 0%, #f0d5d8 30%, var(--midnight) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-hearts { position: absolute; inset: 0; pointer-events: none; }
.fh {
  position: absolute;
  color: var(--rose);
  animation: floatheart linear infinite;
}
.fh1 { left: 15%; bottom: -20px; font-size: 16px; opacity: 0.1; animation-duration: 20s; }
.fh2 { left: 50%; bottom: -20px; font-size: 22px; opacity: 0.08; animation-duration: 25s; animation-delay: 4s; }
.fh3 { left: 80%; bottom: -20px; font-size: 12px; opacity: 0.12; animation-duration: 18s; animation-delay: 9s; }

.final-inner { max-width: 680px; margin: 0 auto; }
.final-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 46px);
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 24px;
}
.final-h2 em { font-style: italic; color: var(--pink-mid); }
.final-h2 strong { color: var(--gold); font-weight: 700; }
.final-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  line-height: var(--leading-relaxed);
}
.final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.final-social { display: flex; justify-content: center; }
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color 0.2s;
}
.ig-link:hover { color: var(--pink-mid); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--midnight-deep);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo img {
  height: 40px;
  width: auto;
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-logo img:hover {
  opacity: 1;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-ig {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  transition: opacity 0.2s;
}
.footer-ig:hover { opacity: 0.7; }

/* Navigation actions & Hamburger */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 101;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

/* Hamburger Open state */
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--blush);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.4s var(--ease-out);
  padding: 40px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--midnight);
  transition: color 0.3s;
}

.mobile-cta {
  width: 100%;
  max-width: 280px;
  margin-top: 20px;
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL (JS-driven)
   ══════════════════════════════════════════════════════════ */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; } /* Show in mobile-menu instead */
  
  .hero-h1 { font-size: 42px; }
  .hero-sub { font-size: 16px; }
  
  .product-layout { gap: 40px; }
}

@media (max-width: 768px) {
  /* Hide wide table, show mobile tier cards */
  .comp-table-wrap { display: none; }

  .comp-mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .comp-mobile-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    overflow: hidden;
  }

  .comp-mobile-card.featured-card {
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 8px 32px rgba(212,175,55,0.15);
  }

  .comp-mobile-header {
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .comp-mobile-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--midnight-deep);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 6px;
  }

  .comp-mobile-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .comp-mobile-label.free { color: var(--rose); }
  .comp-mobile-label.guide { color: var(--deep-green); }
  .comp-mobile-label.premium { color: var(--gold-dark); }

  .comp-mobile-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--midnight);
    line-height: 1;
  }
  .comp-mobile-price.gold { color: var(--gold-dark); }

  .comp-mobile-pages {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
  }

  .comp-mobile-features {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .comp-mobile-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--midnight);
  }

  .comp-mobile-feature .chk {
    color: var(--rose);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
  }
  .comp-mobile-feature .chk.gold { color: var(--gold-dark); }
  .comp-mobile-feature .no {
    color: rgba(0,0,0,0.2);
    font-size: 14px;
    flex-shrink: 0;
  }

  .comp-mobile-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
  }

  .comp-mobile-footer .comp-btn {
    width: 100%;
    display: block;
    text-align: center;
  }

  /* Testimonial horizontal scroll */
  .testi-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 0 24px;
    scrollbar-width: none;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi-card {
    min-width: 280px;
    scroll-snap-align: center;
  }
}

@media (max-width: 600px) {
  .pain-hook, .free-product, .product-499, .product-999, .comparison,
  .testimonials, .script-preview, .final-cta { padding: 64px 0; }

  .feature-grid-999 { grid-template-columns: 1fr; }

  .final-btns { flex-direction: column; align-items: center; }
  .btn { padding: 14px 28px; font-size: 14px; }
  .btn-primary { padding: 16px 32px; }

  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 32px; }
  .final-h2 { font-size: 28px; }
}
