/* =========================================================================
   Career Dwar — funnel design system
   White-first · deep navy primary · amber CTA · red urgency only
   Lato (primary — headlines/CTAs) · Avenir (secondary — body; Mulish web fallback)
   NOTE: class names used by script.js are frozen hooks — restyled, never renamed.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --navy:   #12294B;
  --slate:  #3E4C5E;
  --white:  #FFFFFF;
  --off:    #F6F8FB;
  --amber:  #E8A317;
  --amber-d:#C88A0E;
  --amber-l:#FCEFD3;
  --red:    #85234C;
  --green:  #1E9E62;
  --line:   #E3E9F2;
  --line-d: #C9D4E2;
  --tp:     #00B67A;

  --font-h: "Lato", "Avenir", ui-sans-serif, system-ui, sans-serif;
  --font-b: "Avenir Next", "Avenir", "Mulish", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --spring: cubic-bezier(.34, 1.4, .64, 1);
  --shadow-sm: 0 2px 10px rgba(18, 41, 75, .07);
  --shadow-md: 0 10px 30px rgba(18, 41, 75, .10);
  --shadow-lg: 0 22px 60px rgba(18, 41, 75, .16);
  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  color: var(--slate);
  background: var(--white);
  line-height: 1.55;
  font-size: 22px;   /* FBM parity — same on desktop and mobile */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
main { display: block; }
p, li, a { overflow-wrap: break-word; }

::selection { background: rgba(232, 163, 23, .3); color: var(--navy); }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, label:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

/* visually hidden, still read by screen readers */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.wrap-narrow { max-width: 800px; }
.wrap-mid { max-width: 960px; }
.section { padding: 80px 0; }
.band { background: var(--off); }

/* ---------- Typography ---------- */
h1, h2, h3 {
  overflow-wrap: break-word;
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -.01em;
}
.section-head { text-align: center; max-width: 860px; margin: 0 auto 48px; }
.section-title { font-size: 38px; font-weight: 800; }
.section-lead { color: var(--slate); font-size: 22px; margin-top: 14px; }
.link { color: var(--amber-d); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.link:hover { color: var(--navy); }

/* headline highlights */
.hl-red { color: var(--red); }
.hl-fire { color: #85234C; }
.hl-win { color: #25FF00; }
.cage-ico { display: flex; justify-content: center; margin-bottom: 16px; }
.hl-amber { color: var(--amber); }
.hl-mark {
  background: linear-gradient(transparent 55%, rgba(232, 163, 23, .38) 55% 92%, transparent 92%);
  padding: 0 .08em;
}
.hl-without { text-decoration: underline; text-decoration-color: var(--amber); text-decoration-thickness: 3px; text-underline-offset: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-h); font-weight: 600; font-size: 1.2rem; line-height: 1;
  padding: 16px 44px; border-radius: 999px;
  color: #FFFFFF;
  background: #E8238C;
  border: 1px solid rgba(140, 10, 80, .35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 10px 26px rgba(232, 35, 140, .34);
  position: relative; overflow: hidden;
  transition: transform .25s var(--spring), box-shadow .25s ease, filter .25s ease;
  text-align: center; white-space: nowrap;
}
.btn::after {
  content: ""; position: absolute; top: -4px; bottom: -4px; width: 38%; left: -60%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-20deg);
}
.btn:hover::after { left: 125%; transition: left .65s ease; }
.btn:hover { transform: translateY(-2px); background: #D41A7E; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 16px 36px rgba(232, 35, 140, .45); }
.btn:active { transform: translateY(0) scale(.985); }
.btn-arrow { flex: none; transition: transform .25s var(--spring); }
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn-sm { padding: 12px 24px; font-size: 1.05rem; }
.btn-lg { padding: 18px 46px; font-size: 1.28rem; }
.btn-block { display: flex; width: 100%; }
.section-cta { text-align: center; margin-top: 40px; }
.section-cta.left { text-align: left; }

.btn.loading { pointer-events: none; opacity: .9; }
.btn .btn-spinner {
  display: none; width: 17px; height: 17px; flex: none;
  border: 2px solid rgba(255, 255, 255, .4); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite;
}
.btn.loading .btn-spinner { display: inline-block; }
.btn.loading .btn-arrow { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Sticky top: header ---------- */
.top-stack { position: sticky; top: 0; z-index: 90; }
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(18, 41, 75, .1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; padding-block: 10px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 42px; width: auto; }
.header-nav { display: flex; gap: 24px; }
.header-nav a { font-size: .92rem; font-weight: 600; color: var(--slate); transition: color .2s ease; padding: 12px 2px; display: inline-block; }
.header-nav a:hover { color: var(--navy); }

/* ---------- Hero ---------- */
.hero { padding: 44px 0 56px; background:
  radial-gradient(900px 420px at 85% -10%, rgba(232, 163, 23, .1), transparent 60%),
  var(--white);
}
.hero-eyebrow {
  text-align: center; color: var(--red);
  font-weight: 700; font-size: 23px;
  max-width: 60ch; margin: 0 auto;
}
.hero-title {
  text-align: center;
  font-size: 47px;
  font-weight: 800; line-height: 1.18;
  max-width: none; margin: 24px auto 0;
  text-wrap: balance;
}
.hero-authority {
  text-align: center; max-width: 62ch; margin: 26px auto 0;
  font-size: 21px; color: var(--slate);
}
.hero-authority b { color: var(--navy); }
.auth-live {
  display: block; margin-top: 18px;
  font-family: var(--font-h); font-weight: 600;
  font-size: 1.15rem; color: var(--navy); letter-spacing: .01em;
}
.auth-ratings { display: block; margin-top: 14px; }
.ar-item { display: inline-flex; align-items: center; gap: 6px; vertical-align: middle; }
.star-gold { color: var(--amber); }
.hero-eligibility {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: fit-content; max-width: min(94%, 620px); margin: 24px auto 0;
  background: var(--off); border: 1px solid var(--line-d);
  border-radius: 999px; padding: 10px 22px;
  font-size: 1.0625rem; font-weight: 600; color: var(--navy);
}
.hero-eligibility svg { color: var(--green); flex: none; }
.hero-eligibility span { line-height: 1.4; text-align: center; }
.hero-body {
  display: grid; grid-template-columns: 1.12fr .88fr; gap: 40px;
  align-items: start; margin-top: 40px;
}
.hero-video { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 130px; }
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-lg);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame:not(.is-playing) { cursor: pointer; }
.video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; gap: 14px;
  align-items: center; justify-content: center; text-align: center;
  color: #CBD8EA; font-weight: 600; font-size: .95rem;
  background: linear-gradient(160deg, #1A3767, var(--navy));
}
.play-rect {
  width: 56px; height: 32px; border-radius: 8px; position: relative;
  background: rgba(8, 15, 26, .55); color: #fff;
  display: grid; place-items: center;
  transition: background .25s ease, transform .25s ease;
}
.video-frame:hover .play-rect { background: #85234C; transform: scale(1.05); }
.facade-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.video-placeholder .play-rect, .video-placeholder p { position: relative; z-index: 1; }
.video-placeholder.has-poster p { display: none; }
.hero-badges { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; }
.hero-badges li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--navy); }
.tick { color: var(--green); flex: none; }

/* ---------- Registration box ---------- */
.reg-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--r-lg);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.reg-card::before {
  content: ""; position: absolute; top: -2px; left: 24px; right: 24px; height: 5px;
  border-radius: 0 0 6px 6px; background: var(--amber);
}
.reg-head { text-align: center; margin-bottom: 14px; }
.reg-kicker { font-family: var(--font-h); font-weight: 800; font-size: 1.45rem; color: var(--navy); line-height: 1.15; }
.reg-sub { color: var(--slate); font-size: .9rem; margin-top: 6px; font-weight: 600; }
.next-session {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 7px;
  font-size: 1.125rem; color: var(--slate); font-weight: 600;   /* 18px */
  margin-bottom: 8px;
}
.next-session b { color: var(--navy); font-weight: 600; }
.ns-label { white-space: nowrap; }
.next-session svg { color: var(--amber-d); flex: none; }

/* countdown — the only red urgency device */
.countdown {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 16px; min-height: 44px;
}
.cd-seg {
  display: inline-flex; flex-direction: column; align-items: center;
  min-width: 44px; padding: 5px 6px 4px;
  background: #F7E7EF; border: 1px solid #E0B7C9; border-radius: 8px;
}
.cd-seg b {
  font-family: var(--font-h); font-weight: 800; font-size: 1.05rem;
  color: var(--red); line-height: 1; font-variant-numeric: tabular-nums;
}
.cd-seg i { font-style: normal; font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #B3554A; margin-top: 2px; }

.reg-form { display: flex; flex-direction: column; gap: 13px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; font-size: .84rem; color: var(--navy); }
.field label .opt { font-weight: 500; color: #7C8898; }
.field input, .field select {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid var(--line-d); border-radius: var(--r-sm);
  font: inherit; font-size: 1rem; background: var(--white); color: var(--navy);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder { color: #7C8898; font-weight: 500; }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(232, 163, 23, .18);
}
.field input.invalid { border-color: var(--red); box-shadow: 0 0 0 4px rgba(133, 35, 76, .12); }
.field-err { color: var(--red); font-size: .8rem; display: none; }
.field.show-err .field-err { display: block; animation: shake .4s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); } 40% { transform: translateX(4px); }
  60% { transform: translateX(-2px); } 80% { transform: translateX(2px); }
}
.phone-row { display: grid; grid-template-columns: 104px 1fr; gap: 8px; }
.phone-row select { padding-inline: 8px; cursor: pointer; }
.field-hint { font-size: .78rem; color: #7C8898; }
.reg-form-error {
  display: none; background: #F7E7EF; color: #711D41;
  border: 1px solid #E0B7C9; border-radius: 10px;
  padding: 11px 14px; font-size: .87rem; font-weight: 600;
}
.reg-form-error.show { display: block; }
.reg-form .btn { margin-top: 2px; padding: 16px 24px; font-size: 1.15rem; }
.reg-fineprint {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .875rem; color: #7C8898; margin-top: 2px; text-align: center;
}
.reg-fineprint svg { color: var(--green); flex: none; }
.reg-secrets {
  list-style: none; padding: 12px 0 0; margin: 12px 0 0;
  border-top: 1px dashed var(--line-d);
  display: grid; gap: 8px; text-align: center;
  font-size: .9375rem; font-weight: 600; color: var(--navy);
}
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line-d);
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--slate);
  background: var(--off); border: 1px solid var(--line); border-radius: 9px;
  padding: 7px 11px;
  transition: transform .25s var(--spring), box-shadow .25s ease;
}
.trust-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.trust-badge b { color: var(--navy); }
.trust-badge small { color: #7C8898; font-size: .74rem; }
.tp-star { width: 18px; height: 18px; border-radius: 4px; background: var(--tp); color: #fff; display: grid; place-items: center; flex: none; }
.tp-star.big { width: 26px; height: 26px; border-radius: 6px; }
.g-mark { font-weight: 800; font-size: .95rem; color: #4285F4; }
.g-mark.big { font-size: 1.5rem; }

/* ---------- Secrets ---------- */
.secrets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.secret {
  background: var(--white); border: 2px solid var(--line); border-radius: var(--r-md);
  padding: 32px 28px; box-shadow: var(--shadow-sm); text-align: center;
  transition: transform .3s var(--spring), box-shadow .3s ease, border-color .3s ease;
}
.secret:hover { transform: scale(1.03); box-shadow: 0 12px 30px rgba(0, 0, 0, .22); }
.secret-tag {
  display: inline-block; font-family: var(--font-h); font-weight: 800;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); background: #F7E7EF; border-radius: 999px; padding: 7px 16px;
}
.secret h3 { font-size: clamp(1.3rem, 2.15vw, 1.9375rem); margin-top: 16px; line-height: 1.3; }
.secret p { font-size: 1.04rem; margin-top: 10px; }
.secret b { color: var(--navy); }

/* ---------- Pain checklist ---------- */
.pain-progress {
  max-width: 420px; margin: 0 auto 26px; height: 7px;
  background: var(--line); border-radius: 999px; overflow: hidden;
  opacity: 0; transition: opacity .3s ease;
}
.pain-progress.visible { opacity: 1; }
.pain-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--amber), #F7B733);
  border-radius: 999px; transition: width .5s var(--ease);
}
.pain-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pain {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 14px 16px; cursor: pointer;
  transition: border-color .25s ease, background .25s ease, transform .25s var(--spring), box-shadow .25s ease;
}
.pain:hover { transform: scale(1.02); box-shadow: 0 8px 20px rgba(0, 0, 0, .18); }
.pain input {
  appearance: none; -webkit-appearance: none; flex: 0 0 22px;
  width: 22px; height: 22px; margin-top: 2px;
  border: 2px solid var(--line-d); border-radius: 6px;
  display: grid; place-items: center; cursor: pointer; background: var(--white);
  transition: background .2s ease, border-color .2s ease, transform .2s var(--spring);
}
.pain input:checked { background: var(--green); border-color: var(--green); transform: scale(1.05); }
.pain input:checked::after { content: "✓"; color: #fff; font-size: .8rem; font-weight: 800; }
.pain.checked { background: #F0F9F4; border-color: var(--green); }
.pain span { font-size: .95rem; color: var(--slate); line-height: 1.5; }
.pain-tally { text-align: center; margin-top: 24px; font-weight: 700; font-size: 1.02rem; color: var(--navy); }
.pain-tally b { color: var(--red); }

/* ---------- Reframe (.maze-sec) ---------- */
.maze-sec { background: #85234C; }
.maze-sec .section-title { color: #fff; }
.reframe-card {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .35);
  border-left: 5px solid var(--amber);
  border-radius: var(--r-md); padding: 30px 32px;
  color: var(--slate);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}
.reframe-big { font-family: var(--font-h); font-weight: 700; font-size: 1.3rem; color: var(--navy); }
.reframe-punch { font-family: var(--font-h); font-weight: 800; font-size: clamp(1.5rem, 3.4vw, 2rem); color: var(--navy); margin-top: 6px; }
.reframe-card p { margin-top: 14px; }
.reframe-card b { color: var(--navy); }

/* ---------- Who cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.who-card {
  background: var(--white); border: 2px solid var(--line); border-radius: var(--r-md);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--spring), box-shadow .3s ease, border-color .3s ease;
}
.who-card:hover { transform: scale(1.03); box-shadow: 0 12px 30px rgba(0, 0, 0, .22); }
.who-ico { display: inline-flex; line-height: 1; }
.who-ico svg { display: block; }
/* wine sections (owner colour #85234C) */
.wine-sec { background: #85234C; }
.wine-sec .section-title { color: #fff; }
.wine-sec .section-lead { color: #F2D7E2; }
.who-card h3 { font-size: 1.35rem; margin-top: 12px; }
.who-card p { font-size: .95rem; margin-top: 8px; }

/* ---------- Before / After ---------- */
.ba-table { border: 2px solid var(--line-d); border-radius: var(--r-md); overflow: hidden; background: var(--white); box-shadow: var(--shadow-md); }
.ba-head { display: grid; grid-template-columns: 1fr 1fr; }
.ba-col-h {
  font-family: var(--font-h); font-weight: 800; font-size: .95rem;
  text-align: center; padding: 14px 12px; text-transform: uppercase; letter-spacing: .04em;
}
.ba-before-h { background: #F7E7EF; color: var(--red); }
.ba-after-h { background: #E9F7F0; color: var(--green); }
.ba-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.ba-before, .ba-after { display: flex; gap: 10px; align-items: flex-start; padding: 15px 18px; font-size: .95rem; }
.ba-before { color: var(--slate); background: #FBF4F8; }
.ba-before svg { color: var(--red); flex: none; margin-top: 3px; }
.ba-after { color: var(--navy); font-weight: 500; background: #FAFDFB; border-left: 1px solid var(--line); }
.ba-after svg { color: var(--green); flex: none; margin-top: 3px; }

/* ---------- Playbooks (#playbooks) ---------- */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.res-card {
  background: var(--white); border: 2px solid var(--line); border-radius: var(--r-md);
  padding: 22px;
  transition: transform .3s var(--spring), border-color .3s ease, box-shadow .3s ease;
}
.res-card:hover { transform: scale(1.03); box-shadow: 0 12px 30px rgba(0, 0, 0, .22); }
.res-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.res-num { font-family: var(--font-h); font-weight: 800; font-size: 1rem; color: var(--amber-d); }
.res-tag {
  font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.tag-fw   { color: var(--amber-d); background: var(--amber-l); }
.tag-pdf  { color: #7A44C9; background: #F1E9FC; }
.tag-tpl  { color: var(--green); background: #E9F7F0; }
.tag-mini { color: var(--red); background: #F7E7EF; }
.res-ico { display: block; margin: 12px 0 10px; }
.res-ico svg { display: block; }
.res-card h3 { font-size: 1.25rem; line-height: 1.3; }
.res-card p { font-size: .9rem; margin-top: 8px; }
.res-more { text-align: center; margin-top: 26px; font-weight: 600; color: var(--slate); }
.res-more b { color: var(--navy); }

.qa-banner {
  margin: 0 0 44px; border-radius: var(--r-lg);
  border: 2px solid rgba(146, 99, 6, .4);
  background:
    radial-gradient(420px 140px at 12% 0%, rgba(255, 255, 255, .55), transparent 60%),
    linear-gradient(120deg, #FFF3D2 0%, #FFDF96 42%, #F7B733 100%);
  padding: 26px 30px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 16px 40px rgba(232, 163, 23, .35), inset 0 1px 0 rgba(255, 255, 255, .6);
  position: relative; overflow: hidden;
}
.qa-banner::after {
  content: ""; position: absolute; top: -30%; bottom: -30%; width: 34%; left: -50%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-18deg);
  animation: qa-shine 4.5s ease-in-out infinite;
}
@keyframes qa-shine { 0%, 55% { left: -50%; } 85%, 100% { left: 130%; } }
@media (prefers-reduced-motion: reduce) { .qa-banner::after { animation: none; } }
.qa-cal { font-size: 2.2rem; flex: none; }
.qa-copy { flex: 1 1 340px; }
.qa-banner h3 { color: var(--navy); font-size: 1.5rem; position: relative; z-index: 1; }
.qa-banner p { margin-top: 6px; font-size: 1.02rem; color: #4A3208; position: relative; z-index: 1; }
.qa-banner b { color: var(--navy); }

/* ---------- Q&A deep dive ---------- */
.qa-grid { display: grid; gap: 14px; }
.qa-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 2px solid var(--line); border-radius: var(--r-md);
  padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.qa-n {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: var(--amber);
  font-family: var(--font-h); font-weight: 800;
  display: grid; place-items: center;
}
.qa-item h3 { font-size: 1.2rem; }
.qa-item p { font-size: .95rem; margin-top: 6px; }
.qa-note { text-align: center; margin-top: 20px; font-weight: 600; color: var(--navy); font-size: .95rem; }

/* ---------- Case studies (#results) ---------- */
.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cs-card { display: flex; }

/* watch-story button — script.js injects the real video poster into it */
.vt-card {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border: 0; border-radius: var(--r-sm); overflow: hidden;
  background: linear-gradient(160deg, #1A3767, var(--navy));
  padding: 0; text-align: left; margin-top: auto;
  transition: transform .25s var(--spring), box-shadow .25s ease;
}
.vt-card:hover { transform: scale(1.03); box-shadow: 0 12px 30px rgba(0, 0, 0, .28); }
.vt-thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vt-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  width: 56px; height: 32px; border-radius: 8px; z-index: 2;
  background: rgba(8, 15, 26, .55); color: #fff;
  display: grid; place-items: center;
  transition: background .25s ease, transform .25s var(--spring);
}
.vt-card:hover .vt-play { transform: translate(-50%, -60%) scale(1.08); background: #85234C; }

/* ---------- Social proof band (#proofs) ---------- */
.proof-band { padding: 54px 0; }
.proof-badges { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-bottom: 40px; }
.proof-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 2px solid var(--line); border-radius: var(--r-md);
  padding: 16px 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--spring), border-color .25s ease, box-shadow .25s ease;
}
.proof-badge:hover { transform: scale(1.03); box-shadow: 0 12px 30px rgba(0, 0, 0, .22); }
.pb-num { font-family: var(--font-h); font-weight: 800; font-size: 1.5rem; color: var(--navy); display: flex; flex-direction: column; line-height: 1.1; }
.pb-stars { color: var(--amber); font-size: .72rem; letter-spacing: 2px; }
.pb-label { font-size: .88rem; font-weight: 600; color: var(--slate); }
.featured-label {
  text-align: center; text-transform: uppercase; letter-spacing: .16em;
  font-size: .72rem; font-weight: 800; color: #8B99AB; margin-bottom: 20px;
}
.featured-rail {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.featured-track {
  display: flex; align-items: center;
  gap: clamp(44px, 7vw, 90px);
  width: max-content;
  animation: marquee 36s linear infinite;
  padding-inline: clamp(24px, 4vw, 48px);
}
.featured-track:hover { animation-play-state: paused; }
.featured-track img {
  height: clamp(34px, 4.5vw, 52px); width: auto; object-fit: contain;
  border-radius: 6px;
  transition: transform .3s var(--spring);
}
.featured-track img:hover { transform: translateY(-3px) scale(1.05); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Reviews (.testi-grid) ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi {
  background: var(--white); border: 2px solid var(--line); border-radius: var(--r-md);
  padding: 22px; display: flex; flex-direction: column;
  transition: transform .3s var(--spring), border-color .3s ease, box-shadow .3s ease;
}
.testi:hover { transform: scale(1.03); box-shadow: 0 12px 30px rgba(0, 0, 0, .22); }
.testi-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.testi .stars { color: var(--amber); letter-spacing: 2px; font-size: .9rem; }
.testi .via { font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--tp); }
.testi .quote { font-size: .95rem; line-height: 1.62; }
.testi .person { margin-top: auto; padding-top: 14px; font-size: .9rem; color: var(--navy); }

/* ---------- Logo wall ---------- */
.logo-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.logos-sec .section-title { white-space: nowrap; font-size: clamp(1.5rem, 7.4vw, 38px); }
.logo-marquee { overflow: hidden; margin-top: 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.logo-track { display: flex; width: max-content; animation: logo-scroll 42s linear infinite; }
.logo-half { display: flex; align-items: center; gap: 62px; padding-right: 62px; }
.logo-half img { height: 54px; width: auto; max-width: 190px; object-fit: contain; flex: none; }
.logo-half img[alt="Genpact"] { transform: scale(1.45); }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logo-scroll { to { transform: translateX(-50%); } }
@media (max-width: 680px) { .logo-half { gap: 40px; padding-right: 40px; } .logo-half img { height: 40px; max-width: 140px; } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } .logo-marquee { overflow-x: auto; } }
.logo-chip {
  display: grid; place-items: center;
  min-width: clamp(150px, 16vw, 200px);
  padding: 18px 26px;
  background: var(--white); border: 2px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--spring), border-color .25s ease, box-shadow .25s ease;
}
.logo-chip:hover { transform: scale(1.03); box-shadow: 0 12px 30px rgba(0, 0, 0, .22); }
.logo-chip img { height: clamp(46px, 5.5vw, 64px); width: auto; max-width: 190px; object-fit: contain; }
.logo-chip img[alt="Genpact"] { transform: scale(1.45); }   /* source file has baked-in whitespace */
@media (max-width: 680px) {
  .logo-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .logo-chip { min-width: 0; height: 72px; padding: 12px 14px; }
  .logo-chip img { height: auto; max-height: 34px; max-width: 120px; }
}

/* ---------- Stats band ---------- */
.stats-band { background: #85234C; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 38px 0; }
.stat { text-align: center; padding: 6px 10px; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px;
  background: rgba(255, 255, 255, .12);
}
.stat-num {
  display: block; font-family: var(--font-h); font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.1;
  color: #fff; font-variant-numeric: tabular-nums;
}
.stat-label { display: block; font-size: .8rem; color: rgba(255, 255, 255, .85); margin-top: 6px; font-weight: 600; }

/* ---------- Not for you ---------- */
.notfor-list { list-style: none; padding: 0; display: grid; gap: 12px; max-width: 640px; margin-inline: auto; }
.notfor-list li {
  display: flex; gap: 12px; align-items: flex-start;
  background: #FBF4F8; border: 1.5px solid #E0B7C9; border-radius: var(--r-sm);
  padding: 15px 18px; font-size: .98rem;
}
.notfor-list svg { color: var(--red); flex: none; margin-top: 3px; }
.notfor-list b { color: var(--navy); }
.notfor-flip { text-align: center; margin-top: 24px; font-weight: 700; color: var(--navy); font-size: 1.05rem; }

/* ---------- Mentor (#mentor) ---------- */
.mentor-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.mentor-photo { display: flex; justify-content: center; }
.arch-frame {
  position: relative; width: min(360px, 100%); aspect-ratio: 4/5;
  border-radius: var(--r-lg); overflow: hidden;
  border: 3px solid var(--navy);
  background: linear-gradient(160deg, #1A3767, var(--navy));
  box-shadow: var(--shadow-lg);
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.arch-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.monogram { font-family: var(--font-h); font-weight: 800; font-size: 4rem; color: var(--amber); line-height: 1; }
.arch-cap { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #9FB4D2; }
.arch-frame.photo-missing img { display: none; }
.mentor-eyebrow {
  color: var(--red); font-weight: 800; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
}
.mentor-role { font-size: .88rem; font-weight: 700; color: #8B99AB; margin-top: 8px; text-transform: uppercase; letter-spacing: .06em; }
.mentor-quote {
  font-family: var(--font-h); font-weight: 700; font-size: 1.25rem;
  color: var(--navy); margin-top: 18px;
  border-left: 4px solid var(--amber); padding-left: 16px;
}
.mentor-bio { margin-top: 16px; }
.mentor-bio b { color: var(--navy); }
.creds { list-style: none; padding: 0; margin: 20px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.creds li { display: flex; gap: 9px; align-items: flex-start; font-weight: 600; font-size: .92rem; color: var(--navy); }
.creds .tick { margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 2px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; overflow: hidden;
}
.faq-item:hover { transform: scale(1.01); box-shadow: 0 8px 20px rgba(0, 0, 0, .15); }
.faq-item.open { border-color: var(--amber); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; background: none; border: 0;
  padding: 17px 20px; font-family: var(--font-h); font-weight: 700; font-size: .98rem; color: var(--navy);
}
.faq-x { position: relative; width: 16px; height: 16px; flex: none; }
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; background: var(--amber-d); border-radius: 2px;
  transition: transform .35s var(--spring);
}
.faq-x::before { left: 0; right: 0; top: 7px; height: 2.5px; }
.faq-x::after { top: 0; bottom: 0; left: 7px; width: 2.5px; }
.faq-item.open .faq-x::after { transform: scaleY(0); }
.faq-a { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .45s var(--ease); }
.js .faq-a { grid-template-rows: 0fr; }
.js .faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 20px 17px; font-size: .95rem; }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(700px 380px at 50% -10%, rgba(232, 163, 23, .16), transparent 60%),
    #85234C;
  text-align: center; padding: 84px 0 78px;
}
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 4.6vw, 2.9rem); font-weight: 800; }
.final-cta > .wrap > p { color: #F2D7E2; font-size: 1.08rem; margin: 16px 0 30px; }
.final-cta b { color: #fff; }
.final-micro {
  margin-top: 20px; font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .8);
}

/* ---------- Footer ---------- */
.site-footer { background: #85234C; color: #F2D7E2; padding: 44px 0 114px; }
.footer-inner { text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.footer-brand { font-family: var(--font-h); font-weight: 800; font-size: 1.25rem; color: #fff; }
.footer-brand em { font-style: normal; color: var(--amber); }
.footer-contact {
  list-style: none; padding: 0; margin: 6px 0 2px;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 30px;
}
.footer-contact li { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; }
.fc-ico { display: inline-grid; place-items: center; flex: none; color: #F7B733; }
.fc-text { color: #fff; font-size: .95rem; font-weight: 600; }
a.fc-text { transition: color .2s ease; padding: 11px 0; margin: -11px 0; }
a.fc-text:hover { color: #F7B733; }
@media (max-width: 680px) {
  .footer-contact { gap: 9px 22px; }
  .fc-text { font-size: .9rem; }
}
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center; }
.footer-links a { color: #F2D7E2; font-size: .88rem; transition: color .2s ease; padding: 12px 4px; display: inline-block; }
.footer-links a:hover { color: var(--amber); }
.footer-legal { font-size: .82rem; }
.footer-disc { font-size: .72rem; color: rgba(255, 255, 255, .62); max-width: 64ch; line-height: 1.6; }

/* ---------- Registration teaser (hero) ---------- */
.reg-teaser {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--r-lg);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-lg);
  position: relative; text-align: center;
}
.reg-teaser::before {
  content: ""; position: absolute; top: -2px; left: 24px; right: 24px; height: 5px;
  border-radius: 0 0 6px 6px; background: var(--amber);
}
.reg-teaser .reg-gift { margin-bottom: 16px; }
.reg-teaser .btn { margin-top: 14px; }
.reg-teaser .reg-fineprint { margin-top: 10px; }
.reg-gift {
  font-family: var(--font-h); color: var(--navy);
  background: var(--amber-l); border: 1.5px dashed var(--amber);
  border-radius: var(--r-sm); padding: 14px 16px 12px;
  text-align: center;
}
.gift-head { font-size: 1.5rem; font-weight: 700; letter-spacing: .01em; }
.gift-head b { font-weight: 800; }
.reg-gift b { font-weight: 800; }
.gift-list { list-style: decimal; margin: 10px 0 0; padding: 0; display: inline-block; text-align: left; }
.gift-list li {
  font-size: 1.15rem; font-weight: 700; line-height: 1.45;
  margin-left: 1.25em; padding-left: .1em;
  white-space: normal; overflow-wrap: break-word;
}
.gift-list { max-width: 100%; }
.gift-free { display: block; margin-top: 10px; color: var(--red); font-weight: 800; font-size: 1.2rem; }
.reg-gift.sm { font-size: .92rem; padding: 9px 14px; margin-bottom: 12px; }
.tb-stars { color: var(--amber); font-size: .72rem; letter-spacing: 1px; }

/* ---------- Registration popup ---------- */
.reg-modal {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(8, 18, 36, .78);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 4vh 16px 16px;
  overflow-y: auto;
  opacity: 0; transition: opacity .25s ease;
}
.reg-modal.open { display: flex; opacity: 1; }
.reg-modal-inner {
  width: min(430px, 100%); position: relative;
  transform: translateY(14px); transition: transform .3s var(--ease);
}
.reg-modal.open .reg-modal-inner { transform: none; }
.reg-close {
  position: absolute; top: -14px; right: -14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--navy);
  background: var(--white); color: var(--navy);
  font-size: 1rem; font-weight: 700;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform .2s var(--spring), background .2s ease;
}
.reg-close:hover { transform: scale(1.1); background: var(--amber); }
/* no-JS fallback: render the form inline after the hero */
html:not(.js) .reg-modal { display: block; position: static; background: none; padding: 24px 16px 40px; -webkit-backdrop-filter: none; backdrop-filter: none; opacity: 1; }
html:not(.js) .reg-modal-inner { margin-inline: auto; transform: none; }
html:not(.js) .reg-close { display: none; }

/* ---------- Sticky bottom bar (#mobileCta) — all viewports ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--white);
  border-top: 2px solid var(--navy);
  box-shadow: 0 -8px 30px rgba(18, 41, 75, .14);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  display: block;
  transform: translateY(102%);
  transition: transform .45s var(--ease);
}
.mobile-cta.visible { transform: translateY(0); }
.sticky-inner { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.sticky-info { font-size: .88rem; color: var(--slate); }
.sticky-info b { color: var(--navy); }
.sticky-cd { display: inline-flex; align-items: center; gap: 8px; }
.sticky-cd-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--red); }
.countdown-sm { min-height: 0; margin: 0; gap: 5px; }
.countdown-sm .cd-seg { min-width: 36px; padding: 3px 4px 2px; }
.countdown-sm .cd-seg b { font-size: .9rem; }
.countdown-sm .cd-seg i { font-size: .52rem; }

/* ---------- Video lightbox ---------- */
.vt-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 18, 36, .92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; transition: opacity .3s ease;
}
.vt-modal.open { display: flex; opacity: 1; }
.vt-modal-inner { width: min(960px, 94vw); position: relative; transform: scale(.96); transition: transform .35s var(--ease); }
.vt-modal.open .vt-modal-inner { transform: scale(1); }
.vt-modal-video {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #000; border-radius: var(--r-md); overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
}
.vt-modal-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vt-close {
  position: absolute; top: -52px; right: 0;
  width: 40px; height: 40px; border-radius: 50%; border: 0;
  background: var(--white); color: var(--navy);
  font-size: 1.05rem; font-weight: 700;
  display: grid; place-items: center;
  transition: transform .25s var(--spring), background .25s ease, color .25s ease;
}
.vt-close:hover { transform: scale(1.1); background: var(--amber); }
#vtModalMount iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- VSL player layer (no seek bar; pause + 5s skips) ---------- */
.vslx { position: absolute; inset: 0; }
.vslx iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vslx-surface {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background: transparent; border: 0; padding: 0; cursor: pointer;
}
.vslx-controls {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 16px;
  transition: opacity .25s ease;
}
.vslx.playing .vslx-controls { opacity: 0; pointer-events: none; }
.vslx.playing:hover .vslx-controls,
.vslx.playing .vslx-controls:focus-within { opacity: 1; pointer-events: auto; }
.vslx-toggle {
  width: 84px; height: 58px; border-radius: 14px;
  border: 1px solid rgba(146, 99, 6, .4);
  background: linear-gradient(180deg, #F7B733, var(--amber));
  color: var(--navy); display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 14px 40px rgba(8, 18, 36, .5);
  position: relative; padding: 0;
  transition: transform .25s var(--spring);
}
.vslx-toggle:hover { transform: scale(1.07); }
.vslx-toggle .ic-pause { display: none; }
.vslx.playing .ic-pause { display: block; }
.vslx.playing .ic-play { display: none; }
.vslx-skip {
  width: 56px; height: 46px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(8, 18, 36, .6);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; display: grid; place-items: center; padding: 0 0 10px;
  position: relative;
  transition: transform .22s var(--spring), background .22s ease, color .22s ease;
}
.vslx-skip i {
  position: absolute; bottom: 5px; left: 0; right: 0;
  font-size: .5rem; font-weight: 800; font-style: normal; letter-spacing: .06em; text-align: center;
}
.vslx-skip:hover { transform: scale(1.08); background: linear-gradient(180deg, #F7B733, var(--amber)); color: var(--navy); border-color: rgba(146, 99, 6, .4); }
.vslx-tip {
  position: absolute; bottom: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff;
  font-weight: 700; font-size: .76rem;
  padding: 7px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.vslx-toggle:hover .vslx-tip, .vslx-toggle:focus-visible .vslx-tip { opacity: 1; }

/* ---------- Entrance reveals ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.in {
  opacity: 1; transform: none;
  animation: rise .7s var(--ease) backwards;
  animation-delay: calc(var(--i, 0) * 80ms);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  html { scroll-padding-top: 14px; }
  .header-nav { display: none; }
  .header-inner { justify-content: flex-start; padding-block: 8px; }
  .brand img { height: 34px; }
  .hero-body { grid-template-columns: minmax(0, 1fr); gap: 30px; max-width: 620px; margin-inline: auto; }
  .hero-video { position: static; }
  .secrets-grid, .cards-3, .res-grid, .cs-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; padding: 30px 0; }
  .stat:nth-child(2n)::after { display: none; }
  .mentor-grid { grid-template-columns: 1fr; gap: 34px; }
  .mentor-photo { order: -1; }
  .arch-frame { width: min(300px, 80vw); }
}
@media (max-width: 680px) {
  .site-footer { padding-bottom: 150px; }
  html { scroll-padding-top: 14px; }
  .section { padding: 52px 0; }
  .hero { padding: 26px 0 44px; }
  .hero-title { line-height: 1.14; margin-top: 18px; }
  .hero-authority { margin-top: 20px; }
  .reg-secrets { font-size: 16px; }
  .stat-label { font-size: .875rem; }
  .faq-q { font-size: 17px; }
  .cd-seg b { font-size: 1.15rem; }
  .secrets-grid, .cards-3, .res-grid, .cs-grid, .testi-grid { grid-template-columns: 1fr; }
  .pain-list { grid-template-columns: 1fr; }
  .ba-head, .ba-row { grid-template-columns: 1fr; }
  .ba-after { border-left: 0; border-top: 1px dashed var(--line); }
  .ba-before-h { border-radius: 0; }
  .ba-after-h { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat::after { display: none !important; }
  .reg-card { padding: 22px 18px 18px; }
  .sticky-info { display: none; }
  .sticky-inner { flex-direction: column; gap: 8px; }
  .mobile-cta .btn { width: 100%; max-width: 420px; }
  .btn { white-space: normal; }
  .btn-lg { padding: 18px 24px; }
  .proof-badges { gap: 12px; }
  .proof-badge { padding: 12px 16px; }
  .qa-banner { padding: 20px; }
  .final-cta { padding: 60px 0 56px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  .featured-track { animation: none !important; }
  .hero-video { position: static; }
}



/* ---------- Bonus modules grid (#playbooks, bm- namespace) ---------- */
.bm-wrap { max-width: 1080px; margin-inline: auto; padding: 0 20px; }
.bm-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.bm-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}
.bm-media {
  position: relative; width: 100%; aspect-ratio: 1688 / 2906;
  background: #2A1140;                     /* matches the poster art */
}
.bm-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bm-tag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  writing-mode: vertical-rl;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: 10px; line-height: 1; color: #fff;
  border: 1px solid rgba(255, 255, 255, .45); border-radius: 4px;
  padding: 8px 4px;
  background: rgba(0, 0, 0, .25);
}
.bm-body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: 16px 18px 18px; }
.bm-title {
  font-size: clamp(1rem, 1.6vw, 1.125rem); line-height: 1.3;
  font-weight: 700; color: var(--navy); letter-spacing: 0;
}
.bm-benefit { font-size: clamp(.9375rem, 1.5vw, 1rem); line-height: 1.35; font-weight: 400; color: var(--slate); }
.bm-worth { margin-top: auto; font-size: 13px; color: #5C6B7C; }

@media (max-width: 767px) {
  .bm-wrap { padding: 0 12px; }
  .bm-grid { gap: 10px; }
  .bm-tag { font-size: 8px; padding: 5px 3px; top: 6px; right: 6px; letter-spacing: .1em; }
  .bm-body { gap: 6px; padding: 9px 9px 10px; }
  .bm-title { font-size: .78rem; line-height: 1.25; }
  .bm-benefit { font-size: .72rem; line-height: 1.3; }
  .bm-worth { font-size: .66rem; }
}

@media (hover: hover) and (pointer: fine) {
  .bm-card { transition: transform .25s ease, box-shadow .25s ease; }
  .bm-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0, 0, 0, .14); }
}
@media (prefers-reduced-motion: reduce) {
  .bm-card, .bm-card:hover { transition: none; transform: none; }
}

/* ---------- Testimonial screenshots — 2x2 pager (.shots-sec) ---------- */
.shots-pager { position: relative; margin-top: 8px; }
.shots-stage { position: relative; overflow: hidden; height: 620px; }
.shots-page {
  position: absolute; inset: 0;
  display: grid; gap: 14px;
  transform: translateX(110%); transition: transform .55s var(--ease);
}
.shots-page--sq, .shots-page--wide { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.shots-page--tall { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
.shots-page.is-active { transform: translateX(0); }
.shots-page.exit-left { transform: translateX(-110%); }
.shots-page.exit-right { transform: translateX(110%); }
.shots-page.enter-right { transform: translateX(110%); transition: none; }
.shots-page.enter-left { transform: translateX(-110%); transition: none; }
.shots-page.shots-snap { transition: none; }
.shots-page:not(.is-active):not(.exit-left):not(.exit-right) { visibility: hidden; }
.shots-cell {
  display: flex; align-items: center; justify-content: center;
  min-width: 0; min-height: 0;
}
.shots-cell img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  border-radius: 12px;
  background: var(--white); box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
}
.shots-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: rgba(255, 255, 255, .22); color: #fff;
  font-size: 27px; line-height: 1; display: grid; place-items: center; padding: 0 0 4px;
  transition: background .2s ease;
}
.shots-nav:hover { background: rgba(255, 255, 255, .45); }
.shots-prev { left: 10px; }
.shots-next { right: 10px; }
@media (max-width: 680px) {
  .shots-stage { height: 430px; }
  .shots-page { gap: 10px; }
  .shots-nav { width: 44px; height: 44px; font-size: 23px; }
}
@media (prefers-reduced-motion: reduce) { .shots-page { transition: none; } }

/* ---------- Mentor + reframe on wine ---------- */
.wine-sec .mentor-eyebrow { color: #F7B733; }
.wine-sec .mentor-role { color: #E4B9CC; }
.wine-sec .mentor-bio { color: #F2D7E2; }
.wine-sec .mentor-bio b { color: #fff; }
.wine-sec .mentor-quote { color: #fff; }
.wine-sec .creds li { color: #F2D7E2; }
.wine-sec .creds b { color: #fff; }
.wine-sec .arch-frame { border-color: rgba(255, 255, 255, .75); }
