:root {
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --navy-950: #071821;
  --navy-900: #0b2230;
  --navy-800: #123242;
  --ink: #102531;
  --ink-soft: #536974;
  --teal-700: #087d80;
  --teal-600: #0b9294;
  --teal-500: #16a6a6;
  --teal-100: #d9f4f1;
  --mist: #f4faf9;
  --paper: #ffffff;
  --line: rgba(16, 37, 49, 0.12);
  --header-height: 84px;
  --shell: min(1240px, calc(100vw - 48px));
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-nav: 0 10px 30px rgba(7, 24, 33, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--navy-950);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}
body.is-loading {
  cursor: progress;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--paper);
  background: var(--teal-700);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--paper);
  transition: height 350ms var(--ease), color 350ms ease,
    background-color 350ms ease, box-shadow 350ms ease,
    backdrop-filter 350ms ease;
}

.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.site-header.is-scrolled {
  height: var(--header-height);
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.menu-active {
  height: var(--header-height);
  color: var(--paper);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__mark {
  width: 34px;
  height: 34px;
}

.brand__mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__name {
  font-size: 18px;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.92;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: transform 220ms var(--ease), box-shadow 220ms ease,
    background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.player__button:focus-visible,
.player__range:focus-visible,
.scroll-cue:focus-visible {
  outline: 3px solid rgba(22, 166, 166, 0.42);
  outline-offset: 4px;
}

.button--header {
  min-height: 44px;
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .button--header {
  color: var(--ink);
  border-color: rgba(16, 37, 49, 0.35);
  background: rgba(255, 255, 255, 0.25);
}

.site-header.menu-active .button--header {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.button--primary {
  color: var(--paper);
  background: var(--teal-700);
  box-shadow: 0 12px 30px rgba(8, 125, 128, 0.2);
}

.button--primary:hover {
  background: #067174;
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  inset: 0;
  padding-top: 84px;
  overflow-y: auto;
  color: var(--paper);
  background: rgba(4, 17, 23, 0.58);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 200ms ease, transform 240ms var(--ease),
    visibility 0s linear 240ms;
}

.mobile-menu.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-menu__close {
  position: fixed;
  z-index: 102;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mobile-menu__close span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.mobile-menu__close span:first-child {
  transform: rotate(45deg);
}
.mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu__nav {
  display: flex;
  min-height: calc(100dvh - 84px);
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding-block: 18px 28px;
}

.mobile-menu__nav > a:not(.button) {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: clamp(20px, 5.4vw, 27px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.mobile-menu__cta {
  width: 100%;
  margin-top: 24px;
}

.hero__video {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #000;
  filter: saturate(0.96) contrast(1.02);
}

.hero__veil,
.hero__top-gradient,
.hero__bottom-gradient {
  position: absolute;
  z-index: 2;
  inset: 0 0 62px;
  pointer-events: none;
}

.hero__veil {
  background: rgba(4, 17, 23, var(--hero-darkness, 0.03));
}

.hero__top-gradient {
  bottom: auto;
  height: min(30%, 230px);
  background: linear-gradient(to bottom, rgba(2, 13, 18, 0.52), transparent);
}

.hero__bottom-gradient {
  top: auto;
  height: min(18%, 140px);
  background: linear-gradient(to top, rgba(2, 13, 18, 0.42), transparent);
}

/* Full custom player is below the film, so it never covers any scene. */
.player {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 62px;
  display: grid;
  grid-template-columns: auto auto auto minmax(140px, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px clamp(18px, 3vw, 48px);
  border: 0;
  border-radius: 0;
  color: var(--paper);
  background: #071821;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.player__button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.player__button:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.04);
}

.player__button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-play {
  display: none;
}
.player__button.is-paused .icon-pause {
  display: none;
}
.player__button.is-paused .icon-play {
  display: block;
}

.icon-muted {
  display: none;
}
.player__sound.is-muted .icon-volume {
  display: none;
}
.player__sound.is-muted .icon-muted {
  display: block;
}

.player__time {
  min-width: 42px;
  font-size: 12px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  opacity: 0.92;
}

.player__timeline {
  position: relative;
  height: 28px;
  display: grid;
  align-items: center;
}

.player__track {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.player__buffer,
.player__progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
}

.player__buffer {
  background: rgba(255, 255, 255, 0.34);
}
.player__progress {
  background: var(--teal-500);
}

.player__range {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 28px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: clamp(86px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  animation: cue 1.8s var(--ease) infinite;
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.65;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

.story-stage {
  position: relative;
  z-index: 4;
  margin-top: 0;
  border-radius: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  box-shadow: none;
}

.intro-panel {
  position: relative;
  min-height: min(760px, 92svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(
      circle at 78% 24%,
      rgba(22, 166, 166, 0.13),
      transparent 28%
    ),
    radial-gradient(circle at 15% 80%, rgba(16, 74, 94, 0.08), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #f8fcfb 68%, #f0faf8 100%);
}

.intro-panel__glow {
  position: absolute;
  width: 46vw;
  height: 46vw;
  min-width: 420px;
  min-height: 420px;
  right: -14vw;
  top: -18vw;
  border-radius: 50%;
  border: 1px solid rgba(8, 125, 128, 0.13);
  box-shadow: 0 0 0 70px rgba(8, 125, 128, 0.025),
    0 0 0 150px rgba(8, 125, 128, 0.018);
}

.intro-panel__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(112px, 13vw, 190px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

h1 {
  max-width: 940px;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 700;
}

h2 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
}

.intro-panel__lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.intro-panel__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phase-preview {
  padding-block: clamp(100px, 12vw, 170px);
  background: var(--mist);
}

.phase-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.phase-preview__copy p:last-child {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.phase-preview__visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.phase-preview__core {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: linear-gradient(145deg, var(--teal-600), var(--teal-700));
  box-shadow: 0 20px 50px rgba(8, 125, 128, 0.24);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(8, 125, 128, 0.18);
  border-radius: 50%;
}

.orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 8px rgba(22, 166, 166, 0.1);
}

.orbit--one {
  width: 58%;
  height: 58%;
  animation: orbit 18s linear infinite;
}
.orbit--two {
  width: 78%;
  height: 78%;
  animation: orbit 26s linear infinite reverse;
}
.orbit--three {
  width: 98%;
  height: 98%;
  animation: orbit 34s linear infinite;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 900ms var(--ease);
}

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

.anchor-target {
  height: 1px;
  background: var(--paper);
}

.noscript-message {
  position: fixed;
  z-index: 999;
  inset: auto 16px 16px;
  padding: 14px;
  border-radius: 10px;
  color: var(--paper);
  background: var(--navy-900);
  text-align: center;
}

@media (min-width: 761px) {
  .hero {
    height: 100svh;
    min-height: 620px;
    display: grid;
    grid-template-rows: minmax(0, 1fr) 62px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .hero__video {
    position: relative;
    grid-row: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .hero__veil,
  .hero__top-gradient,
  .hero__bottom-gradient {
    grid-row: 1;
    inset: 0;
  }

  .player {
    position: relative;
    grid-row: 2;
    inset: auto;
    min-height: 62px;
  }

  .scroll-cue {
    bottom: 82px;
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 920px);
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .phase-preview__grid {
    grid-template-columns: 1fr 420px;
    gap: 40px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
    --shell: calc(100% - 32px);
  }

  .site-header {
    z-index: 101;
    height: 72px;
  }

  .site-header.is-scrolled {
    height: 72px;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
  }

  .site-header.menu-active {
    height: 72px;
    color: var(--paper);
    background: transparent;
    box-shadow: none;
  }

  .brand__name {
    font-size: 16px;
  }
  .brand__mark {
    width: 31px;
    height: 31px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  .hero__video {
    position: relative;
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
  }

  .hero__veil,
  .hero__top-gradient,
  .hero__bottom-gradient {
    position: absolute;
    inset: 0 0 54px;
  }

  .player {
    position: relative;
    order: 2;
    inset: auto;
    width: 100%;
    min-height: 54px;
    grid-template-columns: auto auto minmax(70px, 1fr) auto;
    gap: 5px;
    padding: 6px 10px;
  }

  .player__time {
    display: none;
  }

  .player__button {
    width: 34px;
    height: 34px;
  }

  .scroll-cue {
    display: none;
  }

  .story-stage {
    margin-top: 0;
    border-radius: 0;
  }

  .intro-panel {
    min-height: auto;
  }
  .intro-panel__inner {
    padding-block: 112px 120px;
  }

  .intro-panel__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    margin-top: 34px;
  }

  .intro-panel__actions .button {
    width: 100%;
  }
  .text-link {
    justify-content: center;
  }

  .phase-preview__grid {
    grid-template-columns: 1fr;
  }

  .phase-preview__visual {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .mobile-menu {
    padding-top: 72px;
    background: rgba(4, 17, 23, 0.58);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-menu__nav {
    min-height: calc(100dvh - 72px);
  }

  .mobile-menu__close {
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }
  .eyebrow {
    margin-bottom: 16px;
  }

  .phase-preview__core {
    width: 120px;
    height: 120px;
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* Keep the navigation fully transparent over the film.
   No dark gradient band is placed behind the header on laptop or mobile. */
.hero__top-gradient,
.hero__bottom-gradient {
  display: none !important;
}

/* Keep only a nearly invisible uniform film veil at the top of the page. */
.hero__veil {
  background: rgba(4, 17, 23, 0.015);
}

/* =========================================================
   PHASE 2 — CINEMATIC CONTINUOUS CARE STORY
   Phase 1 styles above remain unchanged.
   ========================================================= */

.cinematic-story {
  position: relative;
  overflow: hidden;
  background: #f7faf9;
}

.cinematic-story--opening {
  padding: clamp(112px, 13vw, 190px) 0 clamp(96px, 11vw, 160px);
}

.cinematic-story--gap {
  padding: clamp(100px, 12vw, 176px) 0;
  background: #eef4f2;
}

.cinematic-story__copy--center {
  max-width: 1100px;
  margin: 0 auto clamp(64px, 8vw, 112px);
  text-align: center;
}

.cinematic-story__copy--center h1 {
  max-width: 1000px;
  margin: 0 auto;
  color: #071b25;
  font-size: clamp(50px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.cinematic-story__lines {
  display: grid;
  gap: 4px;
  margin-top: clamp(38px, 5vw, 62px);
  color: #49636a;
  font-size: clamp(20px, 2.15vw, 32px);
  line-height: 1.45;
}

.cinematic-story__lines p {
  margin: 0;
}

.cinematic-story__lines .cinematic-story__emphasis {
  margin-top: 10px;
  color: #0d7f7a;
  font-weight: 600;
}

.cinematic-media {
  position: relative;
  overflow: hidden;
  background: #dce8e5;
  box-shadow: 0 34px 80px rgba(7, 27, 37, 0.14);
}

.cinematic-media--wide {
  width: min(1440px, calc(100% - clamp(32px, 6vw, 96px)));
  margin-inline: auto;
  aspect-ratio: 16 / 8.1;
  border-radius: clamp(22px, 3vw, 42px);
}

.cinematic-media--portrait {
  min-height: 680px;
  aspect-ratio: 4 / 5;
  border-radius: clamp(22px, 3vw, 38px);
}

.cinematic-media__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
}

.cinematic-media__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7, 27, 37, 0.01),
    rgba(7, 27, 37, 0.12)
  );
}

.cinematic-story__split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(64px, 9vw, 138px);
  align-items: center;
}

.cinematic-story__copy--side {
  max-width: 650px;
}

.cinematic-story__copy--side h2,
.phase-transition h2 {
  margin: 0;
  color: #071b25;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.cinematic-story__body {
  max-width: 590px;
  margin: 18px 0 0;
  color: #486168;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.65;
}

.statement-section {
  position: relative;
  min-height: min(86vh, 920px);
  display: grid;
  place-items: center;
  padding: clamp(120px, 16vw, 230px) 0;
  overflow: hidden;
  background: #071b25;
}

.statement-section::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(21, 165, 154, 0.18),
    transparent 68%
  );
}

.statement-section__inner {
  position: relative;
  max-width: 1180px;
  text-align: center;
}

.statement-section p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(21px, 2.3vw, 34px);
}

.statement-section h2 {
  max-width: 1050px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(52px, 7.5vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.phase-transition {
  padding: clamp(112px, 14vw, 205px) 0;
  background: #fff;
}

.phase-transition__inner {
  max-width: 980px;
}

.phase-transition p:not(.eyebrow) {
  margin: 30px 0 0;
  color: #526a70;
  font-size: clamp(19px, 1.8vw, 26px);
}

.phase-transition .text-link {
  margin-top: 42px;
  width: fit-content;
  color: #0d7f7a;
}

@media (max-width: 980px) {
  .cinematic-story__split {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .cinematic-media--portrait {
    width: min(100%, 760px);
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .cinematic-story__copy--side {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .cinematic-story--opening {
    padding-top: 104px;
  }

  .cinematic-story__copy--center {
    margin-bottom: 54px;
    text-align: left;
  }

  .cinematic-story__copy--center h1 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .cinematic-story__lines {
    font-size: 20px;
  }

  .cinematic-media--wide {
    width: calc(100% - 24px);
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .cinematic-media--portrait {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .cinematic-story__copy--side h2,
  .phase-transition h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .statement-section {
    min-height: 76vh;
  }

  .statement-section__inner {
    text-align: left;
  }

  .statement-section h2 {
    font-size: clamp(48px, 13.5vw, 72px);
  }
}

/* =========================================================
   PHASE 3 — SERVICES / EXECUTIVE EXPLORER
   ========================================================= */
.services-intro {
  position: relative;
  padding: clamp(130px, 17vw, 250px) 0 clamp(110px, 13vw, 190px);
  background: #f7f8f6;
  color: var(--ink);
  overflow: hidden;
}

.services-intro::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 5%;
  border: 1px solid rgba(13, 127, 122, 0.14);
  border-radius: 50%;
}

.services-intro__inner {
  max-width: 1100px;
}
.services-intro h2 {
  margin: 20px 0 0;
  max-width: 940px;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 700;
}
.services-intro__lead {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.service-track {
  padding: clamp(76px, 8vw, 118px) 0;
  background: #fff;
  color: var(--ink);
}
.service-track--care-now {
  background: #edf5f3;
}

.service-track__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.service-track__number {
  margin: 0 0 18px;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.service-track__header h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
}
.service-track__header > p {
  margin: 0 0 5px;
  max-width: 590px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.62;
}

.executive-explorer {
  border-top: 1px solid rgba(16, 45, 53, 0.15);
  padding-top: clamp(20px, 2.5vw, 32px);
}
.executive-explorer__selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-bottom: clamp(18px, 2.2vw, 28px);
}
.explorer-tab {
  position: relative;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 0 13px;
  color: #6c7d81;
  font: inherit;
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 600;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: color 0.28s ease;
}
.explorer-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--teal-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.explorer-tab:hover,
.explorer-tab:focus-visible,
.explorer-tab.is-active {
  color: var(--ink);
}
.explorer-tab.is-active::after {
  transform: scaleX(1);
}
.explorer-tab:focus-visible {
  outline: 2px solid var(--teal-700);
  outline-offset: 5px;
  border-radius: 2px;
}

.executive-explorer__panel {
  display: grid;
  grid-template-columns: minmax(330px, 42%) minmax(0, 58%);
  width: min(100%, 1080px);
  height: clamp(470px, 39vw, 540px);
  min-height: 0;
  margin-inline: auto;
  border-radius: clamp(20px, 2.2vw, 30px);
  overflow: hidden;
  background: #08272e;
  color: #fff;
  box-shadow: 0 24px 64px rgba(8, 39, 46, 0.14);
}
.executive-explorer__media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  background: #08272e;
}
.executive-explorer__image {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
  transform: scale(1.001);
  transition: opacity 0.32s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.executive-explorer__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 46px) clamp(30px, 3.2vw, 50px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.executive-explorer__panel.is-changing .executive-explorer__image,
.executive-explorer__panel.is-changing .executive-explorer__content {
  opacity: 0;
}
.executive-explorer__panel.is-changing .executive-explorer__image {
  transform: scale(1.025);
}
.executive-explorer__panel.is-changing .executive-explorer__content {
  transform: translateY(10px);
}
.executive-explorer__label {
  margin: 0 0 14px;
  color: #7ce1d8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.executive-explorer__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 700;
}
.executive-explorer__description {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.62;
}
.executive-explorer__capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.executive-explorer__capabilities li {
  padding: 9px 13px;
  border: 1px solid rgba(124, 225, 216, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.2;
}

.services-close {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  color: #fff;
  background: #08272e;
}
.services-close__inner {
  max-width: 1120px;
}
.services-close p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(18px, 2vw, 24px);
}
.services-close h2 {
  margin: 0;
  max-width: 940px;
  color: #fff;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 700;
}
.services-close .text-link {
  margin-top: 54px;
  width: fit-content;
  color: #7ce1d8;
}

@media (max-width: 980px) {
  .service-track__header {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .executive-explorer__panel {
    grid-template-columns: minmax(290px, 43%) minmax(0, 57%);
    height: 470px;
  }
  .executive-explorer__content {
    padding: 30px;
  }
}

@media (max-width: 700px) {
  .services-intro {
    padding-top: 116px;
  }
  .services-intro::before {
    width: 320px;
    height: 320px;
  }
  .services-intro h2 {
    font-size: clamp(42px, 13vw, 58px);
  }
  .service-track {
    padding: 72px 0;
  }
  .service-track__header {
    margin-bottom: 30px;
  }
  .service-track__header h2 {
    font-size: clamp(40px, 12vw, 56px);
  }
  .executive-explorer__selector {
    flex-wrap: nowrap;
    gap: 24px;
    margin-inline: calc(var(--page-gutter) * -1);
    padding-inline: var(--page-gutter);
    padding-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .executive-explorer__selector::-webkit-scrollbar {
    display: none;
  }
  .explorer-tab {
    flex: 0 0 auto;
    font-size: 16px;
  }
  .executive-explorer__panel {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  .executive-explorer__media {
    height: min(118vw, 540px);
    justify-content: center;
    background: #08272e;
  }
  .executive-explorer__image {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-position: center;
  }
  .executive-explorer__content {
    padding: 34px 28px 38px;
  }
  .executive-explorer__title {
    font-size: clamp(36px, 11vw, 50px);
  }
  .services-close {
    min-height: 78vh;
  }
  .services-close h2 {
    font-size: clamp(42px, 13vw, 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .executive-explorer__image,
  .executive-explorer__content,
  .explorer-tab::after {
    transition: none;
  }
}

/* =========================================================
   PHASE 4 — FOR HOSPITALS / IMPACT EXPLORER
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hospital-impact {
  position: relative;
  padding: clamp(104px, 10vw, 154px) 0 clamp(112px, 11vw, 168px);
  overflow: hidden;
  background: #f8fbfa;
}

.hospital-impact::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  top: -330px;
  right: -250px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(22, 166, 166, 0.1), transparent 68%);
}

.hospital-impact__header {
  position: relative;
  max-width: 1060px;
  margin-bottom: clamp(48px, 5.2vw, 76px);
}

.hospital-impact__header h2 {
  max-width: 980px;
  margin: 0;
  color: #071b25;
  font-size: clamp(50px, 6.3vw, 92px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hospital-impact__lead {
  max-width: 820px;
  margin: 28px 0 0;
  color: #536970;
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.58;
}

.hospital-impact__experience {
  position: relative;
}

.hospital-impact__media {
  width: min(100%, 1120px);
  height: clamp(520px, 57vw, 720px);
  margin: 0;
  overflow: hidden;
  border-radius: clamp(24px, 2.5vw, 38px);
  background: #dfe8e6;
  box-shadow: 0 34px 90px rgba(7, 27, 37, 0.15);
}

.hospital-impact__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.hospital-impact__selector {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(16, 37, 49, 0.14);
  border-bottom: 1px solid rgba(16, 37, 49, 0.14);
}

.impact-tab {
  position: relative;
  min-height: 72px;
  padding: 0 22px;
  border: 0;
  color: #6d7f85;
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 600;
  cursor: pointer;
  transition: color 260ms ease;
}

.impact-tab:not(:last-child) {
  border-right: 1px solid rgba(16, 37, 49, 0.1);
}
.impact-tab:hover,
.impact-tab:focus-visible,
.impact-tab.is-active {
  color: #087d80;
}

.impact-tab::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -1px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: #0b9294;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 320ms var(--ease);
}

.impact-tab.is-active::after {
  transform: scaleX(1);
}

.hospital-impact__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(50px, 7vw, 108px);
  align-items: start;
  padding-top: clamp(44px, 5vw, 68px);
  transition: opacity 220ms ease, transform 280ms var(--ease);
}

.hospital-impact__panel.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.hospital-impact__kicker {
  margin: 0 0 16px;
  color: #0b9294;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hospital-impact__statement h3 {
  max-width: 680px;
  margin: 0;
  color: #071b25;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.1vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.hospital-impact__outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(16, 37, 49, 0.14);
}

.hospital-impact__outcomes li {
  position: relative;
  padding: 18px 0 18px 22px;
  border-bottom: 1px solid rgba(16, 37, 49, 0.11);
  color: #405961;
  font-size: 16px;
  line-height: 1.45;
}

.hospital-impact__outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 27px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a6a6;
}

@media (max-width: 900px) {
  .hospital-impact__media {
    height: min(74vw, 650px);
  }
  .hospital-impact__selector {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .hospital-impact__selector::-webkit-scrollbar {
    display: none;
  }
  .impact-tab {
    flex: 0 0 auto;
    min-width: 190px;
  }
  .hospital-impact__panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 620px) {
  .hospital-impact {
    padding: 82px 0 104px;
  }
  .hospital-impact__header {
    margin-bottom: 38px;
  }
  .hospital-impact__header h2 {
    font-size: clamp(42px, 12vw, 58px);
  }
  .hospital-impact__lead {
    margin-top: 22px;
    font-size: 18px;
  }
  .hospital-impact__media {
    width: calc(100% + 16px);
    height: min(126vw, 620px);
    margin-left: -8px;
    border-radius: 22px;
  }
  .hospital-impact__selector {
    margin-top: 26px;
  }
  .impact-tab {
    min-height: 64px;
    min-width: 174px;
    padding-inline: 18px;
  }
  .impact-tab::after {
    left: 18px;
    right: 18px;
  }
  .hospital-impact__panel {
    padding-top: 38px;
  }
  .hospital-impact__outcomes {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hospital-impact__panel,
  .impact-tab::after {
    transition: none;
  }
}

/* =========================================================
   GLOBAL TUCKED NAVIGATION — PHASES 1–4
   Keeps section selectors clear and preserves the cinematic flow.
   ========================================================= */
.desktop-nav {
  display: none !important;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__left {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.mobile-menu {
  padding-top: var(--header-height);
  background: rgba(4, 17, 23, 0.92);
}

.mobile-menu__close {
  display: none;
}

.mobile-menu__nav {
  width: var(--shell);
  min-height: calc(100dvh - var(--header-height));
  justify-content: center;
  padding-block: 40px 54px;
}

.mobile-menu__nav > a:not(.button) {
  padding: 16px 0;
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.mobile-menu__cta {
  width: fit-content;
  min-width: 170px;
  margin-top: 34px;
}

@media (max-width: 760px) {
  .site-header__left {
    gap: 11px;
  }

  .desktop-cta {
    display: inline-flex;
    min-height: 40px;
    padding-inline: 16px;
  }
  .brand__name {
    display: none;
  }
  .mobile-menu {
    padding-top: 72px;
  }
  .mobile-menu__nav {
    min-height: calc(100dvh - 72px);
    justify-content: flex-start;
    padding-block: 34px 30px;
  }
  .mobile-menu__nav > a:not(.button) {
    font-size: clamp(28px, 9vw, 42px);
  }
}

/* =========================================================
   SLEEK CINEMATIC MENU CONTROL
   Minimal, quiet navigation trigger for desktop and mobile.
   ========================================================= */
.site-header__left {
  gap: 22px;
}

@media (max-width: 760px) {
  .site-header__left {
    gap: 14px;
  }
}

/* =========================================================
   PHASE 4 MASTER CLEANUP
   Single navigation control + unified heading scale.
   This block is intentionally last so it is the final source of truth.
   ========================================================= */
:root {
  --type-h1: clamp(46px, 7vw, 92px);
  --type-h2: clamp(40px, 5vw, 68px);
  --type-h1-mobile: clamp(42px, 13vw, 58px);
  --type-h2-mobile: clamp(38px, 11.5vw, 54px);
}

/* One consistent heading hierarchy across Phases 1–4. */
h1,
.cinematic-story__copy--center h1 {
  font-size: var(--type-h1);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h2,
.cinematic-story__copy--side h2,
.phase-transition h2,
.statement-section h2,
.services-intro h2,
.service-track__header h2,
.services-close h2,
.hospital-impact__header h2 {
  font-size: var(--type-h2);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

/* Preserve contrast and alignment while standardising size. */
.statement-section h2 {
  max-width: 1050px;
}

/* Final, conflict-free cinematic menu trigger. */
.site-header__left {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

@media (max-width: 760px) {
  h1,
  .cinematic-story__copy--center h1 {
    font-size: var(--type-h1-mobile);
  }

  h2,
  .cinematic-story__copy--side h2,
  .phase-transition h2,
  .statement-section h2,
  .services-intro h2,
  .service-track__header h2,
  .services-close h2,
  .hospital-impact__header h2 {
    font-size: var(--type-h2-mobile);
  }

  .site-header__left {
    gap: 11px;
  }
}

/* =========================================================
   PHASE 5 — STORIES FROM THE JOURNEY
   ========================================================= */
.journey-stories {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 14vw, 220px) 0 clamp(120px, 13vw, 210px);
  color: var(--ink);
  background: radial-gradient(
      circle at 92% 8%,
      rgba(22, 166, 166, 0.09),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

.journey-stories::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1240px, calc(100vw - 48px));
  height: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

.journey-stories__intro {
  max-width: 1020px;
  margin-bottom: clamp(76px, 9vw, 142px);
}

.journey-stories__intro h2 {
  max-width: 960px;
  margin: 14px 0 24px;
  font-family: var(--font-display);
  font-size: var(--type-h2-desktop, clamp(48px, 6vw, 84px));
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.journey-stories__lead {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
}

.journey-stories__collection {
  display: grid;
  gap: clamp(28px, 3.2vw, 48px);
}

.journey-story {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 4.2vw, 66px);
  border: 1px solid rgba(16, 37, 49, 0.1);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.journey-story::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--teal-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 800ms var(--ease);
}

.journey-story.is-visible::after {
  transform: scaleX(1);
}

.journey-story--feature {
  min-height: min(72vh, 720px);
  padding-right: clamp(40px, 10vw, 170px);
  color: var(--paper);
  border: 0;
  background: var(--navy-950);
}

.journey-story--feature::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -170px;
  top: -190px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.journey-story--feature::after {
  background: var(--teal-500);
}

.journey-stories__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3.2vw, 48px);
}

.journey-story--wide {
  width: 78%;
  min-height: 510px;
  margin-left: auto;
  background: var(--teal-100);
}

.journey-story--closing {
  min-height: 590px;
  color: var(--paper);
  border: 0;
  background: var(--teal-700);
}

.journey-story__number {
  align-self: flex-end;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.55;
}

.journey-story__title {
  max-width: 760px;
  margin: clamp(34px, 4vw, 58px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.journey-story--feature .journey-story__title,
.journey-story--closing .journey-story__title {
  color: var(--teal-200);
}

.journey-story blockquote {
  position: relative;
  max-width: 940px;
  margin: clamp(34px, 5vw, 70px) 0 clamp(52px, 7vw, 92px);
}

.journey-story__mark {
  position: absolute;
  top: -0.58em;
  left: -0.08em;
  font-family: Georgia, serif;
  font-size: clamp(92px, 11vw, 180px);
  line-height: 1;
  color: var(--teal-600);
  opacity: 0.2;
  pointer-events: none;
}

.journey-story--feature .journey-story__mark,
.journey-story--closing .journey-story__mark {
  color: var(--paper);
  opacity: 0.12;
}

.journey-story blockquote p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 54px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.journey-story--feature blockquote p {
  font-size: clamp(42px, 5.25vw, 76px);
  line-height: 1.06;
}

.journey-story--wide blockquote p,
.journey-story--closing blockquote p {
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.08;
}

.journey-story footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid currentColor;
  border-color: rgba(16, 37, 49, 0.16);
}

.journey-story--feature footer,
.journey-story--closing footer {
  border-color: rgba(255, 255, 255, 0.25);
}

.journey-story__voice {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journey-story__context {
  color: currentColor;
  font-size: 14px;
  opacity: 0.68;
  text-align: right;
}

.journey-stories__close {
  max-width: 900px;
  margin-top: clamp(100px, 12vw, 180px);
  text-align: center;
}

.journey-stories__close p {
  margin: 0 0 14px;
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journey-stories__close h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

@media (max-width: 900px) {
  .journey-stories__pair {
    grid-template-columns: 1fr;
  }
  .journey-story--wide {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .journey-stories {
    padding: 96px 0 112px;
  }

  .journey-stories::before {
    width: calc(100vw - 32px);
  }

  .journey-stories__intro {
    margin-bottom: 62px;
  }

  .journey-stories__intro h2 {
    font-size: var(--type-h2-mobile, clamp(42px, 13vw, 62px));
  }

  .journey-stories__lead {
    font-size: 17px;
  }

  .journey-stories__collection {
    gap: 18px;
  }

  .journey-story,
  .journey-story--feature,
  .journey-story--wide,
  .journey-story--closing {
    min-height: 440px;
    padding: 28px 24px 30px;
  }

  .journey-story__title {
    margin-top: 34px;
    font-size: clamp(21px, 6.4vw, 28px);
    line-height: 1.16;
  }

  .journey-story blockquote,
  .journey-story--feature blockquote {
    margin: 34px 0 48px;
  }

  .journey-story blockquote p,
  .journey-story--feature blockquote p,
  .journey-story--wide blockquote p,
  .journey-story--closing blockquote p {
    font-size: clamp(30px, 9.2vw, 42px);
    line-height: 1.12;
  }

  .journey-story footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .journey-story__context {
    text-align: left;
  }

  .journey-stories__close {
    margin-top: 92px;
  }
  .journey-stories__close h3 {
    font-size: clamp(38px, 11vw, 56px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-story::after {
    transition: none;
    transform: scaleX(1);
  }
}

/* =========================================================
   MENU TOGGLE — SINGLE SOURCE OF TRUTH
   ========================================================= */
.site-header__left {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.menu-toggle {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-grid !important;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  color: currentColor;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  line-height: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle:hover {
  opacity: 0.68;
}
.menu-toggle:active {
  transform: scale(0.94);
}
.menu-toggle:focus {
  outline: none;
}
.menu-toggle:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 21px;
  height: 12px;
  margin: 0;
  padding: 0;
}

.menu-toggle__icon > span {
  position: absolute;
  left: 0;
  display: block;
  width: 21px;
  height: 1.5px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: currentColor;
  transform-origin: 50% 50%;
  transition: top 240ms var(--ease), transform 240ms var(--ease);
}

.menu-toggle__icon > span:first-child {
  top: 2px;
}
.menu-toggle__icon > span:last-child {
  top: 9px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon > span:first-child {
  top: 5.25px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon > span:last-child {
  top: 5.25px;
  transform: rotate(-45deg);
}

.menu-toggle__label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 760px) {
  .site-header__left {
    gap: 11px;
  }

  .menu-toggle {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .menu-toggle__icon,
  .menu-toggle__icon > span {
    width: 19px;
  }
}

/* =========================================================
   PHASE 6 — CINEMATIC HEALTHCARE EVOLUTION
   ========================================================= */
.care-evolution {
  position: relative;
  overflow: hidden;
  padding: clamp(108px, 11vw, 172px) 0 clamp(116px, 13vw, 196px);
  background: #f6f5f1;
  color: #102522;
}
.care-evolution::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 120, 111, 0.025),
    transparent 52%
  );
  pointer-events: none;
}
.care-evolution__cinema {
  position: relative;
  z-index: 1;
}
.care-evolution__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 82px);
}
.care-evolution__header h2 {
  max-width: 920px;
  margin: 18px 0 0;
  font-size: var(--type-h2, clamp(58px, 7vw, 104px));
  line-height: 0.96;
  letter-spacing: -0.055em;
}
.care-evolution__controls {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(16, 37, 34, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(16, 37, 34, 0.07);
}
.care-evolution__control-label,
.care-evolution__toggle-state {
  color: rgba(16, 37, 34, 0.68);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.care-evolution__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.care-evolution__toggle-track {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #0b786f;
  transition: background 0.3s ease;
}
.care-evolution__toggle-thumb {
  position: absolute;
  width: 18px;
  height: 18px;
  left: 23px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, left 0.3s ease;
}
.care-evolution__toggle[aria-checked="false"] .care-evolution__toggle-track {
  background: rgba(16, 37, 34, 0.24);
}
.care-evolution__toggle[aria-checked="false"] .care-evolution__toggle-thumb {
  left: 3px;
}
.care-evolution__replay {
  padding: 0 4px 0 12px;
  border: 0;
  border-left: 1px solid rgba(16, 37, 34, 0.14);
  background: transparent;
  color: #0b786f;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.care-evolution__replay[hidden] {
  display: none;
}
.care-evolution__player {
  position: relative;
  min-height: clamp(410px, 50vw, 660px);
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(11, 120, 111, 0.18);
  border-radius: clamp(24px, 3vw, 42px);
  background: radial-gradient(
      circle at 50% 54%,
      rgba(255, 255, 255, 0.88) 0,
      rgba(255, 255, 255, 0.58) 27%,
      transparent 58%
    ),
    linear-gradient(145deg, #e1f0ec 0%, #f3f6f2 46%, #d8ebe7 100%);
  box-shadow: 0 32px 85px rgba(16, 37, 34, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.care-evolution__player::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(11, 120, 111, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(11, 120, 111, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000 0, transparent 74%);
}
.care-evolution__network {
  position: absolute;
  inset: -5%;
  z-index: -1;
  opacity: 0.78;
  transition: opacity 0.8s ease, transform 1.5s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.care-evolution__network svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.care-network__glow {
  opacity: 0.55;
  transform-origin: center;
  animation: careNetworkBreath 5.5s ease-in-out infinite;
}
.care-network__links path {
  fill: none;
  stroke: #0b786f;
  stroke-width: 1.5;
  opacity: 0.12;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.2, 0.75, 0.2, 1),
    opacity 0.8s ease;
}
.care-network__nodes circle {
  fill: #0b786f;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 4;
  opacity: 0.18;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.62);
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.care-evolution[data-evolution-stage="1"]
  .care-network__nodes
  circle:nth-child(-n + 1),
.care-evolution[data-evolution-stage="2"]
  .care-network__nodes
  circle:nth-child(-n + 2),
.care-evolution[data-evolution-stage="3"]
  .care-network__nodes
  circle:nth-child(-n + 4),
.care-evolution[data-evolution-stage="4"]
  .care-network__nodes
  circle:nth-child(-n + 6),
.care-evolution[data-evolution-stage="5"] .care-network__nodes circle,
.care-evolution[data-evolution-stage="6"] .care-network__nodes circle {
  opacity: 0.72;
  transform: scale(1);
}
.care-evolution[data-evolution-stage="2"]
  .care-network__links
  path:nth-child(-n + 1),
.care-evolution[data-evolution-stage="3"]
  .care-network__links
  path:nth-child(-n + 4),
.care-evolution[data-evolution-stage="4"]
  .care-network__links
  path:nth-child(-n + 7),
.care-evolution[data-evolution-stage="5"] .care-network__links path,
.care-evolution[data-evolution-stage="6"] .care-network__links path {
  stroke-dashoffset: 0;
  opacity: 0.34;
}
.care-evolution[data-evolution-stage="5"] .care-evolution__network,
.care-evolution[data-evolution-stage="6"] .care-evolution__network {
  opacity: 1;
  transform: scale(1.035);
}
@keyframes careNetworkBreath {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.72;
  }
}
.care-evolution__scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 58px clamp(24px, 6vw, 90px);
  text-align: center;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(5px);
  pointer-events: none;
  transition: opacity 720ms ease,
    transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 720ms ease;
}
.care-evolution__scene.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.care-evolution__scene-number {
  margin-bottom: 18px;
  color: #0b786f;
  font-size: 11px;
  letter-spacing: 0.22em;
}
.care-evolution__scene h3 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(54px, 8.4vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 520;
  text-shadow: 0 2px 30px rgba(255, 255, 255, 0.74);
}
.care-evolution__scene p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(16, 37, 34, 0.68);
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.48;
}
.care-evolution__scene-kicker {
  margin: 0 0 26px !important;
  font-size: 14px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.care-evolution__scene--continuous h3 {
  color: #0b786f;
  font-size: clamp(62px, 9.8vw, 146px);
}
.care-evolution__scene--final {
  align-items: flex-start;
  text-align: left;
  padding-left: clamp(34px, 7vw, 110px);
  padding-right: clamp(34px, 7vw, 110px);
}
.care-evolution__scene--final p {
  margin: 0 0 22px;
  color: rgba(16, 37, 34, 0.56);
  font-size: clamp(16px, 1.4vw, 20px);
}
.care-evolution__scene--final h3 {
  max-width: 1050px;
  font-size: clamp(48px, 6.5vw, 96px);
}
.care-evolution__rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 14px;
  padding: 0;
  list-style: none;
}
.care-evolution__rail li {
  color: rgba(16, 37, 34, 0.32);
  font-size: 13px;
  line-height: 1.35;
  transition: color 500ms ease, transform 500ms ease;
}
.care-evolution__rail li span {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  letter-spacing: 0.17em;
}
.care-evolution__rail li.is-past {
  color: rgba(16, 37, 34, 0.55);
}
.care-evolution__rail li.is-current {
  color: #0b786f;
  transform: translateY(-3px);
}
.care-evolution__line {
  height: 2px;
  background: rgba(16, 37, 34, 0.12);
  overflow: hidden;
}
.care-evolution__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: #0b786f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}
.care-evolution__gleeo {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
  margin-top: clamp(80px, 10vw, 145px);
  padding-top: 34px;
  border-top: 1px solid rgba(16, 37, 34, 0.2);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 850ms ease, transform 850ms ease;
}
.care-evolution.is-complete .care-evolution__gleeo {
  opacity: 1;
  transform: translateY(0);
}
.care-evolution__gleeo-label {
  color: #0b786f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.care-evolution__gleeo p {
  max-width: 850px;
  margin: 0;
  font-size: clamp(25px, 2.9vw, 45px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}
@media (max-width: 760px) {
  .care-evolution {
    padding: 96px 0 116px;
  }
  .care-evolution__header {
    display: block;
    margin-bottom: 42px;
  }
  .care-evolution__header h2 {
    font-size: var(--type-h2-mobile, clamp(42px, 13vw, 62px));
  }
  .care-evolution__controls {
    width: max-content;
    margin-top: 24px;
  }
  .care-evolution__control-label {
    display: none;
  }
  .care-evolution__player {
    min-height: 470px;
    border-radius: 24px;
  }
  .care-evolution__network {
    inset: -18%;
    opacity: 0.7;
  }
  .care-evolution__scene {
    padding: 42px 22px;
  }
  .care-evolution__scene h3 {
    font-size: clamp(46px, 15vw, 72px);
  }
  .care-evolution__scene--continuous h3 {
    font-size: clamp(52px, 16vw, 82px);
  }
  .care-evolution__scene--final {
    padding-left: 28px;
    padding-right: 28px;
  }
  .care-evolution__scene--final h3 {
    font-size: clamp(40px, 12vw, 58px);
  }
  .care-evolution__scene p {
    font-size: 17px;
  }
  .care-evolution__rail {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }
  .care-evolution__rail li {
    font-size: 0;
    min-width: 0;
  }
  .care-evolution__rail li span {
    font-size: 9px;
  }
  .care-evolution__gleeo {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 86px;
  }
  .care-evolution__gleeo p {
    font-size: clamp(27px, 8vw, 38px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .care-evolution__scene,
  .care-evolution__network,
  .care-network__links path,
  .care-network__nodes circle,
  .care-evolution__line span,
  .care-evolution__gleeo {
    transition: none;
    animation: none;
  }
}

/* =========================================================
   MASTER SECTION HEADER CONSISTENCY
   Main section introductions are left aligned. Cinematic
   statements and animation scenes retain their own alignment.
   ========================================================= */

/* One shared eyebrow treatment across all main sections. */
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
}

/* Main section introductions follow a single left-aligned system. */
.cinematic-story__copy--center,
.services-intro__inner,
.hospital-impact__header,
.journey-stories__intro,
.care-evolution__header > div:first-child {
  text-align: left;
}

/* The opening Continuous Care section now aligns with all other section headers. */
.cinematic-story__copy--center {
  margin-left: auto;
  margin-right: auto;
}

.cinematic-story__copy--center h1 {
  margin-left: 0;
  margin-right: 0;
}

.cinematic-story__copy--center .cinematic-story__lines {
  justify-items: start;
  text-align: left;
}

@media (max-width: 760px) {
  .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.18em;
  }
}

/* =========================================================
   MASTER TYPOGRAPHIC HIERARCHY & SECTION RHYTHM
   Section titles, subsection titles, labels and component
   headings now have distinct, consistent roles.
   ========================================================= */
:root {
  --type-section-title: clamp(46px, 7vw, 92px);
  --type-subsection-title: clamp(38px, 4.2vw, 56px);
  --type-section-title-mobile: clamp(42px, 13vw, 58px);
  --type-subsection-title-mobile: clamp(34px, 10vw, 46px);
  --section-eyebrow-size: 12px;
  --section-eyebrow-spacing: 0.18em;
}

/* Primary section introductions share one visual level. */
#service-gap-title,
#services-title,
#hospital-impact-title,
#journey-stories-title,
#care-evolution-title,
.statement-section h2,
.services-close h2 {
  font-size: var(--type-section-title);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 700;
}

/* True section eyebrows use one source of truth. */
.eyebrow {
  margin: 0 0 14px;
  font-size: var(--section-eyebrow-size);
  line-height: 1.3;
  letter-spacing: var(--section-eyebrow-spacing);
  font-weight: 700;
  text-transform: uppercase;
}

/* Patient Programs and Care Now are subsections, not peer section titles. */
.service-track__header h3 {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-display);
  font-size: var(--type-subsection-title);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 700;
}

/* Numbers implied a sequence and weakened the chapter/subchapter hierarchy. */
.service-track__number {
  display: none;
}

/* Whitespace—not a rule—separates the Services chapter from its tracks. */
.executive-explorer {
  border-top: 0;
  padding-top: 0;
}

.service-track {
  padding: clamp(92px, 10vw, 142px) 0;
}

.service-track__header {
  align-items: start;
  margin-bottom: clamp(42px, 5vw, 64px);
}

/* Keep all main section intros aligned to the same content edge. */
.services-intro__inner,
.hospital-impact__header,
.journey-stories__intro,
.care-evolution__header > div:first-child {
  max-width: 1100px;
  text-align: left;
}

/* Component labels remain smaller than section eyebrows, but consistent with one another. */
.executive-explorer__label,
.hospital-impact__kicker,
.care-evolution__gleeo-label {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  #service-gap-title,
  #services-title,
  #hospital-impact-title,
  #journey-stories-title,
  #care-evolution-title,
  .statement-section h2,
  .services-close h2 {
    font-size: var(--type-section-title-mobile);
  }

  .service-track__header h3 {
    font-size: var(--type-subsection-title-mobile);
  }

  .service-track {
    padding: 78px 0 94px;
  }

  .service-track__header {
    margin-bottom: 34px;
  }
}

/* =========================================================
   CHAPTER ENDINGS & STORIES REFINEMENT
   ========================================================= */

/* Section 2 closes as a centered editorial statement. */
.services-close__inner {
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}
.services-close__inner p,
.services-close__inner h2 {
  margin-inline: auto;
}
.services-close .text-link {
  display: none;
}

/* Quotes remain editorial, but no longer compete with chapter manifestos. */
.journey-story blockquote p {
  font-size: clamp(26px, 2.85vw, 45px);
  line-height: 1.2;
}
.journey-story--feature blockquote p {
  font-size: clamp(35px, 4.25vw, 62px);
  line-height: 1.12;
}
.journey-story--wide blockquote p,
.journey-story--closing blockquote p {
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: 1.14;
}
.journey-story__mark {
  font-size: clamp(78px, 9vw, 148px);
}

/* Section 3 closes in the same cinematic language as the other chapters. */
.journey-stories__close--dark {
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  color: #fff;
  background: #08272e;
}
.journey-stories__close-inner {
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}
.journey-stories__close--dark p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-transform: none;
}
.journey-stories__close--dark h3 {
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

@media (max-width: 760px) {
  .services-close,
  .journey-stories__close--dark {
    min-height: 78vh;
    padding: 92px 0;
  }
  .journey-story blockquote p,
  .journey-story--feature blockquote p,
  .journey-story--wide blockquote p,
  .journey-story--closing blockquote p {
    font-size: clamp(26px, 7.8vw, 36px);
    line-height: 1.18;
  }
  .journey-stories__close--dark h3 {
    font-size: var(--type-section-title-mobile);
  }
  .journey-stories__close--dark p {
    font-size: clamp(17px, 5vw, 21px);
  }
}

/* =========================================================
   PHASE 6 — TESTIMONIAL TYPOGRAPHY & CHAPTER CLOSE FIX
   ========================================================= */

/* Reserve charcoal exclusively for chapter endings. */
.journey-story--feature {
  background: #075f66;
}

/* Keep the fifth story in a distinct, complementary teal. */
.journey-story--closing {
  background: #0a8588;
}

/* One fixed editorial hierarchy across every testimonial card. */
.journey-story blockquote p,
.journey-story--feature blockquote p,
.journey-story--wide blockquote p,
.journey-story--closing blockquote p {
  font-size: clamp(32px, 3.35vw, 52px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.042em;
}

.journey-story__mark,
.journey-story--feature .journey-story__mark,
.journey-story--closing .journey-story__mark {
  font-size: clamp(68px, 7vw, 112px);
}

/* The closing manifesto is a true full-viewport chapter ending, not a card. */
.journey-stories__close.journey-stories__close--dark {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: clamp(110px, 12vw, 180px) 0;
}

.journey-stories__close--dark .journey-stories__close-inner {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .journey-story blockquote p,
  .journey-story--feature blockquote p,
  .journey-story--wide blockquote p,
  .journey-story--closing blockquote p {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.17;
  }

  .journey-stories__close.journey-stories__close--dark {
    min-height: 82vh;
    margin: 0;
    padding: 96px 0;
  }

  .journey-stories__close--dark .journey-stories__close-inner {
    width: min(100% - 32px, 1120px);
  }
}

/* =========================================================
   EVOLUTION SECTION — TYPOGRAPHY & CONTROL HIERARCHY POLISH
   ========================================================= */
.care-evolution__header {
  display: block;
  margin-bottom: clamp(54px, 6.5vw, 88px);
}

.care-evolution__header > div:first-child {
  max-width: 980px;
}

.care-evolution__controls {
  width: max-content;
  margin-top: clamp(26px, 2.6vw, 38px);
}

.care-evolution__scene {
  transform: translateY(10px) scale(0.995);
  filter: blur(2px);
  transition: opacity 900ms ease,
    transform 1100ms cubic-bezier(0.22, 0.72, 0.2, 1), filter 900ms ease;
}

.care-evolution__scene h3 {
  max-width: 820px;
  font-size: clamp(42px, 5.25vw, 78px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.care-evolution__scene p {
  margin-top: 22px;
  font-size: clamp(17px, 1.4vw, 22px);
}

.care-evolution__scene-number {
  margin-bottom: 14px;
  font-size: 9px;
  opacity: 0.72;
}

.care-evolution__scene-kicker {
  margin-bottom: 20px !important;
  font-size: 12px !important;
  opacity: 0.74;
}

.care-evolution__scene--continuous h3 {
  max-width: 760px;
  font-size: clamp(46px, 6vw, 88px);
}

.care-evolution__scene--final h3 {
  max-width: 900px;
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.04;
}

@media (max-width: 760px) {
  .care-evolution__header {
    margin-bottom: 46px;
  }

  .care-evolution__controls {
    margin-top: 24px;
  }

  .care-evolution__scene h3 {
    max-width: 92%;
    font-size: clamp(38px, 11.5vw, 56px);
    line-height: 1.02;
  }

  .care-evolution__scene--continuous h3 {
    font-size: clamp(42px, 12.5vw, 62px);
  }

  .care-evolution__scene--final h3 {
    font-size: clamp(36px, 10vw, 50px);
  }
}

/* =========================================================
   HEALTHCARE EVOLUTION — MISSING PIECE (FINAL PROTOTYPE)
   ========================================================= */
.missing-piece {
  padding: clamp(100px, 10vw, 150px) 0;
  background: #f8fbfa;
}
.missing-piece__header {
  max-width: 880px;
  margin-bottom: 36px;
}
.missing-piece__header h2 {
  margin: 0;
  font-size: var(--type-h2, clamp(50px, 6vw, 76px));
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 500;
}
.missing-piece__intro {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(16, 37, 34, 0.62);
  font-size: 18px;
  line-height: 1.6;
}
.missing-piece__controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.missing-piece__toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #102522;
  cursor: pointer;
}
.missing-piece__toggle-track {
  position: relative;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #0b8a84;
  transition: background 0.25s ease;
}
.missing-piece__toggle-thumb {
  position: absolute;
  top: 3px;
  left: 23px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.16);
  transition: left 0.25s ease;
}
.missing-piece__toggle[aria-checked="false"] .missing-piece__toggle-track {
  background: #cbd8d6;
}
.missing-piece__toggle[aria-checked="false"] .missing-piece__toggle-thumb {
  left: 3px;
}
.missing-piece__toggle-label,
.missing-piece__toggle-state,
.missing-piece__replay {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.missing-piece__toggle-state {
  color: #0b786f;
}
.missing-piece__replay {
  padding: 0 0 0 18px;
  border: 0;
  border-left: 1px solid rgba(16, 37, 34, 0.14);
  background: transparent;
  color: #0b786f;
  cursor: pointer;
}
.missing-piece__stage {
  --progress: 0%;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(10, 83, 79, 0.11);
  border-radius: 28px;
  padding: 54px 36px 38px;
  background: radial-gradient(
      circle at 78% 24%,
      rgba(24, 150, 143, 0.16),
      transparent 34%
    ),
    radial-gradient(circle at 18% 72%, rgba(12, 103, 98, 0.1), transparent 35%),
    linear-gradient(135deg, #f8fcfb 0%, #edf7f5 100%);
  box-shadow: 0 20px 60px rgba(16, 61, 58, 0.08);
}
.missing-piece__ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.42;
  pointer-events: none;
}
.missing-piece__ambient--one {
  width: 320px;
  height: 320px;
  right: -105px;
  top: -90px;
  background: rgba(15, 140, 133, 0.12);
}
.missing-piece__ambient--two {
  width: 230px;
  height: 230px;
  left: -65px;
  bottom: -85px;
  background: rgba(12, 87, 82, 0.08);
}
.missing-piece__timeline {
  position: relative;
  height: 330px;
  z-index: 1;
}
.missing-piece__line {
  position: absolute;
  top: 118px;
  left: 8.5%;
  right: 8.5%;
  height: 3px;
  border-radius: 10px;
  background: rgba(35, 76, 72, 0.15);
  overflow: visible;
}
.missing-piece__line span {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: 10px;
  background: #0b8a84;
  box-shadow: 0 0 7px rgba(11, 138, 132, 0.24);
  transition: width 0.9s cubic-bezier(0.45, 0, 0.2, 1);
}
.missing-piece__node {
  position: absolute;
  top: 118px;
  width: 190px;
  transform: translate(-50%, -50%);
  opacity: 0.32;
  text-align: center;
  transition: opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.missing-piece__node.is-active,
.missing-piece__node.is-complete {
  opacity: 1;
}
.missing-piece__node.is-active {
  transform: translate(-50%, -50%) scale(1.035);
}
.missing-piece__node.node-1 {
  left: 8.5%;
}
.missing-piece__node.node-2 {
  left: 29.25%;
}
.missing-piece__node.node-3 {
  left: 50%;
}
.missing-piece__node.node-4 {
  left: 70.75%;
}
.missing-piece__node.node-5 {
  left: 91.5%;
}
.missing-piece__dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #a6b8b6;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.42s ease;
}
.missing-piece__node.is-active .missing-piece__dot,
.missing-piece__node.is-complete .missing-piece__dot {
  border-color: #0b8a84;
  background: #0b8a84;
  box-shadow: 0 0 0 7px rgba(11, 138, 132, 0.1);
}
.missing-piece__number {
  display: block;
  margin-top: 27px;
  margin-bottom: 7px;
  color: #0b786f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
}
.missing-piece__node h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.missing-piece__node p {
  max-width: 180px;
  margin: 8px auto 0;
  color: rgba(16, 37, 34, 0.6);
  font-size: 13px;
  line-height: 1.45;
}
.missing-piece__node--final {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.78);
}
.missing-piece__node--final.is-revealed {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.missing-piece__node--final .missing-piece__dot {
  width: 19px;
  height: 19px;
}
.missing-piece__node--final h3 {
  color: #0b6f69;
  font-size: 24px;
}
.missing-piece__halo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(11, 138, 132, 0.23) 0%,
    rgba(11, 138, 132, 0) 68%
  );
  transform: translate(-50%, -50%) scale(0.35);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.missing-piece__node--final.is-revealed .missing-piece__halo {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.missing-piece__pause {
  position: absolute;
  left: 50%;
  bottom: 130px;
  transform: translateX(-50%);
  margin: 0;
  color: #0b6f69;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.missing-piece__pause.is-visible {
  opacity: 0.75;
}
.missing-piece__closing {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: min(880px, calc(100% - 56px));
  transform: translate(-50%, 16px);
  text-align: center;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.missing-piece__closing.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.missing-piece__closing p {
  margin: 0 0 8px;
  color: rgba(16, 37, 34, 0.58);
  font-size: 16px;
}
.missing-piece__closing h3 {
  margin: 0;
  color: #0b5f5a;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.missing-piece__gleeo {
  margin-top: clamp(74px, 8vw, 120px);
}
@media (max-width: 900px) {
  .missing-piece {
    padding: 92px 0 110px;
  }
  .missing-piece__header h2 {
    font-size: var(--type-h2-mobile, clamp(42px, 13vw, 62px));
  }
  .missing-piece__stage {
    min-height: 760px;
    padding: 34px 22px;
  }
  .missing-piece__timeline {
    height: 570px;
  }
  .missing-piece__line {
    left: 35px;
    right: auto;
    top: 35px;
    bottom: 35px;
    width: 2px;
    height: auto;
  }
  .missing-piece__line span {
    width: 100%;
    height: var(--progress);
    transition: height 0.9s ease;
  }
  .missing-piece__node {
    left: 35px !important;
    top: auto;
    width: calc(100% - 70px);
    transform: translate(0, -50%);
    text-align: left;
  }
  .missing-piece__node.is-active {
    transform: translate(0, -50%);
  }
  .missing-piece__node.node-1 {
    top: 55px;
  }
  .missing-piece__node.node-2 {
    top: 165px;
  }
  .missing-piece__node.node-3 {
    top: 275px;
  }
  .missing-piece__node.node-4 {
    top: 385px;
  }
  .missing-piece__node.node-5 {
    top: 495px;
  }
  .missing-piece__dot,
  .missing-piece__halo {
    left: 0;
  }
  .missing-piece__number {
    margin: 0 0 5px 30px;
  }
  .missing-piece__node h3,
  .missing-piece__node p {
    margin-left: 30px;
  }
  .missing-piece__node p {
    max-width: 430px;
  }
  .missing-piece__pause {
    display: none;
  }
  .missing-piece__closing {
    bottom: 30px;
  }
}
@media (max-width: 560px) {
  .missing-piece__intro {
    font-size: 16px;
  }
  .missing-piece__controls {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .missing-piece__replay {
    padding-left: 0;
    border-left: 0;
  }
  .missing-piece__stage {
    min-height: 810px;
    border-radius: 20px;
  }
  .missing-piece__node h3 {
    font-size: 18px;
  }
  .missing-piece__node--final h3 {
    font-size: 21px;
  }
  .missing-piece__closing p {
    font-size: 14px;
  }
  .missing-piece__closing h3 {
    font-size: 30px;
  }
}

/* =========================================================
   HEALTHCARE EVOLUTION — CONNECTING LINE POSITION FIX
   The horizontal progress line sits between each stage title
   and its supporting description, never through the text.
   ========================================================= */
@media (min-width: 901px) {
  .missing-piece__timeline {
    height: 350px;
  }

  .missing-piece__line {
    top: 190px;
    height: 2px;
    z-index: 0;
  }

  .missing-piece__node {
    top: 90px;
    z-index: 1;
  }

  .missing-piece__number {
    margin-top: 27px;
    margin-bottom: 7px;
  }

  .missing-piece__node h3 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 50px;
  }

  .missing-piece__node p {
    margin-top: 31px;
  }

  .missing-piece__dot,
  .missing-piece__halo {
    z-index: 2;
  }
}

/* =========================================================
   PHASE 7 — GLEEO / OPERATIONALIZING CONTINUOUS CARE
   ========================================================= */
.gleeo-operational {
  background: #f8fbfa;
  color: #102522;
  padding-top: clamp(104px, 10vw, 156px);
}

.gleeo-operational__header {
  max-width: 980px;
  margin-bottom: clamp(54px, 6vw, 86px);
}

.gleeo-operational__header h2 {
  margin: 0;
  font-size: var(--type-h2, clamp(50px, 6vw, 76px));
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.gleeo-operational__header > p:last-child {
  max-width: 840px;
  margin: 22px 0 0;
  color: rgba(16, 37, 34, 0.66);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.62;
}

.gleeo-connect {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(10, 83, 79, 0.11);
  border-radius: 30px;
  background: radial-gradient(
      circle at 50% 38%,
      rgba(19, 145, 137, 0.16),
      transparent 32%
    ),
    radial-gradient(circle at 16% 75%, rgba(12, 103, 98, 0.09), transparent 30%),
    linear-gradient(145deg, #fbfefd 0%, #edf7f5 100%);
  box-shadow: 0 22px 68px rgba(16, 61, 58, 0.08);
  display: grid;
  place-items: center;
  padding: 54px 34px;
  isolation: isolate;
}

.gleeo-connect__glow {
  position: absolute;
  inset: 12% 20%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(15, 140, 133, 0.13),
    rgba(15, 140, 133, 0) 68%
  );
  filter: blur(10px);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: -1;
}

.gleeo-connect.is-animated .gleeo-connect__glow {
  opacity: 1;
  transform: scale(1);
}

.gleeo-connect__brand {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translate(-50%, 14px);
  opacity: 0;
  transition: opacity 0.7s ease 0.3s,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s;
}

.gleeo-connect__brand span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: #0b6f69;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(11, 111, 105, 0.2);
}

.gleeo-connect.is-animated .gleeo-connect__brand {
  opacity: 1;
  transform: translate(-50%, 0);
}

.gleeo-connect__relationship {
  position: relative;
  width: min(900px, 90%);
  display: grid;
  grid-template-columns: 180px minmax(260px, 1fr) 180px;
  align-items: center;
  gap: 28px;
  margin-top: 4px;
}

.gleeo-connect__entity {
  display: grid;
  justify-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gleeo-connect__entity--patient {
  transition-delay: 0.65s;
}
.gleeo-connect__entity--team {
  transition-delay: 0.95s;
}

.gleeo-connect.is-animated .gleeo-connect__entity {
  opacity: 1;
  transform: translateY(0);
}

.gleeo-connect__node {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(11, 138, 132, 0.35);
  box-shadow: 0 0 0 10px rgba(11, 138, 132, 0.06),
    0 12px 32px rgba(16, 61, 58, 0.12);
  position: relative;
}

.gleeo-connect__node::before,
.gleeo-connect__node::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #0b8a84;
}

.gleeo-connect__node::before {
  top: 17px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.gleeo-connect__node::after {
  bottom: 15px;
  width: 34px;
  height: 18px;
  border-radius: 18px 18px 10px 10px;
  opacity: 0.85;
}

.gleeo-connect__label {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.gleeo-connect__line {
  position: relative;
  height: 3px;
  border-radius: 999px;
  background: rgba(16, 61, 58, 0.14);
  overflow: visible;
}

.gleeo-connect__line-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #0b8a84;
  box-shadow: 0 0 9px rgba(11, 138, 132, 0.3);
  transition: width 1.1s cubic-bezier(0.45, 0, 0.2, 1) 1.35s;
}

.gleeo-connect.is-animated .gleeo-connect__line-fill {
  width: 100%;
}

.gleeo-connect__pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0b8a84;
  box-shadow: 0 0 0 7px rgba(11, 138, 132, 0.12),
    0 0 16px rgba(11, 138, 132, 0.45);
  opacity: 0;
  transform: translate(-50%, -50%);
}

.gleeo-connect.is-animated .gleeo-connect__pulse {
  animation: gleeoPulse 3.4s ease-in-out 2.3s infinite;
}

.gleeo-connect.is-animated .gleeo-connect__pulse--two {
  animation-delay: 3.9s;
}

@keyframes gleeoPulse {
  0% {
    left: 0;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.gleeo-connect__service {
  position: absolute;
  left: 50%;
  bottom: 58px;
  transform: translate(-50%, 18px);
  width: min(620px, calc(100% - 56px));
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s ease 2.05s,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 2.05s;
}

.gleeo-connect.is-animated .gleeo-connect__service {
  opacity: 1;
  transform: translate(-50%, 0);
}

.gleeo-connect__service span {
  display: block;
  color: #0b7e78;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gleeo-connect__service strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.gleeo-connect__service small {
  display: block;
  margin-top: 10px;
  color: rgba(16, 37, 34, 0.58);
  font-size: 15px;
}

.gleeo-operational__close {
  width: 100%;
  min-height: 88vh;
  margin-top: clamp(100px, 10vw, 150px);
  background: #0a0f10;
  color: #fff;
  display: grid;
  place-items: center;
  padding: clamp(110px, 12vw, 180px) 0;
}

.gleeo-operational__close-inner {
  text-align: center;
  max-width: 1080px;
}

.gleeo-operational__close p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(18px, 1.8vw, 24px);
}

.gleeo-operational__close h3 {
  margin: 0 auto;
  max-width: 960px;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.gleeo-operational__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.button--secondary-dark {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #fff;
}

.button--secondary-dark:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .gleeo-operational {
    padding-top: 92px;
  }

  .gleeo-operational__header h2 {
    font-size: var(--type-h2-mobile, clamp(42px, 13vw, 62px));
  }

  .gleeo-connect {
    min-height: 650px;
    border-radius: 24px;
    padding: 42px 22px;
  }

  .gleeo-connect__brand {
    top: 42px;
  }

  .gleeo-connect__relationship {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 10px;
  }

  .gleeo-connect__entity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .gleeo-connect__line {
    width: 3px;
    height: 128px;
    justify-self: center;
  }

  .gleeo-connect__line-fill {
    width: 100%;
    height: 0;
    transition: height 1.1s cubic-bezier(0.45, 0, 0.2, 1) 1.35s;
  }

  .gleeo-connect.is-animated .gleeo-connect__line-fill {
    width: 100%;
    height: 100%;
  }

  .gleeo-connect__pulse {
    top: 0;
    left: 50%;
  }

  .gleeo-connect.is-animated .gleeo-connect__pulse {
    animation-name: gleeoPulseVertical;
  }

  @keyframes gleeoPulseVertical {
    0% {
      top: 0;
      opacity: 0;
    }
    8% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    92% {
      opacity: 1;
    }
    100% {
      top: 100%;
      opacity: 0;
    }
  }

  .gleeo-connect__service {
    bottom: 42px;
  }

  .gleeo-operational__close {
    min-height: 80vh;
  }
}

@media (max-width: 560px) {
  .gleeo-operational__header > p:last-child {
    font-size: 16px;
  }

  .gleeo-connect {
    min-height: 690px;
    border-radius: 20px;
  }

  .gleeo-connect__brand span {
    min-width: 96px;
    height: 42px;
    font-size: 14px;
  }

  .gleeo-connect__node {
    width: 64px;
    height: 64px;
  }

  .gleeo-connect__node::before {
    top: 14px;
  }

  .gleeo-connect__node::after {
    bottom: 12px;
  }

  .gleeo-connect__label {
    font-size: 16px;
  }

  .gleeo-connect__service {
    width: calc(100% - 36px);
  }

  .gleeo-connect__service strong {
    font-size: 31px;
  }

  .gleeo-operational__close h3 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .gleeo-operational__actions {
    flex-direction: column;
    align-items: stretch;
    width: min(320px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gleeo-connect__pulse {
    animation: none !important;
  }
}

/* =========================================================
   GLEEO GLOBAL CONTENT-SECTION SYSTEM
   Reference rhythm: "What happens after the patient leaves?"
   ========================================================= */
:root {
  --content-section-top: clamp(112px, 13vw, 190px);
  --content-section-top-mobile: 92px;
  --section-eyebrow-size: 16px;
  --section-eyebrow-size-mobile: 14px;
  --section-eyebrow-gap: 10px;
  --section-heading-gap: 24px;
  --section-visual-gap: 56px;
  --section-heading-max: 980px;
  --section-copy-max: 760px;
}

/* Every primary content chapter starts at the same distance from its top edge/divider. */
.cinematic-story--opening,
.cinematic-story--gap,
.services-intro,
.hospital-impact,
.journey-stories,
.care-evolution.missing-piece,
.gleeo-operational {
  padding-top: var(--content-section-top);
}

/* Prominent, consistent chapter markers. Component labels and step numbers are excluded. */
.cinematic-story .eyebrow,
.services-intro .eyebrow,
.hospital-impact .eyebrow,
.journey-stories__intro .eyebrow,
.missing-piece__header .eyebrow,
.gleeo-operational__header .eyebrow {
  margin: 0 0 var(--section-eyebrow-gap);
  color: var(--teal-700);
  font-size: var(--section-eyebrow-size);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Operationalizing Continuous Care is the typographic reference for all main headings. */
#continuous-care-title,
#service-gap-title,
#services-title,
#hospital-impact-title,
#journey-stories-title,
#care-evolution-title,
#gleeo-operational-title {
  max-width: var(--section-heading-max);
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

/* Remove local margins that previously produced inconsistent eyebrow-to-heading gaps. */
.services-intro h2,
.journey-stories__intro h2,
.missing-piece__header h2,
.gleeo-operational__header h2,
.cinematic-story__copy h1,
.cinematic-story__copy h2,
.hospital-impact__header h2 {
  margin-top: 0;
}

/* One reading width and one heading-to-copy rhythm. */
.services-intro__lead,
.hospital-impact__lead,
.journey-stories__lead,
.missing-piece__intro,
.gleeo-operational__header > p:last-child,
.cinematic-story__body {
  max-width: var(--section-copy-max);
  margin-top: var(--section-heading-gap);
}

/* Copy-to-primary-visual spacing is consistent where the visual follows the intro directly. */
.journey-stories__intro,
.care-evolution .missing-piece__header,
.gleeo-operational__header {
  margin-bottom: var(--section-visual-gap);
}

@media (max-width: 760px) {
  .cinematic-story--opening,
  .cinematic-story--gap,
  .services-intro,
  .hospital-impact,
  .journey-stories,
  .care-evolution.missing-piece,
  .gleeo-operational {
    padding-top: var(--content-section-top-mobile);
  }

  .cinematic-story .eyebrow,
  .services-intro .eyebrow,
  .hospital-impact .eyebrow,
  .journey-stories__intro .eyebrow,
  .missing-piece__header .eyebrow,
  .gleeo-operational__header .eyebrow {
    font-size: var(--section-eyebrow-size-mobile);
    margin-bottom: var(--section-eyebrow-gap);
  }

  .services-intro__lead,
  .hospital-impact__lead,
  .journey-stories__lead,
  .missing-piece__intro,
  .gleeo-operational__header > p:last-child,
  .cinematic-story__body {
    margin-top: 20px;
  }

  .journey-stories__intro,
  .care-evolution .missing-piece__header,
  .gleeo-operational__header {
    margin-bottom: 46px;
  }
}

/* =========================================================
   PHASE 7 — SECTION ALTERNATION & CHAPTER ENDING TYPOGRAPHY
   ========================================================= */
:root {
  --section-off-white: #f8fbfa;
  --section-light-teal: #eef7f5;
  --section-divider: rgba(16, 61, 58, 0.14);
}

/* Keep the light content chapters in a deliberate alternating rhythm. */
.services-intro {
  background: var(--section-off-white);
  border-top: 1px solid var(--section-divider);
}

.hospital-impact {
  background: var(--section-light-teal);
  border-top: 1px solid var(--section-divider);
}

.journey-stories {
  background: radial-gradient(
      circle at 92% 8%,
      rgba(22, 166, 166, 0.075),
      transparent 28%
    ),
    var(--section-off-white);
  border-top: 1px solid var(--section-divider);
}

.care-evolution.missing-piece {
  background: var(--section-light-teal);
  border-top: 1px solid var(--section-divider);
}

.gleeo-operational {
  background: var(--section-off-white);
  border-top: 1px solid var(--section-divider);
}

/* Ensure the start of Gleeo reads as a new chapter, not as part of Evolution. */
.gleeo-operational > .shell {
  position: relative;
}

/* Dark chapter endings use the same refined editorial voice as content headings,
   while retaining their cinematic scale and centered composition. */
.statement-section h2,
.services-close h2,
.journey-stories__close--dark h3,
.gleeo-operational__close h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.statement-section h2,
.services-close h2,
.journey-stories__close--dark h3 {
  font-size: clamp(52px, 6.4vw, 88px);
}

.gleeo-operational__close h3 {
  font-size: clamp(48px, 6vw, 82px);
}

/* The smaller setup line in every cinematic ending follows one system. */
.statement-section p,
.services-close p,
.journey-stories__close--dark p,
.gleeo-operational__close p {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.018em;
}

@media (max-width: 760px) {
  .statement-section h2,
  .services-close h2,
  .journey-stories__close--dark h3,
  .gleeo-operational__close h3 {
    font-size: clamp(40px, 12.5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }
}

/* =========================================================
   SERVICES — ONE CONTINUOUS TOP-LEVEL SECTION
   The Services introduction, Patient Programs and Care Now
   are internal parts of the same section and share one tone.
   ========================================================= */
.services-intro,
.service-track,
.service-track--programs,
.service-track--care-now {
  background: var(--section-off-white) !important;
}

/* Remove visual boundaries that made the service tracks read
   as separate top-level chapters. */
.service-track,
.service-track--programs,
.service-track--care-now {
  border-top: 0 !important;
  box-shadow: none !important;
}

/* =========================================================
   STANDARDIZED SERVICES SPACING + FOUR DARK ENDINGS
   Reference: .statement-section (the central question)
   ========================================================= */

/* Services introduction and both service tracks are one continuous chapter.
   Remove the accumulated intro-bottom + track-top padding. */
.services-intro {
  padding-bottom: 48px !important;
}

.service-track--programs {
  padding-top: 24px !important;
  padding-bottom: 72px !important;
}

.service-track--care-now {
  padding-top: 56px !important;
  padding-bottom: clamp(84px, 9vw, 120px) !important;
}

/* All four cinematic endings use the central-question section as one component:
   same height, gradient, centering, content width and typography rhythm. */
.statement-section,
.services-close,
.journey-stories__close.journey-stories__close--dark,
.gleeo-operational__close {
  position: relative;
  width: 100%;
  min-height: min(86vh, 920px) !important;
  display: grid !important;
  place-items: center !important;
  padding: clamp(120px, 16vw, 230px) 0 !important;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(
      circle at 50% 50%,
      rgba(21, 165, 154, 0.18) 0,
      rgba(21, 165, 154, 0.08) 30%,
      transparent 68%
    ),
    #071b25 !important;
}

/* Prevent earlier pseudo-gradient from doubling on the reference section. */
.statement-section::before {
  display: none !important;
}

.statement-section__inner,
.services-close__inner,
.journey-stories__close--dark .journey-stories__close-inner,
.gleeo-operational__close-inner {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px !important;
  margin: 0 auto;
  text-align: center;
}

.statement-section p,
.services-close p,
.journey-stories__close--dark p,
.gleeo-operational__close p {
  margin: 0 0 26px !important;
  color: rgba(255, 255, 255, 0.58) !important;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.3vw, 34px) !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.018em !important;
  text-transform: none !important;
}

.statement-section h2,
.services-close h2,
.journey-stories__close--dark h3,
.gleeo-operational__close h3 {
  max-width: 1050px !important;
  margin: 0 auto !important;
  color: #fff !important;
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 112px) !important;
  font-weight: 500 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.055em !important;
}

/* The final ending alone contains actions; keep them within the same canvas. */
.gleeo-operational__actions {
  margin-top: 42px;
}

@media (max-width: 760px) {
  .services-intro {
    padding-bottom: 36px !important;
  }

  .service-track--programs {
    padding-top: 18px !important;
    padding-bottom: 58px !important;
  }

  .service-track--care-now {
    padding-top: 44px !important;
    padding-bottom: 82px !important;
  }

  .statement-section,
  .services-close,
  .journey-stories__close.journey-stories__close--dark,
  .gleeo-operational__close {
    min-height: 78vh !important;
    padding: 92px 0 !important;
  }

  .statement-section p,
  .services-close p,
  .journey-stories__close--dark p,
  .gleeo-operational__close p {
    margin-bottom: 20px !important;
    font-size: clamp(18px, 5.2vw, 24px) !important;
  }

  .statement-section h2,
  .services-close h2,
  .journey-stories__close--dark h3,
  .gleeo-operational__close h3 {
    font-size: clamp(40px, 12.5vw, 58px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.04em !important;
  }
}

/* Healthcare evolution video replacement */
.missing-piece__stage--video {
  min-height: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  display: block;
  overflow: hidden;
  background: #eef8f6;
}
.missing-piece__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #eef8f6;
}
@media (max-width: 760px) {
  .missing-piece__stage--video {
    aspect-ratio: 16 / 9;
    border-radius: 20px;
  }
}

/* =========================================================
   PHASE 7 — FINAL OPERATIONALIZING CONTINUOUS CARE VIDEO
   ========================================================= */
.gleeo-operational__media {
  width: 100%;
}

.gleeo-operational__controls {
  margin: 0 0 24px;
}

.gleeo-operational__video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(10, 83, 79, 0.11);
  border-radius: 30px;
  background: #f4faf8;
  box-shadow: 0 22px 68px rgba(16, 61, 58, 0.08);
}

.gleeo-operational__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f4faf8;
}

@media (max-width: 900px) {
  .gleeo-operational__video-frame {
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .gleeo-operational__controls {
    margin-bottom: 18px;
  }

  .gleeo-operational__video-frame {
    border-radius: 20px;
  }
}

/* =========================================================
   About Gleeo page
   ========================================================= */
.about-page {
  background: #f7faf9;
}

.about-page .site-header {
  background: rgba(247, 250, 249, 0.92);
  border-bottom: 1px solid rgba(14, 50, 61, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.about-page .site-header .brand,
.about-page .site-header .menu-toggle,
.about-page .site-header .button--header {
  color: #0b2631;
}

.about-page .brand__mark svg {
  stroke: currentColor;
}

.about-main {
  overflow: hidden;
}

.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(150px, 17vh, 210px) 0 clamp(90px, 11vh, 140px);
  background: radial-gradient(
      circle at 88% 14%,
      rgba(19, 148, 145, 0.11),
      transparent 31%
    ),
    #f7faf9;
  border-bottom: 1px solid rgba(14, 50, 61, 0.09);
}

.about-hero::after {
  content: "";
  position: absolute;
  width: clamp(340px, 40vw, 650px);
  aspect-ratio: 1;
  right: -13%;
  top: 5%;
  border: 1px solid rgba(16, 129, 128, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
}

.about-hero__copy {
  max-width: 1080px;
}

.about-hero .eyebrow,
.about-foundations .eyebrow {
  margin: 0 0 10px;
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0b8583;
}

.about-hero h1 {
  max-width: 1020px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(3.65rem, 7.1vw, 7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #0b2631;
}

.about-hero__lead {
  max-width: 940px;
  margin: clamp(34px, 4vw, 54px) 0 0;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.42;
  letter-spacing: -0.022em;
  color: #153640;
}

.about-hero__body {
  max-width: 900px;
  margin-top: clamp(28px, 3.2vw, 44px);
  display: grid;
  gap: 18px;
}

.about-hero__body p {
  margin: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.38rem);
  line-height: 1.65;
  color: #5d7178;
}

.about-foundations {
  padding: clamp(92px, 11vw, 160px) 0 clamp(100px, 12vw, 180px);
  background: linear-gradient(
      180deg,
      rgba(222, 246, 245, 0.66),
      rgba(247, 250, 249, 0.94) 42%
    ),
    #eef8f7;
}

.about-foundations__intro {
  max-width: 940px;
}

.about-foundations h2 {
  max-width: 940px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(2.65rem, 5.15vw, 5.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.048em;
  color: #0b2631;
}

.about-foundations__visual {
  margin: clamp(56px, 7vw, 92px) auto 0;
  width: min(100%, 1420px);
  padding: clamp(18px, 2.3vw, 34px);
  border: 1px solid rgba(11, 133, 131, 0.17);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 34px 90px rgba(20, 72, 78, 0.09);
}

.about-foundations__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 760px) {
  .about-hero {
    min-height: auto;
    padding: 138px 0 82px;
  }

  .about-hero::after {
    width: 330px;
    right: -56%;
    top: 4%;
  }

  .about-hero h1 {
    font-size: clamp(3.05rem, 14vw, 4.5rem);
    line-height: 0.98;
  }

  .about-hero__lead {
    font-size: 1.3rem;
    line-height: 1.48;
  }

  .about-foundations {
    padding: 82px 0 100px;
  }

  .about-foundations h2 {
    font-size: clamp(2.5rem, 11vw, 3.65rem);
  }

  .about-foundations__visual {
    margin-top: 44px;
    padding: 10px;
    border-radius: 22px;
    overflow-x: auto;
  }

  .about-foundations__visual img {
    min-width: 820px;
    border-radius: 15px;
  }
}

/* =========================================================
   About Gleeo — journey section
   ========================================================= */
.about-journey {
  padding: clamp(96px, 11vw, 160px) 0 clamp(110px, 12vw, 180px);
  background: radial-gradient(
      circle at 12% 10%,
      rgba(20, 147, 145, 0.07),
      transparent 30%
    ),
    #f8faf9;
  border-top: 1px solid rgba(14, 50, 61, 0.08);
}

.about-journey__intro {
  max-width: 980px;
}

.about-journey .eyebrow {
  margin: 0 0 10px;
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0b8583;
}

.about-journey h2 {
  max-width: 960px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(2.65rem, 5.15vw, 5.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.048em;
  color: #0b2631;
}

.about-journey__intro > p:last-child {
  max-width: 880px;
  margin: clamp(25px, 3vw, 38px) 0 0;
  font-size: clamp(1.08rem, 1.45vw, 1.38rem);
  line-height: 1.65;
  color: #5d7178;
}

.about-journey__visual {
  width: 70%;
  max-width: 900px;
  margin: 70px auto 0;
}

.about-journey__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.about-journey__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 4vw, 56px);
}

.about-journey__action .button {
  min-width: 154px;
}

@media (max-width: 760px) {
  .about-journey {
    padding: 82px 0 104px;
  }

  .about-journey h2 {
    font-size: clamp(2.5rem, 11vw, 3.65rem);
  }

  .about-journey__visual {
    margin-top: 44px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .about-journey__visual img {
    min-width: 760px;
  }

  .about-journey__action {
    justify-content: flex-start;
    margin-top: 34px;
  }
}

/* =========================================================
   About page mobile visual fixes
   Keep both About visuals fully visible without horizontal cropping.
   ========================================================= */
@media (max-width: 760px) {
  .about-foundations__visual,
  .about-journey__visual {
    width: 100%;
    max-width: none;
    margin: 36px auto 0;
    padding: 6px;
    overflow: visible;
  }

  .about-foundations__visual img,
  .about-journey__visual img {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }
}

.about-recognition {
  padding: clamp(96px, 11vw, 160px) 0 clamp(110px, 12vw, 180px);
  background: #fbfaf7;
  border-top: 1px solid rgba(14, 50, 61, 0.08);
}
.about-recognition__intro {
  max-width: 980px;
}
.about-recognition .eyebrow {
  margin: 0 0 10px;
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0b8583;
}
.about-recognition h2 {
  max-width: 960px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(2.65rem, 5.15vw, 5.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.048em;
  color: #0b2631;
}
.about-recognition__intro > p:last-child {
  max-width: 880px;
  margin: clamp(25px, 3vw, 38px) 0 0;
  font-size: clamp(1.08rem, 1.45vw, 1.38rem);
  line-height: 1.65;
  color: #5d7178;
}
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 34px);
  margin-top: clamp(54px, 6.5vw, 88px);
}
.recognition-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(14, 50, 61, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(18, 58, 66, 0.08);
}
.recognition-card__logo {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 30px;
  border-bottom: 1px solid rgba(14, 50, 61, 0.08);
}
.recognition-card__logo img {
  display: block;
  width: 100%;
  max-width: 310px;
  max-height: 155px;
  object-fit: contain;
}
.recognition-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.recognition-card__publication {
  margin: 0 0 10px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0b8583;
}
.recognition-card h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #0b2631;
}
.recognition-card__content > p:not(.recognition-card__publication) {
  margin: 18px 0 28px;
  font-size: 1rem;
  line-height: 1.6;
  color: #66777d;
}
.recognition-card__link {
  margin-top: auto;
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  color: #087f7d;
  cursor: pointer;
}
.recognition-modal[hidden] {
  display: none;
}
.recognition-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
}
.recognition-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 15, 20, 0.82);
  backdrop-filter: blur(9px);
}
.recognition-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 1120px);
  max-height: 90vh;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.38);
}
.recognition-modal__viewport {
  max-height: 90vh;
  overflow: auto;
  border-radius: 24px;
}
.recognition-modal__viewport img {
  display: block;
  width: 100%;
  height: auto;
}
.recognition-modal__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(14, 50, 61, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0b2631;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
body.recognition-modal-open {
  overflow: hidden;
}
@media (max-width: 900px) {
  .recognition-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
  .recognition-card {
    display: grid;
    grid-template-columns: minmax(210px, 0.42fr) 1fr;
  }
  .recognition-card__logo {
    min-height: 100%;
    border-right: 1px solid rgba(14, 50, 61, 0.08);
    border-bottom: 0;
  }
}
@media (max-width: 620px) {
  .about-recognition {
    padding: 82px 0 104px;
  }
  .about-recognition h2 {
    font-size: clamp(2.5rem, 11vw, 3.65rem);
  }
  .recognition-grid {
    margin-top: 44px;
  }
  .recognition-card {
    display: flex;
  }
  .recognition-card__logo {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid rgba(14, 50, 61, 0.08);
  }
  .recognition-card__logo img {
    max-height: 112px;
  }
  .recognition-card__content {
    padding: 24px;
  }
  .recognition-modal {
    padding: 10px;
  }
}

/* =========================================================
   Recognition refinements
   ========================================================= */

/* More depth around publication thumbnails */
.recognition-card__logo {
  margin: 18px 18px 0;
  min-height: 184px;
  border: 1px solid rgba(11, 38, 49, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(11, 74, 82, 0.1),
    0 3px 10px rgba(11, 74, 82, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.recognition-card:hover .recognition-card__logo {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(11, 74, 82, 0.15),
    0 8px 18px rgba(11, 74, 82, 0.08);
}

/* Modal reduced to 60% of viewport width on desktop */
.recognition-modal__dialog {
  width: min(60vw, 960px);
}

@media (max-width: 980px) {
  .recognition-modal__dialog {
    width: min(78vw, 900px);
  }
}

@media (max-width: 620px) {
  .recognition-card__logo {
    margin: 14px 14px 0;
    min-height: 150px;
    border-radius: 16px;
  }

  .recognition-modal__dialog {
    width: 95vw;
  }
}

/* =========================================================
   Gleeo Model — POINT™ foundation
   ========================================================= */
.point-foundation {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  align-items: center;
  gap: clamp(30px, 4vw, 62px);
  margin: clamp(48px, 6vw, 78px) auto 0;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(11, 133, 131, 0.17);
  border-radius: 28px;
  background: radial-gradient(
      circle at 9% 14%,
      rgba(33, 177, 171, 0.15),
      transparent 35%
    ),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 26px 74px rgba(19, 76, 82, 0.09);
}

.point-foundation__mark {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.065em;
  color: #0b8583;
}

.point-foundation__mark span {
  margin: 0.05em 0 0 0.08em;
  font-size: 0.26em;
  letter-spacing: 0;
}

.point-foundation__copy {
  padding-left: clamp(0px, 2.5vw, 34px);
  border-left: 1px solid rgba(11, 133, 131, 0.18);
}

.point-foundation__kicker {
  margin: 0 0 11px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0b8583;
}

.point-foundation h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.7rem, 2.7vw, 2.85rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #0b2631;
}

.point-foundation__copy > p:last-child {
  max-width: 690px;
  margin: 17px 0 0;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.62;
  color: #5d7178;
}

/* Keep the three-pillar visual at 70% width for breathing space. */
.about-foundations__visual {
  width: 70%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 760px) {
  .point-foundation {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 40px;
    padding: 27px 23px;
    border-radius: 22px;
  }

  .point-foundation__mark {
    justify-content: flex-start;
    font-size: 3.75rem;
  }

  .point-foundation__copy {
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 1px solid rgba(11, 133, 131, 0.18);
  }

  .about-foundations__visual {
    width: 100%;
    max-width: none;
  }
}

/* =========================================================
   Connected Gleeo Model narrative
   ========================================================= */
.about-foundations__intro {
  max-width: 1040px;
}

.about-foundations__lead {
  max-width: 920px;
  margin: clamp(30px, 3.5vw, 48px) 0 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #153640;
}

.about-foundations__body {
  max-width: 900px;
  margin: 20px 0 0;
  font-size: clamp(1.06rem, 1.4vw, 1.3rem);
  line-height: 1.65;
  color: #5d7178;
}

.about-foundations__visual--connected {
  position: relative;
  width: 82%;
  max-width: 1180px;
  margin: clamp(46px, 5.5vw, 74px) auto 0;
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 1px solid rgba(11, 133, 131, 0.18);
}

.about-foundations__visual--connected::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 46px;
  height: 2px;
  transform: translateX(-50%);
  background: #0b8583;
  border-radius: 999px;
}

@media (max-width: 760px) {
  .about-foundations__lead {
    font-size: 1.25rem;
    line-height: 1.48;
  }

  .about-foundations__body {
    font-size: 1rem;
    line-height: 1.62;
  }

  .about-foundations__visual--connected {
    width: 100%;
    max-width: none;
    margin-top: 38px;
    padding-top: 24px;
  }
}

/* =========================================================
   About Gleeo — Our Vision
   ========================================================= */
.about-vision {
  position: relative;
  min-height: min(88vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(120px, 15vw, 220px) 0;
  color: #ffffff;
  background: radial-gradient(
      circle at 72% 44%,
      rgba(20, 166, 160, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 18% 78%,
      rgba(18, 117, 121, 0.16),
      transparent 32%
    ),
    linear-gradient(145deg, #061a23 0%, #082a31 56%, #0b4141 100%);
}

.about-vision::before {
  content: "";
  position: absolute;
  width: min(58vw, 780px);
  aspect-ratio: 1;
  top: 50%;
  right: -20%;
  transform: translateY(-50%);
  border: 1px solid rgba(123, 226, 216, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(123, 226, 216, 0.025),
    0 0 0 190px rgba(123, 226, 216, 0.015);
  pointer-events: none;
}

.about-vision__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.about-vision .eyebrow {
  margin: 0 0 10px;
  color: #7ce1d8;
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-vision h2 {
  max-width: 1020px;
  margin: 0;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: clamp(3.2rem, 6.6vw, 7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-vision__copy {
  max-width: 860px;
  display: grid;
  gap: 14px;
  margin-top: clamp(38px, 5vw, 66px);
}

.about-vision__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.5vw, 1.38rem);
  line-height: 1.65;
}

.about-vision__copy .about-vision__closing {
  margin-top: 14px;
  color: #ffffff;
  font-size: clamp(1.28rem, 1.9vw, 1.72rem);
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .about-vision {
    min-height: auto;
    padding: 92px 0 108px;
  }

  .about-vision::before {
    width: 430px;
    right: -72%;
  }

  .about-vision h2 {
    font-size: clamp(3rem, 13vw, 4.65rem);
  }

  .about-vision__copy {
    margin-top: 34px;
  }

  .about-vision__copy p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .about-vision__copy .about-vision__closing {
    font-size: 1.22rem;
  }
}

/* =========================================================
   About Gleeo — Final CTA
   ========================================================= */
.about-cta {
  padding: clamp(120px, 14vw, 190px) 0;
  background: #ffffff;
  border-top: 1px solid rgba(14, 50, 61, 0.08);
}

.about-cta__inner {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.about-cta .eyebrow {
  margin: 0 0 10px;
  color: #0b8583;
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  color: #0b2631;
  font-family: "Inter", sans-serif;
  font-size: clamp(3rem, 6vw, 6.1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.052em;
}

.about-cta__copy {
  max-width: 720px;
  margin: clamp(30px, 4vw, 46px) auto 0;
  color: #5d7178;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  line-height: 1.65;
}

.about-cta .button {
  margin-top: clamp(34px, 4vw, 48px);
  min-width: 156px;
}

@media (max-width: 760px) {
  .about-cta {
    padding: 92px 0 110px;
  }

  .about-cta h2 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .about-cta__copy {
    font-size: 1rem;
    line-height: 1.62;
  }
}

/* =========================================================
   Shared site footer
   ========================================================= */
.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(
      circle at 15% 20%,
      rgba(18, 142, 139, 0.14),
      transparent 30%
    ),
    #061a23;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(520px, 0.85fr);
  gap: clamp(70px, 10vw, 150px);
  padding: clamp(78px, 9vw, 122px) 0 clamp(68px, 8vw, 104px);
}

.site-footer__brand {
  max-width: 590px;
}

.site-footer__identity {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}

.site-footer__mark {
  width: 42px;
  height: 42px;
}

.site-footer__mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #7ce1d8;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__identity strong,
.site-footer__identity small {
  display: block;
}

.site-footer__identity strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.site-footer__identity small {
  margin-top: 5px;
  color: #7ce1d8;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer__statement {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.7;
}

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 30px;
}

.site-footer__contact a,
.site-footer__column a,
.site-footer__bottom a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__contact a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.site-footer__contact a:hover,
.site-footer__column a:hover,
.site-footer__bottom a:hover {
  color: #7ce1d8;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__column h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__column a {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
  line-height: 1.45;
}

.site-footer__column h2 + a {
  margin-top: 0;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 980px) {
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .site-footer__nav {
    width: min(100%, 700px);
  }
}

@media (max-width: 620px) {
  .site-footer__main {
    padding: 72px 0 64px;
  }

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

  .site-footer__column:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__contact {
    flex-direction: column;
    gap: 8px;
  }

  .site-footer__bottom-inner {
    min-height: 86px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    padding-block: 20px;
  }
}

/* PHASE 8 — brand assets, shared headers, legal and demo pages */
.brand {
  height: 46px;
  display: inline-flex;
  align-items: center;
}
.brand__logo {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}
.brand__logo--light {
  display: block;
}
.brand__logo--dark {
  display: none;
}
.site-header.is-scrolled .brand__logo--light,
.site-header--light .brand__logo--light {
  display: none;
}
.site-header.is-scrolled .brand__logo--dark,
.site-header--light .brand__logo--dark {
  display: block;
}
.site-header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.button--login {
  min-height: 44px;
  padding-inline: 19px;
  color: inherit;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}
.site-header.is-scrolled .button--login,
.site-header--light .button--login {
  color: var(--ink);
  border-color: rgba(16, 37, 49, 0.2);
  background: rgba(255, 255, 255, 0.42);
}
.site-footer__logo {
  display: block;
  width: min(250px, 100%);
  height: auto;
}
.site-footer__tagline {
  margin: 16px 0 0;
  color: #7ce1d8;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.legal-page,
.book-demo-page {
  background: #f7faf9;
}
.legal-main,
.book-demo-main {
  padding-top: var(--header-height);
}
.legal-hero {
  padding: clamp(82px, 10vw, 135px) 0 clamp(48px, 6vw, 78px);
  background: linear-gradient(145deg, #f4faf9, #eef7f5);
}
.legal-hero h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 400;
}
.legal-hero > div > p:last-child {
  margin: 22px 0 0;
  color: var(--ink-soft);
}
.legal-content {
  padding: 0 0 clamp(95px, 11vw, 155px);
  background: #f7faf9;
}
.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(16, 37, 49, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 75px rgba(18, 58, 66, 0.08);
  color: #51666e;
  font-size: 1.02rem;
  line-height: 1.78;
}
.legal-card h2 {
  margin: 38px 0 12px;
  color: #102531;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.legal-card h2:first-of-type {
  margin-top: 20px;
}
.legal-card a {
  color: var(--teal-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-card ul {
  padding-left: 22px;
}
.book-demo {
  position: relative;
  padding: clamp(86px, 10vw, 140px) 0 clamp(105px, 12vw, 170px);
  overflow: hidden;
  background: radial-gradient(
      circle at 10% 12%,
      rgba(22, 166, 166, 0.14),
      transparent 30%
    ),
    linear-gradient(145deg, #f7faf9, #eef7f5);
}
.book-demo__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}
.book-demo__copy {
  padding-top: 28px;
}
.book-demo h1 {
  font-size: clamp(3.6rem, 6.5vw, 7rem);
  font-weight: 400;
  line-height: 0.98;
}
.book-demo__lead {
  max-width: 620px;
  margin: 34px 0 0;
  color: #566d75;
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  line-height: 1.65;
}
.book-demo__assurance {
  display: grid;
  gap: 12px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgba(16, 37, 49, 0.12);
}
.book-demo__assurance p {
  margin: 0;
  color: #60757b;
  font-size: 0.96rem;
}
.demo-form-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(16, 37, 49, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 85px rgba(18, 58, 66, 0.12);
}
.demo-form h2 {
  margin: 0 0 30px;
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.demo-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.demo-field {
  margin-bottom: 20px;
}
.demo-field label {
  display: block;
  margin-bottom: 8px;
  color: #203a44;
  font-size: 0.86rem;
  font-weight: 600;
}
.demo-field input,
.demo-field select,
.demo-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 37, 49, 0.18);
  border-radius: 12px;
  padding: 13px 14px;
  color: #102531;
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.demo-field input:focus,
.demo-field select:focus,
.demo-field textarea:focus {
  border-color: #0b9294;
  box-shadow: 0 0 0 4px rgba(11, 146, 148, 0.11);
}
.demo-field.is-invalid input,
.demo-field.is-invalid select {
  border-color: #bd4d4d;
}
.demo-error {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: #a53c3c;
  font-size: 0.76rem;
}
.demo-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.button--outline-teal {
  color: #087d80;
  border-color: rgba(8, 125, 128, 0.35);
  background: #fff;
}
.demo-form__status {
  min-height: 24px;
  margin-top: 18px;
  font-size: 0.9rem;
}
.demo-form__status.ok {
  color: #177657;
}
.demo-form__status.bad {
  color: #a53c3c;
}
.demo-form__fineprint {
  margin: 12px 0 0;
  color: #73858a;
  font-size: 0.76rem;
}
.cf-turnstile {
  margin-top: 4px;
}
@media (max-width: 1080px) {
  .site-header__actions {
    display: flex;
  }
  .book-demo__grid {
    grid-template-columns: 1fr;
  }
  .demo-form-card {
    max-width: 760px;
  }
  .desktop-cta {
    display: inline-flex;
  }
}
@media (max-width: 760px) {
  .brand {
    height: 38px;
  }
  .brand__logo {
    height: 34px;
  }
  .site-header__actions {
    gap: 6px;
  }
  .site-header__actions .button {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }
  .button--login {
    display: none;
  }
  .book-demo {
    padding: 72px 0 100px;
  }
  .book-demo h1 {
    font-size: clamp(3rem, 13vw, 4.7rem);
  }
  .demo-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .demo-form-card {
    padding: 25px 20px;
    border-radius: 22px;
  }
  .legal-hero {
    padding-top: 70px;
  }
  .legal-card {
    padding: 30px 22px;
    border-radius: 20px;
  }
  .site-footer__logo {
    width: 210px;
  }
}
