/* Flat content block — the parent Watch-Live card is the only box, so the
   countdown doesn't draw its own border/background (avoids a box-in-box). */
.webinar-countdown_root__P7JLa {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.webinar-countdown_label__bP4y3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-light-mute);
}

.webinar-countdown_value__Frsy9 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 500;
  color: var(--c-light-head);
}

.webinar-countdown_countdown__olge0 {
  margin-top: 2px;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--c-green-faint, color-mix(in srgb, var(--c-green-dark) 8%, transparent));
  color: var(--c-green-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.webinar-countdown_zones__Ne8PR {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 2px;
  width: 100%;
  max-width: 520px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid color-mix(in srgb, var(--c-border) 65%, transparent);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-light-mute);
}

.webinar-countdown_zone__IGahe {
  white-space: nowrap;
}

.webinar-countdown_zone__IGahe:not(:last-child)::after {
  content: "·";
  margin: 0 8px;
  opacity: 0.5;
}

/* Live state — soft red wash (no hard border, to keep the card count down) */
.webinar-countdown_live__KNkmF {
  padding: 12px 22px;
  border-radius: 14px;
  background: color-mix(in srgb, #dc2626 6%, transparent);
}

.webinar-countdown_liveRow__BH4kG {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.webinar-countdown_liveText__xU5QW {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #dc2626;
}

.webinar-countdown_dot___KiGs {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dc2626;
}

@media (prefers-reduced-motion: no-preference) {
  .webinar-countdown_live__KNkmF .webinar-countdown_dot___KiGs {
    animation: webinar-countdown_webinarPulse__3YalA 1.6s ease-in-out infinite;
  }
  @keyframes webinar-countdown_webinarPulse__3YalA {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.35;
    }
  }
}

/* Same rhythm as the page's own sections, so this reads as a peer of them and
   clears the signup band that now sits directly above it. */
.webinar-recordings_section__ulnhD {
  padding: 56px var(--page-gutter) 72px;
  background: var(--c-cream-light);
}

.webinar-recordings_inner__9Kx7j {
  max-width: 960px;
  margin: 0 auto;
}

.webinar-recordings_head__H_klU {
  margin-bottom: 24px;
}

.webinar-recordings_h2__Eqvta {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
  color: var(--c-light-head);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  text-wrap: balance;
}

.webinar-recordings_meta__FEx1y {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-light-mute);
  margin: 8px 0 0;
}

.webinar-recordings_grid__aMlE3 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.webinar-recordings_card__p9AcV {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  background: #fff;
}

.webinar-recordings_link__U50XT {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
}

.webinar-recordings_thumbWrap__ln3CE {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--c-cream);
  overflow: hidden;
}

.webinar-recordings_thumb__gsvgy {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.webinar-recordings_play__AtbEf {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 14, 8, 0.55);
  color: #fff;
  padding-left: 3px; /* optically center the triangle */
}

.webinar-recordings_cardBody__BHdII {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px 16px;
}

.webinar-recordings_cardTitle__g5wzX {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-green-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.webinar-recordings_cardDate__MK675 {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-light-mute);
}

@media (prefers-reduced-motion: no-preference) {
  .webinar-recordings_card__p9AcV {
    transition: transform 0.2s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
      box-shadow 0.2s ease;
  }
  .webinar-recordings_card__p9AcV:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -16px rgba(30, 20, 10, 0.28);
  }
  .webinar-recordings_thumb__gsvgy {
    transition: transform 0.3s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
  }
  .webinar-recordings_card__p9AcV:hover .webinar-recordings_thumb__gsvgy {
    transform: scale(1.04);
  }
}

.webinar-sessions_list__ZgPx9 {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.webinar-sessions_row__mGM09 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg, 16px);
}

.webinar-sessions_rowNearest__Oc0P2 {
  border-color: var(--c-green-dark);
  border-width: 2px;
}

.webinar-sessions_rowMain__LEcSq {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.webinar-sessions_date___onnD {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-light-mute);
}

.webinar-sessions_title__8FdlD {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-light-head);
  letter-spacing: -0.01em;
}

.webinar-sessions_rowSide__3SD3O {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.webinar-sessions_badge__ftylq {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill, 999px);
  white-space: nowrap;
}

/* tokens.css destructive-badge recipe: --red on the red tint bg. The tint and
   border tokens exist only unprefixed (globals.css aliases --c-red but not the
   tint/border variants), so use the DS names directly. */
.webinar-sessions_badgeLiveNow__1gE1D {
  color: var(--c-red);
  background: var(--red-tint);
  border: 1px solid var(--red-border);
}

/* Admin badge recipe: green-dark on green-faint (AA on cream). */
.webinar-sessions_badgeLive__Tf7sx {
  color: var(--c-green-dark);
  background: var(--c-green-faint);
}

.webinar-sessions_badgePremiere__F5ji4 {
  color: var(--c-light-body);
  background: var(--c-cream);
  border: 1px solid var(--c-border);
}

/* Amber recipe: amber-text on amber-bg (7.7:1, comfortably AA). Distinct from
   the green "Live" and red "Live now" so a postponed row cannot be misread at a
   glance. */
.webinar-sessions_badgePostponed__RaEVv {
  color: var(--c-amber-text);
  background: var(--c-amber-bg);
}

.webinar-sessions_watch__6tW51 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-green-dark);
  text-decoration: none;
  white-space: nowrap;
}

.webinar-sessions_watch__6tW51:hover,
.webinar-sessions_watch__6tW51:focus-visible {
  text-decoration: underline;
}

.webinar-sessions_comingSoon__RVwsQ {
  margin-top: 20px;
  padding: 20px;
  background: #fff;
  border: 1px dashed var(--c-border-mid, var(--c-border));
  border-radius: var(--radius-lg, 16px);
}

.webinar-sessions_comingSoonTitle__9ozfI {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-light-head);
  margin: 0 0 6px;
}

.webinar-sessions_comingSoonBody__HXPhg {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-light-body);
  line-height: 1.6;
  margin: 0;
}

.webinar-sessions_comingSoonLink__BSjqr {
  color: var(--c-green-dark);
  font-weight: 600;
}

@media (max-width: 480px) {
  .webinar-sessions_row__mGM09 {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page_page__AalNG {
  min-height: 100vh;
}

/* ── Hero ── */
.page_hero__XF9ko {
  background: var(--surface-hero);
  padding: calc(var(--nav-height) + 80px) var(--page-gutter) 72px;
}

.page_heroInner__aqRQw {
  max-width: 720px;
  margin: 0 auto;
}

.page_eyebrow__dYLzs {
  margin-bottom: 16px;
}

.page_heading__goUqF {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 500;
  color: var(--c-light-head);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 20px;
  text-wrap: balance;
}

.page_headingAccent__aAGvu {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--c-green-dark);
}

.page_subheading__F_4XA {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--c-light-body);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 0 18px;
  text-wrap: pretty;
}

.page_watchLine__KrrVP {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--c-light-mute);
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

.page_watchLink__fHX91 {
  color: var(--c-green-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page_watchLink__fHX91:hover,
.page_watchLink__fHX91:focus-visible {
  color: var(--c-green);
}

/* ── One-off rescheduled announcement ── */
.page_announceBanner__sQsuK {
  margin-bottom: 24px;
}

.page_announceLead__TSB8y {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--c-light-body);
  line-height: 1.55;
  margin: 0;
  max-width: 440px;
  text-wrap: pretty;
}

/* ── Video (pulls up over the hero/section seam) ── */
.page_videoSection__dWEfq {
  padding: 0 var(--page-gutter);
  background: var(--c-cream-light);
}

.page_videoInner__jBkWw {
  max-width: 880px;
  margin: 0 auto;
  transform: translateY(-44px);
}

.page_watchLive__Io4Aj {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--c-cream-light) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg, 16px);
  padding: clamp(32px, 5vw, 52px) 24px;
  box-shadow: 0 24px 60px -42px rgba(30, 20, 10, 0.4);
}

.page_watchBtn__Kd9Ww {
  min-width: 220px;
}

.page_watchNote__Eo7hY {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-light-mute);
  margin: 0;
}

/* ── Sections ── */
.page_section__6sC9k {
  padding: 56px var(--page-gutter) 72px;
  background: var(--c-cream-light);
}

.page_sectionAlt__uxJxS {
  padding: 72px var(--page-gutter);
  background: color-mix(in srgb, var(--c-golden-sand) 7%, var(--c-cream));
  border-block: 1px solid color-mix(in srgb, var(--c-golden-sand) 14%, var(--c-border));
}

.page_sectionInner__a3Hh7 {
  max-width: 960px;
  margin: 0 auto;
}

.page_sectionHead__cnWme {
  margin-bottom: 32px;
}

.page_h2__5KsAv {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--c-light-head);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  text-wrap: balance;
}

.page_meta__RAxXv {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-light-mute);
  margin: 8px 0 0;
}

/* ── What we cover (topic cards) ── */
.page_topicGrid__B9k6m {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.page_topicCard__S6rQQ {
  background: linear-gradient(180deg, #fff 0%, var(--c-cream-light) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg, 16px);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page_topicName__SdUGD {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-green-dark);
  letter-spacing: -0.01em;
  margin: 0;
}

.page_topicBody__wcv9S {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--c-light-body);
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}

/* ── Who this is for ── */
.page_audienceList__fOzCz {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px 28px;
}

.page_audienceItem__cnQp9 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--c-light-body);
  line-height: 1.5;
}

.page_checkIcon__oWTJ7 {
  color: var(--c-green-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── About Ryan ── */
.page_ryan__eYi_3 {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.page_ryanBio__sAZrR {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--c-light-body);
  line-height: 1.7;
  margin: 14px 0 0;
  max-width: 540px;
  text-wrap: pretty;
}

.page_stats__I1zlK {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page_stat__nCZu3 {
  background: var(--c-cream-light);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-green-dark);
  border-radius: var(--radius-md, 12px);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page_statValue__zOgow {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  color: var(--c-green-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}

.page_statLabel__pDzx0 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--c-light-mute);
}

/* ── Membership CTA (forest band) ── */
.page_ctaBand__zhYiu {
  background:
    radial-gradient(
      ellipse at top left,
      color-mix(in srgb, var(--c-warm-amber) 8%, transparent),
      transparent 60%
    ),
    var(--surface-forest);
  padding: clamp(56px, 8vw, 88px) var(--page-gutter);
}

.page_ctaInner__42McJ {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page_ctaLead__dOucA {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--c-text);
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 540px;
  text-wrap: pretty;
}

.page_ctaPrice__IRGJe {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 10px;
  margin: 28px 0 24px;
}

.page_ctaPriceNum__xPIlp {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 500;
  color: var(--on-dark-accent-warm);
  letter-spacing: -0.02em;
  line-height: 1;
}

.page_ctaPriceUnit__H_ZjM {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--c-text);
}

.page_ctaPriceSub__Vpc3p {
  flex-basis: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--c-text-mute);
  margin-top: 6px;
}

.page_ctaList__jy_y6 {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 480px;
}

.page_ctaListItem__4_bD8 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--c-text);
  line-height: 1.5;
}

.page_ctaCheck___cAxr {
  color: var(--on-dark-accent-warm);
  flex-shrink: 0;
  margin-top: 3px;
}

.page_ctaGates__Bp4cd {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  color: var(--on-dark-accent-warm);
  margin: 0 0 24px;
}

.page_ctaBtn__yP6US {
  min-width: 200px;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .page_ryan__eYi_3 {
    grid-template-columns: 1fr;
  }
  .page_stats__I1zlK {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page_stat__nCZu3 {
    flex: 1 1 160px;
  }
}

/* ── Motion: scroll-reveal + hover, reduced-motion safe ── */
@media (prefers-reduced-motion: no-preference) {
  @keyframes page_webinarReveal__nPBYP {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  @supports (animation-timeline: view()) {
    .page_reveal___S5qk {
      animation: page_webinarReveal__nPBYP :local(auto) linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 50%;
    }
  }

  .page_topicCard__S6rQQ {
    transition: transform 0.2s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
      box-shadow 0.2s ease;
  }

  .page_topicCard__S6rQQ:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -16px rgba(30, 20, 10, 0.28);
  }
}

/* Dark green band; text tokens are the on-dark pair (--c-text/--c-text-mute),
   per the tokens.css pairing rules. */

.webinar-signup-form_band__Heh83 {
  padding: 40px var(--page-gutter, 24px);
  background: var(--c-green-dark);
}

.webinar-signup-form_inner__Tijug {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.webinar-signup-form_copy__om2Ce {
  max-width: 420px;
}

.webinar-signup-form_heading__PJ_1M {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 6px;
}

.webinar-signup-form_sub__VwUwZ {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-text-mute);
  line-height: 1.6;
  margin: 0;
}

.webinar-signup-form_form__SW3we {
  flex: 1 1;
  min-width: 280px;
  max-width: 460px;
}

.webinar-signup-form_fields__ZTVxc {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.webinar-signup-form_field__2C_uS {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1;
  min-width: 160px;
}

.webinar-signup-form_label__FakmG {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
}

.webinar-signup-form_optional__hTmx0 {
  font-weight: 400;
  color: var(--c-text-mute);
}

.webinar-signup-form_input__jyCcS {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-light-head);
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--radius-sm, 8px);
  padding: 10px 12px;
  width: 100%;
}

.webinar-signup-form_input__jyCcS:focus-visible {
  outline: 2px solid var(--c-gold, #ddb84a);
  outline-offset: 2px;
}

.webinar-signup-form_input__jyCcS[aria-invalid="true"] {
  border-color: var(--c-red);
}

.webinar-signup-form_fieldError__3_DIm {
  font-family: var(--font-body);
  font-size: 13px;
  color: #f3c1c1;
  margin: 0;
}

.webinar-signup-form_submit__u___2 {
  flex-shrink: 0;
}

.webinar-signup-form_error___KAEK {
  font-family: var(--font-body);
  font-size: 13px;
  color: #f3c1c1;
  margin: 10px 0 0;
}

.webinar-signup-form_confirmation__yrmqw {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  margin: 0;
}

@media (max-width: 480px) {
  .webinar-signup-form_fields__ZTVxc {
    flex-direction: column;
    align-items: stretch;
  }
  .webinar-signup-form_field__2C_uS {
    min-width: 0;
  }
  .webinar-signup-form_submit__u___2 {
    width: 100%;
  }
}

