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

/* ── Skip link ───────────────────────────── */
.skip-link {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: var(--gold);
  color: #120806;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-family: system-ui, sans-serif;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.2s;
  white-space: nowrap;
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

:root {
  --gold:   #c9a84c;
  --gold-l: #f0d080;
  --dark:   #120806;
  --mid:    #2a1506;
  --light:  #fdf6ec;
  --green:  #25d366;
  --green-d:#1da851;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark);
  color: var(--light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* bottom padding so sticky CTA never overlaps content */
  padding-bottom: 88px;
  font-size: 18px; /* base 18px for 50+ legibility */
  -webkit-text-size-adjust: 100%;
}

/* ── Glow background ─────────────────────── */
.glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(201,140,30,.22) 0%, rgba(180,60,10,.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.glow::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(120,60,200,.06) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Layout helpers ──────────────────────── */
.hero, .demo-section, .steps, .features, .testimonials, .plans, .bottom-cta, .section-title, .objections {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── Hero ─────────────────────────────────── */
.hero {
  padding-top: 48px;
  padding-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@keyframes halo {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(201,168,76,.6)) drop-shadow(0 0 40px rgba(201,168,76,.2)); }
  50%       { filter: drop-shadow(0 0 32px rgba(201,168,76,.9)) drop-shadow(0 0 70px rgba(201,168,76,.35)); }
}

.logo-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  animation: halo 3.5s ease-in-out infinite;
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  background: linear-gradient(135deg, #f0d080 0%, #fff8ec 45%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #e8dcc8;
  max-width: 380px;
  font-weight: 400;
}

/* ── Social proof ─────────────────────────── */
.proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gold);
  font-family: system-ui, sans-serif;
}
.proof .stars { letter-spacing: 2px; font-size: 1rem; }

/* ── CTA button ───────────────────────────── */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--green);
  color: #0a2e16;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: bold;
  padding: 18px 32px;
  border-radius: 100px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 4px 28px rgba(37,211,102,.45);
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
  font-family: system-ui, sans-serif;
  cursor: pointer;
  border: none;
}
.cta-btn:hover  { background: var(--green-d); box-shadow: 0 6px 32px rgba(37,211,102,.55); }
.cta-btn:active { transform: scale(0.97); box-shadow: 0 2px 12px rgba(37,211,102,.3); }
.cta-btn svg { width: 26px; height: 26px; flex-shrink: 0; }

.cta-sub {
  font-size: 0.82rem;
  color: #b8a474;
  font-family: system-ui, sans-serif;
  margin-top: -8px;
}

/* ── Demo audio player ────────────────────── */
.demo-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
}

.demo-label {
  font-size: .95rem;
  color: var(--gold-l);
  margin-bottom: 14px;
  letter-spacing: .03em;
}

.demo-player {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 16px;
  padding: 14px 18px;
}

.demo-play {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  color: var(--dark);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s, box-shadow .15s;
}

.demo-play:hover {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(201,168,76,.5);
}

.demo-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.demo-title {
  font-size: .8rem;
  color: rgba(253,246,236,.85);
}

.demo-progress-wrap {
  height: 4px;
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  overflow: hidden;
}

.demo-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s linear;
}

.demo-time {
  font-size: .72rem;
  color: var(--gold);
  font-family: monospace;
}

.demo-hint {
  margin-top: 10px;
  font-size: .78rem;
  color: rgba(253,246,236,.68);
}

/* ── How it works (3 steps) ───────────────── */
.steps {
  padding-bottom: 48px;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,.2);
  border: 1px solid var(--gold);
  color: var(--gold-l);
  font-family: system-ui, sans-serif;
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-line {
  width: 1px;
  flex: 1;
  min-height: 28px;
  background: linear-gradient(to bottom, rgba(201,168,76,.4), transparent);
  margin-top: 4px;
}

.step:last-child .step-line { display: none; }

.step-body {
  padding-bottom: 28px;
}

.step-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--gold-l);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-body p {
  font-size: 1rem;
  color: #c8b898;
  line-height: 1.55;
  font-family: system-ui, sans-serif;
}

/* ── Features ─────────────────────────────── */
.features {
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature {
  background: linear-gradient(135deg, rgba(201,168,76,.09) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,.28), inset 0 1px 0 rgba(201,168,76,.12);
}

.feature-icon { width: 28px; height: 28px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.feature-text h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--gold-l);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 1rem;
  color: #c8b898;
  line-height: 1.55;
  font-family: system-ui, sans-serif;
}

/* ── Candle teaser card ──────────────────────── */
.candle-card {
  display: block;
  text-decoration: none;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(201,168,76,.5), rgba(180,80,10,.3));
  box-shadow: 0 0 24px rgba(201,120,20,.15);
  transition: box-shadow 0.2s, transform 0.15s;
  margin-top: 4px;
}
.candle-card:hover {
  box-shadow: 0 0 36px rgba(201,120,20,.3);
  transform: translateY(-1px);
}
.candle-card-inner {
  background: rgba(40,18,4,.85);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.candle-flame { width: 32px; height: 32px; color: var(--gold); flex-shrink: 0; }
.candle-text { flex: 1; }
.candle-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: system-ui, sans-serif;
  margin-bottom: 3px;
}
.candle-text h3 { color: var(--gold-l); font-size: 1rem; margin-bottom: 4px; }
.candle-text p {
  font-size: 1rem;
  color: #c8b898;
  line-height: 1.55;
  font-family: system-ui, sans-serif;
}
.candle-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Section title ────────────────────────── */
.section-title {
  text-align: center;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: system-ui, sans-serif;
  margin-bottom: 20px;
  margin-top: 8px;
}

/* ── Testimonials ─────────────────────────── */
.testimonials {
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(201,168,76,.18);
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
  padding: 18px 20px;
  margin: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.04);
}

.testimonial blockquote { margin: 0; padding: 0; }

.testimonial p {
  font-size: 1rem;
  line-height: 1.65;
  color: #e8dcc8;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial figcaption { margin-top: 4px; }

.testimonial .author {
  font-size: 0.78rem;
  color: var(--gold);
  font-family: system-ui, sans-serif;
  font-style: normal;
}

/* ── Objection busting ────────────────────── */
.objections {
  padding-bottom: 48px;
}

.objection-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.objection {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: system-ui, sans-serif;
}

.objection-check {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.objection p {
  font-size: 1rem;
  color: #c8b898;
  line-height: 1.5;
}

.objection strong { color: var(--light); }

/* ── Plans ────────────────────────────────── */
.plans {
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan {
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 16px;
  padding: 20px 22px;
  position: relative;
  background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, rgba(255,255,255,.02) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,.22);
}

.plan.featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(201,168,76,.16) 0%, rgba(201,168,76,.05) 100%);
  box-shadow: 0 0 40px rgba(201,168,76,.18), 0 4px 24px rgba(0,0,0,.3);
}

.plan-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: 1px;
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.plan-name { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--gold-l); font-size: 1.15rem; font-weight: 600; }
.plan-price { font-size: 1.3rem; font-weight: bold; color: #fff; }
.plan-price span { font-size: 0.8rem; color: #9a8860; font-weight: normal; }
.plan-desc { font-size: 1rem; color: #c8b898; line-height: 1.55; }

/* ── Bottom CTA ───────────────────────────── */
.bottom-cta {
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-note {
  font-size: 0.78rem;
  color: #9a8860;
  text-align: center;
  font-family: system-ui, sans-serif;
  line-height: 1.6;
}

/* ── Sticky mobile CTA ────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18,8,6,.96);
  border-top: 1px solid rgba(201,168,76,.2);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sticky-cta .cta-btn {
  max-width: 440px;
  padding: 15px 28px;
  font-size: 1.05rem;
}

/* Hide sticky CTA after user scrolls past hero */
.sticky-cta.hidden { display: none; }

/* ── Mid-page CTA ─────────────────────────── */
.mid-cta {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  padding: 0 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.mid-cta-hook {
  color: var(--gold-l);
  font-size: 1rem;
  font-family: system-ui, sans-serif;
  line-height: 1.4;
}

/* ── Floating sparks (hero atmosphere) ──────── */
@keyframes spark-float {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  15%  { opacity: var(--spark-op); }
  85%  { opacity: var(--spark-op); }
  100% { opacity: 0; transform: translateY(-100px) scale(0.3); }
}
.spark {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-l) 0%, var(--gold) 60%);
  pointer-events: none;
  z-index: 0;
  animation: spark-float var(--spark-dur, 11s) var(--spark-delay, 0s) ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .spark { display: none; }
}

/* ── Footer ───────────────────────────────── */
.footer {
  text-align: center;
  padding: 32px 24px;
  font-size: 0.75rem;
  color: #9a8860;
  border-top: 1px solid rgba(138,118,96,.15);
  margin-top: 48px;
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  width: 100%;
}
.footer p { margin: 0 0 6px; }
.footer p:last-child { margin: 0; }
.footer a { color: #9a8860; text-decoration: underline; }
.footer a:hover { color: var(--gold); }

/* ── Entrance animations ──────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
}
.fade-up.visible {
  animation: fadeInUp 0.55s ease forwards;
}
.fade-up:nth-child(2).visible { animation-delay: 0.07s; }
.fade-up:nth-child(3).visible { animation-delay: 0.14s; }
.fade-up:nth-child(4).visible { animation-delay: 0.21s; }
.fade-up:nth-child(5).visible { animation-delay: 0.28s; }

/* ── CTA pulse ring ───────────────────────── */
@keyframes pulse-ring {
  0%   { box-shadow: 0 4px 28px rgba(37,211,102,.45); }
  50%  { box-shadow: 0 4px 40px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.1); }
  100% { box-shadow: 0 4px 28px rgba(37,211,102,.45); }
}
.cta-btn.pulse {
  animation: pulse-ring 2.2s ease-in-out infinite;
}

/* ── Focus styles (keyboard nav) ─────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.cta-btn:focus-visible {
  outline-offset: 4px;
  border-radius: 100px;
}

/* ── Feature card hover ───────────────────── */
.feature {
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.18s;
}
.feature:hover {
  border-color: rgba(201,168,76,.55);
  background: linear-gradient(135deg, rgba(201,168,76,.14) 0%, rgba(255,255,255,.06) 100%);
  box-shadow: 0 6px 32px rgba(0,0,0,.35), 0 0 0 1px rgba(201,168,76,.2), inset 0 1px 0 rgba(201,168,76,.2);
  transform: translateY(-2px);
}

/* ── Featured plan highlight (already in .plan.featured above) ──── */

/* ── Testimonial cite ────────────────────── */
cite.author { font-style: normal; }

/* ── Objection list semantics ────────────── */
.objection-list[role="list"] { padding: 0; }

/* ── Plan featured CTA ────────────────────── */
.plan-featured-cta {
  margin-top: 14px;
  padding: 12px 24px;
  font-size: 0.95rem;
}

/* ── Desktop breakpoints ──────────────────── */
@media (min-width: 768px) {
  .hero, .demo-section, .steps, .features, .testimonials,
  .plans, .bottom-cta, .section-title, .objections, .mid-cta {
    max-width: 680px;
    padding-left: 40px;
    padding-right: 40px;
  }
  h1 { font-size: 2.8rem; }

  .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
  }
  .candle-card { grid-column: 1 / -1; }

  .testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
  }
  .testimonials .testimonial:first-of-type { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .hero, .demo-section, .steps, .features, .testimonials,
  .plans, .bottom-cta, .section-title, .objections, .mid-cta {
    max-width: 800px;
  }
  h1 { font-size: 3.2rem; }
}

/* ── Reduced motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-up.visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .cta-btn.pulse { animation: none; }
  .logo-icon { animation: none; filter: drop-shadow(0 0 20px rgba(201,168,76,.7)); }
  html { scroll-behavior: auto; }
}
