/* ============================================
   WISHING WELL — MIDNIGHT & GOLD (E-COMM)
   ============================================ */

:root {
  --midnight: #0a0e1a;
  --midnight-soft: #0f1424;
  --gold: #f0c040;
  --gold-light: #f5d060;
  --gold-dim: rgba(240,192,64,0.08);
  --cream: #faf8f4;
  --white: #ffffff;
  --text-hero: #d0cfe0;
  --text-body: #3a3a3a;
  --text-muted: #8a8a8a;
  --border-subtle: rgba(255,255,255,0.06);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }
em { font-family: 'Playfair Display', Georgia, serif; }
p { margin-bottom: 1.3em; }
p:last-child { margin-bottom: 0; }
.hide-mobile { display: inline; }


/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--midnight);
  text-align: center;
  padding: 56px 32px 120px;
  position: relative;
  overflow: hidden;
}

/* Soft radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #f0d87a;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 6px 2px rgba(240,216,122,0.4);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.6);
  }
  15% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(-350px) scale(0);
  }
}

/* Floating twinkle stars — gold, cross-shaped glow */
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #f0d87a;
  border-radius: 50%;
  opacity: 0;
  animation: starFloat linear infinite, starTwinkle ease-in-out infinite;
}

.star::before,
.star::after {
  content: '';
  position: absolute;
  background: rgba(240,216,122,0.5);
  border-radius: 50%;
}

/* Horizontal flare */
.star::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Vertical flare */
.star::after {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes starFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  15% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(-350px) scale(0);
  }
}

@keyframes starTwinkle {
  0%, 100% {
    box-shadow: 0 0 3px 1px rgba(240,216,122,0.2);
  }
  50% {
    box-shadow: 0 0 10px 3px rgba(240,216,122,0.6);
  }
}

/* Bottom fade into cream */
.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

.hero__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  color: #f5e4a0;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6), 0 0 20px rgba(245,228,160,0.3);
  font-weight: 600;
}

.hero__headline {
  font-size: 56px;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.05;
}

/* Mystical accent divider */
.hero__accent {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 14px;
  color: #f0d87a;
}

.hero__accent-svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero__sub {
  font-size: 21px;
  color: var(--text-hero);
  line-height: 1.7;
  margin-bottom: 70px;
}

.hero__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--midnight);
  background: var(--gold);
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.hero__cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201,168,76,0.25);
}


/* ============================================
   EDITORIAL (flowing copy, no section labels)
   ============================================ */
.editorial {
  padding: 80px 32px 60px;
  background: var(--midnight);
}

.editorial__inner {
  max-width: 600px;
  margin: 0 auto;
}

.editorial__block p {
  font-size: 18px;
  color: var(--text-hero);
  line-height: 1.85;
}

.editorial__block em {
  color: rgba(255,255,255,0.72);
}

.editorial__block strong {
  color: var(--white);
}

.editorial__accent {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  margin: 44px 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  line-height: 1.4;
}


/* ============================================
   HOW IT WORKS (fluid, not boxy)
   ============================================ */
.how-section {
  padding: 60px 32px 80px;
  background: var(--cream);
}

.how__inner {
  max-width: 600px;
  margin: 0 auto;
}

.how__headline {
  font-size: 34px;
  color: var(--text-body);
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: -0.3px;
}

.how__flow {
  position: relative;
  padding-left: 28px;
}

/* Vertical line connecting steps */
.how__flow::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.15));
}

.how__step {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}

.how__step:last-child { margin-bottom: 0; }

.how__marker {
  position: absolute;
  left: -28px;
  top: 8px;
  width: 11px;
  height: 11px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--cream);
  flex-shrink: 0;
}

.how__step h3 {
  font-size: 19px;
  color: var(--text-body);
  margin-bottom: 6px;
}

.how__step p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.how__closing {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--text-body);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}


/* ============================================
   REFRAME (editorial strip)
   ============================================ */
.reframe {
  background: var(--midnight);
  padding: 80px 32px;
}

.reframe__inner {
  max-width: 600px;
  margin: 0 auto;
}

.reframe__text p {
  font-size: 18px;
  color: var(--text-hero);
  line-height: 1.8;
}

.reframe__pull {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  margin-top: 40px;
  line-height: 1.45;
  text-align: center;
}


/* ============================================
   THE OFFER (single product card)
   ============================================ */
.offer {
  background: var(--cream);
  padding: 28px 32px 100px;
}

.offer__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.offer__community {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.offer__headline {
  font-size: 32px;
  color: var(--text-body);
  margin-bottom: 8px;
}

.offer__sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* --- Duration Selector (like size picker) --- */
.duration-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.duration-opt {
  flex: 1;
  background: linear-gradient(160deg, #161d3a 0%, #0f1428 100%);
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 14px 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.duration-opt:hover {
  border-color: rgba(240,192,64,0.35);
  box-shadow: 0 0 12px rgba(240,192,64,0.08);
}

.duration-opt.active {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1e2647 0%, #141b36 100%);
  box-shadow: 0 0 0 1px var(--gold), 0 0 16px rgba(240,192,64,0.20);
}

.duration-opt__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  margin-bottom: 2px;
}

.duration-opt__detail {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.duration-opt.active .duration-opt__name {
  color: var(--gold-light);
}

.duration-opt.active .duration-opt__detail {
  color: var(--gold);
  font-weight: 500;
}

/* --- Product Card --- */
.product-card {
  background: linear-gradient(160deg, #161d3a 0%, #0f1428 100%);
  border: 1.5px solid rgba(240,192,64,0.35);
  border-radius: 20px;
  padding: 44px 36px 36px;
  text-align: center;
  box-shadow: 0 8px 48px rgba(0,0,0,0.40), 0 0 0 1px rgba(240,192,64,0.12);
}

.product-card__price {
  margin-bottom: 32px;
}

.product-card__amount {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: #f0ece4;
  letter-spacing: -1px;
}

.product-card__period {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
}

.product-card__perweek {
  display: block;
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 0;
}

/* --- Includes list --- */
.product-card__includes {
  text-align: left;
  margin-bottom: 28px;
}

.product-card__includes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.product-card__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
}

.product-card__icon {
  color: var(--gold);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}

.product-card__item em {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-style: normal;
}

.product-card__item strong {
  font-weight: 600;
}

/* --- Live beacon --- */
.live-beacon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  background: var(--gold-dim);
  padding: 10px 20px;
  border-radius: 50px;
}

.live-beacon__dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: beaconPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes beaconPulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(201,168,76,0.5);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 10px 5px rgba(201,168,76,0.25);
  }
}

.live-beacon__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555;
  letter-spacing: 0.2px;
}

.live-beacon__text strong {
  font-weight: 700;
  color: var(--text-body);
}

/* --- Live beacon inside dark card --- */
.product-card .live-beacon {
  background: rgba(255,255,255,0.07);
  margin-top: 16px;
  margin-bottom: 28px;
}

.product-card .live-beacon__text {
  color: rgba(255,255,255,0.70);
}

.product-card .live-beacon__text strong {
  color: rgba(255,255,255,0.92);
}

/* --- CTA --- */
.product-card__cta {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--midnight);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 18px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 28px;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
}

.product-card__cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201,168,76,0.25);
}

/* --- Manifestor Availability --- */
.availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.availability__icon {
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

.availability__text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.availability__text strong {
  color: var(--gold);
  font-weight: 700;
}

/* --- Trust line --- */
.product-card__trust {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.product-card__fine {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 8px;
}

/* --- What happens next --- */
.product-card__next {
  margin-top: 36px;
  padding: 0;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.product-card__next-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.product-card__next-label::before,
.product-card__next-label::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  opacity: 0.7;
}

.product-card__next-steps-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  margin-bottom: 20px;
}

.product-card__next-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
  position: relative;
  padding: 0 8px;
}

.product-card__next-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 13px;
  right: -4px;
  width: calc(100% - 28px - 8px);
  height: 1px;
  background: var(--gold);
  opacity: 0.2;
  left: calc(50% + 18px);
}

.product-card__next-num {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--midnight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.product-card__next-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.7;
  margin: 20px 0;
}

.product-card__privacy {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 0;
  margin-bottom: 0;
}


/* ============================================
   MID-PAGE CTA (exit ramps)
   ============================================ */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

.section-cta__link {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.section-cta__link:hover {
  color: var(--gold-light);
}

/* Dark background variant */
.section-cta--dark .section-cta__link {
  color: var(--gold-light);
}


/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
  background: #f5efe0;
  padding: 60px 32px;
}

.social-proof__inner {
  max-width: 600px;
  margin: 0 auto;
}

.social-proof__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-body);
  text-align: center;
  margin-bottom: 36px;
}

.social-proof__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  padding: 24px 28px;
  background: var(--white);
  border-radius: 16px;
  border-left: 3px solid var(--gold);
  margin: 0;
}

.testimonial p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial cite {
  font-size: 13px;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}


/* ============================================
   QUALIFIER
   ============================================ */
.qualifier {
  background: var(--cream);
  padding: 60px 32px;
}

.qualifier__inner {
  max-width: 540px;
  margin: 0 auto;
}

.qualifier__headline {
  font-size: 28px;
  color: var(--text-body);
  text-align: center;
  margin-bottom: 32px;
}

.qualifier__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qualifier__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
}

.qualifier__icon {
  color: var(--gold);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}


/* ============================================
   GUARANTEE + PRICE ANCHOR
   ============================================ */
.guarantee {
  background: var(--white);
  padding: 80px 32px;
}

.guarantee__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.guarantee__badge {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
}

.guarantee__headline {
  font-size: 26px;
  color: var(--text-body);
  margin-bottom: 28px;
}

.guarantee__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: left;
}


/* ============================================
   BOTTOM OFFER (second conversion point)
   ============================================ */
.bottom-offer {
  background: var(--cream);
  padding: 80px 32px;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.bottom-offer__inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.bottom-offer__eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.bottom-offer__headline {
  font-size: 32px;
  color: var(--text-body);
  margin-bottom: 8px;
}

.bottom-offer__price {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.bottom-offer__price strong {
  color: var(--gold);
  font-weight: 700;
}

.bottom-offer__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  text-align: left;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.bottom-offer__step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-body);
}

.bottom-offer__num {
  width: 28px;
  height: 28px;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.bottom-offer__cta {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: var(--gold);
  color: var(--midnight);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
}

.bottom-offer__cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201,168,76,0.25);
}

.bottom-offer__trust {
  font-size: 12px;
  color: #999;
  margin-top: 14px;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--midnight);
  padding: 48px 32px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__links {
  margin-bottom: 16px;
  font-size: 13px;
}

.footer__links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__links span {
  color: rgba(255,255,255,0.2);
  margin: 0 8px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}

.footer__disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
}


/* ============================================
   FAQ (conversational)
   ============================================ */
.faq-section {
  background: var(--midnight);
  padding: 80px 32px;
}

.faq__inner {
  max-width: 600px;
  margin: 0 auto;
}

.faq__headline {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 44px;
  text-align: center;
}

.faq-item {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 16px;
  color: var(--text-hero);
  line-height: 1.8;
  margin: 0;
}


/* ============================================
   CLOSING
   ============================================ */
.closing {
  background: var(--midnight);
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle glow */
.closing::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(240,192,64,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.closing__inner {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}

.closing__lead {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.closing__body {
  font-size: 18px;
  color: var(--text-hero);
  line-height: 1.75;
  margin-bottom: 28px;
}

.closing__punch {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 40px;
  line-height: 1.3;
}

.closing__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--midnight);
  background: var(--gold);
  padding: 16px 44px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.closing__cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201,168,76,0.25);
}


/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--midnight);
  padding: 12px 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
}

.sticky-cta.visible { transform: translateY(0); }

.btn--full {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gold);
  color: var(--midnight);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: 50px;
  text-decoration: none;
}

.sticky-cta__price {
  font-weight: 400;
  opacity: 0.7;
}


/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}
.fade-in--delay-1 { animation-delay: 0.15s; }
.fade-in--delay-2 { animation-delay: 0.3s; }
.fade-in--delay-3 { animation-delay: 0.45s; }

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

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .hide-mobile { display: none; }

  .hero { padding: 20px 20px 90px; }
  .hero__eyebrow { font-size: 17px; margin-bottom: 16px; }
  .hero__headline { font-size: 34px; margin-bottom: 8px; }
  .hero__accent { margin: 0 auto 8px; }
  .hero__sub { font-size: 17px; margin-bottom: 50px; line-height: 1.6; max-width: 340px; margin-left: auto; margin-right: auto; }
  .hero__fade { height: 50px; }

  .offer { padding: 16px 20px 60px; }
  .offer__headline { font-size: 38px; margin-bottom: 4px; }
  .offer__sub { margin-bottom: 14px; }

  .duration-selector { flex-direction: row; gap: 6px; margin-bottom: 20px; }
  .duration-opt { padding: 10px 6px; text-align: center; }
  .duration-opt__name { font-size: 15px; }
  .duration-opt__detail { font-size: 10px; }

  .live-beacon { margin-bottom: 14px; padding: 8px 16px; }

  .product-card { padding: 6px 20px 24px; border-radius: 16px; }
  .product-card__amount { font-size: 44px; }
  .product-card__price { margin-bottom: 8px; }
  .product-card__perweek { display: inline; font-size: 12px; margin-top: 0; margin-left: 6px; }
  .product-card__includes-label { margin-bottom: 10px; padding-bottom: 8px; text-align: center; }
  .product-card__includes { margin-bottom: 14px; }
  .product-card__item { padding: 3px 0; font-size: 15px; }
  .product-card__cta { margin-top: 16px; padding: 14px; }
  .availability { margin-top: 12px; padding-top: 12px; }
  .product-card__next { margin-top: 48px; }
  .product-card__next-steps-row { flex-direction: column; gap: 16px; }
  .product-card__next-step { flex-direction: row; align-items: flex-start; text-align: left; font-size: 15px; }
  .product-card__next-step:not(:last-child)::after { display: none; }
  .product-card__next-label { font-size: 14px; }

  .editorial { padding: 48px 20px 32px; }
  .editorial__block p { font-size: 17px; }
  .editorial__accent { font-size: 22px; }

  .how-section { padding: 32px 20px 48px; }
  .how__headline { font-size: 28px; margin-bottom: 36px; }

  .reframe { padding: 48px 20px; }
  .reframe__pull { font-size: 24px; }

  .social-proof { padding: 40px 20px; }
  .testimonial { padding: 20px 20px; }

  .qualifier { padding: 40px 20px; }
  .qualifier__headline { font-size: 24px; }

  .faq-section { padding: 48px 20px; }
  .faq__headline { font-size: 26px; }

  .guarantee { padding: 48px 20px; }
  .guarantee__headline { font-size: 22px; }

  .bottom-offer { padding: 48px 20px; }
  .bottom-offer__headline { font-size: 26px; }
  .bottom-offer__steps { margin-bottom: 24px; }

  .footer { padding: 36px 20px; }

  .closing { padding: 60px 20px 100px; }
  .closing__punch { font-size: 24px; }

  .sticky-cta { display: block; }
}

@media (max-width: 480px) {
  .hero { padding: 12px 16px 70px; }
  .hero__eyebrow { font-size: 16px; margin-bottom: 12px; }
  .hero__headline { font-size: 28px; }
  .hero__sub { font-size: 16px; margin-bottom: 36px; max-width: 280px; margin-left: auto; margin-right: auto; }

  .offer { padding: 12px 16px 48px; }
  .offer__headline { font-size: 34px; }

  .product-card { padding: 4px 16px 20px; }
  .product-card__amount { font-size: 38px; }

  .how__headline { font-size: 24px; }
  .reframe__pull { font-size: 21px; }
  .qualifier__headline { font-size: 22px; }
  .guarantee__headline { font-size: 20px; }
  .bottom-offer__headline { font-size: 24px; }
}
