/* ============================================================================
   LANDING PAGES - lead magnets (e-book, checklists) & podcast
   New patterns only; layout, cards, FAQ and CTA all come from main.css.
   ========================================================================== */

.section[id]{scroll-margin-top:6rem}

/* ---- OFFER CARD -----------------------------------------------------------
   The lead-magnet sign-up is a GHL form slot rendered in-page, which
   arrived letterboxed with its own scrollbars and fought the page styling.
   This card carries the offer and sends people straight to the real form. */
.offer-card{
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:.9rem;
  padding:clamp(2rem,4vw,2.8rem);
  border-radius:var(--r-xl);
  background:var(--navy);color:#fff;
  box-shadow:var(--shadow-lift);
}
.offer-card::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(75% 110% at 100% 0%,rgba(56,145,254,.34),transparent 58%),
    radial-gradient(60% 90% at 0% 100%,rgba(96,36,149,.5),transparent 62%);
}
.offer-card>*{position:relative;z-index:1}
.offer-card img{
  width:min(180px,60%);height:auto;margin-bottom:.3rem;
  filter:drop-shadow(0 18px 34px rgba(0,0,0,.4));
}
.offer-card .badge-soft{background:rgba(56,145,254,.2);color:#9CC5FF}
.offer-card h3{
  color:#fff;font-size:clamp(1.35rem,2.3vw,1.7rem);line-height:1.25;
  max-width:22ch;margin:0;
}
.offer-card p{color:rgba(255,255,255,.78);font-size:var(--fs-small);max-width:38ch;margin:0}
.offer-card .btn{margin-top:.6rem}
.offer-note{
  display:flex;flex-wrap:wrap;justify-content:center;gap:.4rem 1.1rem;
  margin-top:.5rem;font-size:var(--fs-tiny);color:rgba(255,255,255,.6);
}
.offer-note span{display:inline-flex;align-items:center;gap:.35rem}
.offer-note svg{width:13px;height:13px;color:#7FB8FF}

/* inline CTA strip used mid-page */
.cta-strip{
  display:grid;gap:1.4rem;align-items:center;
  padding:clamp(1.6rem,3.5vw,2.4rem) clamp(1.6rem,4vw,2.6rem);
  border-radius:var(--r-xl);
  background:linear-gradient(135deg,var(--purple-tint),var(--blue-tint));
  border:1px solid rgba(96,36,149,.14);
}
@media(min-width:820px){.cta-strip{grid-template-columns:1fr auto}}
.cta-strip h3{margin:0 0 .35rem;font-size:clamp(1.2rem,2.1vw,1.5rem)}
.cta-strip p{margin:0;font-size:var(--fs-small);max-width:60ch}
.cta-strip .btn{white-space:nowrap}

/* ---- SPLIT HERO ----------------------------------------------------------- */
.lp-hero{
  position:relative;overflow:clip;
  padding:calc(var(--header-h) + clamp(1.2rem,2.5vw,2rem)) 0 clamp(2.8rem,6vw,4.5rem);
  background:var(--bg-cream);
}
.lp-hero>*{position:relative;z-index:1}
.lp-grid{display:grid;gap:clamp(2rem,5vw,3.6rem);align-items:center}
@media(min-width:960px){.lp-grid{grid-template-columns:1.06fr .94fr}}
.lp-grid h1{max-width:17ch}
.lp-actions{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:1.9rem}
.lp-proof{
  display:flex;flex-wrap:wrap;align-items:center;gap:.7rem 1.4rem;
  margin-top:1.9rem;font-size:var(--fs-small);color:var(--ink-soft);
}
.lp-proof b{color:var(--ink)}
.lp-proof .lp-div{width:1px;height:22px;background:var(--line-strong)}
.lp-frame{
  position:relative;border-radius:var(--r-xl);overflow:hidden;
  border:1px solid var(--line);box-shadow:var(--shadow-lift);background:var(--bg-soft);
}
.lp-frame img{width:100%;height:auto;display:block}

/* ---- 3D BOOK -------------------------------------------------------------- *
   The cover asset is already a rendered hardback mockup with an alpha channel,
   so the treatment here is a live perspective tilt, a contact shadow that reads
   as ground, and a slow float - not a fake spine.                              */
.tilt-stage{
  position:relative;display:grid;place-items:center;
  perspective:1400px;
  padding:clamp(1rem,3vw,2.2rem) 0 clamp(2.4rem,5vw,3.4rem);
}
.tilt-stage .glow{
  position:absolute;z-index:0;top:50%;left:50%;
  width:78%;aspect-ratio:1;border-radius:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(96,36,149,.26),rgba(56,145,254,.16) 45%,transparent 70%);
  filter:blur(50px);pointer-events:none;
}
.book3d{
  position:relative;z-index:1;
  transform-style:preserve-3d;
  transform:rotateY(-9deg) rotateX(4deg);
  transition:transform 1s var(--ease);
  filter:drop-shadow(0 26px 34px rgba(25,36,81,.26)) drop-shadow(0 6px 10px rgba(25,36,81,.14));
}
.book3d img{display:block;width:min(430px,80vw);height:auto}
@media(prefers-reduced-motion:no-preference){
  .book3d{animation:bookfloat 8s ease-in-out infinite}
  .tilt-stage:hover .book3d{animation:none;transform:rotateY(0deg) rotateX(0deg) scale(1.05)}
}
@keyframes bookfloat{
  0%,100%{transform:rotateY(-9deg) rotateX(4deg) translateY(0)}
  50%{transform:rotateY(-4deg) rotateX(2deg) translateY(-15px)}
}

/* ---- NUMBERED POINT LIST -------------------------------------------------- */
.num-list{display:grid;gap:1rem}
.num-item{
  display:grid;grid-template-columns:auto 1fr;gap:1.15rem;align-items:start;
  padding:1.5rem 1.6rem;border-radius:var(--r-md);
  background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm);
  transition:transform var(--t-med),box-shadow var(--t-med),border-color var(--t-med);
}
.num-item:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:rgba(96,36,149,.2)}
.num-item .num-n{
  flex:none;width:44px;height:44px;border-radius:14px;display:grid;place-items:center;
  background:var(--grad);color:#fff;
  font-family:var(--font-display);font-size:1.02rem;font-weight:600;
}
.num-item h3{font-size:1.06rem;margin-bottom:.35rem}
.num-item p{font-size:var(--fs-small);line-height:1.6}

/* ---- TEASER / LOCKED PREVIEW LIST ---------------------------------------- */
.teaser{display:grid;gap:.85rem}
@media(min-width:820px){.teaser{grid-template-columns:1fr 1fr}}
.teaser li{
  display:flex;gap:.9rem;align-items:flex-start;
  padding:1.05rem 1.25rem;border-radius:var(--r-md);
  background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm);
  transition:border-color var(--t-fast),transform var(--t-med);
}
.teaser li:hover{border-color:rgba(96,36,149,.22);transform:translateY(-2px)}
.teaser .tz-ic{
  flex:none;width:34px;height:34px;border-radius:11px;display:grid;place-items:center;
  background:var(--purple-tint);color:var(--purple);
}
.teaser .tz-ic svg{width:17px;height:17px}
.teaser b{display:block;font-size:1rem;line-height:1.35}
.teaser .tz-d{display:block;font-size:var(--fs-small);color:var(--ink-soft);line-height:1.5;margin-top:.2rem}

/* ---- FORM SECTION --------------------------------------------------------- */
.form-split{display:grid;gap:clamp(2rem,4.5vw,3.4rem);align-items:start}
@media(min-width:960px){.form-split{grid-template-columns:.95fr 1.05fr}}
.form-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--r-xl);
  padding:clamp(1.5rem,3.4vw,2.3rem);box-shadow:var(--shadow-lift);
}
.form-card h2{font-size:clamp(1.3rem,2.2vw,1.65rem);margin-bottom:.5rem}
.form-card>p{font-size:var(--fs-small);margin-bottom:1.5rem}
.form-aside-list{display:grid;gap:.9rem;margin-top:1.5rem}
.form-aside-list li{display:flex;gap:.75rem;align-items:flex-start;color:var(--ink-soft);font-size:var(--fs-small);line-height:1.6}
.form-aside-list .ck{
  flex:none;width:22px;height:22px;margin-top:.15rem;border-radius:50%;
  display:grid;place-items:center;background:var(--grad);color:#fff;
}
.form-aside-list .ck svg{width:11px;height:11px}

/* ---- PODCAST -------------------------------------------------------------- */
.mic-badge{
  width:74px;height:74px;border-radius:24px;display:grid;place-items:center;
  background:var(--grad);color:#fff;box-shadow:var(--shadow-glow);margin-bottom:1.5rem;
}
.mic-badge svg{width:33px;height:33px}
.pod-player{background:#fff}
.pod-player iframe{height:400px}
.listen-row{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.6rem}
.listen-chip{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.72rem 1.2rem;border-radius:var(--r-pill);
  background:#fff;border:1.5px solid var(--line-strong);
  font-size:var(--fs-small);font-weight:600;color:var(--ink);
  transition:border-color var(--t-fast),box-shadow var(--t-fast),transform var(--t-fast);
}
.listen-chip:hover{border-color:var(--purple);box-shadow:var(--shadow-sm);transform:translateY(-2px)}
.listen-chip svg{width:17px;height:17px;color:var(--purple);flex:none}

.ep-groups{display:grid;gap:clamp(2.4rem,5vw,3.6rem)}
.ep-head{
  display:flex;align-items:center;gap:.9rem;
  margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid var(--line);
}
.ep-head .eh-ic{
  flex:none;width:44px;height:44px;border-radius:14px;display:grid;place-items:center;
  background:var(--purple-tint);color:var(--purple);
}
.ep-head .eh-ic svg{width:21px;height:21px}
.ep-head h3{font-size:1.28rem}
.ep-head p{font-size:var(--fs-small);margin-top:.15rem}
/* ---- EPISODE TABS ---------------------------------------------------------
   Forty episodes stacked vertically made the page an endless scroll. Themed
   tabs show one group at a time and let people jump to the one they came for. */
.ep-tabs{
  display:flex;flex-wrap:wrap;gap:.6rem;
  margin-bottom:1.6rem;padding-bottom:1.4rem;
  border-bottom:1px solid var(--line);
}
.ep-tab{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.7rem 1.1rem;border-radius:var(--r-pill);
  background:#fff;border:1px solid var(--line-strong);
  font-size:var(--fs-small);font-weight:600;color:var(--ink-soft);
  transition:all var(--t-fast);
}
.ep-tab svg{width:16px;height:16px;opacity:.7}
.ep-tab:hover{border-color:var(--purple);color:var(--purple);transform:translateY(-2px)}
.ep-tab.is-active{
  background:var(--grad);border-color:transparent;color:#fff;
  box-shadow:0 5px 16px rgba(96,36,149,.26);
}
.ep-tab.is-active svg{opacity:1}
.ep-count{
  display:inline-grid;place-items:center;min-width:20px;height:20px;padding:0 .3rem;
  border-radius:var(--r-pill);background:var(--bg-soft);
  font-size:.7rem;font-weight:700;color:var(--ink-faint);
}
.ep-tab.is-active .ep-count{background:rgba(255,255,255,.24);color:#fff}
.ep-panel-note{font-size:var(--fs-small);color:var(--ink-soft);margin-bottom:1.3rem;max-width:60ch}
@media(prefers-reduced-motion:no-preference){
  .ep-panel:not([hidden]){animation:epfade .45s var(--ease)}
}
@keyframes epfade{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}

.ep-all{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1rem;
  margin-top:2.2rem;padding-top:1.8rem;border-top:1px solid var(--line);
}
.ep-all p{font-size:var(--fs-small);margin:0}

.ep-grid{display:grid;gap:1.2rem}
@media(min-width:760px){
  .ep-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  /* Episode groups vary in length, so a trailing card can end up alone on its
     own row. Stretch it across the row instead - it reads as a deliberate
     wide card rather than a leftover. */
  .ep-grid>.ep:last-child:nth-child(odd){grid-column:1 / -1;flex-direction:row;align-items:baseline;gap:1rem;flex-wrap:wrap}
}
@media(min-width:1120px){
  .ep-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .ep-grid>.ep:last-child:nth-child(odd){grid-column:auto;flex-direction:column;align-items:stretch;gap:.55rem}
  .ep-grid>.ep:last-child:nth-child(3n+1){grid-column:1 / -1;flex-direction:row;align-items:baseline;gap:1rem;flex-wrap:wrap}
}
.ep-grid>.ep[style],.ep-grid>.ep:last-child:nth-child(3n+1) h4{flex:0 0 auto}
.ep{
  display:flex;flex-direction:column;gap:.55rem;
  padding:1.45rem 1.55rem;border-radius:var(--r-md);
  background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm);
  transition:transform var(--t-med),box-shadow var(--t-med),border-color var(--t-med);
}
.ep:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:rgba(96,36,149,.2)}
/* Episode cards are links now - each one opens its episode on Spreaker. */
a.ep{text-decoration:none}
a.ep:hover h4{color:var(--purple)}
.ep-play{
  display:inline-flex;align-items:center;gap:.35rem;margin-top:auto;padding-top:.9rem;
  font-size:var(--fs-tiny);font-weight:650;color:var(--purple);
}
.ep-play svg{width:12px;height:12px;transition:transform .35s var(--ease-spring)}
a.ep:hover .ep-play svg{transform:translate(2px,-2px)}
.ep-meta{
  display:flex;flex-wrap:wrap;align-items:center;gap:.5rem;
  font-size:var(--fs-tiny);font-weight:650;letter-spacing:.09em;text-transform:uppercase;
  color:var(--ink-faint);
}
.ep-meta .ep-s{color:var(--purple)}
.ep-meta .dot{width:3px;height:3px;border-radius:50%;background:var(--ink-faint);flex:none}
.ep h4{
  font-family:var(--font-display);font-size:1.08rem;font-weight:560;
  line-height:1.3;letter-spacing:-.01em;color:var(--ink);
}
.ep p{font-size:var(--fs-small);line-height:1.55}

.ep-feature{
  display:grid;gap:clamp(1.6rem,3.5vw,2.6rem);align-items:center;
  padding:clamp(1.7rem,3.6vw,2.6rem);border-radius:var(--r-xl);
  background:linear-gradient(135deg,var(--purple-tint),var(--blue-tint));
  border:1px solid rgba(96,36,149,.13);
}
@media(min-width:900px){.ep-feature{grid-template-columns:auto 1fr}}
.ep-feature .efi{
  flex:none;width:88px;height:88px;border-radius:26px;display:grid;place-items:center;
  background:#fff;color:var(--purple);box-shadow:var(--shadow-md);
}
.ep-feature .efi svg{width:38px;height:38px}
.ep-feature h3{font-size:clamp(1.3rem,2.4vw,1.75rem);margin:.5rem 0 .6rem}
