:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Poppins", "Segoe UI", system-ui, sans-serif;
  --bg-cream: #f8f7f3;
  --bg-soft: #eef6f1;
  --bg-wash: #e7f3ef;
  --surface-100: rgba(255, 255, 255, 0.62);
  --surface-200: rgba(248, 247, 243, 0.76);
  --surface-300: rgba(240, 247, 243, 0.88);
  --surface-400: rgba(255, 255, 255, 0.94);
  --line-soft: rgba(0, 128, 128, 0.12);
  --line-strong: rgba(0, 128, 128, 0.24);
  --text-strong: #273537;
  --text-base: rgba(39, 53, 55, 0.86);
  --text-muted: rgba(63, 77, 79, 0.76);
  --ink-dark: #173434;
  --teal-600: #008080;
  --teal-500: #0f8e8a;
  --teal-400: #25a5a1;
  --lime-500: #d7f29b;
  --lime-400: #caea86;
  --glow-teal: rgba(15, 142, 138, 0.28);
  --glow-lime: rgba(215, 242, 155, 0.52);
  --shadow-soft: 0 18px 52px rgba(24, 79, 76, 0.12);
  --shadow-strong: 0 28px 84px rgba(24, 79, 76, 0.20);
  --radius-2xl: 32px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1380px;
  --section-gap: clamp(36px, 5vw, 56px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--text-base);
  background: #0a1a18;
  line-height: 1.65;
}

body::before,
body::after {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--text-strong);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

/* ───── HEADER ───── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 0;
  pointer-events: none;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ───── FIXED VIDEO BACKGROUND ───── */
.site-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-background__video,
.site-background__scrim,
.site-background__grid {
  position: absolute;
  inset: 0;
}

/* ───── LAYOUT SHELLS ───── */
.nav-shell,
.hero-shell,
.section-shell,
.footer-shell {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

/* ───── NAVIGATION ───── */
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(247, 251, 249, 0.88), rgba(229, 238, 234, 0.72));
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 20px 50px rgba(9, 37, 35, 0.18);
  pointer-events: auto;
}

.nav-topbar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 108px;
  height: auto;
  border-radius: 8px;
}

.brand-copy {
  min-width: 0;
}

.brand-kicker,
.section-kicker,
.card-kicker {
  margin: 0;
  color: var(--teal-500);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fact-label {
  margin: 0;
  color: var(--teal-500);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-title {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(0, 128, 128, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--text-strong);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(0, 128, 128, 0.2);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.nav-toggle__icon {
  display: inline-grid;
  gap: 4px;
}

.nav-toggle__icon span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-shell.is-open .nav-toggle__icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-shell.is-open .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.nav-shell.is-open .nav-toggle__icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text-strong);
}

.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 128, 128, 0.14);
  background: linear-gradient(135deg, rgba(215, 242, 155, 0.95), rgba(215, 242, 155, 0.72));
  color: var(--ink-dark);
  font-weight: 600;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  border-color: rgba(0, 128, 128, 0.20);
  background: linear-gradient(135deg, rgba(215, 242, 155, 1), rgba(202, 234, 134, 0.78));
}

/* ───── HERO ───── */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  padding: 0 0 42px;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
  filter: saturate(1.1) brightness(0.52) contrast(1.1);
  transform: scale(1.24);
  transform-origin: 50% 62%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 26, 24, 0.58) 0%, rgba(12, 41, 39, 0.28) 18%, rgba(11, 41, 39, 0.18) 42%, rgba(9, 31, 30, 0.50) 100%),
    radial-gradient(circle at 16% 24%, rgba(215, 242, 155, 0.10), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(15, 142, 138, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(10, 26, 24, 0.38), transparent 38%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(215, 242, 155, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 24%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0.14;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  min-height: 100svh;
  padding-top: 68px;
  padding-bottom: 28px;
  align-content: start;
}

/* ───── SECTIONS ───── */
.section {
  padding: var(--section-gap) 0;
}

main > .section:first-of-type {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 0;
}

section[id] {
  scroll-margin-top: 126px;
}

.section-shell {
  display: grid;
  gap: 18px;
}

/* ───── SECTION HEADINGS ───── */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
  gap: 20px;
  padding: 26px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(248, 251, 249, 0.76), rgba(233, 241, 238, 0.56));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.52) inset,
    0 20px 56px rgba(24, 79, 76, 0.14);
  backdrop-filter: blur(28px) saturate(128%);
  -webkit-backdrop-filter: blur(28px) saturate(128%);
}

.section-heading--solo {
  grid-template-columns: 1fr;
}

.section-heading > div,
.section-intro {
  position: relative;
  z-index: 1;
}

.section-heading h2,
.section-heading h3,
.glass-card h2,
.glass-card h3 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  max-width: 14ch;
  color: #1f3234;
}

.section-intro,
.glass-card p,
.glass-card li,
.footer-meta p {
  margin: 0;
  color: var(--text-base);
}

.section-intro {
  max-width: 50ch;
  color: rgba(35, 54, 55, 0.82);
  font-weight: 500;
  line-height: 1.72;
  font-size: 0.98rem;
}

/* ───── GRIDS ───── */
.glass-grid,
.hero-facts,
.provider-details,
.footer-shell,
.stack-grid {
  display: grid;
  gap: 14px;
}

.hero-facts,
.glass-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass-grid--split {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: start;
}

.hero-layout,
.glass-grid--highlight {
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.hero-main-stack {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 100%;
}

.glass-grid--highlight {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.glass-grid--contact {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
  align-items: start;
}

.glass-grid--faq {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-proof-stack {
  display: grid;
  gap: 14px;
  align-content: start;
}

.stack-grid {
  align-content: start;
}

/* ───── GLASS CARDS ───── */
.glass-card {
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  --edge-sensitivity: 30;
  --color-sensitivity: calc(var(--edge-sensitivity) + 20);
  --border-radius: 28px;
  --card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(241, 247, 244, 0.60));
  --glass-border: rgba(255, 255, 255, 0.30);
  --glow-strong: var(--teal-500);
  --glow-mid: var(--lime-500);
  position: relative;
  isolation: isolate;
  min-height: 100%;
  overflow: visible;
  border-radius: var(--border-radius);
  transform: translateZ(.01px);
  transform-style: preserve-3d;
  display: grid;
  border: 1px solid var(--glass-border);
  background: var(--card-bg);
  transition: transform .15s ease-out, box-shadow .18s ease-out;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.56) inset,
    0 22px 60px rgba(24, 79, 76, 0.14);
  backdrop-filter: blur(26px) saturate(130%);
  -webkit-backdrop-filter: blur(26px) saturate(130%);
  will-change: transform;
}

.glass-card::before,
.glass-card::after,
.edge-light {
  pointer-events: none;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: calc(var(--border-radius) - 1px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 40%);
  opacity: 0.8;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--border-radius) + 2px);
  z-index: -1;
  transition: opacity .25s ease-out;
  pointer-events: none;
  background:
    conic-gradient(
      from var(--cursor-angle) at 50% 50%,
      var(--glow-strong) 0,
      var(--glow-mid) 5%,
      #ffffff 10%,
      var(--glow-mid) 15%,
      var(--glow-strong) 20%,
      transparent 30%,
      transparent 70%,
      var(--glow-strong) 80%,
      var(--glow-mid) 85%,
      #ffffff 90%,
      var(--glow-mid) 95%,
      var(--glow-strong) 100%
    );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 2px;
  opacity: calc((var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
}

.glass-card:not(:hover)::before {
  opacity: 0;
  transition: opacity .75s ease-in-out;
}

.glass-card > .edge-light {
  display: none;
}

.glass-card:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.56) inset,
    0 28px 80px rgba(24, 79, 76, 0.20);
  z-index: 3;
}

.glass-card__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  height: 100%;
  padding: 24px;
}

.glass-card--hero .glass-card__inner {
  padding: clamp(22px, 3.1vw, 34px);
  gap: 9px;
  height: 100%;
  align-content: start;
}

.glass-card--hero {
  min-height: 100%;
}

.glass-card--compact .glass-card__inner {
  gap: 10px;
  padding: 24px 28px;
}

.glass-card--spotlight {
  --card-bg: linear-gradient(180deg, rgba(247, 251, 249, 0.84), rgba(234, 242, 238, 0.68));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.58) inset,
    0 26px 64px rgba(24, 79, 76, 0.16);
}

.glass-card--proof .glass-card__inner {
  gap: 14px;
}

/* ───── HERO CARD THEMING ───── */
.glass-card--hero h1 {
  margin: 0;
  max-width: 11ch;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.88;
}

.hero-title__line {
  display: block;
}

.hero-title__line--accent {
  display: inline-block;
  width: fit-content;
  margin: 0.06em 0 0.12em;
  padding: 0.02em 0.18em 0.05em;
  border-radius: 10px;
  background: linear-gradient(135deg, #d7f29b, #e7f8be);
  color: var(--teal-600) !important;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(215, 242, 155, 0.14);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(190, 242, 100, 0.18);
  background: rgba(190, 242, 100, 0.08);
  color: var(--lime-400);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lede {
  max-width: 56ch;
  font-weight: 500;
  font-size: 1.02rem;
}

/* ───── BUTTONS ───── */
.hero-actions,
.stacked-actions,
.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}

.button,
.button-secondary,
.button-tertiary,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button-secondary:hover,
.button-tertiary:hover,
.text-button:hover,
.button:focus-visible,
.button-secondary:focus-visible,
.button-tertiary:focus-visible,
.text-button:focus-visible {
  transform: translateY(-1px);
}

.button {
  background: linear-gradient(135deg, var(--lime-500), #c5e87a);
  color: var(--ink-dark);
  box-shadow: 0 4px 12px rgba(215, 242, 155, 0.22);
  font-weight: 700;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 6px 18px rgba(215, 242, 155, 0.30);
  background: linear-gradient(135deg, #e0f7a8, #d0ee8c);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  color: #fbfff8;
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-tertiary {
  border: 1px solid rgba(0, 128, 128, 0.14);
  background: rgba(248, 247, 243, 0.48);
  color: var(--text-muted);
}

.text-button {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: var(--teal-400);
  position: relative;
}

.text-button::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 240ms ease;
}

.text-button:hover::after {
  width: 100%;
}

/* ───── HERO DARK THEME ───── */
.hero .glass-card {
  --card-bg: linear-gradient(180deg, rgba(14, 40, 38, 0.62), rgba(8, 22, 21, 0.68));
  --glass-border: rgba(255, 255, 255, 0.14);
  --glow-strong: var(--lime-500);
  --glow-mid: var(--teal-400);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 28px 88px rgba(10, 26, 24, 0.32);
  backdrop-filter: blur(28px) saturate(128%);
  -webkit-backdrop-filter: blur(28px) saturate(128%);
}

.hero .glass-card::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 40%);
  opacity: 0.72;
}

.hero-proof-stack .glass-card {
  --card-bg: linear-gradient(180deg, rgba(248, 251, 249, 0.82), rgba(229, 238, 234, 0.64));
  --glass-border: rgba(255, 255, 255, 0.34);
  --glow-strong: rgba(255, 255, 255, 0.82);
  --glow-mid: rgba(215, 242, 155, 0.86);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 24px 68px rgba(8, 31, 30, 0.22);
}

.hero-proof-stack .glass-card::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 38%);
  opacity: 0.86;
}

.hero .glass-card h1,
.hero .glass-card h2,
.hero .glass-card h3,
.hero .glass-card strong {
  color: #fbfff8;
}

.hero .glass-card p,
.hero .glass-card li,
.hero .glass-card span {
  color: rgba(248, 255, 252, 0.84);
}

.hero-proof-stack .glass-card h2,
.hero-proof-stack .glass-card h3,
.hero-proof-stack .glass-card strong {
  color: var(--text-strong);
}

.hero-proof-stack .glass-card p,
.hero-proof-stack .glass-card li,
.hero-proof-stack .glass-card span,
.hero-proof-stack .glass-card small {
  color: var(--text-base);
}

.hero .glass-card .eyebrow,
.hero .glass-card .fact-label {
  color: var(--lime-400);
}

.hero-proof-stack .glass-card .card-kicker,
.hero-proof-stack .glass-card .fact-label {
  color: var(--teal-500);
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fbfff8;
  border-radius: 8px;
}

.hero .button-tertiary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 255, 252, 0.82);
}

.hero .text-button {
  color: rgba(248, 255, 252, 0.8);
}

.hero .text-button:hover,
.hero .text-button:focus-visible {
  color: #fbfff8;
}

.hero-meta .text-button {
  font-size: 0.92rem;
  font-weight: 500;
}

/* ───── PROOF BADGES ───── */
.proof-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 128, 128, 0.12);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text-strong);
  font-size: 0.78rem;
  font-weight: 600;
}

.proof-badge--soft {
  background: rgba(236, 242, 239, 0.72);
  color: var(--text-muted);
}

/* ───── PROOF STATS ───── */
.proof-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.proof-stat {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(0, 128, 128, 0.10);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.proof-stat span,
.hero-signal span {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-stat strong {
  font-size: 1.18rem;
  line-height: 1.1;
}

.proof-stat small {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hero-proof-stack .hero-facts {
  grid-template-columns: 1fr;
}

/* ───── HERO TRUST STRIP ───── */
.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-main-stack .hero-trust-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-main-stack .hero-signal:last-child {
  grid-column: 1 / -1;
}

.hero-signal {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(14, 40, 38, 0.48), rgba(8, 24, 22, 0.42));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 42px rgba(9, 37, 35, 0.18);
  backdrop-filter: blur(22px) saturate(122%);
  -webkit-backdrop-filter: blur(22px) saturate(122%);
}

.hero-signal span {
  color: rgba(215, 242, 155, 0.72);
}

.hero-signal strong {
  color: #fbfff8;
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero-facts strong {
  display: block;
  color: var(--text-strong);
  font-size: 1.28rem;
  line-height: 1.1;
}

.hero-facts span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ───── DETAIL / CHECKLIST / STORY ───── */
.detail-list,
.checklist,
.story-stack,
.provider-badges {
  display: grid;
  gap: 12px;
}

.detail-row,
.check-item,
.story-item,
.provider-details div,
.what-next {
  border: 1px solid rgba(0, 128, 128, 0.10);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.40);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.detail-row {
  display: grid;
  gap: 4px;
  padding: 12px 16px;
}

.detail-row span {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.detail-row strong {
  color: var(--text-strong);
  font-size: 0.96rem;
  line-height: 1.45;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.feature-list li {
  line-height: 1.6;
}

.feature-list li::marker {
  color: var(--teal-500);
}

/* ───── MEDIA CHIP ───── */
.media-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(215, 242, 155, 0.44), rgba(15, 142, 138, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.media-chip img {
  width: 32px;
  height: 32px;
}

/* ───── STORY ITEMS ───── */
.story-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.story-item img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  padding: 14px;
  object-fit: contain;
}

.story-item strong,
.check-item strong,
.what-next-list strong,
.glass-card h2,
.glass-card h3 {
  color: var(--text-strong);
}

.story-item p,
.check-item p {
  color: var(--text-muted);
}

.check-item {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
}

/* ───── FAQ SECTION ───── */
.faq-card .glass-card__inner {
  padding-top: 24px;
  padding-bottom: 24px;
}

.faq-card details {
  height: 100%;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  color: var(--text-strong);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 142, 138, 0.08);
  color: var(--teal-400);
  font-size: 1.2rem;
  font-weight: 700;
  transition: background 200ms ease, transform 200ms ease;
}

.faq-card details[open] summary::after {
  content: "\2212";
  background: rgba(15, 142, 138, 0.14);
  transform: rotate(180deg);
}

.faq-card p {
  margin-top: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ───── CTA / CONTACT ───── */
.glass-card--cta .button {
  width: fit-content;
}

.what-next {
  padding: 20px;
}

.what-next-list {
  display: grid;
  gap: 14px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: next-step;
}

.what-next-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 14px;
}

.what-next-list li::before {
  counter-increment: next-step;
  content: counter(next-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(215, 242, 155, 0.52), rgba(15, 142, 138, 0.14));
  color: var(--ink-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.what-next-list span {
  grid-column: 2;
  color: var(--text-muted);
}

/* ───── FORM CARD ───── */
.glass-card--form .lead-form {
  max-width: none;
  margin-top: 6px;
}

.glass-card--form .lead-form fieldset {
  padding: 0;
  border: 0;
  background: transparent;
}

.glass-card--form .lead-form legend {
  padding: 0;
  margin-bottom: 18px;
  color: var(--teal-500);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.glass-card--form .lead-form .InputBlock {
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 16px;
}

.glass-card--form .lead-form label,
.lead-form-note-inline {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.glass-card--form input[type="text"],
.glass-card--form input[type="email"],
.glass-card--form input[type="tel"],
.glass-card--form input[type="number"] {
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(0, 128, 128, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-strong);
  font-size: 0.95rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.glass-card--form input[type="text"]:focus,
.glass-card--form input[type="email"]:focus,
.glass-card--form input[type="tel"]:focus,
.glass-card--form input[type="number"]:focus {
  outline: none;
  border-color: rgba(15, 142, 138, 0.56);
  box-shadow: 0 0 0 4px rgba(15, 142, 138, 0.10);
}

.glass-card--form .lead-form input[type="submit"] {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  margin-top: 22px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--teal-500), #0d7a76);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(15, 142, 138, 0.24);
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.glass-card--form .lead-form input[type="submit"]:hover:not(:disabled) {
  background: linear-gradient(135deg, #0fa39e, #0e8e8a);
  box-shadow: 0 16px 40px rgba(15, 142, 138, 0.32);
  transform: translateY(-2px);
}

.glass-card--form .lead-form input[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.glass-card--form .lead-form .Response.is-success {
  background: rgba(215, 242, 155, 0.26);
  border-color: rgba(15, 142, 138, 0.14);
  color: #20403f;
  border-radius: 14px;
  padding: 14px 18px;
}

.glass-card--form .lead-form .Response.is-error {
  background: rgba(255, 149, 105, 0.16);
  border-color: rgba(255, 149, 105, 0.24);
  color: #6f3824;
  border-radius: 14px;
  padding: 14px 18px;
}

/* ───── PROVIDER SECTION ───── */
.provider-section {
  padding-bottom: 64px;
}

.provider-header {
  display: grid;
  gap: 14px;
}

.provider-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  width: fit-content;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(215, 242, 155, 0.62);
  color: var(--ink-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.provider-badge-soft {
  background: rgba(255, 255, 255, 0.52);
  color: var(--text-muted);
  border-radius: 14px;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
}

.provider-lede {
  max-width: 58ch;
  line-height: 1.7;
}

.provider-details {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.provider-details div {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
}

.provider-details dt {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.provider-details dd {
  margin: 0;
  color: var(--text-strong);
  font-size: 0.95rem;
  font-weight: 600;
  word-break: break-word;
}

.provider-details a {
  color: var(--teal-400);
  transition: color 160ms ease;
}

.provider-details a:hover {
  color: var(--teal-500);
}

/* ───── FOOTER ───── */
.site-footer {
  padding: 0 0 48px;
}

.footer-shell {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 28px 36px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(247, 250, 248, 0.84), rgba(237, 244, 241, 0.68));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.52) inset,
    0 16px 40px rgba(9, 37, 35, 0.10);
  backdrop-filter: blur(22px) saturate(120%);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
}

.footer-meta {
  display: grid;
  gap: 8px;
}

.footer-meta p {
  color: rgba(32, 45, 47, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  gap: 18px;
}

.footer-links a {
  color: var(--teal-500);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text-strong);
}

/* ───── REVEAL ANIMATION ───── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 520ms cubic-bezier(0.23, 1, 0.32, 1), transform 520ms cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───── SECTION DIVIDER (visual separator between sections) ───── */
.section + .section {
  position: relative;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max-width), calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18) 20%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0.18) 80%, transparent);
}

/* ───── PROGRAMME CARD FULL-WIDTH THIRD ───── */
.glass-card--program {
  min-height: auto;
}

.glass-grid--three .glass-card--program:last-child:nth-child(3) {
  min-height: 100%;
}

/* ───── RESPONSIVE: 1140px ───── */
@media (max-width: 1140px) {
  .hero-layout,
  .glass-grid--highlight,
  .glass-grid--contact {
    grid-template-columns: 1fr;
  }

  .hero-main-stack .hero-trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-main-stack .hero-signal:last-child {
    grid-column: auto;
  }

  .hero-facts,
  .glass-grid--three,
  .provider-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .glass-grid--three .glass-card--program:last-child:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-proof-stack .hero-facts,
  .proof-stat-grid,
  .hero-trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ───── RESPONSIVE: 940px ───── */
@media (max-width: 940px) {
  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    border-radius: 28px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-shell {
    min-height: 100svh;
    padding-top: 68px;
    padding-bottom: 28px;
  }

  .glass-grid--split,
  .glass-grid--faq,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-proof-stack .hero-facts,
  .proof-stat-grid,
  .hero-trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-main-stack .hero-signal:last-child {
    grid-column: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    max-width: 18ch;
  }
}

/* ───── RESPONSIVE: 760px ───── */
@media (max-width: 760px) {
  :root {
    --section-gap: 48px;
  }

  .nav-shell,
  .hero-shell,
  .section-shell,
  .footer-shell {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .nav-shell {
    align-items: stretch;
    flex-direction: column;
    min-height: unset;
    gap: 0;
    padding: 12px 14px;
    border-radius: 24px;
  }

  .nav-topbar {
    justify-content: space-between;
    gap: 12px;
  }

  .brand-mark {
    width: 96px;
  }

  .brand-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .brand-title {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 14px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  body.js-ready .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    max-height: 0;
    padding-top: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 160ms ease, padding-top 160ms ease;
  }

  body.js-ready .nav-shell.is-open .nav-links {
    max-height: 420px;
    padding-top: 14px;
    opacity: 1;
    pointer-events: auto;
  }

  body.js-ready .nav-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-strong);
  }

  body.js-ready .nav-links .nav-cta {
    width: 100%;
  }

  .section-heading {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-shell {
    min-height: 100svh;
    padding-top: 64px;
    gap: 12px;
  }

  .hero-facts,
  .glass-grid--three,
  .provider-details {
    grid-template-columns: 1fr;
  }

  .glass-grid--three .glass-card--program:last-child:nth-child(3) {
    grid-column: auto;
  }

  .glass-card__inner,
  .glass-card--hero .glass-card__inner {
    padding: 22px;
  }

  .glass-card--hero h1 {
    max-width: none;
    font-size: clamp(2.25rem, 10.6vw, 3.2rem);
    line-height: 0.94;
  }

  .hero-title__line--accent {
    border-radius: 8px;
    white-space: normal;
    padding-inline: 0.14em;
  }

  .hero-meta .text-button {
    font-size: 0.9rem;
  }

  .story-item {
    grid-template-columns: 1fr;
  }

  .proof-stat-grid {
    grid-template-columns: 1fr;
  }

  .section + .section::before {
    width: calc(100% - 28px);
  }

  .footer-shell {
    padding: 24px;
  }
}

/* ───── RESPONSIVE: 560px ───── */
@media (max-width: 560px) {
  :root {
    --section-gap: 40px;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 34px;
  }

  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    padding: 12px;
    border-radius: 22px;
  }

  .brand-mark {
    width: 88px;
  }

  .brand-kicker {
    font-size: 0.68rem;
  }

  .nav-toggle {
    min-width: 48px;
    padding: 0 12px;
  }

  .nav-toggle__label {
    display: none;
  }

  .hero-shell {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 32px;
  }

  .hero-actions,
  .hero-meta,
  .stacked-actions,
  .footer-links {
    flex-direction: column;
  }

  .hero-meta {
    align-items: flex-start;
    gap: 10px;
  }

  .button,
  .button-secondary,
  .button-tertiary {
    width: 100%;
  }

  .glass-card--hero h1 {
    font-size: clamp(1.95rem, 11.8vw, 2.9rem);
  }

  .glass-card__inner {
    padding: 20px;
  }
}

/* ───── REDUCED MOTION ───── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    display: none;
  }

  .glass-card,
  .reveal,
  .button,
  .button-secondary,
  .button-tertiary,
  .text-button {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
