/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root{
  /* Color */
  --color-bg:        #0a0908;
  --color-bg-alt:     #131110;
  --color-bg-raised:  #17140f;
  --color-gold:       #b08650;
  --color-gold-bright:#d9b36c;
  --color-gold-dim:   rgba(176,134,80,0.28);
  --color-ivory:      #ece4d6;
  --color-ivory-dim:  #9d968a;
  --color-line:       rgba(176,134,80,0.18);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 2.75rem;
  --space-xl: 3.25rem;
  --space-2xl: 4.5rem;

  /* Radius & transitions */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-fast: .3s;
  --dur-med: .6s;
  --dur-slow: 1.1s;

  --container: 1240px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  /* Exempt the primary CTA's glow/float — small, purely decorative loops,
     not the kind of large/fast motion this preference exists to stop. */
  .btn--gold, .btn-float{
    animation-duration: 2.8s !important;
    animation-iteration-count: infinite !important;
  }
}

body{
  margin:0;
  background: var(--color-bg);
  color: var(--color-ivory);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ font-family: var(--font-display); font-weight: 500; margin:0; color: var(--color-ivory); }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; background:none; border:none; color: inherit; }

::selection{ background: var(--color-gold); color: var(--color-bg); }

:focus-visible{
  outline: 1px solid var(--color-gold-bright);
  outline-offset: 3px;
}

.grain{
  position: fixed; inset: 0; pointer-events:none; z-index: 999;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow{
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin: 0 0 var(--space-sm);
}

.section-title{
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}
.section-title--display{ font-size: clamp(2.4rem, 5vw, 3.6rem); }

.section-kicker{
  font-size: 0.95rem;
  color: var(--color-ivory-dim);
  margin-bottom: var(--space-md);
}

.section-text{
  max-width: 46ch;
  color: rgba(236,228,214,0.82);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.section-quote{
  text-align:center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--color-gold-bright);
  max-width: 30ch;
  margin: var(--space-xl) auto 0;
  padding-bottom: var(--space-xl);
}

/* Reveal-on-scroll: single subtle utility, applied sparingly */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  position: relative;
  display: inline-flex;
  align-items:center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  overflow: hidden;
  isolation: isolate;
  transition: transform .38s cubic-bezier(.22,1.4,.36,1),
              box-shadow .38s var(--ease),
              background .38s var(--ease),
              color .3s var(--ease),
              border-color .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
/* Shine sweep on hover — a light streak passes through the button */
.btn::before{
  content:'';
  position:absolute; top:0; left:-75%;
  width:45%; height:100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-22deg);
  transition: left .65s ease;
  z-index: 1;
  pointer-events: none;
}
.btn:hover::before{ left: 135%; }
.btn > *{ position: relative; z-index: 2; }

/* Touch equivalent of :hover — added/removed briefly by script.js on tap,
   since touchscreens have no real hover and were skipping this entirely. */
.btn.is-touched::before{ left: 135%; }
.btn.is-touched{ transform: translateY(-3px) scale(1.035); }

.btn:hover{ transform: translateY(-3px) scale(1.035); }
.btn:active{ transform: translateY(-1px) scale(0.965); transition-duration: .12s; }
.btn:focus-visible{ outline: 2px solid var(--color-gold-bright); outline-offset: 3px; }

.btn--gold{
  background: linear-gradient(180deg, var(--color-gold-bright), var(--color-gold));
  color: #14100a;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 8px 24px -10px rgba(176,134,80,0.55);
  animation: btnGoldGlow 2.8s ease-in-out infinite;
}
@keyframes btnGoldGlow{
  0%, 100%{ box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 8px 24px -10px rgba(176,134,80,0.55); }
  50%{ box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 16px 36px -10px rgba(217,179,108,0.85); }
}
/* animation-name (not just play-state) is released on hover/active so the
   explicit box-shadow below can actually take effect — a running/paused
   CSS animation otherwise always wins over a normal rule for the same
   property, which was the cause of the snapping glitch. */
.btn--gold:hover{
  animation-name: none;
  transform: translateY(-4px) scale(1.045);
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 18px 40px -8px rgba(217,179,108,0.95);
}
.btn--gold:active{
  animation-name: none;
  transform: translateY(-1px) scale(0.965);
  transition-duration: .12s;
}
/* Intentionally NOT disabled under prefers-reduced-motion: this is a subtle,
   purely decorative glow on the primary CTA (no large/fast motion), so it
   stays visible even for visitors whose OS has "Reduce Motion" turned on —
   which is the default on a lot of phones and was why it looked broken. */

/* Continuous idle float — lives on a separate wrapper element so it can
   never fight with the hover/active transform above (two different
   elements, two independent transforms, always smooth). */
.btn-float{
  display: inline-block;
  animation: btnFloat 2.8s ease-in-out infinite;
}
@keyframes btnFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-7px); }
}
/* Also left running under prefers-reduced-motion — see note above .btn--gold. */

.btn--ghost{
  border: 1px solid var(--color-line);
  color: var(--color-ivory);
  background: rgba(217,179,108,0.02);
}
.btn--ghost:hover{
  border-color: var(--color-gold);
  color: var(--color-gold-bright);
  background: rgba(217,179,108,0.1);
  box-shadow: 0 10px 26px -12px rgba(217,179,108,0.4);
}

.btn--outline{
  border-bottom: 1px solid var(--color-gold);
  padding: 0.3rem 0;
  border-radius: 0;
  color: var(--color-gold-bright);
  font-weight: 600;
}
.btn--outline:hover{
  color: var(--color-ivory);
  border-color: var(--color-ivory);
  transform: translateX(2px);
}
.btn--outline:active{ transform: translateX(2px) scale(0.98); }

.play-dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-gold-bright);
  display: inline-block;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  padding: 1.4rem 0;
  transition: padding var(--dur-med) var(--ease), background var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled{
  padding: 0.9rem 0;
  background: rgba(10,9,8,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--color-line);
}
.navbar__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.navbar__brand{
  display:flex; align-items:center; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-ivory);
  margin-right: auto;
}
.logo-mark{ color: var(--color-gold-bright); display:flex; }

.navbar__links{
  display:flex;
  gap: var(--space-md);
  font-size: 0.85rem;
}
.navbar__links a{
  position: relative;
  color: rgba(236,228,214,0.78);
  transition: color var(--dur-fast) var(--ease);
  padding: 0.2rem 0;
}
.navbar__links a::after{
  content:'';
  position:absolute; left:0; right:100%; bottom:-2px;
  height:1px; background: var(--color-gold-bright);
  transition: right var(--dur-med) var(--ease);
}
.navbar__links a:hover{ color: var(--color-ivory); }
.navbar__links a:hover::after{ right: 0; }

.navbar__cta{ font-size: 0.78rem; padding: 0.65rem 1.4rem; }

.navbar__toggle{
  display:none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px; height: 22px;
}
.navbar__toggle span{
  display:block; height:1px; width:100%;
  background: var(--color-ivory);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.navbar__toggle.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2){ opacity:0; }
.navbar__toggle.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.nav-backdrop{ display:none; }

/* ============================================================
   HERO + PODCAST (merged)
   ============================================================ */
.hero{
  position: relative;
  display:flex;
  flex-direction: column;
  justify-content: center;
  padding: 7.5rem var(--space-md) var(--space-2xl);
  overflow: hidden;
  background: var(--color-bg);
}
.hero__bg-video{
  position:absolute; inset: 0;
  width:100%; height:100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(0.25) brightness(0.85) contrast(1.05);
}
.hero__wash{
  position:absolute; inset:0;
  z-index: 1;
  background: radial-gradient(120% 90% at 50% 8%, rgba(217,179,108,0.18), transparent 60%);
  mix-blend-mode: color;
}
.hero__vignette{
  position:absolute; inset:0;
  z-index: 1;
  /* Lightened so the background video reads clearly; still darkens the
     top/bottom edges just enough to keep the copy legible. */
  background:
    linear-gradient(180deg, rgba(10,9,8,0.5) 0%, rgba(10,9,8,0.18) 26%, rgba(10,9,8,0.28) 60%, rgba(10,9,8,0.75) 100%);
}

.hero__inner{
  position:relative; z-index:2;
  max-width: var(--container);
  margin: 0 auto;
  width:100%;
  padding: 0 var(--space-md);
}

.hero__copy{ max-width: 620px; margin: 0 auto; text-align: center; }
.hero__copy > *{
  opacity:0; transform: translateY(18px);
}
[data-stagger].stagger-in > *{
  animation: heroIn var(--dur-slow) var(--ease) forwards;
}
[data-stagger].stagger-in > *:nth-child(1){ animation-delay: .05s; }
[data-stagger].stagger-in > *:nth-child(2){ animation-delay: .18s; }
[data-stagger].stagger-in > *:nth-child(3){ animation-delay: .32s; }
[data-stagger].stagger-in > *:nth-child(4){ animation-delay: .46s; }
[data-stagger].stagger-in > *:nth-child(5){ animation-delay: .6s; }
[data-stagger].stagger-in > *:nth-child(6){ animation-delay: .74s; }
[data-stagger].stagger-in > *:nth-child(7){ animation-delay: .88s; }
@keyframes heroIn{ to{ opacity:1; transform: translateY(0); } }

.hero__badge{
  display:inline-flex;
  margin: 0 auto var(--space-sm);
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--color-gold-dim);
  border-radius: 999px;
  background: rgba(217,179,108,0.06);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
}

.hero__headline{
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-sm);
}
.hero__headline-accent{ color: var(--color-gold-bright); font-style: italic; }

.hero__subtext{
  font-size: 1rem;
  color: rgba(236,228,214,0.82);
  max-width: 46ch;
  margin: 0 auto var(--space-md);
}

.hero__watch-pill{
  display:inline-flex; align-items:center;
  margin: 0 auto var(--space-sm);
  padding: 0.5rem 1.1rem;
  border: 1px dashed var(--color-gold-dim);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-bright);
  background: rgba(217,179,108,0.05);
}

.hero__video-wrap{
  max-width: 420px;
  margin: 0 auto var(--space-md);
}
.video-card--featured .video-card__frame{
  border-color: var(--color-gold-dim);
  box-shadow: 0 20px 60px -20px rgba(217,179,108,0.35), 0 0 0 1px rgba(217,179,108,0.08);
}
.video-card--featured .video-card__play{
  width: 68px; height: 68px;
}
.video-card__badge{
  position:absolute; top: 0.7rem; left: 0.7rem;
  display:flex; align-items:center; gap: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--color-ivory-dim);
  background: rgba(10,9,8,0.55);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  z-index: 2;
}
.hero__video-wrap .video-card__meta{ text-align: center; }

.hero__actions{ display:flex; justify-content:center; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-sm); }

.hero__trust{
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--color-ivory-dim);
}

.hero__credit{
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-ivory);
}
.hero__credit span{
  display:inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin-left: 0.6rem;
  padding-left: 0.6rem;
  border-left: 1px solid var(--color-line);
}

/* ============================================================
   MID-PAGE CTA BANNER
   ============================================================ */
.cta-banner{
  padding: var(--space-xl) var(--space-md);
}
.cta-banner__inner{
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
}
.cta-banner__inner p{
  margin: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--color-ivory);
}
.cta-banner__inner .btn{
  align-self: center;
}

/* ============================================================
   SHARED: two-column split sections
   ============================================================ */
.podcast, .explain, .webinar{
  padding: var(--space-2xl) var(--space-md);
  border-top: 1px solid var(--color-line);
}
.podcast__inner, .webinar__inner{
  max-width: var(--container);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-xl);
  align-items:center;
}
.explain__inner{
  max-width: var(--container);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-xl);
  align-items:start;
}
.explain__inner--single{
  display:block;
  max-width: 720px;
  text-align:center;
}
.explain__inner--single .section-title{ text-align:center; }
.section-text--wide{ max-width: 62ch; margin-left:auto; margin-right:auto; }

.webinar__inner--single{
  display:block;
  max-width: 620px;
  text-align:center;
}
.webinar__inner--single .webinar__copy{ margin-bottom: var(--space-lg); }
.webinar__inner--single .eyebrow{ text-align:center; }
.webinar__inner--single .video-card{ text-align:left; }

.mic-icon{ color: var(--color-gold); display:inline-flex; margin-bottom: var(--space-sm); }

/* ============================================================
   VIDEO CARD (podcast + webinar)
   ============================================================ */
.video-card{
  position: relative;
}
.video-card__frame{
  position:relative;
  aspect-ratio: 16/10;
  overflow:hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.video-card__thumb{
  width:100%; height:100%; object-fit:cover;
  transition: transform 1.4s var(--ease);
}
.video-card__frame:hover{
  transform: translateY(-6px) scale(1.015);
  border-color: var(--color-gold);
  box-shadow: 0 22px 46px -18px rgba(217,179,108,0.45);
}
.video-card__frame:hover .video-card__thumb{ transform: scale(1.06); }
.video-card__frame::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,9,8,0) 40%, rgba(10,9,8,0.75) 100%);
}
.video-card__play{
  position:absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(10,9,8,0.5);
  border: 1px solid var(--color-gold-bright);
  color: var(--color-gold-bright);
  display:flex; align-items:center; justify-content:center;
  z-index: 2;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.22,1.4,.36,1), background .3s var(--ease), box-shadow .3s var(--ease);
  animation: playPulse 2.4s ease-out infinite;
}
@keyframes playPulse{
  0%{ box-shadow: 0 0 0 0 rgba(217,179,108,0.45); }
  70%{ box-shadow: 0 0 0 16px rgba(217,179,108,0); }
  100%{ box-shadow: 0 0 0 0 rgba(217,179,108,0); }
}
.video-card__play svg{ margin-left: 3px; }
.video-card__frame:hover .video-card__play{
  transform: translate(-50%,-50%) scale(1.16);
  background: var(--color-gold-bright);
  color: var(--color-bg);
  animation-play-state: paused;
}
.video-card__play:active{ transform: translate(-50%,-50%) scale(0.96); }
@media (prefers-reduced-motion: reduce){
  .video-card__play{ animation: none; }
}
.video-card__meta{ padding-top: var(--space-sm); z-index:2; position:relative; }
.video-card__meta h3{ font-size: 1.15rem; margin-bottom: 0.25rem; }
.video-card__meta p{ font-size: 0.8rem; color: var(--color-ivory-dim); }

/* ============================================================
   WEBINAR extras
   ============================================================ */
.info-row{
  display:flex; gap: var(--space-md); flex-wrap:wrap;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-line);
}
.info-row li{
  font-size: 0.85rem;
  color: var(--color-ivory);
  padding-left: 1rem;
  border-left: 1px solid var(--color-gold);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-line);
}
.testimonials__head{
  max-width: var(--container);
  margin: 0 auto var(--space-lg);
  padding: 0 var(--space-md);
  text-align:center;
}
.testimonials__head .section-title{ display:inline-block; }

/* Two real long-form testimonials, side by side */
.testimonials__videos{
  max-width: var(--container);
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-md);
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Divider label before the reel row */
.testimonials__reels-label{
  text-align:center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ivory-dim);
  margin-bottom: var(--space-md);
}

/* Vertical Instagram Reel testimonials */
.reel-carousel{ position:relative; }
.reel-row{
  display:flex;
  justify-content:center;
  gap: var(--space-md);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--space-md);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reel-row::-webkit-scrollbar{ display:none; }

.reel-card{ flex: 0 0 clamp(110px, 17%, 160px); scroll-snap-align: start; }
.reel-card__frame{
  position: relative;
  width:100%;
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow:hidden;
  border: 1px solid var(--color-line);
  background: linear-gradient(155deg, var(--color-bg-raised), var(--color-bg-alt) 60%, var(--color-bg));
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.reel-card__frame:hover{
  transform: translateY(-6px) scale(1.02);
  border-color: var(--color-gold);
  box-shadow: 0 18px 38px -16px rgba(217,179,108,0.4);
}
.reel-card__frame:hover .video-card__play{
  transform: translate(-50%,-50%) scale(1.16);
  background: var(--color-gold-bright);
  color: var(--color-bg);
  animation-play-state: paused;
}
.reel-card__thumb{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  z-index: 0;
  transition: transform 1.4s var(--ease);
}
.reel-card__frame:hover .reel-card__thumb{ transform: scale(1.06); }
.reel-card__frame::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,9,8,0) 45%, rgba(10,9,8,0.7) 100%);
  z-index: 1;
}
.reel-card__badge{
  position:absolute; top: 0.6rem; left: 0.6rem;
  display:flex; align-items:center; gap: 0.3rem;
  font-size: 0.68rem;
  color: var(--color-ivory-dim);
  background: rgba(10,9,8,0.5);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  z-index: 2;
}
.video-card__play--sm{
  width: 42px; height:42px;
  animation: playPulseSm 2.4s ease-out infinite;
}
@keyframes playPulseSm{
  0%{ box-shadow: 0 0 0 0 rgba(217,179,108,0.4); }
  70%{ box-shadow: 0 0 0 10px rgba(217,179,108,0); }
  100%{ box-shadow: 0 0 0 0 rgba(217,179,108,0); }
}
@media (prefers-reduced-motion: reduce){
  .video-card__play--sm{ animation: none; }
}

/* Prev/next arrows for the reel row — hidden by default, shown only on mobile where scrolling is needed */
.reel-arrow{
  display:none;
  position:absolute; top:50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(10,9,8,0.65);
  border: 1px solid var(--color-gold-dim);
  color: var(--color-ivory);
  font-size: 1.2rem;
  align-items:center; justify-content:center;
  z-index: 5;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.22,1.4,.36,1), border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.reel-arrow:hover{
  border-color: var(--color-gold);
  color: var(--color-gold-bright);
  background: rgba(10,9,8,0.85);
  transform: translateY(-50%) scale(1.12);
}
.reel-arrow:active{ transform: translateY(-50%) scale(0.92); }
.reel-arrow--prev{ left: 4px; }
.reel-arrow--next{ right: 4px; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits{
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) var(--space-md);
  border-top: 1px solid var(--color-line);
}
.benefits::before{
  content:'';
  position:absolute; inset:0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.78) 45%, rgba(10,9,8,0.9) 100%),
    url('assets/benefits-bg.jpg') center/cover no-repeat;
}
.benefits__inner{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}
.benefits__head{
  max-width: 620px;
  margin-bottom: var(--space-lg);
}
.benefits__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 3rem;
}
.benefits__grid li{
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(236,228,214,0.85);
}
.benefits__dot{
  flex: 0 0 auto;
  width: 6px; height: 6px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--color-gold-bright);
}
.benefits__text{
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 600;
}
.benefits__cta{
  margin-top: var(--space-lg);
  text-align: center;
}

/* ============================================================
   DISCOVERY CALL DETAILS
   ============================================================ */
.discovery{
  padding: var(--space-2xl) var(--space-md);
  border-top: 1px solid var(--color-line);
}
.discovery__inner{
  max-width: var(--container);
  margin: 0 auto;
}
.discovery__head{
  max-width: 620px;
  margin-bottom: var(--space-lg);
}
.discovery__cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-md);
}
.discovery__col h3{
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.discovery__col ul{
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.discovery__col li{
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(236,228,214,0.85);
  padding-left: 1rem;
  border-left: 1px solid var(--color-line);
}
.discovery__note{
  margin-top: var(--space-lg);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-gold-bright);
  font-size: 1.05rem;
}

/* ============================================================
   1:1 CALL CTA
   ============================================================ */
.call{
  position: relative;
  padding: var(--space-2xl) var(--space-md);
  overflow:hidden;
  border-top: 1px solid var(--color-line);
}
.call__bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.28;
  filter: sepia(0.4) contrast(1.05);
}
.call__overlay{
  position:absolute; inset:0;
  background: radial-gradient(80% 60% at 50% 35%, rgba(10,9,8,0.35), var(--color-bg) 85%);
}
.call__inner{
  position:relative; z-index:2;
  max-width: 640px;
  margin: 0 auto;
  text-align:center;
}
.call__headline{
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}
.call__lede{
  color: rgba(236,228,214,0.82);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}
.call__benefits{
  display:flex; justify-content:center; gap: var(--space-md); flex-wrap:wrap;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-line);
}
.call__benefits li{ font-size: 0.85rem; color: var(--color-ivory-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  border-top: 1px solid var(--color-line);
  padding: var(--space-xl) var(--space-md) var(--space-md);
}
.footer__inner{
  max-width: var(--container);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.footer__col h3{
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.footer__col p{ font-size: 0.88rem; color: var(--color-ivory-dim); margin-bottom: 0.4rem; }
.footer__col a:hover{ color: var(--color-gold-bright); }
.footer__col--center{ text-align:center; }
.footer__col--right{ text-align:right; }

.footer__socials{ display:flex; gap: 0.7rem; justify-content:center; }
.footer__socials a{
  width: 34px; height:34px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 0.68rem;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.footer__socials a:hover{ border-color: var(--color-gold); color: var(--color-gold-bright); }

.footer__brand{
  display:inline-flex; align-items:center; gap: 0.5rem;
  justify-content:flex-end;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}
.footer__quote{ font-style: italic; font-family: var(--font-display); color: var(--color-ivory-dim); font-size: 0.9rem; }

.footer__bottom{
  max-width: var(--container);
  margin: 0 auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-line);
  display:flex; flex-wrap:wrap; gap: var(--space-sm);
  font-size: 0.78rem;
  color: var(--color-ivory-dim);
}
.footer__bottom--center{ justify-content:center; text-align:center; }
.footer__credit-line a{ color: var(--color-ivory-dim); text-decoration: underline; text-underline-offset: 2px; }
.footer__credit-line a:hover{ color: var(--color-gold-bright); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox{
  position: fixed; inset:0; z-index: 1000;
  display:flex; align-items:center; justify-content:center;
  padding: var(--space-md);
}
.lightbox[hidden]{
  display: none;
}
.lightbox__backdrop{
  position:absolute; inset:0;
  background: rgba(10,9,8,0.92);
}
.lightbox__frame{
  position:relative; z-index:1;
  width:100%; max-width: 900px;
  aspect-ratio: 16/9;
  max-height: 88vh;
}
.lightbox__frame--portrait{
  max-width: min(92vw, 400px);
}
.lightbox__frame iframe, .lightbox__frame video{ width:100%; height:100%; border-radius: var(--radius-md); background: #000; }
.lightbox__close{
  position:absolute; top:-2.8rem; right:0;
  width: 40px; height: 40px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: rgba(10,9,8,0.6);
  color: var(--color-ivory);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.22,1.4,.36,1), border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.lightbox__close:hover{
  color: var(--color-gold-bright);
  border-color: var(--color-gold);
  background: rgba(10,9,8,0.85);
  transform: rotate(90deg) scale(1.1);
}
.lightbox__close:active{ transform: rotate(90deg) scale(0.92); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px){
  .podcast__inner, .webinar__inner, .explain__inner{
    grid-template-columns: 1fr;
  }

  .footer__inner{ grid-template-columns: 1fr; text-align:center; gap: var(--space-md); }
  .footer__col--right{ text-align:center; }
  .footer__brand{ justify-content:center; }
}

/* ============================================================
   RESPONSIVE — DESKTOP
   (base rules above were tuned for narrow screens; this gives
   the hero real desktop scale instead of a stretched mobile
   layout — taller section, wider copy column, bigger type)
   ============================================================ */
@media (min-width: 701px){
  .hero{
    min-height: 88vh;
    padding-top: 8.5rem;
    padding-bottom: var(--space-2xl);
  }

  /* Two-column layout: copy left, podcast card right,
     CTA + trust line span full width, centered, at the bottom. */
  .hero__copy{
    max-width: none;
    width: 100%;
    margin: 0;
    text-align: left;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    grid-template-areas:
      "badge    video"
      "headline video"
      "subtext  video"
      "pill     video"
      "actions  actions"
      "trust    trust";
    column-gap: clamp(2rem, 5vw, 4.5rem);
    row-gap: 0;
    align-items: start;
  }

  .hero__badge{
    grid-area: badge;
    margin: 0 0 var(--space-sm);
    font-size: 0.72rem;
    padding: 0.45rem 1.25rem;
  }
  .hero__headline{
    grid-area: headline;
    font-size: clamp(2.6rem, 4.6vw, 3.75rem);
  }
  .hero__subtext{
    grid-area: subtext;
    font-size: 1.15rem;
    max-width: 46ch;
    margin: 0 0 var(--space-md);
  }
  .hero__watch-pill{
    grid-area: pill;
    margin: 0 0 var(--space-sm);
    font-size: 0.85rem;
  }

  .hero__video-wrap{
    grid-area: video;
    max-width: 400px;
    width: 100%;
    margin: 0;
    justify-self: end;
    align-self: start;
    margin-top: 2.6rem; /* roughly lines up with the headline, not the badge */
  }

  /* CTA + trust line: full width, centered, sitting below both columns */
  .hero__actions{
    grid-area: actions;
    justify-content: center;
    margin-top: var(--space-lg);
  }
  .hero__actions .btn{ padding: 0.85rem 1.9rem; font-size: 1rem; }
  .hero__trust{
    grid-area: trust;
    text-align: center;
    font-size: 0.85rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 700px){
  :root{ --space-2xl: 2.75rem; --space-xl: 2rem; --space-lg: 1.75rem; --space-md: 1.25rem; }

  .navbar__links{
    position: fixed; inset: 0 0 0 auto;
    width: min(78vw, 320px);
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease);
    border-left: 1px solid var(--color-line);
    z-index: 2;
  }
  .navbar__links.is-open{ transform: translateX(0); }
  .navbar__links a{ font-size: 1.05rem; }
  .navbar__toggle{ display:flex; position: relative; z-index: 3; }
  .navbar__cta{ display:none; }

  .nav-backdrop{
    display: block;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.72);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur-med) var(--ease), visibility 0s linear var(--dur-med);
    z-index: 1;
  }
  .nav-backdrop.is-open{ opacity: 1; visibility: visible; transition: opacity var(--dur-med) var(--ease); }

  .hero{ padding: 5.5rem 1rem var(--space-lg); }
  .hero__inner{ padding: 0 0.15rem; }
  .hero__badge{ font-size: 0.58rem; padding: 0.35rem 0.85rem; }
  .hero__headline{ font-size: clamp(1.5rem, 7vw, 2rem); margin-bottom: 0.5rem; }
  .hero__subtext{ font-size: 0.9rem; margin-bottom: var(--space-sm); }
  .hero__watch-pill{ font-size: 0.72rem; padding: 0.45rem 0.9rem; white-space: normal; }
  .hero__video-wrap{ max-width: 280px; }
  .hero__actions{ flex-direction:column; align-items: stretch; gap: 0.5rem; margin-bottom: 0.6rem; }
  .hero__actions .btn{ justify-content:center; padding: 0.65rem 0.9rem; font-size: 0.85rem; }
  .hero__trust{ font-size: 0.7rem; }
  .hero__credit{ font-size: 0.78rem; }
  .hero__credit span{ font-size: 0.62rem; }


  .info-row{ flex-direction:column; gap: 0.6rem; }
  .benefits__grid{ grid-template-columns: 1fr; gap: 0.75rem; }
  .benefits::before{ background-image: linear-gradient(180deg, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.78) 45%, rgba(10,9,8,0.9) 100%), url('assets/benefits-bg-mob.png'); }
  .discovery__cols{ grid-template-columns: 1fr; gap: var(--space-md); }
  .testimonials__videos{ grid-template-columns: 1fr; }
  .reel-row{ justify-content:flex-start; gap: 0.55rem; }
  .reel-card{ flex-basis: 40%; }
  .reel-arrow{ display:flex; }
  .video-card__play--sm{ width: 32px; height: 32px; }
  .reel-card__badge{ font-size: 0.6rem; padding: 0.15rem 0.45rem; top: 0.4rem; left: 0.4rem; }

  .call__benefits{ flex-direction:column; gap: 0.6rem; }
}

@media (max-width: 380px){
  .hero{ padding: 3.75rem 0.85rem var(--space-md); }
  .hero__headline{ font-size: clamp(1.15rem, 6.8vw, 1.5rem); }
  .hero__video-wrap{ max-width: 240px; }
}