/* =============================================
   NIGHTFALL FUNNEL — UNIFIED DESIGN SYSTEM
   ============================================= */
:root {
  --bg:         #0a0a08;
  --bg-card:    #0f0f0d;
  --gold:       #c9a84c;
  --gold-dim:   #7a6a3a;
  --gold-soft:  #c9b98a;
  --white:      #f5f4f0;
  --text-dim:   #706b60;
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

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

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}
/* Homepage — no scroll, locked to viewport */
body.no-scroll {
  position: fixed;
  inset: 0;
  overflow: hidden;
  width: 100%;
  height: 100dvh;
}

/* =============================================
   LOADER
   ============================================= */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 1s ease, visibility 1s ease;
}
#loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#loader-canvas {
  width: 160px;
  height: 108px;
  filter: invert(1) sepia(0.5) saturate(2.5) hue-rotate(10deg) brightness(0.65);
}
.loader-word {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.55em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.loader-word.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   ATMOSPHERE (fixed to viewport on all pages)
   ============================================= */
.bg-grain, .bg-glow, .bg-vignette {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}
.bg-grain {
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.bg-glow {
  inset: -40%;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 65%);
}
.bg-vignette {
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 50%, rgba(0,0,0,0.5) 100%);
}

/* =============================================
   HOMEPAGE — single-screen landing
   ============================================= */
.page-hidden { opacity: 0; }
#page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  transition: opacity 0.9s ease;
}
#page.page-visible { opacity: 1; }

.landing {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 90px;
  gap: 0;
}

/* Top logo (homepage — in-flow, not absolute) */
.top-logo {
  margin-bottom: 12px;
  opacity: 0;
  transition: opacity 0.6s ease 0.1s;
}
.top-logo.visible { opacity: 1; }
#static-logo {
  width: 44px;
  height: 30px;
  filter: invert(1) sepia(0.5) saturate(2.5) hue-rotate(10deg) brightness(0.65);
}

/* =============================================
   SHARED: Eyebrow + gold rule
   ============================================= */
.eyebrow {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 auto 10px;
  text-align: center;
}
.gold-rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 18px;
}

/* =============================================
   SHARED: Titles
   ============================================= */
.title {
  text-align: center;
  font-family: var(--font-display);
  line-height: 0.9;
  margin-bottom: 14px;
}
.title-line {
  display: block;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--white);
}
.title-accent { color: var(--gold); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.2rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  text-align: center;
}
.section-heading .accent { color: var(--gold); }
/* Hero-sized heading for pages (matches home page title) */
.section-heading.hero-size {
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.9;
}

/* =============================================
   SHARED: Subtitle / body paragraphs (WHITE)
   ============================================= */
.subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.6;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
}
/* Home page video needs bottom margin before CTA */
.landing .video-wrap { margin-bottom: 28px; }
/* Overlay on home page video thumbnail — intercepts clicks */
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  cursor: pointer;
  background: transparent;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

/* =============================================
   OPT-IN MODAL
   ============================================= */
/* Native <dialog> modal — browser top-layer, unaffected by ancestor stacking / overflow */
.optin-dialog {
  width: 100%;
  max-width: 480px;
  height: 720px;
  max-height: calc(100dvh - 96px);
  padding: 0;
  border: none;
  background: var(--bg-card);
  border-radius: 3px;
  color: var(--white);
  overflow: visible; /* so the floating close button isn't clipped */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.optin-dialog::backdrop {
  background: rgba(0, 0, 0, 0.88);
}
.optin-dialog[open] {
  animation: dialog-in 0.3s ease;
}
@keyframes dialog-in {
  from { opacity: 0; transform: translate(-50%, -46%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.optin-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
}
.optin-close:hover { background: rgba(201,168,76,0.1); }
@media (max-width: 640px) {
  .optin-dialog {
    max-width: calc(100vw - 24px);
    height: calc(100dvh - 110px);
    max-height: calc(100dvh - 110px);
  }
  .optin-close { top: -50px; }
}
.section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 24px;
  text-align: center;
}
.mobile-break { display: none; }

/* =============================================
   SHARED: Video block
   ============================================= */
.video-wrap, .video-block {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 0;
}
.video-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.video-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.18);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 50px rgba(201,168,76,0.06);
}
.video-inner:hover {
  border-color: rgba(201,168,76,0.38);
  box-shadow: 0 0 60px rgba(201,168,76,0.12);
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.play-btn {
  width: 56px;
  height: 56px;
  color: var(--gold-soft);
  transition: transform 0.3s ease, color 0.3s ease;
  animation: pulseGlow 3s ease-in-out infinite;
}
.play-btn svg { width: 100%; height: 100%; }
.video-inner:hover .play-btn {
  transform: scale(1.08);
  color: var(--gold);
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}
.play-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* =============================================
   SHARED: CTA Button (pulsing gold glow)
   ============================================= */
.cta-btn {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: #d4ad42;
  padding: 16px 56px;
  position: relative;
  overflow: visible;
  transition: background 0.3s, transform 0.2s;
  animation: btnPulse 3s ease-in-out infinite;
  border: none;
  cursor: pointer;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(212,173,66,0.18), 0 0 45px rgba(212,173,66,0.08); }
  50%      { box-shadow: 0 0 25px rgba(212,173,66,0.42), 0 0 75px rgba(212,173,66,0.20); }
}
.cta-btn:hover {
  background: #ddb940;
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 0 28px rgba(212,173,66,0.48), 0 0 75px rgba(212,173,66,0.22);
}

/* Animation states */
.anim-el {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-el.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HOME FOOTER (absolute inside landing)
   ============================================= */
.home-footer {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease 1.2s;
}
.home-footer.visible { opacity: 1; }
.home-footer-logo {
  width: 26px;
  height: 18px;
  filter: invert(1) sepia(0.5) saturate(2.5) hue-rotate(10deg) brightness(0.65);
  opacity: 0.55;
  display: block;
  margin: 0 auto 6px;
}
.home-footer-copy {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* =============================================
   FUNNEL PAGES — SCROLLABLE LAYOUT
   ============================================= */
.funnel-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Page header (logo + eyebrow + gold rule) */
.page-header {
  padding: 36px 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-header-logo {
  width: 44px;
  height: 30px;
  filter: invert(1) sepia(0.5) saturate(2.5) hue-rotate(10deg) brightness(0.65);
  margin-bottom: 12px;
}
.page-header .eyebrow { margin-bottom: 10px; }
.page-header .gold-rule { margin-bottom: 0; }

.funnel-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Gold divider between sections */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 36px auto;
  position: relative;
  z-index: 1;
}

/* Page footer (small logo + copyright) */
.page-footer {
  text-align: center;
  padding: 48px 24px 36px;
  position: relative;
  z-index: 1;
}
.page-footer-logo {
  width: 28px;
  height: 19px;
  filter: invert(1) sepia(0.5) saturate(2.5) hue-rotate(10deg) brightness(0.65);
  opacity: 0.55;
  display: block;
  margin: 0 auto 10px;
}
.page-footer-copy {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* =============================================
   FREE TRAINING PAGE
   ============================================= */
.ft-hero {
  padding: 12px 24px 12px;
}
.ft-hero .section-heading,
.ft-hero .title { margin-bottom: 16px; }
.ft-hero .video-block { margin-bottom: 24px; }
.ft-hero .cta-btn { margin-top: 12px; }

/* Man vs Boy */
.fate-section {
  padding: 12px 24px 12px;
  position: relative;
  z-index: 1;
}
.fate-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 10px;
  text-align: center;
}
.fate-sub {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 44px;
  text-align: center;
}
.fate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: left;
}
.fate-col h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.fate-col.man h3 { color: var(--gold); }
.fate-col.boy h3 { color: var(--text-dim); }
.fate-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fate-col li {
  font-size: 0.96rem;
  font-weight: 400;
  color: var(--white);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.fate-col.boy li { color: var(--text-dim); }
.fate-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.fate-col.boy li::before { background: #3a3830; }

/* ── Path Chooser (interactive) ── */
.path-chooser {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}
.path-btn {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(201,168,76,0.25);
  padding: 20px 48px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.path-btn:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201,168,76,0.15);
}
.path-btn[data-path="man"] { color: var(--gold); border-color: rgba(201,168,76,0.35); }
.path-btn[data-path="boy"] { color: var(--text-dim); border-color: rgba(201,168,76,0.12); }

/* Selected state — active grows, inactive shrinks slightly */
.path-btn.active {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(201,168,76,0.20);
}
.path-btn.active[data-path="man"] {
  border-color: var(--gold);
}
.path-btn.active[data-path="boy"] {
  border-color: var(--text-dim);
  box-shadow: 0 0 30px rgba(112,107,96,0.12);
}
.path-btn.inactive {
  opacity: 0.4;
  transform: scale(0.92);
}

/* Result area */
.path-result {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.5s ease 0.2s;
  text-align: left;
  max-width: 500px;
  margin: 0 auto 32px;
}
.path-result.visible {
  max-height: 500px;
  opacity: 1;
}
.path-traits {
  display: none;
}
.path-traits.visible {
  display: block;
}
.path-traits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0 0 8px;
}
.path-traits li {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  padding-left: 30px;
  position: relative;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.path-traits.visible li {
  opacity: 1;
  transform: translateY(0);
}
#traits-boy li { color: var(--text-dim); }
.path-traits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#traits-man li::before {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E");
}
#traits-boy li::before {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23706b60' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E");
}

/* Testimonials grid */
.testimonials-section {
  padding: 12px 24px 48px;
  position: relative;
  z-index: 1;
}
.testimonials-section .section-heading { margin-bottom: 10px; }
.testimonials-section .section-sub { margin-bottom: 44px; }
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto 40px;
}
.testimonial-grid .testimonial-card {
  width: calc((100% - 40px) / 3);
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.14);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 0 40px rgba(201,168,76,0.04);
}
.testimonial-card-video {
  width: 100%;
  aspect-ratio: 9 / 12;
  background: #151513;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.testimonial-card-body { padding: 18px; }
.testimonial-card-body .meta {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testimonial-card-body .quote {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--white);
}

/* Application form — Typeform embed */
.apply-section {
  padding: 12px 24px 60px;
  position: relative;
  z-index: 1;
}
.typeform-wrap {
  max-width: 720px;
  margin: 0 auto;
  min-height: 600px;
}
.typeform-wrap > div[data-tf-widget],
.typeform-wrap > div[data-tf-live] {
  width: 100%;
  min-height: 600px;
}
/* Keep the Typeform widget iframe contained — don't let it go fullscreen */
.typeform-wrap iframe { height: 600px !important; max-height: 600px !important; }

/* =============================================
   BOOK PAGE
   ============================================= */
.book-hero { padding: 20px 24px 48px; }
.book-hero .section-heading { margin-bottom: 18px; }
.book-hero .section-sub { margin-bottom: 16px; }

.calendar-embed {
  max-width: 720px;
  margin: 0 auto 48px;
  position: relative;
}
.calendar-embed iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: none;
}

/* Features list */
.features-section {
  padding: 12px 24px 48px;
  position: relative;
  z-index: 1;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 36px;
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: left;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--gold); }
.feature-text {
  font-size: 0.96rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.55;
}
.feature-text strong {
  font-weight: 600;
  color: var(--white);
}

/* =============================================
   MESSAGE FROM BABY PAGE
   ============================================= */
.countdown-bar {
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 100;
}
.countdown-bar .time {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.confirm-badge {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 7px 20px;
  margin-bottom: 24px;
}
.countdown-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 48px;
}
.countdown-unit { text-align: center; }
.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  color: var(--white);
  line-height: 1;
}
.countdown-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 6px;
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  margin-top: -12px;
}
.step-label {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 14px;
}
.step-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
  color: var(--white);
  margin-bottom: 0;
  text-align: center;
  white-space: nowrap;
}
/* Add top margin when step-heading is followed by video */
.step-heading + .video-block,
.step-heading + .video-wrap {
  margin-top: 24px;
}
/* Breathing room when step-heading is followed directly by testimonial grid */
.step-heading + .testimonial-grid { margin-top: 56px; }
/* Breathing room between a step funnel-section and the faq-list below it */
.faq-section .funnel-section + .faq-list { margin-top: 56px; }
/* FAQ answer videos need some top margin */
.faq-answer .video-block { margin-top: 12px; }

/* FAQ accordions */
.faq-section {
  padding: 12px 24px 12px;
  position: relative;
  z-index: 1;
}
.faq-list {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid rgba(201,168,76,0.12);
  background: transparent;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 16px;
}
.faq-question h3 {
  font-family: var(--font-cond);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
}
.faq-toggle {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 22px 22px;
}
.faq-answer-text {
  font-size: 0.96rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 16px;
  text-align: left;
}
.faq-answer .video-block { max-width: 100%; }
.faq-answer .video-block .video-inner { aspect-ratio: 16 / 9; }

/* =============================================
   PRE-CALL PAGE
   ============================================= */
.reasons-list {
  max-width: 660px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}
.reason-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.reason-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.reason-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--white);
}
.reason-text strong {
  font-weight: 600;
  color: var(--gold-soft);
}

/* Eliminates line */
.eliminates-line {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.4vw, 2.6rem);
  color: var(--white);
  text-align: center;
  letter-spacing: 0.02em;
}
.eliminates-line .accent { color: var(--gold); }

/* I've Been There */
.been-there-section {
  padding: 0 24px 16px;
  position: relative;
  z-index: 1;
}
.been-there-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.been-there-photo .been-there-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.18);
  box-shadow: 0 0 60px rgba(201,168,76,0.06);
}
.been-there-text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 14px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 640px) {
  .landing { padding: 20px 16px 80px; }
  #static-logo { width: 56px; height: 38px; }
  .title-line { font-size: clamp(4.5rem, 17vw, 6.5rem); }
  .subtitle { font-size: 0.98rem; }
  .section-sub { font-size: 0.98rem; }
  .mobile-break { display: block; }
  .play-btn { width: 44px; height: 44px; }
  .cta-btn { padding: 15px 44px; font-size: 1rem; }
  .bg-glow { inset: -60%; background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(201,168,76,0.10) 0%, transparent 60%); }

  /* Funnel pages */
  .page-header-logo { width: 54px; height: 37px; }
  .section-heading { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .section-heading.hero-size { font-size: clamp(4.5rem, 17vw, 6.5rem); }
  .fate-heading { font-size: clamp(2rem, 7vw, 2.8rem); }
  .fate-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-grid .testimonial-card { width: 100%; max-width: 340px; }
  .features-grid { grid-template-columns: 1fr; max-width: 440px; }
  .typeform-wrap,
  .typeform-wrap > div[data-tf-widget],
  .typeform-wrap > div[data-tf-live] { min-height: 520px; }
  .typeform-wrap > div[data-tf-widget] { height: 520px; }
  .typeform-wrap iframe { height: 520px !important; max-height: 520px !important; }
  .been-there-inner { grid-template-columns: 1fr; gap: 32px; }
  .been-there-photo .been-there-img { max-width: 300px; margin: 0 auto; }
  .been-there-text .section-heading { text-align: center !important; }
  .divider { margin: 28px auto; }
  .step-heading { white-space: normal; font-size: clamp(1.2rem, 4.5vw, 1.6rem); }
  .path-btn { padding: 16px 28px; font-size: 1.4rem; }
  .path-chooser { gap: 14px; }
}
@media (max-height: 760px) and (min-width: 641px) {
  .landing { padding: 20px 24px 70px; }
  .title-line { font-size: clamp(3rem, 8vw, 5.8rem); }
  .title { margin-bottom: 10px; }
  .subtitle { margin-bottom: 22px; }
  .video-wrap { margin-bottom: 22px; max-width: 480px; }
  .eyebrow { margin-bottom: 8px; }
  .gold-rule { margin-bottom: 12px; }
}
@media (max-height: 600px) and (min-width: 641px) {
  .landing { padding: 16px 24px 60px; }
  .title-line { font-size: clamp(2.5rem, 7vw, 4.5rem); }
  .video-wrap { max-width: 400px; }
}
