/* ================================================================
   UPASANA 30 - Spiritual Premium Design System
   High-Converting Sales Funnel | Indian Audience
   Ho'oponopono & EFT Healing Course
   ================================================================ */

:root {
  /* ── Dark palette (spiritual depth) ── */
  --bg-deep:   #07021A;
  --bg-dark:   #0C0622;
  --bg-mid:    #110830;
  --bg-warm:   #180D3C;

  /* ── Gold spectrum (auspicious) ── */
  --gold:          #F5A623;
  --gold-light:    #FFD06E;
  --gold-pale:     rgba(245, 166, 35, 0.12);
  --gold-glow:     rgba(245, 166, 35, 0.22);

  /* ── Saffron (action, energy) ── */
  --saffron:       #E8651A;
  --saffron-light: #FF7B2C;

  /* ── Teal (healing, peace) ── */
  --teal:          #2ABFBF;

  /* ── Text on dark ── */
  --text-on-dark:  #FFF6E8;
  --muted-on-dark: rgba(255, 243, 218, 0.65);
  --dim-on-dark:   rgba(255, 243, 218, 0.35);

  /* ── Light sections ── */
  --bg-light:     #FDFAF4;
  --bg-light-alt: #F2E8D5;
  --text-dark:    #110528;
  --text-muted:   #4A3268;

  /* ── Cards ── */
  --card-dark-bg:      rgba(255, 255, 255, 0.042);
  --card-dark-border:  rgba(245, 166, 35, 0.16);
  --card-light-bg:     #FFFFFF;
  --card-light-border: rgba(17, 5, 40, 0.075);

  /* ── Shadows ── */
  --shadow-dark:  0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-light: 0 8px 28px rgba(17, 5, 40, 0.09);
  --shadow-btn:   0 14px 42px rgba(232, 101, 26, 0.45);
  --shadow-gold:  0 0 70px rgba(245, 166, 35, 0.2);

  /* ── Shape ── */
  --radius:    18px;
  --radius-lg: 28px;
  --wrap:      1160px;
}

.mobile-break { display: none; }

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

/* Prevent grid blowout on all grid children */
.stats-grid > *,
.event-grid > *,
.two-col-grid > *,
.fit-grid > *,
.testimonial-grid > * { min-width: 0; }

/* Prevent text overflow on long content */
.authority-creds li,
.founder-story p,
.feature-list li,
.for-you-list li,
.content-card p,
.prose-card p { overflow-wrap: break-word; word-break: break-word; }

body {
  margin: 0;
  font-family: "Mukta", sans-serif;
  color: var(--text-on-dark);
  background: var(--bg-deep);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(calc(100% - 32px), var(--wrap));
  margin: 0 auto;
}
.narrow { max-width: 860px; }

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #0A0320 0%, #160840 50%, #0A0320 100%);
  border-bottom: 1px solid rgba(245, 166, 35, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar-inner {
  min-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted-on-dark);
  padding: 8px 0;
}

.topbar-fire {
  color: var(--text-on-dark);
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* Countdown in topbar */
.topbar-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-family: "Space Grotesk", sans-serif;
}

/* Topbar CTA button */
.topbar-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--saffron-light) 0%, #C04B0E 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  font-family: "Mukta", sans-serif;
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(232, 101, 26, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease;
  text-decoration: none;
}
.topbar-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 101, 26, 0.55);
}

/* ================================================================
   SECTION - dark by default
   ================================================================ */
.section {
  position: relative;
  padding: 80px 0;
  background: var(--bg-dark);
}

/* ── Light surface override ── */
.alt-surface {
  background: var(--bg-light) !important;
  color: var(--text-dark);
}
.alt-surface .section-head h2,
.alt-surface h2,
.alt-surface h3 { color: var(--text-dark) !important; }
.alt-surface .section-kicker,
.alt-surface .card-kicker,
.alt-surface .event-label { color: var(--saffron) !important; }
.alt-surface p,
.alt-surface .section-subtitle,
.alt-surface .content-card p,
.alt-surface .mini-card p,
.alt-surface .prose-card p { color: var(--text-muted); }
.alt-surface strong { color: var(--text-dark); }

/* Also light: offer section, testimonials, faq */
.offer-section,
#testimonials,
.faq-section {
  background: var(--bg-light) !important;
  color: var(--text-dark);
}
.offer-section .section-head h2,
#testimonials .section-head h2,
.faq-section .section-head h2,
.offer-section h2, .offer-section h3,
#testimonials h2, #testimonials h3,
.faq-section h2, .faq-section h3 { color: var(--text-dark) !important; }
.offer-section .section-kicker,
#testimonials .section-kicker,
.faq-section .section-kicker { color: var(--saffron) !important; }
.offer-section p,
.offer-section .section-subtitle,
.offer-section .content-card p,
.offer-section .mini-card p { color: var(--text-muted); }
.offer-section strong { color: var(--text-dark); }

/* ── Authority surface ── */
.authority-surface {
  background: linear-gradient(145deg, #0A0320 0%, #180B3C 55%, #0D0528 100%) !important;
  border-top:    1px solid rgba(245, 166, 35, 0.1);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  overflow: hidden;
  padding-top: 20px !important;
  padding-bottom: 30px;
  background: linear-gradient(150deg, #09021E 0%, #12073A 45%, #0B0425 100%) !important;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 15% 35%, rgba(245, 166, 35, 0.075) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 88% 65%, rgba(232, 101, 26, 0.065) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 52% 55%, rgba(42, 191, 191, 0.035) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(130px);
  pointer-events: none;
}
.hero-glow-left {
  width: 420px; height: 420px;
  left: -160px; top: -60px;
  background: rgba(245, 166, 35, 0.11);
}
.hero-glow-right {
  width: 360px; height: 360px;
  right: -110px; top: 50px;
  background: rgba(232, 101, 26, 0.09);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 56px;
  align-items: start;
}

/* ================================================================
   KICKER / EYEBROW LABELS
   ================================================================ */
.eyebrow,
.section-kicker,
.card-kicker,
.event-label {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.hero h1,
.section-head h2,
.hero-card h2,
.final-card h2,
.stat-card strong,
.new-price,
.recap-box h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.035em;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.1;
  color: var(--text-on-dark);
  max-width: none;
}
.hero-quote-stacked {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 4px;
  align-items: baseline;
  line-height: 1.25;
}
.hero-quote-stacked .highlight {
  color: var(--text-on-dark);
}
.hero-quote-stacked .accent {
  color: var(--gold);
}
.hero-line { display: contents; }

@media (max-width: 720px) {
  .hero-quote-stacked {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 1.6rem !important; /* Uniform size to fit all on one line */
  }
  .hero-line { 
    display: block; 
    white-space: nowrap;
    width: 100%;
  }
}

.hero-intro {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: var(--muted-on-dark);
  line-height: 1.4;
}
.hero-intro-lower { margin-top: 28px; margin-bottom: 12px; }

.hero-impact {
  margin: 12px 0 24px;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.pause-mark {
  margin: 16px 0;
  font-size: 2rem;
  color: rgba(245, 166, 35, 0.28);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-head.align-left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.section-head.compact { margin-bottom: 22px; }

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.1;
  color: var(--text-on-dark);
}

.section-subtitle {
  margin: 10px 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--muted-on-dark);
}

/* ================================================================
   REFRAME BOX
   ================================================================ */
.reframe-box {
  margin-top: 40px;
  padding: 26px 28px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.reframe-box p {
  margin: 0 0 6px;
  color: var(--muted-on-dark);
  font-size: 1.05rem;
  line-height: 1.4;
}
.reframe-box p strong { color: var(--text-on-dark); }
.reframe-closing {
  margin-top: 14px !important;
  color: var(--gold) !important;
  font-weight: 800;
}

/* Reframe as standalone section */
.reframe-section {
  padding-top: 0 !important;
  padding-bottom: 48px;
  background: var(--bg-dark);
}

/* ================================================================
   SEATS PROGRESS BAR
   ================================================================ */
.seats-bar {
  margin-bottom: 20px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-radius: 14px;
}
.seats-bar-final {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 166, 35, 0.18);
}
.seats-bar-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.86rem;
  font-weight: 700;
}
.seats-bar-label { color: var(--muted-on-dark); }
.seats-bar-count { color: var(--gold); white-space: nowrap; }
.seats-bar-track {
  height: 7px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.seats-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--gold-light) 100%);
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.4);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.social-proof-count {
  margin: 20px 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted-on-dark);
  letter-spacing: 0.01em;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 14px 26px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 800;
  font-family: "Mukta", sans-serif;
  cursor: pointer;
  border: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--saffron-light) 0%, #C04B0E 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FF8C3A 0%, var(--saffron) 100%);
  box-shadow: 0 18px 52px rgba(232, 101, 26, 0.58);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(245, 166, 35, 0.28);
  color: var(--gold-light);
}
.btn-secondary:hover { background: rgba(245, 166, 35, 0.1); }

.btn-wide { width: 100%; }

/* Gradient CTA - teal-to-gold premium variant */
.btn-gradient-cta {
  background: linear-gradient(135deg, #1DB8B8 0%, #16A085 40%, #F5A623 100%);
  box-shadow: 0 14px 42px rgba(22, 160, 133, 0.45);
  color: #fff;
}
.btn-gradient-cta:hover {
  background: linear-gradient(135deg, #22CECE 0%, #1ABC9C 40%, #FFB83F 100%);
  box-shadow: 0 18px 52px rgba(22, 160, 133, 0.6);
}

/* Light-section overrides */
.offer-section .btn-secondary,
.alt-surface .btn-secondary {
  background: rgba(17, 5, 40, 0.06);
  border: 1px solid rgba(17, 5, 40, 0.15);
  color: var(--text-dark);
}

/* ================================================================
   HERO CARD (right panel)
   ================================================================ */
/* Hero photo block */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.hero-photo-block {
  text-align: center;
}
.hero-photo-ring {
  width: 260px;
  height: 260px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 4px solid rgba(245, 166, 35, 0.45);
  padding: 8px;
  box-shadow: 0 0 60px rgba(245, 166, 35, 0.25);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-photo-ring:hover {
  transform: scale(1.04) rotate(2deg);
}
.hero-photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-photo-name {
  margin: 0 0 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-on-dark);
}
.hero-photo-title {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted-on-dark);
}
.hero-card {
  width: 100%;
  max-width: 460px;
  padding: 32px;
  padding-top: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.24);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: var(--shadow-dark), var(--shadow-gold);
}
.hero-card h2 {
  margin: 0 0 10px;
  font-size: 1.9rem;
  line-height: 1.06;
  color: var(--text-on-dark);
}
.hero-card-byline {
  margin: 0 0 20px;
  font-weight: 600;
  color: var(--muted-on-dark);
}

/* Event grid inside hero card */
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0;
}
.event-item {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.12);
}
.event-item .event-label { display: block; margin-bottom: 4px; }
.event-item strong {
  display: block;
  color: var(--text-on-dark);
  font-size: 0.97rem;
}

/* Price box */
.price-box {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 16px;
}
.price-box.large { 
  justify-content: center; 
  margin: 26px 0; 
  text-align: center;
}
.price-box.large .new-price {
  font-size: 2.2rem;
  line-height: 1.2;
}

.old-price {
  color: var(--dim-on-dark);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: line-through;
}
.offer-section .old-price,
.alt-surface .old-price { color: rgba(17, 5, 40, 0.3); }

.new-price {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1;
  color: var(--gold);
  font-weight: 800;
}

/* Hero point pills */
.hero-points {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.hero-points::-webkit-scrollbar { display: none; }
.hero-points li {
  padding: 6px 12px;
  font-size: 0.82rem;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.26);
  font-weight: 700;
  color: var(--gold-light);
}

/* ================================================================
   CONTENT CARDS - dark sections
   ================================================================ */
.content-card,
.mini-card {
  padding: 30px;
  background: var(--card-dark-bg);
  border: 1px solid var(--card-dark-border);
  border-radius: var(--radius);
}
.content-card p,
.mini-card p { color: var(--muted-on-dark); }
.content-card strong,
.mini-card strong { color: var(--text-on-dark); }

/* Light-section cards */
.alt-surface .content-card,
.alt-surface .mini-card,
.offer-section .content-card,
.offer-section .mini-card,
.faq-section .content-card,
#testimonials .content-card {
  background: var(--card-light-bg);
  border: 1px solid var(--card-light-border);
  box-shadow: var(--shadow-light);
  backdrop-filter: none;
}
.alt-surface .content-card p,
.alt-surface .mini-card p,
.offer-section .content-card p,
.offer-section .mini-card p { color: var(--text-muted); }
.alt-surface .content-card strong,
.alt-surface .mini-card strong,
.offer-section .content-card strong,
.offer-section .mini-card strong { color: var(--text-dark); }

/* Prose cards */
.prose-card p { margin: 0 0 14px; font-size: 1.05rem; }
.prose-card p:last-child,
.content-card p:last-child,
.mini-card p:last-child { margin-bottom: 0; }

/* ================================================================
   GRIDS
   ================================================================ */
.two-col-grid,
.fit-grid,
.authority-grid,
.stats-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}
.two-col-grid { grid-template-columns: repeat(2, 1fr); margin: 24px 0; }
.stats-grid { grid-template-columns: repeat(2, 1fr); align-content: start; }
.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
.fit-grid { grid-template-columns: repeat(2, 1fr); }
.authority-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: stretch; }

.mini-card h3 { margin: 0 0 10px; font-size: 1.2rem; color: var(--text-on-dark); }
.alt-surface .mini-card h3,
.offer-section .mini-card h3 { color: var(--text-dark); }

/* ================================================================
   DETAIL STRIP & RECAP GRID - pills
   ================================================================ */
.detail-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
  justify-content: center;
}
.hero-points,
.detail-strip,
.footer-links,
.price-box { display: flex; flex-wrap: wrap; }

.detail-strip span,
.recap-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.2);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
  line-height: 1.2;
}

.offer-section .detail-strip span,
.alt-surface .detail-strip span {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}



/* Offer CTA box */
.offer-cta-box { margin-top: 12px; text-align: center; }

.microcopy {
  margin: 10px 0 0;
  font-size: 0.93rem;
  color: var(--muted-on-dark);
}
.offer-section .microcopy,
.alt-surface .microcopy { color: var(--text-muted); }
.final-card .microcopy { color: var(--muted-on-dark); }

/* ================================================================
   AUTHORITY SECTION
   ================================================================ */
.avatar-block {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}
.avatar-circle {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(232, 101, 26, 0.45);
  overflow: hidden;
}
.avatar-photo { background: none; padding: 0; }

/* Vertical avatar block (authority section) */
.avatar-block-vertical {
  flex-direction: column;
  align-items: center; /* Centered */
  text-align: center; /* Centered */
  gap: 16px;
}
.avatar-large {
  width: 280px !important;
  height: 280px !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 60px rgba(232, 101, 26, 0.4) !important;
}
.avatar-info h2 { margin: 0 0 4px; }
.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
  display: block;
}
.authority-role {
  margin: 6px 0 0;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
}
.authority-world-record {
  margin: 6px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* Authority quote */
.authority-quote {
  margin: 22px 0 24px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(245, 166, 35, 0.06);
  border-radius: 0 12px 12px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: #fff;
  line-height: 1.7;
}

/* Credentials list - emoji bullets, no custom dot */
.authority-creds li { padding-left: 4px; color: #fff; }
.authority-creds li::before { display: none; }

/* Founder story */
.founder-story {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 166, 35, 0.12);
}
.founder-story p {
  margin: 0 0 12px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}
.founder-story p:last-child { margin-bottom: 0; }
.founder-story strong { color: var(--text-on-dark); }
.founder-closing-title {
  text-align: center;
  margin: 30px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Coach right column */
.coach-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Platform badges */
.platform-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.platform-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 166, 35, 0.14);
  border-radius: 14px;
}
.platform-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}
.platform-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}
.yt-badge .platform-icon svg { fill: #FF0000; }
.ig-badge .platform-icon svg { fill: #E4405F; }
.sy-badge .platform-icon svg { fill: var(--teal); }

.platform-badge div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.platform-badge strong {
  color: var(--text-on-dark);
  font-size: 0.9rem;
}
.platform-badge span {
  color: var(--muted-on-dark);
  font-size: 0.82rem;
}

/* Feature list */
.feature-list { margin: 0; padding: 0; list-style: none; }
.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--muted-on-dark);
  font-size: 1.02rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
}
.alt-surface .feature-list li,
.offer-section .feature-list li { color: var(--text-muted); }
.alt-surface .feature-list li::before,
.offer-section .feature-list li::before {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
}
.danger-list li::before { background: #D63030 !important; }

/* ================================================================
   STAT CARDS
   ================================================================ */
.stat-card {
  padding: 26px 20px;
  text-align: center;
  background: var(--card-dark-bg);
  border: 1px solid var(--card-dark-border);
  border-radius: var(--radius);
}
.stat-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 4px;
  color: var(--gold);
  letter-spacing: -0.04em;
}
.stat-card span { color: var(--muted-on-dark); font-weight: 700; font-size: 0.9rem; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-card {
  padding: 28px 26px;
  background: var(--card-light-bg);
  border: 1px solid var(--card-light-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; left: 22px;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  font-family: "Space Grotesk", sans-serif;
  pointer-events: none;
  user-select: none;
}

.quote {
  margin: 0 0 16px;
  color: #2E1E52;
  font-size: 1.01rem;
  line-height: 1.65;
}
.testimonial-card.content-card p.quote { color: #2E1E52; }
.testimonial-card.content-card p.author { color: var(--text-muted); }
.author {
  margin: 0;
  font-weight: 800;
  color: var(--text-dark);
  font-size: 0.92rem;
}
.rating { margin: 10px 0 0; font-size: 1rem; }

/* ================================================================
   FOR YOU / NOT FOR YOU
   ================================================================ */
.closing-line {
  margin: 14px 0 0;
  font-weight: 700;
  color: var(--text-dark);
}
.not-for-you {
  background: rgba(214, 48, 48, 0.04) !important;
  border-color: rgba(214, 48, 48, 0.14) !important;
}

/* Authority card paragraphs always white */
.authority-card.content-card p { color: rgba(255,255,255,0.9); }

/* ================================================================
   FOR YOU / NOT FOR YOU - REDESIGNED
   ================================================================ */
.for-you-section { background: var(--bg-mid); }
.for-you-card {
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.for-you-yes {
  background: rgba(34, 197, 94, 0.07);
  border: 1.5px solid rgba(34, 197, 94, 0.28);
}
.for-you-no {
  background: rgba(239, 68, 68, 0.07);
  border: 1.5px solid rgba(239, 68, 68, 0.28);
}
.for-you-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.for-you-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.for-you-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--text-on-dark);
}
.for-you-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.for-you-yes .for-you-list li {
  padding-left: 22px;
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
  line-height: 1.55;
}
.for-you-yes .for-you-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}
.for-you-no .for-you-list li {
  padding-left: 22px;
  position: relative;
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  line-height: 1.55;
}
.for-you-no .for-you-list li::before {
  content: "\2715";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}
.for-you-closing {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.for-yes-closing { color: rgba(255,255,255,0.9); }
.for-yes-closing strong { color: #4ade80; }
.for-no-closing strong { color: #f87171; }

/* Section CTA strip (between sections) */
.section-cta-strip {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-list { display: grid; gap: 12px; }

.faq-item {
  background: var(--card-light-bg);
  border: 1px solid var(--card-light-border);
  border-radius: var(--radius);
  padding: 0 24px;
  box-shadow: var(--shadow-light);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--saffron);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 14px;
  line-height: 1;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin: 0 0 22px; color: var(--text-muted); line-height: 1.65; }

/* Guarantee badge */
.guarantee-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(42, 191, 191, 0.06);
  border: 1px solid rgba(42, 191, 191, 0.22);
}
.guarantee-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.guarantee-badge strong {
  display: block;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 4px;
}
.guarantee-badge p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

/* ================================================================
   FINAL CTA SECTION
   ================================================================ */
.final-section {
  padding-bottom: 108px;
  background: linear-gradient(150deg, #0A0224 0%, #180A3C 40%, #0E0628 100%) !important;
}
.final-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(245, 166, 35, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232, 101, 26, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.final-card {
  position: relative;
  z-index: 1;
  padding: 52px 46px;
  text-align: center;
  background: rgba(255, 255, 255, 0.042);
  border: 1px solid rgba(245, 166, 35, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark), var(--shadow-gold);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.final-card .section-kicker { color: var(--gold); }
.final-card h2 {
  color: var(--text-on-dark) !important;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  margin: 0 0 6px;
}

.recap-box {
  margin: 30px 0;
  padding: 28px 26px;
  border-radius: 22px;
  background: rgba(245, 166, 35, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.18);
}
.recap-box h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--gold);
}
.recap-box p { margin: 8px 0 0; color: var(--muted-on-dark); }

.recap-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.recap-list { text-align: left; max-width: 640px; margin: 20px auto 0; }
.recap-list li { color: var(--muted-on-dark) !important; }
.recap-list li::before { background: linear-gradient(135deg, var(--gold), var(--saffron)) !important; }

/* Urgency strip */
.urgency-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 20px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(214, 48, 48, 0.1);
  border: 1px solid rgba(214, 48, 48, 0.28);
  font-size: 0.92rem;
  font-weight: 700;
  color: #FF7B7B;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF4444;
  flex-shrink: 0;
  animation: blink-dot 1.2s ease-in-out infinite;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.urgency-strip strong { color: #FF9999; }

.final-cta-button {
  min-width: min(100%, 480px);
  font-size: 1.08rem !important;
  min-height: 64px !important;
  border-radius: 18px !important;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: 32px 0 24px;
  background: var(--bg-deep);
  border-top: 1px solid rgba(245, 166, 35, 0.1);
}

/* Top row: brand + nav */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
}
.footer-brand {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-tagline {
  margin: 0;
  color: var(--muted-on-dark);
  font-size: 0.88rem;
}
.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 700;
  color: var(--dim-on-dark);
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a { transition: color 200ms; }
.footer-links a:hover { color: var(--gold-light); }

/* Disclaimer */
.footer-disclaimer {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-disclaimer p {
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--dim-on-dark);
  line-height: 1.65;
  max-width: 860px;
  text-align: center;
}

/* Bottom row: copyright + credit */
.footer-bottom {
  padding-top: 14px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim-on-dark);
}
.footer-credit a {
  color: var(--gold);
  font-weight: 700;
  transition: color 200ms;
}
.footer-credit a:hover { color: var(--gold-light); }

/* ================================================================
   STICKY CTA
   ================================================================ */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 40;
  min-height: 60px;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--saffron-light) 0%, #B84510 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
  font-family: "Mukta", sans-serif;
  box-shadow: 0 16px 44px rgba(232, 101, 26, 0.52);
  animation: pulse-sticky 2.8s ease-in-out infinite;
}
@keyframes pulse-sticky {
  0%, 100% { box-shadow: 0 16px 44px rgba(232, 101, 26, 0.52); }
  50%       { box-shadow: 0 22px 56px rgba(232, 101, 26, 0.72), 0 0 0 7px rgba(232, 101, 26, 0.12); }
}

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 580ms ease, transform 580ms ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVE - TABLET (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .hero-grid,
  .two-col-grid,
  .authority-grid,
  .fit-grid,
  .testimonial-grid { grid-template-columns: 1fr; }

  .event-grid,
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .hero { padding-top: 62px; }
  .hero-grid { gap: 36px; }
  .hero-panel { justify-content: stretch; }
  .hero-card { max-width: none; }
}

/* ================================================================
   RESPONSIVE - MOBILE (≤ 720px)
   ================================================================ */
@media (max-width: 720px) {
  .mobile-break { display: block; margin-bottom: 2px; }
  /* ── Topbar ── */
  .topbar-inner {
    min-height: 48px;
    padding: 6px 8px;
    flex-wrap: nowrap;
    gap: 5px;
    justify-content: center;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .topbar-fire { flex-shrink: 0; }
  .topbar-countdown { font-size: 0.88rem; padding: 3px 8px; min-width: 58px; flex-shrink: 0; }
  .topbar-cta-btn { font-size: 0.75rem; padding: 6px 10px; flex-shrink: 0; }

  /* ── Section spacing ── */
  .section { padding: 48px 0; }
  .hero { padding-top: 60px; padding-bottom: 60px; }

  /* ── Typography ── */
  .hero-copy h1 { font-size: 2.3rem; max-width: none; }
  .hero-impact { font-size: 1.5rem; }
  .section-head h2 { font-size: 1.65rem; max-width: none; }
  .section-head { margin: 0 0 24px; text-align: left; }

  /* ── Grids ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fit-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ── Buttons ── */
  .hero-actions .btn,
  .offer-cta-box .btn,
  .final-cta-button { width: 100%; }
  .section-cta-strip .btn { font-size: 0.88rem; padding: 14px 18px; }

  /* ── Cards ── */
  .content-card,
  .mini-card,
  .testimonial-card { padding: 20px 18px; }
  .hero-card { padding: 20px 18px; padding-top: 14px; }
  .reframe-box,
  .final-card,
  .recap-box { padding-left: 18px; padding-right: 18px; }

  /* ── Seats bar ── */
  .seats-bar-info {
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
  }
  .seats-bar-count { font-size: 0.88rem; }

  /* ── Hero photo ── */
  .hero-photo-ring { width: 180px; height: 180px; border-width: 3px; }
  .hero-photo-name { font-size: 1.2rem; margin-top: 8px; }

  /* ── Hero pills ── */
  .hero-points li { font-size: 0.78rem; padding: 5px 10px; }

  /* ── Authority section ── */
  .avatar-large { width: 240px !important; height: 240px !important; border-radius: 26px !important; }
  .authority-role { font-size: 0.88rem; }
  .authority-quote { font-size: 0.96rem; padding: 14px 16px; }
  .authority-creds {
    width: 100%;
    padding: 0;
  }
  .authority-creds li { 
    font-size: 0.85rem; 
    white-space: normal !important; 
    padding-left: 28px !important;
    text-indent: -28px !important;
    margin-bottom: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,0.95);
  }

  /* ── Stats cards ── */
  .stat-card { padding: 18px 12px; }
  .stat-card strong { font-size: 2.2rem; }
  .stat-card span { font-size: 0.8rem; }

  /* ── Platform badges ── */
  .platform-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    overflow: visible;
  }
  .platform-badge {
    min-width: 0;
    flex-direction: column;
    text-align: center;
    padding: 12px 6px;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .platform-icon { 
    width: 28px; 
    height: 28px; 
    background: transparent;
  }
  .platform-icon svg {
    width: 100%; height: 100%; 
  }
  .platform-badge strong { font-size: 0.75rem; }
  .platform-badge span:not(.platform-icon) { font-size: 0.68rem; line-height: 1.2; color: var(--muted-on-dark); }
  .yt-badge .platform-icon svg { fill: #FF0000; }
  .ig-badge .platform-icon svg { fill: #E4405F; }
  .sy-badge .platform-icon svg { fill: var(--teal); }
  .platform-badge div { align-items: center; }

  /* ── Detail strip ── */
  .detail-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .detail-strip span { text-align: center; font-size: 0.82rem; padding: 8px 10px; }

  /* ── Testimonials ── */
  .testimonial-grid { grid-template-columns: 1fr; }
  .quote { font-size: 0.96rem; }

  /* ── Footer ── */
  .footer { padding: 32px 0 80px; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .footer-links { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .footer-disclaimer p { font-size: 0.75rem; text-align: center; }

  /* ── Sticky CTA ── */
  .sticky-cta { display: flex; font-size: 0.96rem; }

  /* ── For-you section ── */
  .for-you-card { padding: 22px 18px; }

  /* ── FAQ ── */
  .faq-item summary { font-size: 0.96rem; }

  /* ── Recap grid ── */
  .recap-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
  }
  .recap-grid span {
    white-space: normal;
    text-align: center;
    justify-content: center;
    width: 100%;
    min-height: 52px; /* Consistency in grid row height */
    padding: 8px 12px;
    font-size: 0.8rem; /* Slightly smaller to fit 2-column better */
  }

  /* ── Section CTA strip ── */
  .section-cta-strip { padding: 24px 20px; }
}

/* ================================================================
   RESPONSIVE - SMALL MOBILE (≤ 400px)
   ================================================================ */
@media (max-width: 400px) {
  /* ── Topbar ── */
  .topbar-inner {
    min-height: 44px;
    padding: 4px 4px;
    gap: 3px;
    flex-wrap: nowrap;
    justify-content: space-evenly;
  }
  .topbar-fire { font-size: 0.68rem; white-space: nowrap; flex-shrink: 1; overflow: hidden; }
  .topbar-countdown { font-size: 0.74rem; min-width: 50px; padding: 2px 5px; flex-shrink: 0; }
  .topbar-cta-btn { font-size: 0.65rem; padding: 5px 8px; white-space: nowrap; flex-shrink: 0; }
  .topbar-separator { display: none; }

  /* ── Hero ── */
  .hero-copy h1 { font-size: 2.2rem; }
  .hero-impact { font-size: 1.4rem; }
  .hero-photo-ring { width: 160px; height: 160px; }

  /* ── Buttons ── */
  .btn { font-size: 0.9rem; padding: 12px 16px; }
  .final-cta-button { font-size: 0.92rem !important; min-height: 54px !important; }

  /* ── Section spacing ── */
  .section { padding: 32px 0; }
  .final-card { padding: 28px 16px; }
  .recap-box { padding: 18px 14px; }

  /* ── Grids ── */
  .two-col-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Wrap padding ── */
  .wrap { width: min(calc(100% - 24px), var(--wrap)); }
}

/* ================================================================
   MOBILE TITLE SPLITTING
   ================================================================ */
.mobile-block-title {
  display: inline;
}

@media (max-width: 768px) {
  .mobile-block-title {
    display: block;
    margin-top: 12px; /* Space between sentences/phrases */
  }
}
