/* =============================================================================
   Coherence Institute — global styles (landing pages + shared components)
   Tokens aligned with ci-style-guide_v2.1.html; gradient-only blues stay in recipes.
   ============================================================================= */

/* ----- Tokens ----- */
:root {
  --blue-deep:   #01051F;
  --blue-bright: #00157F;
  --blue-royal:  #1e4aff;
  --gold:        #F2A228;
  --gold-deep:   #BB7E1F;
  --white:       #F7F9FE;
  --ink-body:    rgba(4,7,30,0.8);
  --white-dim:   rgba(247,249,254,0.75);
  --white-faint: rgba(247,249,254,0.5);
  --white-ghost: rgba(247,249,254,0.1);
  --gradient-gold: linear-gradient(135deg, #F2A228 0%, #BB7E1F 100%);
  --gradient-blue: linear-gradient(135deg, #00157F 0%, #01051F 100%);
  --hero-radial: radial-gradient(ellipse 90% 80% at 60% 20%, #0a1888 0%, #040760 32%, #050a2a 72%, #01051F 100%);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --page-max: 1200px;
  --nav-max: clamp(1200px, 94vw, 1520px);
  --prose-max: 65ch;
  --nav-h: 72px;
  --utility-h: 36px;
}

.page--compact {
  --page-max: 760px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}
body {
  background: var(--blue-deep);
  color: var(--white);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: clip;
  max-width: 100%;
}
.page--compact body { font-size: 16px; }

/* Compact landing template (e.g. turbo-sessions) */
.page--compact .hero-section { padding: 80px 0 96px; }
.page--compact .heading--display {
  font-size: clamp(56px, 9vw, 90px);
  margin-bottom: 8px;
  animation-delay: 0.15s;
}
.page--compact .kicker--hero { animation-delay: 0.05s; }
.page--compact .hero-tagline { margin-bottom: 28px; animation-delay: 0.24s; }
.page--compact .body--lead {
  font-size: 15.5px;
  max-width: 500px;
  margin-bottom: 40px;
}
.page--compact .hero-logo { margin-bottom: 24px; }
.page--compact .hero-section > .hero-content > .btn-primary {
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}
.page--compact .section { padding: 72px 56px; }
.page--compact .step-row { padding: 22px 0; }

/* ----- Utilities: spacing ----- */
.mt-8{margin-top:8px;} .mt-12{margin-top:12px;} .mt-16{margin-top:16px;} .mt-20{margin-top:20px;} .mt-28{margin-top:28px;} .mt-32{margin-top:32px;} .mt-36{margin-top:36px;}
.mb-8{margin-bottom:8px;} .mb-12{margin-bottom:12px;} .mb-16{margin-bottom:16px;} .mb-20{margin-bottom:20px;} .mb-28{margin-bottom:28px;} .mb-36{margin-bottom:36px;}

.section--flush-top { padding-top: 0 !important; }
.body-wrap--flush { margin-top: 0 !important; }

/* ----- Focus ring (scoped to components that need it) ----- */
.site-nav :where(a, button, [role="button"], [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 2px solid rgba(242,162,40,0.75);
  outline-offset: 3px;
}

/* ----- Utility bar (above site-nav) ----- */
.utility-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--utility-h);
  z-index: 51;
  background: var(--blue-deep);
  border-bottom: 1px solid rgba(242, 162, 40, 0.14);
  display: flex;
  align-items: center;
}

.utility-bar__inner {
  width: 100%;
  max-width: var(--nav-max);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.utility-bar__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.utility-bar__announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white-dim);
  white-space: nowrap;
}

.utility-bar__announcement a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(242, 162, 40, 0.4);
  transition: border-color 0.16s ease, color 0.16s ease;
}

.utility-bar__announcement a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.utility-bar__led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.18), 0 0 6px rgba(34, 197, 94, 0.45);
  animation: led-pulse 2.8s ease-in-out infinite;
}

@keyframes led-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.18), 0 0 6px rgba(34, 197, 94, 0.45); }
  50%       { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.10), 0 0 10px rgba(34, 197, 94, 0.6); }
}

.utility-bar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.utility-bar__login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--white-dim);
  text-decoration: none;
  text-transform: capitalize;
  transition: color 0.16s ease;
}

.utility-bar__login:hover { color: var(--white); }

.utility-bar__login img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: opacity 0.16s ease;
}

.utility-bar__login:hover img { opacity: 1; }

@media (max-width: 1023px) {
  .utility-bar__announcement { display: none; }
  .utility-bar__left { display: none; }

  .utility-bar__inner {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .utility-bar__right {
    grid-column: 2;
  }

  .utility-bar__login {
    font-size: 12px;
    padding: 0 8px;
    height: var(--utility-h);
  }
}

@media (max-width: 480px) {
  .utility-bar__inner {
    grid-template-columns: 1fr;
  }

  .utility-bar__right {
    justify-content: center;
    grid-column: 1;
  }
}

/* ----- Site nav (homepage) ----- */
.site-nav {
  position: fixed;
  top: var(--utility-h);
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 50;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

/* Nav on light-surface pages (page-header pattern) — show bg immediately */
.site-nav--light-page {
  background: rgba(1, 5, 31, 0.94);
  border-bottom-color: rgba(247, 249, 254, 0.09);
}

.site-nav::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: rgba(242,162,40,0.0);
  transition: opacity 0.22s ease, background 0.22s ease;
  opacity: 0;
  pointer-events: none;
}

.site-nav--scrolled {
  background: rgba(1,5,31,0.94);
  border-bottom-color: rgba(247,249,254,0.09);
  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
}
.site-nav--scrolled::after {
  opacity: 1;
  background: rgba(242,162,40,0.28);
}

@supports (backdrop-filter: blur(10px)) {
  .site-nav--scrolled { backdrop-filter: blur(10px); }
}

.site-nav__inner {
  width: 100%;
  max-width: var(--nav-max);
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
  min-width: 180px;
}
.site-nav__brand img { height: 34px; width: auto; display: block; object-fit: contain; }

.site-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  list-style: none;
  flex: 1;
  min-width: 0;
}

.site-nav__link,
.site-nav__trigger {
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: rgba(247,249,254,0.86);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
  white-space: nowrap;
}
.site-nav__link:hover,
.site-nav__trigger:hover {
  background: rgba(247,249,254,0.08);
  color: var(--white);
}

.site-nav__caret {
  letter-spacing: 0;
  opacity: 0.75;
}

.site-nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.site-nav__cta .btn { font-size: 14px; letter-spacing: 0.22em; padding: 12px 18px; }

.site-nav__toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(247,249,254,0.18);
  background: rgba(247,249,254,0.06);
  color: var(--white);
  border-radius: 999px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.site-nav__toggle:hover { background: rgba(247,249,254,0.09); border-color: rgba(247,249,254,0.28); transform: translateY(-1px); }

.site-nav__burger {
  width: 18px;
  height: 12px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.site-nav__burger::before,
.site-nav__burger::after,
.site-nav__burger span {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(247,249,254,0.82);
  transition: transform 0.18s ease, top 0.18s ease, opacity 0.18s ease;
}
.site-nav__burger::before { top: 0; }
.site-nav__burger span { top: 50%; transform: translateY(-50%); }
.site-nav__burger::after { top: 100%; transform: translateY(-100%); }

.site-nav--menu-open .site-nav__burger::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.site-nav--menu-open .site-nav__burger span { opacity: 0; }
.site-nav--menu-open .site-nav__burger::after { top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* Dropdown */
.site-nav__item { position: relative; }

/* Invisible bridge — keeps :hover on item while cursor crosses gap to menu */
.site-nav__item::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  transform: none;
  width: 320px;
  padding: 10px;
  border-radius: var(--radius-lg);
  background: rgba(1,5,31,0.98);
  border: 1px solid rgba(247,249,254,0.10);
  box-shadow: 0 20px 44px rgba(0,0,0,0.28);
  display: none;
}
.site-nav__item:focus-within .site-nav__dropdown,
.site-nav__item:hover .site-nav__dropdown { display: block; }

.site-nav__dropdown a {
  display: block;
  padding: 12px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: rgba(247,249,254,0.86);
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: background 0.16s ease, color 0.16s ease;
}
.site-nav__dropdown a:hover {
  background: rgba(247,249,254,0.08);
  color: var(--white);
}

.site-nav__dropdown .site-nav__dd-kicker {
  padding: 10px 12px 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,162,40,0.78);
}

/* Mobile panel */
.site-nav__panel {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(1,5,31,0.98);
  border-bottom: 1px solid rgba(247,249,254,0.10);
  max-height: calc(100vh - var(--utility-h) - var(--nav-h));
  overflow: auto;
}

.site-nav__panel-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 18px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-nav__mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: rgba(247,249,254,0.90);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(247,249,254,0.04);
  border: 1px solid rgba(247,249,254,0.08);
}
.site-nav__mobile-link:hover { background: rgba(247,249,254,0.06); }

.site-nav__mobile-sub {
  display: none;
  padding: 6px 10px 12px;
  border-left: 1px solid rgba(242,162,40,0.20);
  margin-left: 8px;
}
.site-nav__mobile-sub a {
  display: block;
  padding: 10px 10px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: rgba(247,249,254,0.82);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.site-nav__mobile-sub a:hover { background: rgba(247,249,254,0.06); color: var(--white); }

.site-nav__mobile-link[aria-expanded="true"] + .site-nav__mobile-sub { display: block; }

.site-nav--menu-open .site-nav__panel { display: block; }

/* Inline nav: tighten menu spacing only (1024px–1124px); logo unchanged */
@media (min-width: 1024px) and (max-width: 1123px) {
  .site-nav__inner {
    gap: 12px;
  }

  .site-nav__links {
    gap: 0;
    margin-left: -8px;
  }

  .site-nav__link,
  .site-nav__trigger {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Below 1024px: burger + mobile panel */
@media (max-width: 1023px) {
  .site-nav__links { display: none; }
  .site-nav__cta { display: none; }
  .site-nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav__panel { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .site-nav__link,
  .site-nav__trigger,
  .site-nav__toggle,
  .site-nav__burger::before,
  .site-nav__burger::after,
  .site-nav__burger span { transition: none !important; }
}

/* ----- Buttons -----
   Naming (semantic → class):
   Primary Orange  — btn-primary (dark) · btn-ow-primary (light)
   Primary Blue    — btn-ow-primary-blue (light only)
   Secondary Light — btn-ow-secondary (light, outlined)
   Secondary       — btn-secondary (dark, outlined)
   Modifiers       — btn--lg · btn--xl (30% larger than lg, bold) · btn--block · btn-icon
----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s, background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  opacity: 1;
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.btn:active { transform: translateY(0); }

.btn-primary {
  padding: 16px 44px;
  background: var(--gradient-gold);
  color: var(--blue-deep);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.btn-secondary {
  padding: 15px 40px;
  background: transparent;
  border: 1px solid rgba(247,249,254,0.42);
  color: var(--white);
}
.btn-secondary::after { display: none; }
.btn-secondary:hover {
  opacity: 1;
  background: rgba(247,249,254,0.08);
  border-color: rgba(247,249,254,0.58);
}

.btn-ow-primary {
  padding: 15px 40px;
  background: var(--gradient-gold);
  color: var(--blue-deep);
}
.btn-ow-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.btn-ow-primary-blue {
  padding: 15px 40px;
  background: var(--blue-bright);
  color: var(--white);
}
.btn-ow-primary-blue::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.btn-ow-primary-blue:hover {
  background: var(--blue-royal);
  filter: none;
}

.btn-ow-secondary {
  padding: 14px 36px;
  background: none;
  border: 1px solid rgba(4,7,96,0.2);
  color: var(--blue-bright);
}
.btn-ow-secondary:hover { background: rgba(4,7,96,0.04); opacity: 1; }

.btn--lg { padding: 18px 52px; }
.btn--xl {
  padding: 23px 68px;
  font-size: 15.6px;
  font-weight: 700;
}
.btn--xl.btn-icon { gap: 13px; }
.btn--xl.btn-icon img {
  width: 23px;
  height: 23px;
}
.btn--block { display: block; width: 100%; border-radius: 2px; margin-top: 28px; }

/* ----- Add to Calendar (AddEvent third-party link) -----
   Matches btn-ow-primary. Deliberately NOT built from .btn: AddEvent injects
   its dropdown *inside* the link, and .btn sets overflow:hidden, which would
   clip the menu. Selectors are element-qualified so they beat AddEvent's own
   stylesheet, which is injected after main.css.
   Do not wrap this link in .hero-cta-row — its fadeUp transform creates a
   stacking context that traps the dropdown under .body-wrap (z-index 1).
   Used on: experience/thank-you.html */
a.addeventatc {
  padding: 15px 40px 15px 46px;
  background: var(--gradient-gold);
  /* !important only because AddEvent's own stylesheet sets label color with it */
  color: var(--blue-deep) !important;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: none;
  transition: filter 0.2s, transform 0.15s;
}
a.addeventatc:hover {
  color: var(--blue-deep) !important;
  font-size: 12px;
  filter: brightness(1.05);
  transform: translateY(-1px);
}
a.addeventatc:active { transform: translateY(0); }
a.addeventatc .addeventatc_icon {
  left: 18px;
  top: 50%;
  margin-top: -9px;
}
/* Dropdown inherits AddEvent's own type, not the uppercase button label */
.addeventatc_dropdown { letter-spacing: normal; text-transform: none; }

/* ----- Kickers (eyebrows / section labels) ----- */
.kicker {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Shared section-eyebrow layout (theme is provided by kicker--light / kicker--dark) */
.kicker--section {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.kicker--light {
  color: var(--blue-bright);
}
.kicker--light:not(.kicker--center)::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: rgba(4,7,96,0.12);
}

.kicker--dark {
  color: var(--gold);
}

.kicker--hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.08s ease forwards;
}
.kicker--hero::before,
.kicker--hero::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.kicker--rule-end {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kicker--rule-end::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: rgba(242,162,40,0.22);
}

.kicker--rule-short {
  letter-spacing: 0.24em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker--rule-short::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(242,162,40,0.5);
}

.kicker--plain {
  letter-spacing: 0.24em;
  margin-bottom: 20px;
  text-align: center;
}

/* Centered kicker for centered sections (rule line both sides) */
.kicker--center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
/* Section kickers: span row and center flanking rules (inline-flex alone stays left-aligned) */
.kicker--section.kicker--center {
  display: flex;
  width: 100%;
  justify-content: center;
}
.kicker--center::before,
.kicker--center::after {
  content: '';
  display: block;
  width: clamp(18px, 5vw, 42px);
  height: 1px;
  opacity: 0.7;
}
.kicker--center.kicker--light::before,
.kicker--center.kicker--light::after {
  background: rgba(4,7,96,0.12);
}
.kicker--center.kicker--dark::before,
.kicker--center.kicker--dark::after {
  background: rgba(242,162,40,0.5);
}

/* ----- Typography: headings & body ----- */
.heading { font-family: var(--serif); font-weight: 300; }
.heading em { font-style: italic; }

.heading--display {
  font-size: clamp(54px, 8.5vw, 88px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.8s 0.16s ease forwards;
}

.heading--hero-banner {
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.08;
  margin-bottom: 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 2px 18px rgba(4,7,30,0.45);
}

.heading--h1 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
  color: var(--blue-deep);
  margin-bottom: 20px;
}
.heading--h1 em { color: var(--blue-bright); }

.heading.heading--h1.mb-28,
.heading.heading--h2.mb-28 { margin-bottom: 28px; }

.heading--h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: var(--blue-deep);
  margin-bottom: 20px;
}
.heading--h2 em { color: var(--blue-bright); }

.heading--band {
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}

.heading--enroll {
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 20px;
}

/* Centered serif pull quote on light sections — no quote mark */
.heading--pull {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: var(--blue-bright);
  line-height: 1.42;
  text-align: center;
  max-width: 38rem;
  margin: 40px auto 0;
}

.heading--on-dark { color: var(--white); }
.heading--on-dark em { font-style: italic; color: inherit; }

.feature-row__title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--blue-deep);
  margin-bottom: 8px;
  line-height: 1.1;
}

.body {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-body);
  line-height: 1.78;
  max-width: var(--prose-max);
}

.body--tight { margin-bottom: 8px; }
.body--open { margin-bottom: 28px; }
.body--section-lede { margin-bottom: 28px; }

.body--on-dark {
  color: var(--white-dim);
}
.body--panel {
  font-size: 17px;
  color: rgba(247,249,254,0.97);
  line-height: 1.72;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 2px 14px rgba(4,7,30,0.35);
}

.body--band {
  font-size: 18px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.78;
  max-width: var(--prose-max);
}

.body--lead {
  font-size: 20px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.78;
  max-width: 640px;
  margin-bottom: 24px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.32s ease forwards;
}

.body--close {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-body);
  line-height: 1.78;
}

/* ----- Centered section pattern ----- */
.section--center {
  text-align: center;
}
.section--center .kicker:not(.kicker--center) {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.section--center .heading:not(.heading--pull):not(.heading--h1):not(.heading--h2):not(.heading--h3):not(.heading--band):not(.heading--enroll) {
  margin-left: auto;
  margin-right: auto;
  max-width: min(18ch, 92vw);
}
.section--center .heading--pull {
  max-width: min(var(--prose-max), 92vw);
}
.section--center .heading--h1,
.section--center .heading--h2,
.section--center .heading--band,
.section--center .heading--enroll {
  margin-left: auto;
  margin-right: auto;
  max-width: min(48ch, 92vw);
}
.section--center .body {
  margin-left: auto;
  margin-right: auto;
}
.section--center .body--lead {
  max-width: 60ch;
}
.section--center .video-embed {
  margin-left: auto;
  margin-right: auto;
}
.section--center .price-grid {
  margin-left: auto;
  margin-right: auto;
}
.section--center .list-check,
.section--center .receive-list,
.section--center .list-gold-dot {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.section--center .list-circle {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.section--center .feature-grid,
.section--center .feature-row,
.section--center .feature-row__content {
  text-align: left;
}
.section--center .comparison-pair,
.section--center .comparison-card {
  text-align: left;
}
.section--center .before-after-table {
  text-align: left;
}
.section--center .feature-grid > .blockquote {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.body--faq {
  font-size: 18px;
  font-weight: 300;
  color: rgba(4,7,30,0.58);
  line-height: 1.72;
}

.meta-line {
  margin-top: 20px;
  font-size: 16px;
  color: var(--white-faint);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.hero-tagline {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.8s 0.24s ease forwards;
}

/* ----- Layout ----- */
.body-wrap {
  background: var(--white);
  color: var(--blue-deep);
  position: relative;
  z-index: 1;
  margin-top: -1px;
}

.section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 80px 56px;
}

.page--compact .section,
.page--compact .form-outer {
  max-width: var(--page-max);
}

#content-start { scroll-margin-top: 28px; }

.cut-top {
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  background: var(--blue-deep);
  margin: 0;
  padding: 0;
}
.cut-top svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ----- Hero ----- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-radial);
  z-index: 0;
}
.hero-bloom {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-20%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(4,7,96,0.35) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero-corner-logo {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.hero-corner-logo img { height: 44px; width: auto; object-fit: contain; display: block; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--page-max);
  min-width: 0;
  margin: 0 auto;
  padding: 0 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

/* Long centered hero headlines (heading--h1 on gradient splash heroes) */
.hero-content > .heading--h1 {
  max-width: min(48ch, 92vw);
}

.page--compact .hero-content {
  max-width: 800px;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.hero-logo img { height: 72px; width: auto; object-fit: contain; }
.page--compact .hero-logo .ci-logo-img,
.page--compact .hero-logo img { height: 36px; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.44s ease forwards;
}

.hero-cred-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 36px;
  max-width: min(1200px, 92vw);
  width: 100%;
  opacity: 0.7;
}
.hero-cred-strip__logo {
  height: clamp(29px, 14px + 4.5vw, 32px);
  width: auto;
  object-fit: contain;
  display: block;
}
.hero-cred-strip__logo--globe {
  height: clamp(42px, 22px + 5.5vw, 44px);
}
.hero-cred-strip__logo--icf {
  height: clamp(47px, 28px + 6vw, 48px);
}
.hero-cred-strip__logo--ccpa {
  height: clamp(36px, 20px + 5vw, 38px);
}
.hero-section--image .hero-cred-strip {
  align-self: stretch;
}

/* Image hero (full-bleed photo + stacked title) */
.hero-section--nav-offset { padding-top: calc(var(--utility-h) + var(--nav-h) + 80px); }

/* ============================================================
   SPLASH SECTION — Gradient + embed
   Default: 2-col grid — left copy + right form (01e)
   Modifier splash-section--center: stacked, centered — title / intro / video / CTA
   Modifier splash-section--nav-offset: fixed nav clearance
   Modifier splash-section--landing: logo only — no utility bar or site nav
============================================================ */
.splash-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 56px;
  overflow: hidden;
}
.splash-section--nav-offset {
  padding-top: calc(var(--utility-h) + var(--nav-h) + 40px);
}
.splash-section--landing {
  padding-top: 88px;
}
.splash-section--landing.splash-section--center {
  min-height: 100svh;
}
.splash-section--landing .splash-section__media {
  scroll-margin-top: 24px;
}
.splash-section__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
/* 01e — left copy + form */
.splash-section__copy {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.splash-section__copy .kicker--hero {
  margin-bottom: 20px;
}
.splash-section__copy .heading--h1 {
  max-width: none;
  text-align: left;
  opacity: 0;
  animation: fadeUp 0.8s 0.16s ease forwards;
}
.splash-section__copy .body--lead {
  text-align: left;
  max-width: var(--prose-max);
}
.splash-section__form {
  width: 100%;
  min-width: 0;
}
.splash-section .form-card {
  max-width: none;
  margin: 0;
}
.splash-section .form-embed {
  line-height: 0;
  overflow: visible;
}
.splash-section .form-embed iframe {
  display: block;
  width: 100%;
  height: 790px;
  min-height: 790px;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
}
/* Centered — title above video, copy + CTA below */
.splash-section--center {
  min-height: calc(100svh - var(--utility-h) - var(--nav-h));
}
.splash-section--center .splash-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(28px, 4vw, 40px);
}
.splash-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(100%, 820px);
}
.splash-section__header .kicker--hero {
  margin-bottom: 20px;
}
.splash-section__header .heading--h1 {
  text-align: center;
  max-width: none;
  opacity: 0;
  animation: fadeUp 0.8s 0.16s ease forwards;
}
.splash-section__media {
  width: 100%;
  max-width: min(100%, 950px);
  scroll-margin-top: calc(var(--utility-h) + var(--nav-h) + 16px);
}
.splash-section__intro,
.splash-section__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--prose-max);
}
.splash-section__intro .body--lead,
.splash-section__intro .body--on-dark,
.splash-section__footer .body--lead,
.splash-section__footer .body--on-dark {
  text-align: center;
  max-width: none;
}
.splash-section__intro .body--lead + .body--on-dark,
.splash-section__footer .body--lead + .body--on-dark {
  margin-top: -12px;
}
.splash-section__cta {
  margin-top: 0;
  opacity: 0;
  animation: fadeUp 0.8s 0.36s ease forwards;
}
@media (max-width: 980px) {
  .splash-section--nav-offset {
    padding-top: calc(var(--utility-h) + var(--nav-h) + 32px);
  }
  .splash-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .splash-section--center {
    min-height: 0;
  }
  .splash-section--landing {
    padding-top: 72px;
  }
  .splash-section--landing.splash-section--center {
    min-height: 0;
  }
  .splash-section {
    padding: 40px 0 56px;
  }
  .splash-section__inner {
    padding: 0 24px;
  }
}

/* ============================================================
   PAGE HEADER — Compact light-surface title section
   Use for: content-heavy pages that don't need a full hero
   (results, pricing, resources, etc.)
   No cut-top needed — flows directly into body-wrap.
   Always use with body-wrap immediately after, no gap.
============================================================ */
.page-header {
  background: var(--white);
  color: var(--blue-deep);
  padding: calc(var(--utility-h) + var(--nav-h) + 60px) 56px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Confirmation pages (e.g. experience/thank-you) flow straight into body
   content — keep the handoff tight so next steps appear in the first viewport. */
.page-header:has(+ .body-wrap--flush) {
  padding-bottom: 16px;
}
/* No fixed utility bar / site-nav — drop the chrome offset (thank-you landings). */
body:not(:has(.site-nav)) .page-header {
  padding-top: 48px;
}

@media (max-width: 768px) {
  .page-header {
    padding: calc(var(--utility-h) + var(--nav-h) + 40px) 24px 40px;
  }
  .page-header:has(+ .body-wrap--flush) {
    padding-bottom: 12px;
  }
  body:not(:has(.site-nav)) .page-header {
    padding-top: 32px;
  }
}

.hero-section--image .hero-content {
  text-align: left;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}
.hero-section--image .hero-cta-row { justify-content: flex-start; }

/* Left column for image heroes — kicker, title, copy, CTAs (01c pattern) */
.hero-section--image .hero-content-col {
  max-width: min(calc(var(--page-max) / 2), 50vw);
  width: 100%;
}

/* Long headlines on image heroes: h1 scale + legibility (use instead of heading--display) */
.hero-section--image .hero-content-col .heading--h1.heading--on-dark {
  opacity: 0;
  animation: fadeUp 0.8s 0.16s ease forwards;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 2px 18px rgba(4, 7, 30, 0.45);
}

/* Shorter punchy headlines may still use heading--display; keep them in the left column */
.hero-section--image .hero-content-col .heading--display {
  max-width: 100%;
}

/* Match section rhythm; body copy lives inside hero-content-col (or legacy hero-copy-only wrap) */
.hero-section--image .hero-copy {
  max-width: min(calc(var(--page-max) / 2), 50vw);
  width: 100%;
}
.hero-section--image .hero-content-col .hero-copy {
  max-width: 100%;
}

.hero-section--image .hero-copy .body--lead {
  text-align: left;
  max-width: none;
}

/* Keep vertical rhythm between two leads without doubling body--lead bottom margin awkwardly */
.hero-section--image .hero-copy .body--lead:first-child {
  margin-bottom: 16px;
}

.image-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.image-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0;
  animation: fadeUp 0.9s 0.10s ease forwards;
}
.image-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(1,5,31,0.0) 50%, rgba(1,5,31,0.92) 80%, rgba(1,5,31,1.0) 100%),
    linear-gradient(90deg, rgba(1,5,31,0.90) 0%, rgba(1,5,31,0.64) 42%, rgba(1,5,31,0.18) 70%, rgba(1,5,31,0.05) 100%),
    radial-gradient(ellipse 70% 70% at 10% 30%, rgba(242,162,40,0.10) 0%, rgba(242,162,40,0.00) 55%);
}

.stacked-hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 7.4vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.stacked-hero-title span {
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}
.stacked-hero-title span:nth-child(1) { animation-delay: 0.08s; }
.stacked-hero-title span:nth-child(2) { animation-delay: 0.16s; }
.stacked-hero-title span:nth-child(3) { animation-delay: 0.24s; }

@media (max-width: 980px) {
  .hero-section--nav-offset { padding-top: calc(var(--utility-h) + var(--nav-h) + 60px); }
}
@media (max-width: 560px) {
  .stacked-hero-title { font-size: clamp(54px, 15vw, 74px); }
}

.offer-strip {
  display: flex;
  align-items: stretch;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.38s ease forwards;
  border: 1px solid rgba(242,162,40,0.22);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.offer-pill {
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-faint);
  border-right: 1px solid rgba(242,162,40,0.12);
  text-align: center;
}
.offer-pill:last-child { border-right: none; }
.offer-pill span {
  display: block;
  color: var(--white);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
  font-family: var(--serif);
}

/* ----- Split section (two-column problem layout) ----- */
.split-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 128px;
}
.split-section:last-child .split-section__grid {
  margin-bottom: 0;
}
.list-dot {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.list-dot li {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: rgba(4,7,96,0.7);
  padding-left: 16px;
  position: relative;
  line-height: 1.3;
}
.list-dot li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(4,7,96,0.28);
}

/* Open-circle variant of list-dot — rhetorical / reflective lists */
.list-circle {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: var(--prose-max);
}
.list-circle li {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: rgba(4,7,96,0.7);
  padding-left: 20px;
  position: relative;
  line-height: 1.3;
}
.list-circle li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid rgba(4,7,96,0.35);
  background: transparent;
  box-sizing: border-box;
}

.split-section__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(4,7,30,0.13);
}
/* Landscape split media only — do not apply to --portrait */
.split-section__media:not(.split-section__media--portrait) img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

/* Portrait split — 9/16 frame, height cap; img fills frame (cover). See design-system split portrait example. */
.split-section__media--portrait {
  width: 100%;
  align-self: start;
  aspect-ratio: 9 / 16;
  max-height: min(680px, 72vh);
  overflow: hidden;
}
.split-section__media--portrait img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ----- Section break (bordered reframe) ----- */
.section-break {
  border-top: 1px solid rgba(4,7,96,0.08);
  padding-top: 48px;
  margin-top: 8px;
}

/* ----- Serif accent lists ----- */
.list-serif-accent {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  max-width: var(--prose-max);
}
.list-serif-accent li {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--blue-bright);
  line-height: 1.38;
}
.list-serif-accent--muted {
  border-left-color: rgba(4,7,96,0.1);
  gap: 0;
  margin: 16px 0;
}
.list-serif-accent--muted li {
  margin-bottom: 4px;
}

/* ----- Card grid ----- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
  align-items: stretch;
}

/* 3-column photo cards — landscape image ratio (3/2) */
.card-grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--cols-3 .media-card__figure {
  aspect-ratio: 3 / 2;
}

.card-grid--cols-3 .media-card__figure img {
  height: 100%;
  aspect-ratio: unset;
}

.card-grid--cols-3 .media-card__placeholder {
  height: 100%;
  min-height: 100%;
  aspect-ratio: unset;
}

@media (max-width: 900px) {
  .card-grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.media-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 0 22px 26px;
  background: #fff;
  border: 1px solid rgba(4,7,96,0.08);
  border-radius: 10px;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}
.media-card__figure {
  width: calc(100% + 44px);
  margin: 0 -22px 14px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background: rgba(4,7,96,0.04);
  border-bottom: 1px solid rgba(4,7,96,0.08);
}
.media-card__figure img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.media-card__placeholder {
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(4,7,96,0.10) 0%, rgba(4,7,96,0.03) 55%, rgba(4,7,96,0.06) 100%);
}
.media-card__placeholder span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(4,7,96,0.55);
}
.media-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--blue-bright);
  line-height: 1.2;
  margin: 0;
}
.media-card .body {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

/* ----- Audience icon cards (audience-grid, audience-card) ----- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.audience-grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.audience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 32px;
  border: 1px solid rgba(4, 7, 96, 0.10);
  border-radius: var(--radius-md);
  background: var(--white);
}
a.audience-card,
.audience-card:has(a[href]) {
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
a.audience-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.audience-card:hover,
.audience-card:has(a[href]):hover {
  border-color: rgba(0, 21, 127, 0.22);
  box-shadow: 0 4px 20px rgba(4, 7, 30, 0.06);
}
.audience-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.audience-card__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--blue-bright);
  line-height: 1.2;
  margin-bottom: 14px;
}
.audience-card__rule {
  width: 24px;
  height: 1px;
  background: var(--gold-deep);
  margin: 0 auto 14px;
  flex-shrink: 0;
}
.audience-card__desc {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-body);
  line-height: 1.65;
  margin: 0;
}
.audience-card__desc strong {
  font-weight: 500;
  color: var(--blue-deep);
}
@media (max-width: 900px) {
  .audience-grid,
  .audience-grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .audience-grid,
  .audience-grid--cols-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .audience-card {
    padding: 28px 20px 24px;
  }
}


/* ============================================================
   NAV ACTIVE STATE
   Marks the current page link in site-nav with a gold underline.
   Add class site-nav__link--active to the matching <a> on each page.
============================================================ */
.site-nav__link--active {
  color: var(--gold) !important;
  position: relative;
}
.site-nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  border-radius: 1px;
}

/* ============================================================
   HEADING SCALE — H3, H4, H5
   H1 and H2 already exist as heading--h1 / heading--h2.
   IMPORTANT USAGE:
   H3 — use WITH base class: <h3 class="heading heading--h3">
        Inherits serif font from .heading base. Weight overridden to 400.
   H4 — use WITHOUT base class: <h4 class="heading--h4">
        Sans-serif, does not use .heading base.
   H5 — use WITHOUT base class: <h5 class="heading--h5">
        Sans-serif uppercase, does not use .heading base.
============================================================ */
.heading--h3 {
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.2;
  color: var(--blue-deep);
  margin-bottom: 12px;
}
.heading--h3 em { color: var(--blue-bright); font-style: italic; }

.heading--h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--blue-deep);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.heading--h5 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  color: var(--blue-deep);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   BLOCKQUOTE
   Gold left border, 24px serif italic — same size as body--emphasis.
   Use for: editorial pull quotes in prose sections (about-us, etc.)
   Usage: <blockquote class="blockquote"><p>…</p><cite>…</cite></blockquote>
============================================================ */
.blockquote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 24px 0 32px;
  max-width: var(--prose-max);
}
.blockquote p {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--blue-bright);
  line-height: 1.5;
  margin: 0 0 8px;
}
.blockquote cite {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(4, 7, 30, 0.4);
  font-style: normal;
}

/* ============================================================
   BUTTON WITH ICON — btn-icon modifier
   Add to any .btn alongside existing btn classes.
   Place <img> (18×18 default; 23×23 with btn--xl) before label text.
   On dark surfaces: add style="filter:brightness(0) invert(1);" to img.
   On light surfaces: img renders with its inherent colour (orange primary).
   On btn-ow-primary-blue: white icon — same filter as dark surfaces.
   Royal blue: use CSS filter on the img (see design-system for value).
============================================================ */
.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ============================================================
   PROGRAM STATUS STRIP
   Full-width dark strip used directly below the fixed nav on
   certification.html to show per-level enrollment state.
   padding-top accounts for fixed utility bar + nav via var(--utility-h) and var(--nav-h).
   Do NOT use offer-strip here — offer-strip belongs in hero only.
   Use status-card--open to highlight the currently enrolling level.
============================================================ */
.program-status {
  background: rgba(1, 5, 31, 0.97);
  border-bottom: 1px solid rgba(242, 162, 40, 0.14);
  padding: calc(var(--utility-h) + var(--nav-h) + 1.5rem) 56px 2.5rem;
}
.program-status__inner {
  max-width: var(--page-max);
  margin: 0 auto;
}
.program-status__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.program-status__label::before,
.program-status__label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(242, 162, 40, 0.3);
}
.program-status__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.status-card {
  background: rgba(247, 249, 254, 0.04);
  border: 1px solid rgba(247, 249, 254, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.status-card--open {
  border-color: rgba(242, 162, 40, 0.3);
  background: rgba(242, 162, 40, 0.05);
}
.status-card__level {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.status-card__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.status-card__status {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 249, 254, 0.35);
}
.status-card--open .status-card__status { color: #7ED49A; }
.status-card__date {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--white-faint);
}
@media (max-width: 860px) {
  .program-status__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .program-status { padding-left: 24px; padding-right: 24px; }
  .program-status__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PATHWAY TRACK — Vertical certification level progression
   Marker: --blue-bright numeral with soft white fade masking spine.
   Seal + title/subtitle: pathway-step__identity row in header.
   Status text: status-card__status pattern in step header.
   Lists: compose list-check at body scale in markup.
   Fast-track insert: band band--surface inside Level 3 step body.
   Use pathway-step--open on the currently enrolling level.
============================================================ */
.pathway-track {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow-x: clip;
}

.pathway-track::before {
  content: '';
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 32px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(242, 162, 40, 0) 0%,
    rgba(242, 162, 40, 0.35) 6%,
    rgba(242, 162, 40, 0.35) 94%,
    rgba(242, 162, 40, 0) 100%
  );
  pointer-events: none;
}

.pathway-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px 36px;
  align-items: start;
  padding: 68px 0;
  border-bottom: 1px solid rgba(4, 7, 96, 0.07);
  min-width: 0;
}

.pathway-step:first-child {
  padding-top: 52px;
  border-top: 1px solid rgba(4, 7, 96, 0.07);
}

.pathway-step:last-child {
  padding-bottom: 20px;
  border-bottom: none;
}

.pathway-step__marker {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 2px;
}

.pathway-step__num {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--blue-bright);
  line-height: 1;
  padding: 0 4px 8px;
  margin-top: -6px;
}

.pathway-step__num::before {
  content: '';
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: -10px;
  right: -10px;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(247, 249, 254, 0) 0%,
    var(--white) 18%,
    var(--white) 82%,
    rgba(247, 249, 254, 0) 100%
  );
  pointer-events: none;
}

.pathway-step__seal {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  grid-column: 1;
  grid-row: 2;
}

.pathway-step__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.pathway-step__identity {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto auto;
  gap: 10px 16px;
  align-items: start;
  flex: 1;
  min-width: 0;
}

.pathway-step__body {
  min-width: 0;
}

.pathway-step__titles {
  min-width: 0;
  flex: 1;
  grid-column: 2;
  grid-row: 2;
}

.pathway-step__level {
  grid-column: 1 / -1;
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(242, 162, 40, 0.08);
  border: 1px solid rgba(242, 162, 40, 0.22);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 0;
  justify-self: start;
}

.pathway-step__header .heading--h3 {
  margin: 0;
}

.pathway-step__status {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(4, 7, 30, 0.35);
  flex-shrink: 0;
  margin: 6px 0 0;
}

.pathway-step--open .pathway-step__status {
  color: #3da86a;
}

.pathway-step__subtitle {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--blue-bright);
  line-height: 1.5;
  margin: 6px 0 0;
}

.pathway-step .hero-cta-row {
  justify-content: flex-start;
  opacity: 1;
  animation: none;
}

.pathway-step .program-card__callout {
  padding: 16px 20px;
  margin: 24px 0 20px;
}

.pathway-step .program-card__callout p {
  font-size: 18px;
  line-height: 1.78;
}

.pathway-step__fast-track.band {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 28px 0;
  padding: 32px 28px;
}

.pathway-step__fast-track .heading--h3 {
  color: var(--white);
}

.pathway-step__fast-track .heading--h3 em {
  color: inherit;
}

.pathway-step__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin: 24px 0;
}

.pathway-step__cols .heading--h5 {
  margin-bottom: 0;
  color: var(--blue-bright);
}

.pathway-step__cols .list-check {
  margin-top: 12px;
}

.pathway-step__cols .list-check li {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-body);
  line-height: 1.65;
  align-items: flex-start;
}

.pathway-step__cols .list-check li::before {
  margin-top: 3px;
}

@media (max-width: 640px) {
  .pathway-track::before { display: none; }
  .pathway-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px 14px;
    padding-left: 0;
    padding-right: 0;
  }
  .pathway-step__marker {
    justify-content: center;
    padding-top: 6px;
  }
  .pathway-step__num {
    font-size: 44px;
    margin-top: 0;
    padding: 0 2px 6px;
  }
  .pathway-step__num::before {
    top: -12px;
    bottom: -12px;
    left: -4px;
    right: -4px;
  }
  .pathway-step__header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .pathway-step__identity {
    grid-template-columns: 52px 1fr;
    gap: 10px 12px;
    width: 100%;
  }
  .pathway-step__seal {
    width: 52px;
    height: 52px;
  }
  .pathway-step__header .heading--h3 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.15;
  }
  .pathway-step__subtitle {
    font-size: 17px;
    line-height: 1.45;
    max-width: none;
  }
  .pathway-step__status {
    margin: 0;
    align-self: flex-start;
  }
  .pathway-step__cols { grid-template-columns: 1fr; }
  .data-table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ============================================================
   PROGRAM CARD — Certification pathway cards
   Two-column grid. Media slot accepts either an SVG icon or
   a photo (use class program-card__icon or program-card__photo).
   program-card__callout: gold left-border inset for key details.
   program-card__list: gold dot bullet list, not list-check.
============================================================ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.program-card {
  background: var(--white);
  border: 1px solid rgba(4, 7, 96, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.program-card__media {
  width: 100%;
  height: 180px;
  background: rgba(4, 7, 96, 0.04);
  border-bottom: 1px solid rgba(4, 7, 96, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.program-card__media img.program-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.program-card__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.65;
}
.program-card__body {
  padding: 28px 28px 0;
  flex: 1;
}
.program-card__level {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.program-card__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--blue-deep);
  line-height: 1.15;
  margin-bottom: 12px;
}
.program-card__desc {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-body);
  line-height: 1.7;
  margin-bottom: 20px;
}
.program-card__callout {
  background: rgba(242, 162, 40, 0.07);
  border-left: 2px solid var(--gold);
  padding: 12px 16px;
  margin-bottom: 20px;
}
.program-card__callout p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-body);
  line-height: 1.6;
  margin: 0;
}
.program-card__callout p + p { margin-top: 4px; }
.program-card__footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(4, 7, 96, 0.07);
  margin-top: auto;
}
.program-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.program-card__list li {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-body);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.program-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
@media (max-width: 720px) {
  .program-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING CARDS
   Both tiers light surface (white). price-card--featured adds
   gold border + "Most Popular" pill at top.
   price-card__features uses gold check-circle SVG mask icon.
   Max-width 860px — centered in the section (2+ cards).
============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
  max-width: 860px;
  margin-inline: auto;
  justify-content: center;
}
.price-card {
  background: var(--white);
  border: 1px solid rgba(4, 7, 96, 0.12);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card--featured {
  border-color: var(--gold);
  border-width: 2px;
}
.price-card__pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--blue-deep);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(4, 7, 30, 0.4);
  margin-bottom: 12px;
}
.price-card__name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--blue-deep);
  margin-bottom: 8px;
  line-height: 1.15;
}
.price-card__price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--blue-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card__price sup {
  font-size: 24px;
  vertical-align: super;
  font-weight: 400;
}
.price-card__note {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(4, 7, 30, 0.4);
  margin-bottom: 24px;
}
.price-card__divider {
  height: 1px;
  background: rgba(4, 7, 96, 0.08);
  margin-bottom: 20px;
}
.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.price-card__features li {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-body);
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}
.price-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-color: var(--gold);
  -webkit-mask-image: url("../images/icons/check-circle.svg");
  mask-image: url("../images/icons/check-circle.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media (max-width: 620px) {
  .price-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DATA TABLE
   Dark navy header row with gold column labels. Alternating row fills.
   data-table__highlight: gold-tinted row for summary/totals.
   Use for: comparison tables, curriculum breakdowns.
   Note: border-radius on the table requires overflow:hidden on wrapper
   or use the table element directly with border-radius (Chromium renders
   this correctly; Firefox requires a wrapper div if strict support needed).
============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  margin-top: 20px;
  border: 1px solid rgba(4, 7, 96, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.data-table th {
  background: var(--blue-deep);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
}
.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(4, 7, 96, 0.07);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-body);
  vertical-align: top;
  line-height: 1.55;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(4, 7, 96, 0.02); }
.data-table tr.data-table__highlight td {
  background: rgba(242, 162, 40, 0.07);
  font-weight: 500;
  color: var(--blue-deep);
  border-top: 1px solid rgba(242, 162, 40, 0.18);
}

/* ============================================================
   PERSON CARD — Faculty / Team grid
   Use: about-us.html, level1.html instructor section
   Grid: person-grid (4-col desktop, 2-col tablet, 1-col mobile)
   Modal: person-modal triggered by data-person-trigger
============================================================ */

.person-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .person-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 580px) {
  .person-grid { grid-template-columns: 1fr; gap: 24px; }
}

.person-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.person-card__photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.person-card__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.person-card:hover .person-card__photo-wrap img {
  transform: scale(1.03);
}

.person-card__rule {
  width: 100%;
  height: 2px;
  background: var(--gold);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.person-card__name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.0vw, 30px);
  font-weight: 400;
  color: var(--blue-deep);
  line-height: 1.15;
  margin-bottom: 6px;
}

.person-card__title {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--blue-bright);
  line-height: 1.4;
  margin-bottom: 14px;
}

.person-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease, color 0.16s ease;
}

.person-card__cta img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(11%) sepia(96%) saturate(3000%) hue-rotate(218deg) brightness(90%);
  transition: transform 0.2s ease;
}

.person-card:hover .person-card__cta {
  gap: 12px;
  color: var(--blue-royal);
}

.person-card:hover .person-card__cta img {
  transform: translateX(2px);
}

/* ============================================================
   PERSON MODAL — two-zone left column layout
   Left col: photo (264px desktop) + info panel (badges, quote)
   Right col: bio — scrolls independently on long content
   Left col never scrolls or stretches
============================================================ */

.person-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100vw;
  background: rgba(1, 5, 31, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  overscroll-behavior: contain;
}

.person-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Closed overlay: block descendants from receiving clicks */
.person-modal-overlay:not(.is-open),
.person-modal-overlay:not(.is-open) * {
  pointer-events: none !important;
}

.person-modal-overlay.is-open * {
  pointer-events: auto;
}

/* Modal shell — fixed height so left col never stretches */
.person-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  min-width: 0;
  height: 600px;
  max-height: 80vh;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 0;
  position: relative;
  overflow: hidden;
  transform: translateY(12px);
  transition: transform 0.25s ease;
  box-sizing: border-box;
}

.person-modal-overlay.is-open .person-modal {
  transform: translateY(0);
}

/* Left column — two zones stacked, never scrolls */
.person-modal__photo-col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(4, 7, 96, 0.08);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-width: 0;
}

/* Zone 1: Photo — fixed height on desktop */
.person-modal__photo {
  width: 100%;
  height: 264px;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
}

/* Zone 2: Info panel — fills remaining left col height */
.person-modal__info-panel {
  flex: 1;
  min-height: 0;
  background: var(--white);
  border-top: 2px solid var(--gold);
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Badge strip — SVG badges on white surface */
.person-modal__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.person-modal__badge {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}

.person-modal__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Pull quote — Cormorant italic, small, blue-bright */
.person-modal__quote {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--blue-bright);
  line-height: 1.55;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(4, 7, 96, 0.08);
  flex-shrink: 1;
  min-height: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
.person-modal__quote::before { content: '\201C'; }
.person-modal__quote::after  { content: '\201D'; }

/* Right column — bio scrolls freely */
.person-modal__body {
  padding: 32px 32px 32px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.person-modal__rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}

.person-modal__name {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  color: var(--blue-deep);
  line-height: 1.1;
  margin-bottom: 6px;
}

.person-modal__title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--blue-bright);
  margin-bottom: 24px;
  line-height: 1.4;
}

.person-modal__bio {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-body);
  line-height: 1.75;
}

.person-modal__bio p + p { margin-top: 16px; }

/* Close button */
.person-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(4, 7, 96, 0.12);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--blue-deep);
  line-height: 1;
  transition: background 0.15s, border-color 0.15s;
  z-index: 10;
}

.person-modal__close:hover {
  background: rgba(4, 7, 96, 0.05);
  border-color: rgba(4, 7, 96, 0.25);
}

/* Mobile — single column flex, full viewport width */
@media (max-width: 640px) {
  .person-modal-overlay {
    padding: 12px;
    padding-top: max(12px, env(safe-area-inset-top, 0px));
    padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
    align-items: flex-start;
  }
  .person-modal-overlay.is-open .person-modal {
    transform: none;
  }
  .person-modal {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    max-height: calc(100dvh - 24px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .person-modal__photo-col {
    flex-shrink: 0;
    border-right: none;
    border-bottom: 1px solid rgba(4, 7, 96, 0.08);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    height: auto;
    min-width: 0;
    width: 100%;
    overflow: visible;
  }
  .person-modal__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    max-width: 100%;
  }
  .person-modal__info-panel {
    flex-shrink: 0;
    padding: 16px 16px 20px;
    min-width: 0;
    width: 100%;
    overflow: visible;
  }
  .person-modal__quote {
    font-size: 16px;
  }
  .person-modal__badge {
    width: 48px;
    height: 48px;
  }
  .person-modal__body {
    flex: 1 1 auto;
    padding: 20px 16px 24px;
    height: auto;
    min-width: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
  }
  .person-modal__name,
  .person-modal__title,
  .person-modal__bio,
  .person-modal__quote {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }
}

/* ----- Logo strip ----- */
.logo-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.logo-strip__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}
.logo-strip__logo {
  height: 34px;
  border: 1px solid rgba(4,7,96,0.10);
  background: rgba(4,7,96,0.02);
  border-radius: 10px;
}

/* ----- Photo grid ----- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(4,7,96,0.10);
  display: block;
}
@media (max-width: 767px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ----- Trust bar ----- */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(4,7,96,0.02);
  border: 1px solid rgba(4,7,96,0.10);
}
.trust-badge {
  flex-shrink: 0;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  border: 1px solid rgba(4,7,96,0.10);
  background: radial-gradient(circle at 30% 25%, rgba(242,162,40,0.22) 0%, rgba(242,162,40,0.06) 42%, rgba(4,7,96,0.02) 100%);
  position: relative;
  overflow: hidden;
}
.trust-badge:has(img) {
  width: auto;
  height: auto;
  border: none;
  background: none;
  border-radius: 0;
  overflow: visible;
}
.trust-badge img {
  display: block;
  width: 74px;
  height: auto;
}
.trust-badge::after {
  content: 'ICF';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: rgba(4,7,30,0.55);
  text-transform: uppercase;
}
.trust-badge:has(img)::after {
  display: none;
}

/* ----- Stats strip ----- */
.stats-strip {
  background: var(--blue-deep);
  color: var(--white);
  border-top: 1px solid rgba(247,249,254,0.08);
  border-bottom: 1px solid rgba(247,249,254,0.08);
}
.stats-strip__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.stats-strip__item {
  background: rgba(247,249,254,0.03);
  border: 1px solid rgba(247,249,254,0.07);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: center;
}
.stats-strip__num {
  font-family: var(--serif);
  font-size: clamp(42px, 4.4vw, 54px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 6px;
  color: var(--white);
}
.stats-strip__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,162,40,0.95);
}
@media (max-width: 980px) {
  .stats-strip__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 54px 20px; }
}

/* ----- Proof grid (when masonry is not used) ----- */
.proof-grid {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.proof-grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 980px) {
  .proof-grid,
  .proof-grid--cols-2 { grid-template-columns: 1fr; }
}

/* ----- CTA panel ----- */
.cta-panel {
  background: var(--blue-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(247,249,254,0.08);
}
.cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 18% 30%, rgba(242,162,40,0.12) 0%, rgba(242,162,40,0) 55%),
              radial-gradient(ellipse 70% 60% at 70% 20%, rgba(4,7,96,0.30) 0%, rgba(4,7,96,0) 60%);
  pointer-events: none;
}
.cta-panel > * { position: relative; }
.cta-panel .heading { color: var(--white); }
.cta-panel .body { color: var(--white-dim); }

/* ----- Embed placeholder (newsletter / video / provider blocks) ----- */
.embed-placeholder {
  border-radius: var(--radius-md);
  border: 1px dashed rgba(247,249,254,0.26);
  padding: 14px 16px;
  color: rgba(247,249,254,0.70);
  font-size: 13px;
  margin-top: 14px;
}

/* ----- Brand band ----- */
.band {
  background: var(--gradient-blue);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}

/* Use when a `.section` inside controls vertical rhythm */
.band--surface {
  padding: 0;
}
.band::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(247,249,254,0.04);
  pointer-events: none;
}
.band::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -30px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(4,7,96,0.2);
  pointer-events: none;
}
.band__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 56px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

/* ----- Transformation flow (awareness → embodied change) ----- */
.transformation-flow-section {
  padding-left: 0;
  padding-right: 0;
}
.transformation-flow {
  margin-top: 40px;
  text-align: left;
}
.transformation-flow__intro {
  max-width: var(--prose-max);
  margin: 0 auto 40px;
  text-align: center;
}
.transformation-flow__intro .heading--h2 {
  margin-bottom: 16px;
}
.transformation-flow__intro .body {
  max-width: none;
}
.transformation-flow__track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr) 36px minmax(0, 1fr) 36px minmax(0, 1fr);
  align-items: stretch;
}
.transformation-flow__card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(4, 7, 96, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(1, 5, 31, 0.12);
}
.transformation-flow__card-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(4, 7, 96, 0.08);
}
.transformation-flow__step {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--blue-deep);
  font-family: var(--sans);
  font-weight: 500;
}
.transformation-flow__title {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 24px);
}
.transformation-flow__subtitle {
  margin-top: 4px;
  color: var(--gold-deep);
}
.transformation-flow__figure {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--white);
}
.transformation-flow__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.transformation-flow__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
  text-align: center;
}
.transformation-flow__body .heading--h5 {
  margin-bottom: 8px;
  color: var(--blue-bright);
}
.transformation-flow__body .body {
  max-width: none;
  font-size: 16px;
  line-height: 1.55;
}
.transformation-flow__quote {
  margin-top: auto;
  padding-top: 16px;
  color: var(--blue-bright);
  font-family: var(--serif);
}
.transformation-flow__connector {
  position: relative;
  min-width: 0;
}
.transformation-flow__connector::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 2px;
  right: 5px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}
.transformation-flow__connector::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.transformation-flow__card--outcome {
  background: var(--blue-deep);
  border-color: rgba(242, 162, 40, 0.55);
}
.transformation-flow__card--outcome .transformation-flow__title {
  color: var(--white);
}
.transformation-flow__card--outcome .transformation-flow__card-header {
  border-bottom-color: var(--white-ghost);
}
.transformation-flow__card--outcome .transformation-flow__subtitle,
.transformation-flow__card--outcome .transformation-flow__body .heading--h5 {
  color: var(--gold);
}
.transformation-flow__card--outcome .transformation-flow__figure {
  background: var(--blue-deep);
}

@media (min-width: 1280px) {
  .transformation-flow__track {
    width: calc(100% + 112px);
    margin-left: -56px;
    margin-right: -56px;
  }
}

@media (max-width: 1199px) {
  .transformation-flow__track {
    grid-template-columns: minmax(0, 1fr);
    max-width: 720px;
    margin: 0 auto;
  }
  .transformation-flow__figure {
    aspect-ratio: 4 / 3;
  }
  .transformation-flow__figure img {
    object-fit: contain;
  }
  .transformation-flow__connector {
    width: 100%;
    height: 44px;
  }
  .transformation-flow__connector::before {
    top: 3px;
    bottom: 5px;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }
  .transformation-flow__connector::after {
    top: auto;
    bottom: 5px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }
}

/* ----- Feature rows (pillars) ----- */
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.feature-row {
  background: rgba(4,7,96,0.02);
  border: 1px solid rgba(4,7,96,0.08);
  border-radius: 10px;
  padding: 26px;
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}
.feature-row--full { grid-column: auto; }
.feature-row__icon {
  width: 64px;
  height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-row__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  display: block;
}
.feature-row__content { min-width: 0; }
.feature-row__meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 10px;
}
.feature-row__lead {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--blue-bright);
  margin-bottom: 12px;
  line-height: 1.35;
}
.feature-row__body {
  font-size: 18px;
  font-weight: 300;
  color: rgba(4,7,30,0.58);
  line-height: 1.72;
  max-width: var(--prose-max);
}

/* ----- Quote band ----- */
.quote-band {
  background: var(--blue-deep);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(242,162,40,0.18);
}
.quote-band .quote-inner {
  max-width: var(--prose-max);
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 72px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 24px;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 24px;
}
.quote-attr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.quote-attr {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote-avatar {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(242,162,40,0.55);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 6px rgba(242,162,40,0.08);
}

/* Alternate quote band (gradient + orbs — e.g. compact landing pages) */
.quote-band--gradient {
  position: relative;
  background: var(--gradient-blue);
  overflow: hidden;
  padding: 64px 56px;
}
.quote-band--gradient::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(247,249,254,0.04);
  pointer-events: none;
}
.quote-band--gradient::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -30px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(4,7,96,0.2);
  pointer-events: none;
}
.quote-band--gradient .quote-inner {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.quote-band--gradient .quote-mark {
  font-size: 80px;
  line-height: 0.55;
}

/* ----- Split panel + steps ----- */
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 32px;
}
/* No heading above the panel — drop the breathing room meant for H1/lede. */
.section--flush-top > .split-panel:first-child {
  margin-top: 0;
}
.split-panel__aside {
  border: 1px solid rgba(4,7,96,0.10);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(4,7,30,0.04);
}
.split-panel__aside-img {
  width: 100%;
  max-width: 100%;
}
.split-panel__aside-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.step-stack { display: flex; flex-direction: column; }
.step-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(4,7,96,0.07);
}
.step-row:first-child { border-top: 1px solid rgba(4,7,96,0.07); }
.step-row__num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--blue-bright);
  line-height: 1;
  margin-top: 2px;
}
.page--compact .step-row__num { font-size: 32px; color: rgba(4,7,96,0.16); }

.step-row__body strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--blue-deep);
  margin-bottom: 4px;
  line-height: 1.25;
}
.page--compact .step-row__body strong { font-size: 20px; }

.step-row__body span {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-body);
  line-height: 1.65;
}
.page--compact .step-row__body span { font-size: 14.5px; color: rgba(4,7,30,0.5); }

.list-check li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--blue-deep);
  line-height: 1.3;
}
.list-check {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.list-check li::before,
.receive-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: var(--gold);
  -webkit-mask-image: url("../images/icons/check-circle.svg");
  mask-image: url("../images/icons/check-circle.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* ----- Photo banner (outcomes hero) ----- */
.photo-banner {
  position: relative;
  width: 100%;
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.photo-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.photo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,7,30,0) 0%, rgba(4,7,30,0.04) 55%, rgba(4,7,30,0.08) 100%);
  pointer-events: none;
}
.photo-banner__panel {
  position: relative;
  z-index: 2;
  padding: 22px 22px 26px;
  margin: 0 auto 24px;
  width: calc(100% - 40px);
  max-width: calc(100% - 40px);
  box-sizing: border-box;
  border-radius: var(--radius-lg);
  background: rgba(4,7,30,0.5);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 12px 36px rgba(4,7,30,0.22), inset 0 1px 0 rgba(247,249,254,0.05);
}

@media (max-width: 767px) {
  .photo-banner__img { object-position: 52% 22%; }
}

@media (min-width: 768px) {
  .photo-banner { justify-content: flex-start; }
  .photo-banner__img { object-position: 62% 28%; }
  .photo-banner__panel {
    padding: 28px 32px 32px;
    margin: 0 0 40px 28px;
    width: auto;
    max-width: min(500px, 46%);
    background: rgba(4,7,30,0.34);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 14px 44px rgba(4,7,30,0.2), inset 0 1px 0 rgba(247,249,254,0.06);
  }
  .photo-banner .heading--hero-banner {
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  }
  .photo-banner .body--panel {
    text-shadow: 0 1px 1px rgba(0,0,0,0.28);
  }
}

/* ----- Outcome tiles ----- */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(4,7,96,0.08);
  border: 1px solid rgba(4,7,96,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}
.outcome-card {
  background: var(--white);
  padding: 36px 28px;
}
.outcome-icon {
  width: 70px;
  height: 70px;
  max-width: 100%;
  display: block;
  margin: 0 0 14px 0;
  object-fit: contain;
}
.outcome-word {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--blue-bright);
  margin-bottom: 12px;
  line-height: 1;
}
.outcome-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.outcome-line {
  width: 28px;
  height: 1px;
  background: rgba(4,7,96,0.14);
  margin-bottom: 14px;
}
.outcome-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(4,7,30,0.57);
  line-height: 1.72;
  max-width: var(--prose-max);
}
.outcome-footer {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--blue-bright);
  line-height: 1.45;
  margin-top: 8px;
  max-width: var(--prose-max);
}
.outcome-grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Four-quadrant integration grid — 2×2 with center cross divider */
.integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 8px;
}
.integration-grid__item {
  padding: 24px 28px;
  min-width: 0;
}
.integration-grid__item:nth-child(1),
.integration-grid__item:nth-child(3) {
  border-right: 1px solid rgba(4, 7, 96, 0.12);
}
.integration-grid__item:nth-child(1),
.integration-grid__item:nth-child(2) {
  border-bottom: 1px solid rgba(4, 7, 96, 0.12);
}
.integration-grid__icon {
  width: 56px;
  height: 56px;
  display: block;
  margin-bottom: 12px;
  object-fit: contain;
}
.integration-grid__word {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  color: var(--blue-bright);
  margin-bottom: 8px;
  line-height: 1.1;
}
.integration-grid__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-body);
  line-height: 1.65;
}
.split-section--balanced .split-section__grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.split-section--balanced .split-section__grid > * {
  min-width: 0;
}
.split-section--wide-copy .split-section__grid {
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
.split-section--wide-copy .split-section__grid > * {
  min-width: 0;
}

/* Be-Do-Have comparison pair */
.comparison-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 32px;
}
.comparison-card {
  background: var(--white);
  border: 1px solid rgba(4, 7, 96, 0.12);
  border-radius: var(--radius-md);
  padding: 32px;
}
.comparison-card--old {
  background: rgba(190, 70, 40, 0.05);
  border-color: rgba(190, 70, 40, 0.22);
}
.comparison-card--new {
  background: rgba(60, 140, 90, 0.05);
  border-color: rgba(60, 140, 90, 0.22);
}
.comparison-card__formula {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  color: var(--blue-bright);
  margin-bottom: 16px;
  line-height: 1.2;
}
.comparison-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: rgba(4, 7, 30, 0.35);
  line-height: 1;
  padding: 0 4px;
}

/* Before/after outcome rows — horizontal rule between pillars; 2-col desktop, stacked mobile */
.before-after-table {
  width: 100%;
}
.before-after-table__row {
  padding: 28px 0;
  border-bottom: 1px solid rgba(4, 7, 96, 0.12);
}
.before-after-table__row:first-child {
  padding-top: 0;
}
.before-after-table__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.before-after-table__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.before-after-table__label .pillar-block__icon {
  width: 48px;
  height: 48px;
}
.before-after-table__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.before-after-table__before,
.before-after-table__after {
  max-width: none;
  margin-bottom: 0;
}
.before-after-table__after {
  margin-top: 0;
}
@media (max-width: 768px) {
  .before-after-table__cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .before-after-table__row {
    padding: 32px 0;
  }
  .before-after-table__row:first-child {
    padding-top: 0;
  }
}

/* Five-pillar block (dark band) */
.pillar-block {
  padding: 52px 0;
  border-bottom: 1px solid rgba(247, 249, 254, 0.12);
}
.pillar-block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.pillar-block:first-of-type {
  padding-top: 0;
}
.pillar-block__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.pillar-block__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.pillar-block__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pillar-block__header .heading--h3 {
  margin-top: 8px;
}
.pillar-block__spectrum {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0 28px;
}
.feature-row .pillar-block__spectrum {
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .feature-row .pillar-block__spectrum {
    grid-template-columns: 1fr 1fr;
  }
}
.pillar-spectrum__col--fragmented,
.pillar-spectrum__col--coherent {
  border-radius: var(--radius-md);
  padding: 24px;
  min-width: 0;
}
.pillar-spectrum__col--fragmented {
  background: rgba(190, 70, 40, 0.08);
  border: 1px solid rgba(190, 70, 40, 0.22);
}
.pillar-spectrum__col--coherent {
  background: rgba(60, 140, 90, 0.08);
  border: 1px solid rgba(60, 140, 90, 0.22);
}
.pillar-spectrum__col--fragmented .list-dot li,
.pillar-spectrum__col--coherent .list-dot li {
  font-size: 18px;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink-body);
}
.pillar-spectrum__col--fragmented .list-dot li::before,
.pillar-spectrum__col--coherent .list-dot li::before {
  width: 4px;
  height: 4px;
  background: rgba(4, 7, 96, 0.28);
  border: none;
}
.pillar-spectrum__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--blue-deep);
  margin-bottom: 12px;
  line-height: 1.2;
}
.pillar-block__divider {
  height: 1px;
  background: rgba(247, 249, 254, 0.12);
  margin-bottom: 28px;
}
.pillar-block__checklist {
  margin-bottom: 20px;
}
.band .pillar-block__checklist .list-circle {
  max-width: none;
}
.band .pillar-block__checklist .list-circle li {
  color: var(--white-dim);
  font-size: 20px;
}
.band .pillar-block__checklist .list-circle li::before {
  border-color: rgba(242, 162, 40, 0.55);
}
.band .pillar-block__disguise.body--emphasis {
  color: var(--white-dim);
  max-width: none;
}
.band .pillar-block .blockquote {
  max-width: none;
  border-left-color: var(--gold);
}
.band .pillar-block .blockquote p {
  color: var(--white);
}
.band .pillar-block .blockquote cite {
  color: var(--white-faint);
}
.band > .section > .blockquote p,
.band .section > .blockquote p {
  color: var(--white);
}
.band > .section > .blockquote cite,
.band .section > .blockquote cite {
  color: var(--white-faint);
}

/* Guarantee promise card (light surface) */
.promise-card {
  width: 100%;
  max-width: 680px;
  margin: 32px auto 0;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  text-align: center;
}
.promise-card > img {
  display: block;
  width: 72px;
  height: auto;
  margin: 0 auto 20px;
}
.promise-card__lead {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--blue-deep);
  line-height: 1.35;
  margin-bottom: 16px;
}

/* ----- Content split (who this is for) ----- */
.content-split {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: stretch;
  margin-top: 8px;
}
.content-split__text { flex: 1; min-width: 0; }
.content-split__photo {
  flex-shrink: 0;
  width: 100%;
  max-width: min(100%, 360px);
  margin: 0 auto;
}
.content-split__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(4,7,30,0.13);
}

@media (min-width: 992px) {
  .content-split {
    flex-direction: row;
    align-items: stretch;
    gap: 52px;
  }
  .content-split__photo {
    flex: 0 0 clamp(360px, 42vw, 520px);
    max-width: 520px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
  }
  .content-split__photo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }
}

.list-gold-dot {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.list-gold-dot li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 18px;
  font-weight: 300;
  color: rgba(4,7,30,0.66);
  line-height: 1.65;
  max-width: var(--prose-max);
}
.list-gold-dot li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* Sans lead-in + ink-body copy (use cases, benefit bullets with labels) */
.list-sans-lead {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding: 0;
  text-align: left;
  max-width: var(--prose-max);
}
.list-sans-lead li {
  display: block;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-body);
  line-height: 1.65;
  max-width: none;
}
.list-sans-lead li strong {
  display: block;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--blue-bright);
  margin-bottom: 4px;
}

.body--emphasis {
  font-size: 24px;
  font-weight: 300;
  color: var(--blue-bright);
  line-height: 1.45;
  margin-top: 24px;
  font-style: italic;
  font-family: var(--serif);
  max-width: var(--prose-max);
}

/* ----- Pricing ----- */
.pricing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 40px;
}
.pricing-split .pricing-card { margin-top: 0; }

@media (max-width: 991px) {
  .pricing-split { grid-template-columns: 1fr; gap: 24px; }
  .pricing-split .pricing-card { order: -1; }
  .pricing-split .receive-panel { order: 1; }
}

.pricing-split .pricing-card { margin-top: 0; }

.pricing-card {
  background: #fff;
  border: 1px solid var(--blue-royal);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-icon {
  display: block;
  width: auto;
  height: auto;
  max-width: 50px;
  margin-bottom: 14px;
}

.pricing-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--blue-bright);
  margin-bottom: 10px;
  line-height: 1.15;
}

.pricing-desc {
  font-size: 18px;
  font-weight: 300;
  color: rgba(4,7,30,0.58);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: var(--prose-max);
}

.pricing-price-wrap {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
}

.price-tag {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 300;
  color: var(--blue-deep);
  line-height: 1;
  text-align: left;
  margin: 0 0 6px 0;
}
.price-tag sup { font-size: 26px; vertical-align: super; font-weight: 400; }

.price-installments {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-body);
  margin: 8px 0 12px 0;
}

.price-note {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0;
  text-align: left;
}

.pricing-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.receive-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.receive-panel .heading--h1 { margin-bottom: 16px; }

.receive-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.receive-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-body);
  line-height: 1.65;
  padding: 0;
  max-width: var(--prose-max);
}
.receive-list li::before { margin-top: 5px; }
.receive-list--on-dark li { color: var(--white-dim); }
.receive-list--on-dark strong {
  color: var(--white);
  font-weight: 500;
}

/* ----- Session schedule (cohort dates + pillars) ----- */
.schedule-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(4, 7, 96, 0.14);
}
.schedule-block__intro {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.schedule-block__label {
  margin: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.schedule-block__time {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-body);
  line-height: 1.45;
}
.schedule-block__time-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.72;
  margin-top: 2px;
}
.schedule-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.schedule-block__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 20px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid rgba(4, 7, 96, 0.1);
}
.schedule-block__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.schedule-block__date-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.schedule-block__date-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.72;
}
.schedule-block__date {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--blue-deep);
  letter-spacing: 0.02em;
}
.schedule-block__pillar {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--blue-bright);
  line-height: 1.35;
}

/* ----- Social proof ----- */
.social-proof-masonry {
  list-style: none;
  position: relative;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 0;
  padding: 0;
}
.social-proof-masonry .proof-card { margin: 0; }

@media (min-width: 992px) {
  .social-proof-masonry.proof-masonry-active .proof-card { position: absolute; }
}

@media (max-width: 991px) {
  .social-proof-masonry .proof-card {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    margin-bottom: 28px;
  }
  .social-proof-masonry { height: auto !important; }
}

.proof-card-inner {
  background: #fff;
  border: 1px solid rgba(4,7,96,0.06);
  border-radius: 10px;
  padding: 22px 20px 18px;
  text-align: left;
  /* Light surface elevation (material-ish), tuned to blue-deep ink */
  box-shadow:
    0 1px 2px rgba(4, 7, 30, 0.06),
    0 2px 8px rgba(4, 7, 30, 0.04);
}
.proof-card--expanded { z-index: 12; }

.proof-card-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  color: var(--blue-bright);
  line-height: 1.35;
  margin-bottom: 14px;
}
.proof-card-title::before { content: "\201C"; }
.proof-card-title::after { content: "\201D"; }

.proof-card-body {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-body);
  line-height: 1.72;
}
.proof-card-body p { margin-bottom: 12px; }
.proof-card-body p:last-child { margin-bottom: 0; }
.proof-card-body p:first-child::before { content: "\201C"; }
.proof-card-body p:last-child::after { content: "\201D"; }
.proof-card-body p:only-child::before { content: "\201C"; }
.proof-card-body p:only-child::after { content: "\201D"; }

.proof-card-body.is-clamped.loaded:not(.expanded) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}
.proof-card-body.expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.proof-readmore-btn {
  margin-top: 6px;
  margin-bottom: 4px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  width: 100%;
  text-align: right;
}
.proof-readmore-btn::before {
  content: '';
  flex: 1;
  height: 2px;
  background: rgba(0,21,127,0.25);
  margin-right: 14px;
}

.proof-p--emphasis {
  font-weight: 500;
  color: var(--blue-bright);
  font-style: normal;
}

.proof-hero-img {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  margin: -22px -20px 16px;
  border: 1px solid rgba(4,7,96,0.08);
  border-bottom: none;
}
.proof-hero-img img { width: 100%; height: auto; display: block; }

.proof-meta {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(4,7,96,0.08);
}

.proof-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(4,7,96,0.12);
}

.proof-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--blue-bright);
  line-height: 1.2;
  margin-bottom: 4px;
}

.proof-card-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  text-decoration: none;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(4, 7, 96, 0.08);
  width: 100%;
  transition: color 0.16s ease;
}

.proof-card-cta-link::after {
  content: '→';
  letter-spacing: 0;
}

.proof-card-cta-link:hover {
  color: var(--blue-royal);
}

.proof-role {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-body);
  line-height: 1.45;
}

/* Before / After proof card — session image + contrast panels
   Reuses: proof-card, proof-card-inner, proof-hero-img, proof-name, proof-role,
   proof-card-body, heading--h5. New: proof-card--ba, proof-ba, proof-ba__panel* */
.proof-card--ba .proof-name {
  margin-top: 0;
  margin-bottom: 4px;
}
.proof-card--ba .proof-role {
  margin-bottom: 16px;
}
.proof-ba {
  display: grid;
  gap: 12px;
}
.proof-ba__panel {
  border-radius: var(--radius-md);
  padding: 18px 18px 20px;
}
.proof-ba__panel .heading--h5 {
  margin-bottom: 10px;
}
.proof-ba__panel .proof-card-body {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}
.proof-ba__panel .proof-card-body strong {
  font-weight: 600;
}
.proof-ba__panel--before {
  background: rgba(0, 21, 127, 0.06);
  border: 1px solid rgba(0, 21, 127, 0.18);
}
.proof-ba__panel--before .heading--h5 {
  color: var(--blue-bright);
}
.proof-ba__panel--before .proof-card-body {
  color: var(--blue-deep);
}
.proof-ba__panel--after {
  background: rgba(242, 162, 40, 0.1);
  border: 1px solid rgba(242, 162, 40, 0.4);
}
.proof-ba__panel--after .heading--h5 {
  color: var(--gold-deep);
}
.proof-ba__panel--after .proof-card-body {
  color: var(--blue-bright);
}
@media (min-width: 700px) {
  .proof-ba {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
  }
  .proof-ba__panel {
    height: 100%;
  }
}

.proof-video-wrap {
  position: relative;
  width: calc(100% + 40px);
  margin: -22px -20px 16px;
  left: 0;
  aspect-ratio: 16/9;
  height: auto;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: rgba(4,7,30,0.04);
  border: 1px solid rgba(4,7,96,0.08);
  border-bottom: none;
  box-sizing: border-box;
}
.proof-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  min-width: 100%;
  height: 100% !important;
  min-height: 100%;
  border: 0;
  display: block;
}
.proof-video-wrap iframe[src*="vimeo.com"] {
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
  max-width: none;
}

/* ----- Video embed (Vimeo / YouTube) ----- */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(4, 7, 30, 0.04);
  border: 1px solid rgba(4, 7, 96, 0.08);
  box-shadow:
    0 8px 32px rgba(4, 7, 30, 0.10),
    0 2px 8px rgba(4, 7, 30, 0.06);
  box-sizing: border-box;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  min-width: 100%;
  height: 100% !important;
  min-height: 100%;
  border: 0;
  display: block;
}
.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--blue-deep);
}
.video-embed iframe[src*="vimeo.com"],
.video-embed iframe[src*="wistia"] {
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
  max-width: none;
}
.video-embed wistia-player {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.video-embed wistia-player:not(:defined) {
  background: center / contain no-repeat url('https://fast.wistia.com/embed/medias/bm41zvnad9/swatch');
  filter: blur(5px);
}
/* Small — proof-card column width (~1/3 of page-max) */
.video-embed--sm {
  max-width: min(100%, calc((var(--page-max) - 28px) / 3));
}
/* Medium — half section width */
.video-embed--md {
  max-width: min(100%, calc(var(--page-max) / 2));
}
/* Large — hero / feature embed */
.video-embed--lg {
  max-width: min(100%, 950px);
}

/* ----- FAQ ----- */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(4,7,96,0.07);
}
.faq-item:first-child { border-top: 1px solid rgba(4,7,96,0.07); }

.faq-q {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--blue-bright);
  margin-bottom: 8px;
  line-height: 1.25;
}

/* FAQ accordion — 5+ items; native <details>, no borders */
.faq-accordion {
  display: flex;
  flex-direction: column;
  max-width: var(--prose-max);
}
.faq-accordion__item {
  border: none;
}
.faq-accordion__trigger {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  border-radius: var(--radius-sm);
}
.faq-accordion__trigger:focus { outline: none; }
.faq-accordion__trigger:focus-visible {
  outline: 2px solid var(--blue-royal);
  outline-offset: 4px;
}
.faq-accordion__trigger::-webkit-details-marker { display: none; }
.faq-accordion__trigger::marker { content: ""; }
.faq-accordion__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 5px;
  background-color: var(--blue-bright);
  -webkit-mask-image: url("../images/icons/caret-right.svg");
  mask-image: url("../images/icons/caret-right.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform 0.2s ease;
}
.faq-accordion__item[open] .faq-accordion__chevron {
  transform: rotate(90deg);
}
.faq-accordion__trigger .faq-q {
  margin-bottom: 0;
}
.faq-accordion__panel {
  padding: 0 0 24px 32px;
}
.faq-accordion__panel .body:last-child {
  margin-bottom: 0;
}

/* ----- Closing CTA section ----- */
.cta-section {
  background:
    linear-gradient(180deg, rgba(4,7,30,0.78) 0%, rgba(4,7,30,0.86) 55%, rgba(4,7,30,0.92) 100%),
    url("../images/expansive-view.png");
  background-size: cover;
  background-position: center;
  padding: 88px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(242,162,40,0.18);
}

.cta-section__inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ----- Footer: legacy (pages not yet on site-footer) ----- */
footer:not(.site-footer) {
  background: var(--blue-deep);
  border-top: 1px solid rgba(247,249,254,0.07);
  padding: 32px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.page--compact .footer-logo .footer-logo-img {
  height: 28px;
  opacity: 0.95;
}

.footer-copy {
  font-size: 11px;
  color: var(--white-faint);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.footer-disclaimer {
  width: 100%;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(247,249,254,0.28);
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-top: 8px;
  max-width: 980px;
}

/* ----- Site footer (columned) ----- */
body:has(.site-footer) {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-footer {
  display: block;
  flex-shrink: 0;
  margin-top: auto;
  background: var(--blue-deep);
  border-top: none;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-radial);
  pointer-events: none;
  z-index: 0;
}

.site-footer::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-20%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(4, 7, 96, 0.35) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 48px 56px 48px;
  box-sizing: border-box;
}

.site-footer__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.site-footer__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}

.site-footer__accreditation img {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.site-footer__newsletter {
  margin-bottom: 36px;
  max-width: 560px;
}

.site-footer__newsletter-lede {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--white-dim);
  margin: 0 0 16px;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 40px;
  margin-bottom: 36px;
}

.site-footer__heading {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--white-dim);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: var(--white);
}

.site-footer__address {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.55;
  margin: 0;
}

.site-footer__social {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247,249,254,0.2);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.site-footer__social-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.site-footer__social-link:hover {
  border-color: var(--gold);
}

.site-footer__social-link:hover img {
  opacity: 1;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(247,249,254,0.1);
  margin-bottom: 16px;
}

.site-footer__copyright {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--white-faint);
  margin: 0;
}

.site-footer__legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.site-footer__legal a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--white-dim);
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: var(--white);
}

.site-footer__disclaimer {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(247,249,254,0.35);
  margin: 0;
  max-width: none;
}

.site-footer__disclaimer + .site-footer__disclaimer {
  margin-top: 12px;
}

/* Landing pages — logo, newsletter, legal only (no link columns) */
.site-footer--landing .site-footer__columns {
  display: none;
}

@media (max-width: 900px) {
  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-footer__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__brand-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ----- Newsletter modal (GoHighLevel embed) ----- */
.newsletter-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100vw;
  background: rgba(1, 5, 31, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  overscroll-behavior: contain;
}

.newsletter-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Closed: block all descendants; GHL form_embed.js sets inline pointer-events on the iframe */
.newsletter-modal-overlay:not(.is-open),
.newsletter-modal-overlay:not(.is-open) * {
  pointer-events: none !important;
}

/* Iframes may be reparented by form_embed — keep each form hidden with its modal closed */
body:not(:has(#newsletter-modal.is-open)) #inline-MQJMWGtMfvNxyMDQBTvB,
body:not(:has(#brochure-modal.is-open)) #inline-V9geKBDawOBCT6DRWfwp {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  left: -9999px !important;
  opacity: 0 !important;
}

#newsletter-modal.is-open #inline-MQJMWGtMfvNxyMDQBTvB,
#brochure-modal.is-open #inline-V9geKBDawOBCT6DRWfwp {
  visibility: visible !important;
  pointer-events: auto !important;
  left: auto !important;
}

.newsletter-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  min-width: 0;
  max-height: none;
  overflow: visible;
  position: relative;
  padding: 40px 40px 36px;
  box-sizing: border-box;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.newsletter-modal-overlay.is-open .newsletter-modal {
  transform: translateY(0);
}

.newsletter-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--blue-deep);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-modal__close:hover {
  background: rgba(4, 7, 96, 0.06);
}

.newsletter-modal__rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}

.newsletter-modal__embed {
  margin-top: 20px;
  line-height: 0;
  overflow: hidden;
}

.newsletter-modal__embed iframe {
  display: block;
  width: 100%;
  height: 560px;
  min-height: 0;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  overflow: hidden;
}

@media (max-width: 560px) {
  .newsletter-modal {
    padding: 32px 24px 28px;
    max-height: 92vh;
    overflow-y: auto;
  }
}

@media (max-height: 720px) and (min-width: 561px) {
  .newsletter-modal {
    max-height: 92vh;
    overflow-y: auto;
  }
}

/* ----- Evergreen webinar popup (GHL form embed) ----- */
.eg-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 5, 31, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  overscroll-behavior: contain;
  padding: 16px;
}

.eg-popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.eg-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  /* width: responsive, capped at 520px, never overflows viewport */
  width: min(520px, calc(100vw - 32px));
  /* height: fills viewport minus overlay padding, never taller than 700px */
  height: min(700px, calc(100dvh - 32px));
  display: flex;
  flex-direction: column;
  position: relative;
  /* compact padding so the iframe gets maximum room */
  padding: 36px 28px 16px;
  transform: translateY(12px);
  transition: transform 0.25s ease;
  overflow: hidden;
}

.eg-popup-overlay.is-open .eg-popup {
  transform: translateY(0);
}

.eg-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue-bright);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
  line-height: 1;
}

.eg-popup__close:hover { background: rgba(4, 7, 96, 0.06); }

.eg-popup__embed {
  flex: 1;
  min-height: 0;
  line-height: 0;
  overflow: hidden;
}

.eg-popup__embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-md);
}

/* Mobile: full-width, fill almost the whole screen */
@media (max-width: 540px) {
  .eg-popup-overlay { padding: 8px; }
  .eg-popup {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    border-radius: var(--radius-md);
    padding: 36px 16px 12px;
  }
}

/* ----- Funnel pages (evergreen broadcast + thank-you) ----- */
body.page-funnel {
  background: var(--blue-deep);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.funnel-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 72px;
}

.funnel-wrap--center {
  justify-content: center;
  text-align: center;
}

.funnel-logo {
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.funnel-wrap--center .funnel-logo { margin-bottom: 48px; }
.funnel-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.funnel-page-title {
  text-align: center;
  max-width: 660px;
  margin-bottom: 36px;
}

.funnel-video {
  width: 100%;
  max-width: 920px;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(247, 249, 254, 0.06);
  opacity: 0;
  animation: fadeUp 0.8s 0.28s ease forwards;
}

.funnel-reveal {
  width: 100%;
  max-width: 920px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.9s ease, opacity 0.9s ease, margin-top 0.9s ease;
}
.funnel-reveal.is-visible {
  max-height: 1200px;
  opacity: 1;
  margin-top: 48px;
}

.funnel-card {
  width: 100%;
  max-width: 680px;
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(242, 162, 40, 0.09) 0%, rgba(0, 21, 127, 0.22) 100%);
  border: 1px solid rgba(242, 162, 40, 0.28);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  text-align: center;
}
.funnel-card--wide { max-width: 920px; }
.funnel-reveal .funnel-card { margin-top: 0; }
.funnel-wrap--center .funnel-card {
  opacity: 0;
  animation: fadeUp 0.8s 0.36s ease forwards;
}
.funnel-wrap--center > .body--on-dark {
  max-width: 560px;
}
.funnel-card .heading--h5 {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.26em;
  margin-bottom: 16px;
}
.funnel-card .heading--h3.heading--on-dark em { color: var(--gold); }
.funnel-card .heading--band { margin-bottom: 14px; }

.funnel-offer {
  border: 1px solid rgba(242, 162, 40, 0.22);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: 28px;
  text-align: center;
}

.funnel-offer__badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(242, 162, 40, 0.30);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.funnel-offer__price {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.funnel-offer__price span {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--white-faint);
  letter-spacing: 0.02em;
}
.funnel-offer__price--sm {
  font-size: 26px;
  margin-bottom: 20px;
}

.funnel-offer__guarantee {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-faint);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}

.funnel-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 28px;
}
.funnel-divider::before,
.funnel-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(247, 249, 254, 0.10);
}
.funnel-divider span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--white-faint);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.funnel-footer {
  padding: 24px;
  text-align: center;
  border-top: 1px solid rgba(247, 249, 254, 0.07);
}
.funnel-footer p {
  font-size: 11px;
  color: rgba(247, 249, 254, 0.22);
  font-weight: 300;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.funnel-return {
  margin-top: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.48s ease forwards;
}
.funnel-return a {
  font-size: 14px;
  font-weight: 400;
  color: var(--white-faint);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.funnel-return a:hover { color: var(--white-dim); }
.funnel-return a::before {
  content: '←';
  font-size: 16px;
}

.funnel-separator {
  width: 100%;
  max-width: 640px;
  height: 1px;
  background: rgba(247, 249, 254, 0.08);
  margin: 48px auto 0;
  opacity: 0;
  animation: fadeUp 0.7s 0.44s ease forwards;
}

@media (max-width: 600px) {
  .funnel-card { padding: 32px 22px; }
  .funnel-offer { padding: 22px 18px; }
}

/* ----- Turbo / forms ----- */
.form-section { background: var(--white); }

.form-outer {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 72px 56px 88px;
}

.form-heading-block { margin-bottom: 40px; }

.form-session-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.form-session-meta .form-title {
  margin-bottom: 0;
}
.form-session-meta__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.form-session-meta__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--blue-bright);
  line-height: 1.35;
}
.form-session-meta__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(6000%) hue-rotate(222deg);
}
@media (min-width: 540px) {
  .form-session-meta__details {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 28px;
  }
}

.form-main-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  color: var(--blue-deep);
  line-height: 1.1;
  margin-bottom: 10px;
}
.form-main-title em { font-style: italic; color: var(--blue-bright); }

.form-sub {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(4,7,30,0.48);
  line-height: 1.65;
  max-width: 440px;
}

.form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(4,7,30,0.13), 0 2px 12px rgba(4,7,30,0.07);
}
.form-section .form-card {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.form-section .form-embed {
  line-height: 0;
  overflow: visible;
}
.form-section .form-embed iframe {
  display: block;
  width: 100%;
  height: 790px;
  min-height: 790px;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
  border-radius: 16px 16px 0 0;
}
.form-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(4,7,96,0.03);
  pointer-events: none;
  z-index: 0;
}
.form-card > * { position: relative; z-index: 1; }

.form-title {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  color: var(--blue-deep);
  margin-bottom: 5px;
}

.form-caption {
  font-size: 13px;
  font-weight: 300;
  color: rgba(4,7,30,0.45);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-group.no-mb { margin-bottom: 0; }

.form-section label,
.form-card label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"] {
  background: #f5f7fc;
  border: 1px solid rgba(4,7,96,0.14);
  border-radius: 6px;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--blue-deep);
  width: 100%;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-card input::placeholder { color: rgba(4,7,30,0.25); }
.form-card input:focus {
  border-color: rgba(4,7,96,0.4);
  background: #eef0fa;
}

.divider {
  height: 1px;
  background: rgba(4,7,96,0.08);
  margin: 24px 0;
}

.session-label-title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: block;
  margin-bottom: 12px;
}

.session-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.session-opt { position: relative; }
.session-opt input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.session-opt label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid rgba(4,7,96,0.12);
  border-radius: 6px;
  cursor: pointer;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 300;
  color: rgba(4,7,30,0.45);
  transition: all 0.18s;
  line-height: 1.3;
  background: #f9fafe;
}
.session-opt label::before {
  content: '';
  width: 13px;
  height: 13px;
  border: 1px solid rgba(4,7,96,0.2);
  border-radius: 3px;
  flex-shrink: 0;
  transition: all 0.18s;
  background: transparent;
}
.session-opt input:checked + label {
  border-color: rgba(4,7,96,0.35);
  color: var(--blue-deep);
  background: rgba(4,7,96,0.05);
}
.session-opt input:checked + label::before {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}

.form-note {
  text-align: center;
  font-size: 11.5px;
  color: rgba(4,7,30,0.32);
  margin-top: 16px;
  font-weight: 300;
  line-height: 1.6;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NEURAL SYNAPSE NETWORK — interactive canvas feature
   Production demo: neural-network-demo.html
============================================================ */
.neural-network {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  cursor: crosshair;
  touch-action: pan-y;
}

.neural-network__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

.neural-network__content {
  position: relative;
  z-index: 2;
  width: min(560px, 44vw);
  margin-left: max(56px, calc((100vw - var(--page-max)) / 2));
  padding: 80px 0;
  pointer-events: none;
}

.neural-network__content .heading--display {
  max-width: 7ch;
}

.neural-network__content .body--lead {
  max-width: 520px;
  text-align: left;
}

.neural-network__status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .neural-network {
    align-items: flex-start;
  }

  .neural-network__content {
    width: 100%;
    margin-left: 0;
    padding: 72px 24px 0;
    text-align: center;
  }

  .neural-network__content .heading--display {
    max-width: none;
  }

  .neural-network__content .body--lead {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* ============================================================
   404 PAGE — prominent static code
   Scoped to .error-404-hero; pair with markup in 404.html
============================================================ */
.hero-section.error-404-hero {
  min-height: min(85vh, 780px);
  padding-bottom: 72px;
}

.hero-section.error-404-hero .error-404__code {
  font-size: clamp(120px, 22vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-section.error-404-hero .heading--h1 {
  margin-bottom: 20px;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .split-panel { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .site-nav__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-section--image .hero-copy,
  .hero-section--image .hero-content-col {
    max-width: 100%;
  }

  .hero-content,
  .section,
  .quote-band,
  .quote-band--gradient,
  .cta-section,
  footer:not(.site-footer),
  .form-outer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-footer__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .band__inner { padding-left: 24px; padding-right: 24px; }
  .hero-corner-logo { top: 20px; left: 24px; }
  .hero-corner-logo img { height: 40px; }
  .feature-row {
    grid-template-columns: 56px 1fr;
    padding: 22px 20px;
    gap: 14px;
  }
  .feature-row__icon { width: 56px; height: 56px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
  .comparison-pair {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .comparison-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
  .pillar-block__spectrum { grid-template-columns: 1fr; }
  .promise-card { padding: 32px 24px; }
  .card-grid { grid-template-columns: 1fr; }
  .price-tag,
  .price-note { text-align: left; }
  .offer-strip {
    flex-direction: column;
    width: min(560px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
  .offer-pill {
    border-right: none;
    border-bottom: 1px solid rgba(242,162,40,0.12);
    text-align: left;
    padding: 14px 18px;
    font-size: 12px;
    letter-spacing: 0.14em;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
  }
  .offer-pill:last-child { border-bottom: none; }
  .offer-pill span {
    margin-top: 0;
    font-size: 18px;
    text-align: right;
    white-space: normal;
  }
  .hero-cta-row .btn {
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }
  .split-section__grid { grid-template-columns: 1fr; gap: 28px; }
  .integration-grid { grid-template-columns: 1fr; }
  .integration-grid__item {
    border-right: none;
    padding: 20px 0;
  }
  .integration-grid__item:not(:last-child) {
    border-bottom: 1px solid rgba(4, 7, 96, 0.12);
  }
  .integration-grid__item:nth-child(3) {
    border-bottom: 1px solid rgba(4, 7, 96, 0.12);
  }
  .split-section__media:not(.split-section__media--portrait) img { aspect-ratio: 4/3; height: auto; }
  .split-section__media--portrait { max-height: min(560px, 65vh); }
  .photo-banner { min-height: 420px; }
}

@media (max-width: 600px) {
  .page--compact .form-card { padding: 28px 20px; }
  .page--compact .form-row { grid-template-columns: 1fr; }
  .page--compact .session-grid { grid-template-columns: 1fr; }
}
