/* Workshop landing page — refined per v2 brief.
   Sora + Inter typography, dark premium hero, teal CTAs.
   British English everywhere. No em dashes. */

:root {
  /* Brand palette */
  --navy:        #13244A;
  --navy-deep:   #0E1B39;
  --navy-darker: #0A1428;
  --navy-700:    #1D3260;
  --navy-600:    #2A4379;
  --navy-200:    #C4CCDC;
  --navy-100:    #E4E8F0;
  --navy-50:     #F2F4F8;

  --teal:        #11C9CD;
  --teal-700:    #0E9EA2;
  --teal-800:    #0B7578;
  --teal-200:    #C6F2F3;
  --teal-100:    #E3F9FA;
  --teal-50:     #F2FCFC;

  --coral:       #FF6B5A;
  --coral-100:   #FFE6E2;

  --bg-page:     #F5F7FA;
  --bg-page-2:   #FAFBFC;
  --bg-white:    #FFFFFF;

  --text:        #13244A;
  --text-2:      #4A5568;
  --text-3:      #6B7588;
  --text-muted:  #8690A8;

  --border:      #BCC3CA;
  --border-soft: #E4E8EF;
  --border-soft-2: #EEF1F6;

  --font-head: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --shadow-1: 0 1px 2px rgba(19, 36, 74, 0.04), 0 1px 1px rgba(19, 36, 74, 0.03);
  --shadow-2: 0 4px 12px rgba(19, 36, 74, 0.06), 0 1px 3px rgba(19, 36, 74, 0.04);
  --shadow-3: 0 12px 32px -10px rgba(19, 36, 74, 0.16), 0 4px 12px rgba(19, 36, 74, 0.06);
  --shadow-4: 0 24px 64px -16px rgba(19, 36, 74, 0.22), 0 8px 20px rgba(19, 36, 74, 0.08);
  --shadow-form: 0 32px 80px -24px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --focus: 0 0 0 3px rgba(17, 201, 205, 0.32);

  --r-btn: 14px;
  --r-card: 22px;
  --r-card-lg: 26px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg-page);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
input, select, textarea { font-family: inherit; }
img { display: block; max-width: 100%; }
a { color: var(--teal-700); text-decoration: none; }

/* ---------- Containers + sections ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
@media (max-width: 820px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 44px 0; }
  .container, .container-narrow { padding: 0 20px; }
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0;
  letter-spacing: -0.018em;
  line-height: 1.1;
  text-wrap: balance;
  color: var(--text);
  font-weight: 700;
}
h1 { font-weight: 800; letter-spacing: -0.026em; line-height: 1.02; }
h2 { font-weight: 700; letter-spacing: -0.022em; }
h3 { font-weight: 600; letter-spacing: -0.012em; line-height: 1.22; }
p { margin: 0; text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 12px;
  background: var(--navy-50);
  color: var(--navy);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid var(--navy-100);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(17, 201, 205, 0.16); }
.eyebrow-on-dark { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.10); }
.eyebrow-on-light { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.10); }

.section-label {
  display: inline-block;
  color: var(--teal-700);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label.on-dark { color: var(--teal); }
.section-title { font-size: clamp(32px, 4.4vw, 44px); }
.section-intro {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.6;
  max-width: 640px;
  margin-top: 14px;
  font-family: var(--font-body);
}

/* ---------- Buttons (teal-only primary) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: var(--r-btn);
  transition: transform 160ms var(--ease), background 160ms var(--ease), box-shadow 200ms var(--ease);
  white-space: nowrap;
  letter-spacing: -0.005em;
  color: #fff;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 6px 18px -8px rgba(17, 201, 205, 0.55);
}
.btn-primary:hover {
  background: var(--teal-700);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(14, 158, 162, 0.6);
}
.btn-primary:active { transform: translateY(0); }
.btn-block { width: 100%; }
.btn-lg { font-size: 16.5px; padding: 16px 28px; }

/* ---------- Form ---------- */
.form-card {
  background: #fff;
  border-radius: var(--r-card-lg);
  box-shadow: var(--shadow-form);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
}
.form-card-head {
  padding: 24px 26px 18px;
  border-bottom: 1px solid var(--border-soft);
  background: #fff;
}
.form-card-head h3 {
  font-family: var(--font-head);
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.form-card-head p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; }
.form-card-head .pill {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  padding: 5px 11px 5px 9px;
  background: var(--teal-50);
  color: var(--teal-800);
  border: 1px solid var(--teal-200);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-card-head .pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px rgba(17, 201, 205, 0.20); }

.form-card-body { padding: 22px 26px 26px; }
.form-stack { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
}
.field-label .optional { color: var(--text-muted); font-weight: 500; }
.field-input, .field-select {
  font-size: 15px;
  font-weight: 500;
  padding: 14px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  background: #fff;
  width: 100%;
  outline: none;
  transition: border-color 140ms var(--ease), box-shadow 140ms var(--ease);
}
.field-input::placeholder { color: var(--text-muted); }
.field-input:focus, .field-select:focus { border-color: var(--teal); box-shadow: var(--focus); }
.field-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.5L6 6.5L11 1.5' stroke='%2313244A' stroke-opacity='0.6' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.consent {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}
.consent-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.consent-check input { margin-top: 2px; accent-color: var(--teal); }

.form-trust {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-3);
  font-weight: 500;
  text-align: center;
}
.form-trust .sep { color: var(--border); }

.reg-wrap { display: flex; flex-direction: column; }
/* ---------- Form (light card on dark hero) ---------- */
.form-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 32px 64px -22px rgba(0, 0, 0, 0.50), 0 12px 24px -8px rgba(19, 36, 74, 0.18);
  overflow: hidden;
}
.form-card .form-card-head {
  padding: 28px 28px 4px;
  text-align: left;
  background: transparent;
  border-bottom: none;
}
.form-card .form-card-head h3 {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin: 0 0 8px;
}
.form-card .form-card-head p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.form-card .form-card-body { padding: 22px 28px 24px; }
.form-card .field-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.005em;
}
.form-card .field-label .req { color: var(--coral); margin-left: 1px; font-weight: 700; }
.form-card .field-input,
.form-card .field-select {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  outline: none;
  transition: border-color 140ms var(--ease), box-shadow 140ms var(--ease);
}
.form-card .field-input:focus,
.form-card .field-select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(17, 201, 205, 0.22); }
.form-card .field-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.5L6 6.5L11 1.5' stroke='%2313244A' stroke-opacity='0.6' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-trust {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--text-3);
  font-weight: 500;
  text-align: center;
}
.form-trust .sep { color: var(--border); }
.reg-wrap { display: flex; flex-direction: column; position: relative; }
.form-disclaimer {
  position: absolute;
  top: 100%; left: 0; right: 0;
  margin: 14px 6px 0;
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}
@media (max-width: 940px) {
  .form-disclaimer { position: static; }
}

/* Old dark variant nullified */
.form-card.form-card-dark { background: #fff; border: 1px solid var(--border-soft); }

.form-success { text-align: center; padding: 32px 24px; }
.form-success .tick {
  width: 56px; height: 56px;
  background: var(--teal-100);
  color: var(--teal-700);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.form-success h3 { font-size: 22px; margin-bottom: 6px; color: var(--text); font-family: var(--font-head); }
.form-success p { color: var(--text-2); font-size: 14px; line-height: 1.6; }

/* ---------- HERO (dark premium) ---------- */
/* Hero grid + video overlap bridge */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: visible;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 600px at 80% 18%, rgba(17, 201, 205, 0.22), transparent 60%),
    radial-gradient(ellipse 800px 600px at 10% 95%, rgba(17, 201, 205, 0.08), transparent 65%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 50%, var(--navy-darker) 100%);
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 4px 4px, 64px 64px, 64px 64px;
  background-position: 0 0, 0 0, 0 0;
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 40%, #000 50%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 40%, #000 50%, transparent 90%);
}

.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 60%, var(--navy-darker) 100%);
  color: #fff;
  overflow: visible;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 600px at 80% 18%, rgba(17, 201, 205, 0.18), transparent 60%),
    radial-gradient(ellipse 800px 600px at 10% 95%, rgba(17, 201, 205, 0.08), transparent 65%);
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 4px 4px, 64px 64px, 64px 64px;
  background-position: 0 0, 0 0, 0 0;
  opacity: 0.42;
  z-index: -1;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 35%, #000 50%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 35%, #000 50%, transparent 90%);
}
.hero-top {
  display: flex; align-items: center; justify-content: center;
  padding: 36px 0 32px;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.hero-top .logo { height: 46px; width: auto; }
.hero-top .meta {
  font-size: 13px;
  color: rgba(255,255,255,0.66);
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.hero-top .meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(17, 201, 205, 0.20); }

/* ---------- Hero lede (headline centered, spans both columns) ---------- */
.hero-lede {
  max-width: 980px;
  margin: 56px auto 96px;
  text-align: center;
}
.hero-lede .eyebrow { margin-bottom: 18px; }
.hero-eyebrow-text { display: none; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  padding: 0 0 96px;
  align-items: stretch;
}
.hero-left { display: flex; flex-direction: column; gap: 26px; min-width: 0; }
.hero-left .hero-sub { margin-top: 0; }
.hero-left .hero-video-wrap.desktop-only-video { margin-top: auto; }
.hero-left { display: flex; flex-direction: column; gap: 26px; min-width: 0; }
.hero-right { min-width: 0; }

.hero-eyebrow-text {
  color: var(--coral);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.4vw, 51px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: #fff;
  margin: 0 auto;
  text-wrap: balance;
  max-width: 980px;
}
.hero-title .accent { color: var(--teal); }
  margin: 18px 0 18px;
  color: #fff;
}
.hero-title .accent { color: var(--teal); }
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
}

/* Hide redundant hero CTA on desktop — the form is right beside it. Keep on mobile where the form is below. */
@media (min-width: 941px) {
  .hero-cta-row { display: none; }
}
.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-support {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  display: flex; align-items: flex-start; gap: 10px;
}
.hero-support .icn { color: var(--teal); flex-shrink: 0; margin-top: 1px; opacity: 0.9; }

/* Hero session strip — visible above the video */
.session-strip {
  margin-top: 4px;
}
.session-strip .label {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}
.session-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.session-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  color: #fff;
  text-align: left;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), transform 160ms var(--ease);
  width: 100%;
}
.session-pill:hover {
  border-color: rgba(17, 201, 205, 0.55);
  background: rgba(17, 201, 205, 0.06);
  transform: translateY(-1px);
}
.session-pill .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; box-shadow: 0 0 0 3px rgba(17, 201, 205, 0.20); }
.session-pill .when-day { font-size: 14.5px; font-weight: 600; color: #fff; letter-spacing: -0.005em; }
.session-pill .when-time { font-size: 13px; color: rgba(255, 255, 255, 0.72); font-weight: 500; margin-top: 2px; }
@media (max-width: 540px) {
  .session-strip-grid { grid-template-columns: 1fr; }
}

/* Hero video */
.hero-video {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 50% 45%, rgba(17,201,205,0.22), transparent 60%),
    linear-gradient(160deg, var(--navy-700), var(--navy-deep) 70%);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-video::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 14px, transparent 14px 28px);
  pointer-events: none;
}
.hero-video .play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 200ms var(--ease), background 160ms var(--ease);
  border: none;
}
.hero-video .play:hover { transform: translate(-50%, -50%) scale(1.06); background: var(--teal-700); }
.hero-video .play-ring {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 100px; height: 100px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.14);
  pointer-events: none;
}
.hero-video .cap {
  position: absolute; left: 18px; right: 18px; bottom: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
}
.hero-video .cap .live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 90, 0.32);
  flex-shrink: 0;
}

/* mobile-only copy of the video, rendered after the form — no longer needed,
   the video sits in its own overlap bridge after the hero grid. */
.hero-video.mobile-only { display: none; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; padding: 32px 0 0; }
  .hero-top { padding: 20px 0 4px; margin-bottom: 16px; }
  .hero-top .meta { font-size: 12px; }
  .hero-lede { margin: 32px auto 40px; }
}
@media (max-width: 540px) {
  .hero-top .logo { height: 36px; }
  .hero-top .meta .lbl { display: none; }
  .hero-cta-row .btn { width: 100%; }
}

/* In-hero video block */
.hero-video-wrap { margin-top: 8px; }
.hero-video-wrap .hero-video {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--navy-700), var(--navy-deep) 70%);
  box-shadow: 0 22px 50px -16px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
}
.hero-video .play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(255, 107, 90, 0.45);
  transition: transform 200ms var(--ease), background 160ms var(--ease);
  border: none;
}
.hero-video .play:hover { transform: translate(-50%, -50%) scale(1.06); background: #FF8275; }
.hero-video .cap {
  position: absolute; left: 50%; bottom: 18px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 12px;
  background: rgba(0,0,0,0.65);
  border-radius: 6px;
  white-space: nowrap;
  max-width: calc(100% - 32px);
}
.next-session { display: none; }
.next-session {
  text-align: center;
  margin-top: 28px;
}
.next-session .next-label {
  color: var(--coral);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.next-session .next-date {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.next-session .next-time {
  font-size: 14px;
  color: var(--text-2);
  margin-top: 4px;
}
.mobile-only-video { display: none; }
@media (max-width: 940px) {
  .desktop-only-video { display: none; }
  .mobile-only-video { display: block; margin-top: 18px; }
}

/* Video overlap bridge: half on navy, half on light */
.video-overlap {
  display: none;
}
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  transform: translateY(50%);
  z-index: 5;
  padding: 0 24px;
  pointer-events: none;
}
.video-overlap .container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0;
  pointer-events: auto;
}
.video-overlap .hero-video {
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  box-shadow: 0 28px 60px -18px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 940px) {
  .video-overlap {
    position: static;
    transform: none;
    padding: 28px 20px 0;
  }
  .video-overlap .hero-video {
    aspect-ratio: 16 / 10;
    box-shadow: 0 24px 60px -16px rgba(19, 36, 74, 0.30);
  }
}

/* ---------- For-you (white section with light grey checklist card) ---------- */
.for-you {
  position: static;
  background: #ffffff;
  color: var(--text);
  overflow: visible;
  isolation: auto;
  border-top: none;
  padding-top: 96px;
  padding-bottom: 96px;
}
.for-you::before { display: none; }
.for-you .section-title { color: var(--navy); }
.for-you .section-label { color: var(--teal-700); }
.for-you .walk-checklist {
  background: #F4F6FA;
  border: 1px solid rgba(19, 36, 74, 0.08);
  box-shadow: 0 14px 36px -14px rgba(19, 36, 74, 0.14), 0 2px 4px rgba(19, 36, 74, 0.04);
}
.for-you .walk-row { border-bottom-color: rgba(19, 36, 74, 0.08); }
@media (max-width: 940px) {
  .for-you { padding-top: 56px; padding-bottom: 56px; }
}
.for-you-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.for-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(19, 36, 74, 0.08);
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 6px 18px -8px rgba(14, 27, 57, 0.12);
  overflow: hidden;
  isolation: isolate;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}
.for-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17, 201, 205, 0.10), rgba(17, 201, 205, 0) 55%);
  opacity: 0;
  transition: opacity 280ms var(--ease);
  pointer-events: none;
  z-index: 0;
}
.for-card::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #1FE0E4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1);
  z-index: 1;
}
.for-card > * { position: relative; z-index: 2; }
.for-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -20px rgba(14, 27, 57, 0.28), 0 4px 12px -4px rgba(17, 201, 205, 0.18);
  border-color: rgba(17, 201, 205, 0.45);
}
.for-card:hover::before { opacity: 1; }
.for-card:hover::after { transform: scaleX(1); }
.for-card-icon {
  width: 52px; height: 52px;
  background: rgba(17, 201, 205, 0.10);
  color: var(--teal);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background 280ms var(--ease), color 280ms var(--ease), transform 280ms cubic-bezier(.2, .7, .2, 1);
}
.for-card:hover .for-card-icon {
  background: var(--teal);
  color: #fff;
  transform: scale(1.06) rotate(-3deg);
}
.for-card h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  transition: color 280ms ease;
}
.for-card:hover h3 { color: #0A1428; }
.for-card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1100px) { .for-you-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .for-you-grid { grid-template-columns: 1fr; } }

/* ---------- See-live (light grey, four learn-style cards) ---------- */
.see-live {
  background: #F4F6FA;
  position: static;
  overflow: visible;
  color: var(--text);
}
.see-live::before { display: none; }
.see-live .section-title { color: var(--navy); }
.see-live .section-intro { color: var(--text-2); }
.see-live .section-label { color: var(--teal-700); }
.see-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.see-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(19, 36, 74, 0.08);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 10px 28px -10px rgba(14, 27, 57, 0.18), 0 2px 6px rgba(14, 27, 57, 0.04);
  overflow: hidden;
  isolation: isolate;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
  color: var(--text);
}
.see-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17, 201, 205, 0.10), rgba(17, 201, 205, 0) 55%);
  opacity: 0;
  transition: opacity 280ms var(--ease);
  pointer-events: none;
  z-index: 0;
}
.see-card::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #1FE0E4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1);
  z-index: 1;
}
.see-card > * { position: relative; z-index: 2; }
.see-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -20px rgba(14, 27, 57, 0.28), 0 4px 12px -4px rgba(17, 201, 205, 0.18);
  border-color: rgba(17, 201, 205, 0.45);
}
.see-card:hover::before { opacity: 1; }
.see-card:hover::after { transform: scaleX(1); }
.see-card-icon {
  width: 52px; height: 52px;
  background: rgba(17, 201, 205, 0.10);
  color: var(--teal);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background 280ms var(--ease), color 280ms var(--ease), transform 280ms cubic-bezier(.2, .7, .2, 1);
}
.see-card:hover .see-card-icon {
  background: var(--teal);
  color: #fff;
  transform: scale(1.06) rotate(-3deg);
}
.see-card-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-700);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.see-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.018em;
}
.see-card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1100px) { .see-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .see-grid { grid-template-columns: 1fr; } }

/* Featured demo card variant (light grey section background) */
.see-card.see-card-featured {
  background: linear-gradient(160deg, #ffffff 0%, #F2FCFC 100%);
  border-color: rgba(17, 201, 205, 0.45);
  box-shadow: 0 20px 40px -14px rgba(17, 201, 205, 0.30), 0 4px 12px rgba(19, 36, 74, 0.06);
}
.see-card.see-card-featured::after { transform: scaleX(1); }
.see-card.see-card-featured .see-card-icon {
  background: var(--teal);
  color: #fff;
}

/* ---------- Walk away (single light checklist card on navy) ---------- */
.walk {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 60%, var(--navy-darker) 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  border-top: none;
  padding-top: 96px;
  padding-bottom: 96px;
}
.walk::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 85% 20%, rgba(17, 201, 205, 0.14), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 90%, rgba(17, 201, 205, 0.06), transparent 65%);
  z-index: -1;
  pointer-events: none;
}
.walk .section-title { color: #fff; }
.walk .section-intro { color: rgba(255, 255, 255, 0.78); }
.walk .section-label { color: var(--teal); }
.walk-head { max-width: 720px; margin-bottom: 48px; }
.walk-head-centered {
  margin: 0 auto 48px;
  text-align: center;
}
.walk-head-centered .section-intro {
  margin: 0 auto;
}

.walk-checklist-card {
  background: #F4F6FA;
  border-radius: 22px;
  padding: 32px 36px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, 0.40);
}
.walk-checklist-rows { list-style: none; padding: 0; margin: 0; }
.walk-checklist-row {
  display: flex; gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(19, 36, 74, 0.08);
}
.walk-checklist-row:last-child { border-bottom: none; padding-bottom: 0; }
.walk-checklist-row:first-child { padding-top: 0; }
.walk-checklist-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.walk-checklist-row-t {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
  letter-spacing: -0.008em;
  line-height: 1.4;
}

@media (max-width: 940px) {
  .walk { padding-top: 56px; padding-bottom: 56px; }
  .walk-checklist-card { padding: 26px 24px; }
}
.walk-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.walk-copy .section-title { margin-bottom: 0; }
.walk-copy .section-intro { max-width: 460px; }
.walk-checklist {
  background: #fff;
  border: 1px solid rgba(19, 36, 74, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 60px -22px rgba(19, 36, 74, 0.22), 0 4px 12px rgba(19, 36, 74, 0.04);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.walk-checklist-head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(19, 36, 74, 0.06);
  margin-bottom: 14px;
}
.walk-checklist-head .check-pill {
  width: 36px; height: 36px;
  background: var(--teal);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.walk-checklist-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.012em;
}
.walk-checklist-sub {
  font-size: 13.5px;
  color: var(--text-3);
  margin-top: 2px;
}
.walk-rows { list-style: none; padding: 0; margin: 0; }
.walk-row {
  display: flex; gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(19, 36, 74, 0.06);
}
.walk-row:last-child { border-bottom: none; padding-bottom: 0; }
.walk-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--teal-50);
  color: var(--teal-800);
  border: 1px solid var(--teal-200);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.walk-row-t {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  font-size: 15.5px;
  letter-spacing: -0.008em;
}
.walk-row-b {
  font-size: 14px;
  color: var(--text-2);
  margin-top: 2px;
  line-height: 1.5;
}
@media (max-width: 940px) {
  .walk-split { grid-template-columns: 1fr; gap: 32px; }
}
/* Legacy outcome grid (no longer used) */
.outcome-grid { display: none; }
.outcome-card {
  background: #fff;
  border: 1px solid rgba(19, 36, 74, 0.08);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 12px 32px rgba(19, 36, 74, 0.06);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
  display: flex; flex-direction: column;
}
.outcome-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(19, 36, 74, 0.10); border-color: rgba(17, 201, 205, 0.40); }
.outcome-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.outcome-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.03em;
  color: var(--teal);
  line-height: 1;
}
.outcome-icn {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-800);
  border: 1px solid var(--teal-100);
  display: flex; align-items: center; justify-content: center;
}
.outcome-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--text);
}
.outcome-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 760px) {
  .outcome-grid { grid-template-columns: 1fr; gap: 14px; }
  .outcome-card { padding: 24px; }
  .outcome-num { font-size: 32px; }
}
.walk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 4px;
}
.walk-list { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.walk-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--bg-page);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.walk-item:hover { border-color: var(--teal-200); background: var(--teal-50); }
.walk-item .tick {
  width: 30px; height: 30px;
  flex-shrink: 0;
  background: #fff;
  color: var(--teal-800);
  border: 1px solid var(--teal-200);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.walk-item:hover .tick { background: var(--teal); color: #fff; border-color: var(--teal); }
.walk-item p { font-size: 15.5px; font-weight: 500; color: var(--text); line-height: 1.5; margin: 0; }
@media (max-width: 820px) { .walk-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Testimonials ---------- */
.testimonials { background: #ffffff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.testimonial-card {
  background: #F4F6FA;
  border: 1px solid rgba(19, 36, 74, 0.06);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -28px; right: 14px;
  font-family: var(--font-head);
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
  color: var(--teal);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease) 120ms, transform 600ms var(--ease) 120ms;
  pointer-events: none;
}
.testimonial-card.reveal.is-visible::before { opacity: 0.12; transform: translateY(0); }
.testimonial-card > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .testimonial-card::before { transition: none; opacity: 0.12; transform: none; }
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -14px rgba(19, 36, 74, 0.16); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-quote {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 24px;
  font-style: italic;
  flex: 1;
}
.testimonial-attrib { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(19, 36, 74, 0.08); }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.02em;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 14.5px; }
.testimonial-biz { color: var(--text-3); font-size: 12.5px; font-weight: 500; margin-top: 1px; }
@media (max-width: 940px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- Hosts (soft tinted bg, photo-led) ---------- */
.hosts { background: linear-gradient(180deg, #F4F6FB 0%, #EEF1F6 100%); }
.hosts-intro { max-width: 740px; margin-top: 14px; }
.hosts-intro p { color: var(--text-2); font-size: 17px; line-height: 1.65; }
.hosts-intro p + p { margin-top: 12px; }
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.host-card {
  background: #fff;
  border: 1px solid rgba(19, 36, 74, 0.08);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 12px 32px rgba(19, 36, 74, 0.06);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.host-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(19, 36, 74, 0.12); }
.host-photo {
  height: 300px;
  background: linear-gradient(160deg, var(--navy-50), var(--bg-page));
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.host-photo .host-img {
  transform: translate3d(0, var(--host-parallax, 0px), 0);
  transition: transform 100ms linear;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .host-photo .host-img { transform: none; }
}
.host-photo .host-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.host-photo .placeholder-ring {
  width: 124px; height: 124px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-100), var(--navy-200));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 34px;
  color: var(--navy);
  letter-spacing: 0.02em;
  border: 6px solid #fff;
  box-shadow: var(--shadow-2);
}
.host-photo .photo-meta {
  position: absolute; bottom: 14px; left: 18px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.host-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.host-name { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.host-role { font-size: 13px; font-weight: 600; color: var(--teal-700); margin-top: 4px; letter-spacing: 0.01em; }
.host-bio { font-size: 14.5px; color: var(--text-2); line-height: 1.6; margin-top: 12px; }
.host-bio p + p { margin-top: 10px; }

/* Special guest treatment — dark branded card */
.host-card.special .host-photo {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 80%);
  border-bottom-color: var(--navy-deep);
}
.host-card.special .host-photo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(17, 201, 205, 0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(17, 201, 205, 0.08), transparent 50%);
}
.host-card.special .host-photo::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 12px, transparent 12px 24px);
}
.host-card.special .special-badge {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 12px;
  background: rgba(17, 201, 205, 0.18);
  border: 1px solid rgba(17, 201, 205, 0.36);
  color: var(--teal);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.host-card.special .special-silhouette {
  position: relative; z-index: 1;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.host-card.special .host-photo .center {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
@media (max-width: 940px) {
  .hosts-grid { grid-template-columns: 1fr; gap: 18px; }
  .host-photo { height: 220px; }
}

/* ---------- FAQ (clean soft grey) ---------- */
.faq-section { background: var(--bg-page); }
.faq-wrap { margin-top: 32px; max-width: 800px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 180ms var(--ease), box-shadow 200ms var(--ease);
}
.faq-item.open { border-color: var(--teal-200); box-shadow: var(--shadow-2); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  letter-spacing: -0.008em;
}
.faq-q .icn {
  flex-shrink: 0;
  color: var(--teal-700);
  margin-left: 16px;
  transition: transform 240ms var(--ease);
}
.faq-item.open .faq-q .icn { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease);
  padding: 0 24px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
}
.faq-a p, .faq-a > * {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 280ms var(--ease) 80ms, transform 280ms var(--ease) 80ms;
}
.faq-item.open .faq-a p,
.faq-item.open .faq-a > * { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .faq-a p, .faq-a > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.faq-a p + p { margin-top: 10px; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 24px 20px; }
@media (max-width: 600px) {
  .faq-q { padding: 18px; font-size: 15.5px; }
  .faq-item.open .faq-a { padding: 0 18px 18px; }
}

/* ---------- Final CTA ---------- */
.final {
  position: relative;
  color: #fff;
  padding: 96px 0 0;
  overflow: hidden;
  isolation: isolate;
}
.final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 0%, rgba(17, 201, 205, 0.18), transparent 60%),
    radial-gradient(ellipse 600px 500px at 10% 100%, rgba(17, 201, 205, 0.08), transparent 65%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 60%, var(--navy-darker) 100%);
  z-index: -2;
}
.final::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
.final-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Final CTA + footer merged: footer sits inside the .final section */
.final-footer {
  position: relative;
  margin-top: 80px;
}
.final-footer-divider {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 56px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.final-footer-inner {
  padding: 40px 24px 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.6);
}
.final-footer-inner .logo { height: 44px; opacity: 0.92; display: block; }
.final-footer-inner .trust { font-size: 13px; color: rgba(255, 255, 255, 0.7); font-weight: 500; }
.final-footer-inner .copy { font-size: 12.5px; color: rgba(255, 255, 255, 0.45); margin-top: 2px; }

.final h2 {
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(34px, 4.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 16px 0 18px;
  line-height: 1.08;
}
.final p.body {
  color: rgba(255,255,255,0.78);
  font-size: 17.5px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
}
.final .support {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.final .support .sep {
  color: var(--teal);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 600px) { .final { padding: 72px 0; } }

/* ---------- Footer ---------- */
/* ---------- Footer (matches the Final CTA background exactly) ---------- */
.footer {
  position: relative;
  background: var(--navy-darker);
  color: rgba(255,255,255,0.6);
  padding: 40px 0 32px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 56px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.footer .container { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer .logo { height: 44px; opacity: 0.92; display: block; }
.footer .trust { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
.footer .copy { font-size: 12.5px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* Final CTA + footer share a flat dark base. The CTA's teal glow fades to
   transparent before the bottom edge so the seam to the footer is invisible. */
.final {
  background: var(--navy-darker);
}
.final::before {
  background:
    radial-gradient(ellipse 700px 500px at 80% 0%, rgba(17, 201, 205, 0.18), transparent 60%),
    radial-gradient(ellipse 600px 360px at 10% 50%, rgba(17, 201, 205, 0.08), transparent 65%);
}

/* ---------- Floating CTA (v2 — simpler) ---------- */
.float-cta {
  position: fixed;
  left: 50%; bottom: 22px;
  transform: translateX(-50%) translateY(160%);
  z-index: 70;
  display: inline-flex; align-items: center;
  background: var(--teal);
  color: #fff;
  padding: 0;
  border-radius: var(--r-btn);
  box-shadow: 0 14px 32px -10px rgba(17, 201, 205, 0.50), 0 4px 12px rgba(10,20,40,0.18);
  transition: transform 360ms var(--ease), opacity 240ms var(--ease), background 160ms var(--ease);
  max-width: calc(100vw - 32px);
  overflow: hidden;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
}
.float-cta:hover { background: var(--teal-700); }
.float-cta.is-shown { transform: translateX(-50%) translateY(0); }
.float-cta.is-hidden { opacity: 0; transform: translateX(-50%) translateY(160%); pointer-events: none; }
.float-cta .label-desktop {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}
.float-cta .label-desktop .sep { color: rgba(255,255,255,0.45); margin: 0 2px; font-weight: 500; }
.float-cta .label-desktop .muted { color: rgba(255,255,255,0.82); font-weight: 500; }
.float-cta .label-mobile {
  display: none;
  align-items: center; justify-content: center; gap: 8px;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  width: 100%;
}

@media (max-width: 720px) {
  .float-cta {
    left: 12px; right: 12px; bottom: 12px;
    transform: translateY(160%);
    max-width: none;
    justify-content: center;
  }
  .float-cta.is-shown { transform: translateY(0); }
  .float-cta.is-hidden { transform: translateY(160%); }
  .float-cta .label-desktop { display: none; }
  .float-cta .label-mobile { display: inline-flex; }
}

/* ---------- Hero entrance animations ---------- */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim { animation: heroIn 1400ms var(--ease) both; }
.hero-anim-1 { animation-delay: 100ms; }
.hero-anim-2 { animation-delay: 280ms; }
.hero-anim-3 { animation-delay: 460ms; }
.hero-anim-4 { animation-delay: 640ms; }
.hero-anim-5 { animation-delay: 760ms; }
.hero-anim-6 { animation-delay: 880ms; }

/* Play button gentle pulse */
@keyframes ringPulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.55; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}
.hero-video .play-ring-pulse {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 100px; height: 100px; border-radius: 50%;
  border: 1.5px solid rgba(17, 201, 205, 0.55);
  pointer-events: none;
  animation: ringPulse 2.6s var(--ease) infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim { animation: none !important; }
  .hero-video .play-ring-pulse { animation: none !important; opacity: 0; }
  .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1400ms var(--ease), transform 1400ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   POLISH PASS — cursor glow / pulse / pill / scroll highlight
   ============================================================ */

/* Cursor-reactive teal glow on dark sections */
.hero, .walk, .final { --mx: 50%; --my: 50%; }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .hero.has-cursor::before {
    background:
      radial-gradient(circle 520px at var(--mx) var(--my), rgba(17, 201, 205, 0.18), transparent 65%),
      radial-gradient(ellipse 700px 600px at 80% 18%, rgba(17, 201, 205, 0.22), transparent 60%),
      radial-gradient(ellipse 800px 600px at 10% 95%, rgba(17, 201, 205, 0.08), transparent 65%),
      linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 50%, var(--navy-darker) 100%);
  }
  .walk.has-cursor::before {
    background:
      radial-gradient(circle 500px at var(--mx) var(--my), rgba(17, 201, 205, 0.16), transparent 65%),
      radial-gradient(ellipse 600px 500px at 85% 20%, rgba(17, 201, 205, 0.14), transparent 60%),
      radial-gradient(ellipse 600px 400px at 10% 90%, rgba(17, 201, 205, 0.06), transparent 65%);
  }
  .final.has-cursor::before {
    background:
      radial-gradient(circle 520px at var(--mx) var(--my), rgba(17, 201, 205, 0.18), transparent 65%),
      radial-gradient(ellipse 700px 500px at 80% 0%, rgba(17, 201, 205, 0.18), transparent 60%),
      radial-gradient(ellipse 600px 360px at 10% 50%, rgba(17, 201, 205, 0.08), transparent 65%);
  }
}

/* Form CTA — idle pulse (6s loop, ~1.2s visible pulse, stops after interaction) */
@keyframes ctaIdlePulse {
  0%, 80%, 100% { box-shadow: 0 6px 18px -8px rgba(17, 201, 205, 0.55), 0 0 0 0 rgba(17, 201, 205, 0); }
  88% { box-shadow: 0 6px 18px -8px rgba(17, 201, 205, 0.55), 0 0 0 14px rgba(17, 201, 205, 0.22); }
  96% { box-shadow: 0 6px 18px -8px rgba(17, 201, 205, 0.55), 0 0 0 30px rgba(17, 201, 205, 0); }
}
.form-card .btn-primary.is-idle {
  animation: ctaIdlePulse 6s var(--ease) infinite;
}
@media (prefers-reduced-motion: reduce) {
  .form-card .btn-primary.is-idle { animation: none; }
}

/* Final CTA button — always-on subtle pulse, same 6s rhythm */
.final .btn-primary {
  animation: ctaIdlePulse 6s var(--ease) infinite;
}
@media (prefers-reduced-motion: reduce) {
  .final .btn-primary { animation: none; }
}

/* Form session preview pill */
.session-preview {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px;
  padding: 11px 14px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: 10px;
  font-size: 13px;
  color: var(--teal-800);
  font-weight: 500;
  animation: pillIn 320ms var(--ease) both;
}
.session-preview .icn { color: var(--teal-700); flex-shrink: 0; }
.session-preview .pill-label { font-weight: 700; color: var(--teal-800); }
@keyframes pillIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .session-preview { animation: none; } }

/* See-live: active card highlight removed — left as no-op to avoid stuck states */

/* Add-to-calendar buttons in success state */
.calendar-buttons {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}
.calendar-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(19, 36, 74, 0.12);
  background: #fff;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), transform 160ms var(--ease);
}
.calendar-btn:hover {
  border-color: var(--teal);
  background: var(--teal-50);
  transform: translateY(-1px);
}
.calendar-btn .icn { color: var(--teal-700); display: inline-flex; }

/* Global reduced-motion audit */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Hero bullets (replaces hero video) ---------- */
.hero-bullets-wrap { margin-top: auto; }
.hero-bullets {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 24px 26px 22px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.hero-bullets-label {
  color: var(--teal-300, #6EE5E8);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-bullets-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-bullet {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.5;
}
.hero-bullet-icn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(17, 201, 205, 0.14);
  color: var(--teal-300, #6EE5E8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-bullet-t { padding-top: 4px; }

.mobile-only-bullets { display: none; }
@media (max-width: 940px) {
  .desktop-only-bullets { display: none; }
  .mobile-only-bullets { display: block; margin-top: 22px; }
  .hero-bullets { padding: 20px 20px 18px; }
  .hero-bullet { font-size: 14.5px; }
}

/* ---------- Testimonial photo (replaces initials avatar when photo provided) ---------- */
.testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  background: #E8EEF5;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(19, 36, 74, 0.12);
}
.testimonial-attrib { display: flex; align-items: center; gap: 14px; }

