/* =============================================================================
   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-mid:    #0a0f6b;
  --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: 3px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --page-max: 1200px;
  --prose-max: 65ch;
  --nav-h: 72px;
}

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

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--blue-deep);
  color: var(--white);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
.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;}

.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;
}

/* ----- Site nav (homepage) ----- */
.site-nav {
  position: fixed;
  top: 0;
  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;
}

.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(--page-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: center;
  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.24em;
  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;
}
.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; }
.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  padding: 10px;
  border-radius: 14px;
  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: 10px;
  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(--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: 12px;
  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: 10px;
  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; }

@media (max-width: 980px) {
  .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 ----- */
.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: 0.88; 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-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--block { display: block; width: 100%; border-radius: 2px; margin-top: 28px; }

/* ----- Kickers (eyebrows / section labels) ----- */
.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  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;
  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;
}
.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--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: 16px;
}

.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 {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.section--center .heading {
  margin-left: auto;
  margin-right: auto;
  max-width: min(18ch, 92vw);
}
.section--center .heading--h1,
.section--center .heading--h2 {
  max-width: min(28ch, 92vw);
}
.section--center .body {
  margin-left: auto;
  margin-right: auto;
}
.section--center .body--lead {
  max-width: 60ch;
}

.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;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.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;
}

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

.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; }

/* Match section rhythm; body copy max half hero width on desktop (same as / below page-max column / 2) */
.hero-section--image .hero-copy {
  max-width: min(calc(var(--page-max) / 2), 50vw);
  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: right 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(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(--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 { margin-bottom: 32px; }
.split-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 28px;
}
.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);
}
.split-section__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(4,7,30,0.13);
}
.split-section__media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  aspect-ratio: 9/16;
}

/* ----- 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;
}
.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-mid);
  line-height: 1.2;
  margin: 0;
}
.media-card .body {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

/* ----- 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::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;
}

/* ----- 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;
}
@media (max-width: 980px) {
  .proof-grid { 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;
}

/* ----- 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;
}
.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-mid);
  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);
}

/* ----- 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;
}

.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 { 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-mid);
  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; }

/* ----- 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: 8px auto 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;
  /* 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-role {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-body);
  line-height: 1.45;
}

.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;
}

/* ----- 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-deep);
  margin-bottom: 8px;
  line-height: 1.25;
}

/* ----- 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 ----- */
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;
}

/* ----- 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-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-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); }
}

/* ----- 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 {
    max-width: 100%;
  }

  .hero-content,
  .section,
  .quote-band,
  .quote-band--gradient,
  .cta-section,
  footer,
  .form-outer {
    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; }
  .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: nowrap;
  }
  .split-section__grid { grid-template-columns: 1fr; gap: 28px; }
  .split-section__media img { aspect-ratio: 4/3; height: auto; }
  .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; }
}
