:root {
  --grey-0: #fff;
  --grey-10: #f8f9fc;
  --grey-15: #f0f1f5;
  --grey-20: #eff2f7;
  --grey-50: #e6eaf0;
  --grey-100: #e1e6ec;
  --grey-200: #cdd4dc;
  --grey-300: #b2bbc5;
  --grey-800: #45474d;
  --grey-900: #2f3034;
  --grey-1000: #212226;
  --grey-1200: #121317;
  --blue: #3279f9;
  --emerald: #16a36b;
  --font: "Bricolage Grotesque", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
  --page: clamp(18px, 4vw, 72px);
  --max: 1728px;
  --ease: cubic-bezier(.23, 1, .32, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--grey-10);
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--grey-1200);
  background: var(--grey-10);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, h4 { margin: 0; }

.container {
  max-width: calc(var(--max) + var(--page) * 2);
  margin: 0 auto;
  padding: 0 var(--page);
}

.section {
  padding: clamp(76px, 10vw, 160px) 0;
  position: relative;
  overflow: clip;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 64px;
  padding: 0 var(--page);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,.76);
  border-bottom: 1px solid rgba(33,34,38,.06);
  backdrop-filter: blur(22px) saturate(1.5);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.site-nav.is-scrolled {
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 28px rgba(33,34,38,.045);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 550;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.brand span span { color: var(--blue); font-weight: 360; }

.brand-mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--grey-1200);
  color: white;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--grey-800);
  font-size: 14px;
}

.nav-links a { transition: color .2s var(--ease); }
.nav-links a:hover { color: var(--grey-1200); }

.nav-cta,
.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 550;
  transition: transform .32s var(--ease), background .38s var(--ease), border .38s var(--ease), color .28s var(--ease), box-shadow .45s var(--ease), filter .45s var(--ease);
}

.nav-cta,
.btn-secondary {
  background: var(--grey-10);
  border: 1px solid var(--grey-100);
  color: var(--grey-1200);
}

.btn-primary {
  background: var(--grey-1200);
  color: white;
}

.site-nav .nav-cta {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue) 0%, #164cc9 54%, var(--grey-1200) 100%);
  background-size: 140% 140%;
  background-position: 0% 50%;
  color: white;
  box-shadow: 0 16px 36px -26px rgba(50,121,249,.78), inset 0 1px 0 rgba(255,255,255,.22);
}

.btn:hover,
.nav-cta:hover { transform: translateY(-1px); }
.btn-primary:hover { background: var(--grey-900); }
.btn-secondary:hover { background: white; border-color: var(--grey-200); }
.site-nav .nav-cta:hover {
  background-position: 100% 50%;
  box-shadow: 0 20px 42px -26px rgba(50,121,249,.9), inset 0 1px 0 rgba(255,255,255,.28);
  filter: saturate(1.05);
}

.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 64px 0 0;
  overflow: visible;
  background: linear-gradient(180deg, rgba(50,121,249,.08), white 42%, var(--grey-10));
  border-bottom: 0;
}

.grid-bg {
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image: linear-gradient(to right, rgba(33,34,38,.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(33,34,38,.06) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at 50% 10%, #000 20%, transparent 74%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  grid-template-rows: auto auto;
  min-height: calc(100svh - 64px);
  gap: clamp(40px, 5vh, 64px) clamp(88px, 9vw, 152px);
  align-content: center;
  align-items: center;
  min-width: 0;
}

.hero-inner > * { min-width: 0; }

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.7vw, 24px);
  min-height: clamp(384px, 31vw, 448px);
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(33,34,38,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  color: var(--grey-800);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before { display: none; }

.eyebrow.light {
  color: rgba(255,255,255,.76);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.34);
}

.hero h1 {
  max-width: 100%;
  font-weight: 430;
  letter-spacing: -.028em;
  line-height: .98;
}

.accent-gradient {
  color: transparent;
  background: linear-gradient(95deg, var(--blue), #164cc9 52%, var(--grey-1200));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subhead,
.section-head p,
.wide-head p,
.trust-copy p,
.split-section p,
.cta-card p {
  color: var(--grey-800);
  font-size: clamp(1.02rem, 1.1vw, 1.28rem);
  line-height: 1.58;
}

.hero-subhead { max-width: 62ch; }

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: space-between;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--grey-900);
  font-size: clamp(12px, .78vw, 13px);
  font-weight: 520;
  line-height: 1.15;
  white-space: nowrap;
}

.hero-benefits li::before {
  content: "✓";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.hero-benefits span {
  color: var(--grey-800);
  font-weight: 450;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #164cc9 52%, var(--grey-1200) 100%);
  background-size: 145% 145%;
  background-position: 0% 50%;
  box-shadow: 0 18px 44px -24px rgba(50,121,249,.85), inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .34s var(--ease), background-position .62s var(--ease), box-shadow .5s var(--ease), filter .5s var(--ease);
}

.hero-actions .btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 22px 48px -24px rgba(50,121,249,.95), inset 0 1px 0 rgba(255,255,255,.28);
  filter: saturate(1.08) brightness(1.02);
}

.service-marquee {
  position: relative;
  grid-column: 1 / -1;
  z-index: 5;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  contain: layout;
  overflow: visible;
  padding: 16px 0 0;
  margin: 0;
  border-top: 0;
  transform: translateZ(0);
}

.service-marquee::before,
.service-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 20;
  width: 240px;
  pointer-events: none;
}

.service-marquee::before {
  left: -112px;
  background: linear-gradient(90deg, var(--grey-10) 0%, var(--grey-10) 34%, rgba(248,249,252,.94) 58%, rgba(248,249,252,0) 100%);
}

.service-marquee::after {
  right: -112px;
  background: linear-gradient(270deg, var(--grey-10) 0%, var(--grey-10) 34%, rgba(248,249,252,.94) 58%, rgba(248,249,252,0) 100%);
}

.service-track {
  position: relative;
  z-index: 8;
  display: flex;
  width: max-content;
  gap: 48px;
  animation: serviceMarquee 34s linear infinite;
  transform: translateX(128px);
}

.service-marquee:hover .service-track,
.service-marquee:focus-within .service-track {
  animation-play-state: paused;
}

.trust-tags {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(32px, 6vw, 88px);
  padding: 0;
  margin: 0;
  color: var(--grey-800);
  font-family: var(--mono);
  font-size: 12px;
  list-style: none;
}

.trust-tags li {
  position: relative;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.trust-tags li:hover,
.trust-tags li:focus-within {
  z-index: 40;
}

.checkpoint {
  width: max-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.checkpoint::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
}

.trust-tags [role="tooltip"] {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: calc(100% + 10px);
  z-index: 30;
  width: min(270px, 78vw);
  padding: 12px 14px;
  border: 1px solid rgba(33,34,38,.12);
  border-radius: 14px;
  background: rgba(18,19,23,.96);
  color: white;
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  box-shadow: 0 18px 44px rgba(18,19,23,.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}

.trust-tags [role="tooltip"]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 0;
  width: 10px;
  height: 10px;
  background: rgba(18,19,23,.96);
  transform: translate(-50%, 5px) rotate(45deg);
}

.trust-tags li:hover [role="tooltip"],
.trust-tags li:focus-within [role="tooltip"] {
  opacity: 1;
  transform: translate(-50%, 0);
}

.checkpoint:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.hero-demo,
.navigator-mockup {
  background: white;
  border: 1px solid rgba(33,34,38,.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 48px 90px -34px rgba(18,19,23,.28), 0 16px 36px -24px rgba(18,19,23,.16);
}

.hero-demo-wrap {
  position: relative;
  min-height: clamp(384px, 31vw, 448px);
  height: auto;
  display: flex;
  align-self: center;
  align-items: center;
}

.hero-demo {
  min-height: clamp(384px, 31vw, 448px);
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-self: center;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--grey-10);
  border-bottom: 1px solid var(--grey-100);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-200);
}

.browser-bar span:nth-child(1) { background: #ff6b5c; }
.browser-bar span:nth-child(2) { background: #f5c518; }
.browser-bar span:nth-child(3) { background: #4ed15d; }
.browser-bar p {
  margin-left: 8px;
  padding: 4px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--grey-100);
  color: var(--grey-800);
  font-family: var(--mono);
  font-size: 11px;
}

.demo-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(16px, 2vw, 24px);
}

.demo-status,
.mockup-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.demo-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(50,121,249,.12);
  animation: pulse 1.9s infinite;
}

.demo-label {
  color: var(--grey-800);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--grey-100);
  border-radius: 16px;
  background: var(--grey-10);
}

.hero-search label {
  color: var(--grey-800);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--grey-1200);
  font-size: 15px;
  font-weight: 560;
}

.hero-search input:focus-visible {
  outline: 2px solid rgba(50,121,249,.35);
  outline-offset: 4px;
  border-radius: 8px;
}

.hero-search button {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--grey-1200);
  color: white;
  font-size: 12px;
  font-weight: 560;
}

.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-questions button {
  border: 1px solid var(--grey-100);
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--grey-10);
  color: var(--grey-900);
  font-size: 12px;
  transition: all .2s var(--ease);
}

.quick-questions button:hover,
.quick-questions button.is-active {
  background: var(--grey-1200);
  border-color: var(--grey-1200);
  color: white;
}

.patient-query {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--grey-100);
  background: var(--grey-10);
}

.patient-query span {
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.patient-query strong {
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  font-weight: 520;
  line-height: 1.2;
}

.routing-line {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--grey-800);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.routing-line span {
  flex: 1;
  height: 1px;
  background: var(--grey-100);
}

.demo-result,
.target-bubble {
  padding: 20px;
  border-radius: 20px;
  color: white;
  background: linear-gradient(135deg, var(--grey-1200), var(--grey-1000));
}

.demo-result {
  padding: 16px;
  border-radius: 16px;
}

.demo-result small { margin-bottom: 8px; }

.demo-result strong {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
}

.demo-result em {
  margin-top: 8px;
  padding: 8px;
}

.demo-result small,
.target-bubble small {
  display: block;
  margin-bottom: 9px;
  color: #98bfff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.demo-result strong,
.target-bubble strong {
  display: block;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 560;
  line-height: 1.08;
}

.demo-result em,
.target-bubble em {
  display: inline-flex;
  margin-top: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  color: var(--grey-15);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
}

.section-head {
  max-width: 900px;
  margin-bottom: clamp(44px, 6vw, 86px);
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head.centered .eyebrow {
  margin-inline: auto;
  justify-content: center;
}

.section-head.centered .eyebrow::before { display: none; }

.section-head h2,
.wide-head h2,
.trust-copy h2,
.split-section h2,
.cta-card h2 {
  margin-top: 16px;
  line-height: 1.04;
  letter-spacing: -.024em;
  font-weight: 430;
}

.section-head p,
.wide-head p {
  max-width: 760px;
  margin: 18px auto 0;
}

main > .section:not(.hero) p,
main > .section:not(.hero) li {
  font-size: clamp(1.02rem, 1.03vw, 1.16rem);
}

.term-tip,
.info-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}

.term-tip span[role="tooltip"],
.info-dot span[role="tooltip"] {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 20;
  width: min(260px, 72vw);
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--grey-1200);
  color: white;
  box-shadow: 0 18px 48px rgba(18,19,23,.22);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.term-tip span[role="tooltip"]::after,
.info-dot span[role="tooltip"]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 12px;
  height: 12px;
  background: inherit;
  transform: translate(-50%, -6px) rotate(45deg);
}

.term-tip:hover span[role="tooltip"],
.term-tip:focus-visible span[role="tooltip"],
.term-tip.is-open span[role="tooltip"],
.info-dot:hover span[role="tooltip"],
.info-dot:focus-visible span[role="tooltip"],
.info-dot.is-open span[role="tooltip"] {
  opacity: 1;
  transform: translate(-50%, 0);
}

.term-tip.dark span[role="tooltip"] {
  background: white;
  color: var(--grey-1200);
}

.info-dot {
  width: 19px;
  height: 19px;
  margin-left: 6px;
  border-radius: 50%;
  background: rgba(50,121,249,.12);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  vertical-align: middle;
}

.segments {
  padding-top: 80px;
  padding-bottom: 80px;
}

.segment-carousel {
  position: relative;
  overflow: hidden;
}

.segment-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.segment-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--grey-100);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--grey-1200);
}

.segment-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.segment-grid {
  display: flex;
  gap: 16px;
  overflow: visible;
  will-change: transform;
}

.image-card {
  flex: 0 0 clamp(300px, 29vw, 420px);
  scroll-snap-align: start;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--grey-100);
  border-radius: 24px;
  background: white;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border .28s var(--ease);
}

.image-card:hover {
  transform: translateY(-3px);
  border-color: rgba(50,121,249,.45);
  box-shadow: 0 28px 70px rgba(50,121,249,.08);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1);
  opacity: .88;
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.image-card:hover img {
  transform: scale(1.045);
  filter: grayscale(0);
}

.image-card div {
  padding: 22px;
}

.image-card span,
.principle-row span,
.bento-card span,
.process-card span,
.price-card span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.image-card h3,
.principle-row h3,
.bento-card h3,
.process-card h3,
.market-option h3,
.price-card h3 {
  margin-top: 10px;
  color: var(--grey-1200);
  line-height: 1.1;
  font-weight: 560;
}

.image-card p,
.principle-row p,
.bento-card p,
.process-card p,
.market-option p,
.price-card p,
.qual-card p,
.pack-list p,
.faq details p {
  margin-top: 12px;
  color: var(--grey-800);
  font-size: 15px;
  line-height: 1.62;
}

.intent-section {
  padding-top: 80px;
  background: white;
  border-bottom: 1px solid var(--grey-100);
  overflow: visible;
}

.intent-section .container { overflow: visible; }

.intent-scroll-stage {
  position: relative;
  min-height: 360vh;
  margin-top: clamp(80px, 10vh, 128px);
}

.navigator-mockup {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px);
}

.intent-scroll-stage .navigator-mockup {
  position: sticky;
  top: clamp(160px, 28vh, 288px);
  z-index: 4;
  transform: scale(var(--intent-scale, .72));
  transform-origin: center center;
  transition: none;
}

.mockup-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--grey-100);
}

.mockup-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid var(--grey-100);
  border-radius: 18px;
  background: var(--grey-10);
}

.mockup-search label {
  color: var(--grey-800);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.mockup-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--grey-1200);
  font-size: 19px;
  font-weight: 520;
}

.mockup-search button,
.price-card button {
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--grey-1200);
  color: white;
  font-weight: 550;
}

.navigator-questions {
  margin-top: 18px;
  justify-content: center;
}

.mockup-routing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}

.patient-bubble {
  padding: 20px;
  border: 1px solid var(--grey-100);
  border-radius: 20px;
  background: var(--grey-10);
  color: var(--grey-1200);
  font-size: 22px;
  font-weight: 540;
}

.route-pulse {
  display: flex;
  gap: 5px;
  align-items: center;
}

.route-pulse span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: bounceDot 1.1s infinite ease-in-out;
}

.route-pulse span:nth-child(2) { animation-delay: .15s; }
.route-pulse span:nth-child(3) { animation-delay: .3s; }

.navigator-mockup [data-intent-part] {
  transition: opacity .35s var(--ease), filter .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}

.navigator-mockup.is-guided [data-intent-part] {
  opacity: .32;
  filter: blur(1.2px) grayscale(.35);
}

.navigator-mockup[data-active="search"] [data-intent-part="search"],
.navigator-mockup[data-active="quick"] [data-intent-part="quick"],
.navigator-mockup[data-active="process"] [data-intent-part="process"],
.navigator-mockup[data-active="result"] [data-intent-part="result"] {
  opacity: 1;
  filter: none;
  transform: translateY(-2px);
  border-color: rgba(50,121,249,.65);
  box-shadow: 0 0 0 2px rgba(50,121,249,.22), 0 18px 52px -32px rgba(50,121,249,.78);
}

.navigator-mockup[data-active="process"] .route-pulse {
  box-shadow: none;
}

.intent-step-notes {
  position: sticky;
  top: var(--intent-note-top, clamp(600px, 72vh, 680px));
  z-index: 6;
  width: min(430px, calc(100vw - var(--page) * 2));
  min-height: 148px;
  margin: 0 0 0 var(--intent-note-left, calc(50% - 215px));
  pointer-events: none;
  transition: top .28s var(--ease), margin-left .28s var(--ease);
}

.intent-scroll-stage[data-active="search"] {
  --intent-note-top: clamp(360px, 48vh, 472px);
  --intent-note-left: calc(50% - 490px);
}

.intent-scroll-stage[data-active="quick"] {
  --intent-note-top: clamp(440px, 58vh, 552px);
  --intent-note-left: calc(50% + 70px);
}

.intent-scroll-stage[data-active="process"] {
  --intent-note-top: clamp(624px, 78vh, 736px);
  --intent-note-left: calc(50% - 490px);
}

.intent-scroll-stage[data-active="result"] {
  --intent-note-top: clamp(624px, 78vh, 736px);
  --intent-note-left: calc(50% + 70px);
}

.intent-step-note {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 18px;
  align-items: start;
  padding: 22px 26px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue), #164cc9 58%, var(--grey-1200));
  color: white;
  box-shadow: 0 30px 86px -42px rgba(50,121,249,.82), inset 0 1px 0 rgba(255,255,255,.26);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}

.intent-step-note::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 42px;
  width: 18px;
  height: 18px;
  border-left: 1px solid rgba(255,255,255,.22);
  border-top: 1px solid rgba(255,255,255,.22);
  background: var(--blue);
  transform: rotate(45deg);
}

.intent-scroll-stage[data-active="quick"] .intent-step-note::before,
.intent-scroll-stage[data-active="result"] .intent-step-note::before {
  left: auto;
  right: 42px;
}

.intent-step-note.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intent-step-note span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,.16);
  color: white;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
}

.intent-step-note h3 {
  margin: 0;
  color: white;
  line-height: 1.05;
  font-weight: 560;
  letter-spacing: -.012em;
}

.intent-step-note p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.5;
}

.navigator-bento-wrap {
  margin-top: clamp(72px, 8vw, 112px);
  overflow: clip;
}

.navigator-bento-viewport {
  overflow: hidden;
  margin-right: calc(var(--page) * -1);
  padding-right: var(--page);
}

.carousel-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.carousel-head h3 {
  font-weight: 480;
  letter-spacing: -.02em;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-controls button {
  border: 1px solid var(--grey-100);
  background: white;
  color: var(--grey-1200);
}

.carousel-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}

.carousel-controls button:hover {
  transform: translateY(-2px);
  border-color: rgba(50,121,249,.35);
  background: rgba(50,121,249,.08);
}

.carousel-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.navigator-bento-grid {
  display: flex;
  gap: 16px;
  width: max-content;
  padding-right: var(--page);
  will-change: transform;
}

.navigator-card {
  flex: 0 0 clamp(320px, 31vw, 460px);
  min-height: 260px;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 28px;
  border: 1px solid var(--grey-100);
  background: var(--grey-10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 28px 70px -54px rgba(18,19,23,.35);
}

.navigator-card h4 {
  margin-top: 32px;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -.018em;
  background: linear-gradient(115deg, var(--blue), #1646aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.navigator-card p {
  margin-top: 16px;
  color: var(--grey-800);
  line-height: 1.58;
}

.navigator-card.result {
  flex-basis: clamp(380px, 39vw, 620px);
  color: white;
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(135deg, #0d7a4d, #22a36f);
}

.navigator-card.result span,
.navigator-card.result p { color: rgba(255,255,255,.82); }
.navigator-card.result h4 {
  background: none;
  color: white;
}

.navigator-solution-alt {
  margin-top: clamp(40px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding-block: 8px;
}

.solution-alt-copy {
  position: sticky;
  top: 96px;
}

.solution-alt-copy h3 {
  margin-top: 14px;
  max-width: 12ch;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1.02;
  font-weight: 440;
  letter-spacing: -.024em;
}

.solution-alt-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--grey-800);
  line-height: 1.58;
}

.solution-rail {
  position: relative;
  display: grid;
  gap: 14px;
}

.solution-rail::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 28px;
  width: 1px;
  background: linear-gradient(var(--blue), rgba(50,121,249,.12));
}

.solution-rail article {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--grey-100);
  border-radius: 24px;
  background: white;
  box-shadow: 0 22px 58px -48px rgba(18,19,23,.32);
}

.solution-rail article span {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: rgba(50,121,249,.09);
  font-family: var(--mono);
}

.solution-rail article strong {
  color: var(--grey-1200);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
}

.solution-rail article p {
  margin-top: 6px;
  color: var(--grey-800);
  line-height: 1.5;
}

.features { background: var(--grey-10); }

.principle-rows {
  display: grid;
  gap: 24px;
}

.principle-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(24px, 4vw, 56px);
  border: 1px solid var(--grey-100);
  border-radius: 32px;
  background: white;
}

.principle-row:nth-child(even) figure {
  order: -1;
}

.principle-copy h3 {
  margin-top: 18px;
  line-height: 1.02;
  font-weight: 430;
  letter-spacing: -.024em;
}

.principle-copy h3 > span:not([role="tooltip"]) {
  font: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.principle-copy p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 680px;
  color: var(--grey-800);
  font-size: clamp(1rem, 1.1vw, 1.24rem);
  line-height: 1.6;
}

.principle-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(18,19,23,.08);
  list-style: none;
}

.principle-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grey-800);
  font-family: var(--mono);
  font-size: clamp(10px, .74vw, 11px);
  line-height: 1.2;
  white-space: nowrap;
}

.principle-trust li::before {
  content: "✓";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), #1646aa);
  color: white;
  font-size: 10px;
  font-family: var(--body);
  font-weight: 760;
}

.principle-row figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--grey-50);
}

.principle-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(.85);
}

.try-me-sketch {
  position: absolute;
  left: -138px;
  top: 34px;
  width: 160px;
  height: 118px;
  color: var(--grey-1200);
  opacity: .72;
  pointer-events: none;
  transform-origin: 54% 54%;
}

.try-me-sketch svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.try-circle,
.try-arrow,
.try-arrow-head {
  stroke-width: 2.2;
  stroke-dasharray: 4 5;
}

.try-me-sketch span {
  position: absolute;
  left: 24px;
  top: 28px;
  width: 96px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  font-family: "Comic Sans MS", "Bradley Hand", var(--font);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: .02em;
}

.hero-try {
  left: -124px;
  top: 66px;
  transform: rotate(-4deg);
  animation: tryWiggle 7.5s ease-in-out 1.4s infinite;
}

.status-quo {
  padding: clamp(56px, 6vw, 88px) 0;
  color: white;
  background: var(--grey-1200);
}

.status-quo .section-head p.eyebrow {
  justify-self: start;
  margin: 0;
  max-width: none;
  font-size: 12px;
  line-height: 1.2;
}

.status-quo .section-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  grid-template-rows: auto auto;
  gap: 18px clamp(40px, 6vw, 96px);
  align-items: end;
}

.status-quo .section-head .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.status-quo .section-head h2 {
  grid-column: 1;
  grid-row: 2;
  text-wrap: balance;
}

.status-quo .section-head h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(95deg, #7fb0ff, var(--blue) 48%, white);
  -webkit-background-clip: text;
  background-clip: text;
}

.status-quo .section-head p { color: rgba(255,255,255,.72); }
.status-quo .section-head p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  max-width: 52ch;
  align-self: end;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(240px, auto));
  gap: 16px;
}

.bento-card {
  position: relative;
  grid-column: span 4;
  min-height: 0;
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 26px;
  background: rgba(255,255,255,.055);
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.bento-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  z-index: 0;
  width: clamp(130px, 11vw, 190px);
  height: clamp(130px, 11vw, 190px);
  border: 1px solid rgba(127,176,255,.18);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(127,176,255,.12), rgba(255,255,255,0)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 11px);
  opacity: .82;
  transform: rotate(12deg);
  pointer-events: none;
}

.bento-grid .bento-card:nth-child(1)::after {
  right: auto;
  left: -76px;
  bottom: -72px;
  width: clamp(180px, 16vw, 260px);
  height: clamp(118px, 10vw, 172px);
  border-radius: 999px;
  transform: rotate(-11deg);
}

.bento-grid .bento-card:nth-child(2)::after {
  right: -54px;
  top: -58px;
  bottom: auto;
  border-radius: 999px;
  transform: rotate(20deg);
}

.bento-grid .bento-card:nth-child(3)::after {
  right: auto;
  left: -60px;
  bottom: 20px;
  border-radius: 28px;
  transform: rotate(-18deg);
}

.bento-grid .bento-card:nth-child(4)::after {
  right: 24px;
  bottom: -82px;
  width: clamp(220px, 18vw, 320px);
  height: clamp(92px, 8vw, 132px);
  border-radius: 999px;
  transform: rotate(6deg);
}

.bento-grid .bento-card:nth-child(5)::after {
  right: auto;
  left: 50%;
  bottom: -92px;
  width: clamp(150px, 13vw, 230px);
  height: clamp(150px, 13vw, 230px);
  border-radius: 42px;
  transform: translateX(-50%) rotate(45deg);
}

.bento-grid .bento-card:nth-child(6)::after {
  right: -36px;
  top: -48px;
  bottom: auto;
  width: clamp(120px, 10vw, 176px);
  height: clamp(180px, 14vw, 240px);
  border-radius: 30px;
  transform: rotate(28deg);
}

.bento-grid .bento-card:nth-child(7)::after {
  right: auto;
  left: -46px;
  top: -46px;
  bottom: auto;
  width: clamp(132px, 12vw, 196px);
  height: clamp(132px, 12vw, 196px);
  border-radius: 999px;
  transform: rotate(-24deg);
}

.bento-card > * {
  position: relative;
  z-index: 1;
}

.bento-card:not(.statement):hover {
  transform: translateY(-4px);
  border-color: rgba(50,121,249,.85);
  background: linear-gradient(135deg, rgba(50,121,249,.9), rgba(50,121,249,.2));
  box-shadow: 0 24px 64px -38px rgba(50,121,249,.86);
}

.bento-card > i {
  width: clamp(54px, 6vh, 68px);
  height: clamp(54px, 6vh, 68px);
  margin-bottom: clamp(14px, 1.8vh, 22px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(127,176,255,.14);
  color: #7fb0ff;
  font-style: normal;
  font-size: clamp(24px, 2.8vh, 34px);
  font-weight: 640;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.bento-card:not(.statement):hover > i {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255,255,255,.18);
  color: white;
}

.status-quo .bento-grid .bento-card h3 {
  max-width: 12ch;
  color: white;
  line-height: 1.02;
  letter-spacing: -.022em;
  font-weight: 520;
}

.status-quo .bento-grid .bento-card p {
  max-width: none;
  margin-top: clamp(12px, 1.6vh, 18px);
  color: rgba(255,255,255,.72);
  font-size: clamp(.98rem, .92vw, 1.1rem);
  line-height: 1.48;
}

.status-quo .bento-grid .bento-card:not(.statement) p {
  display: block;
  overflow: visible;
}

.bento-card:not(.statement):hover p {
  color: rgba(255,255,255,.78);
}

.bento-card:not(.statement) > span {
  display: none;
}

.bento-card.statement {
  grid-column: 1 / span 8;
  grid-row: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  gap: clamp(18px, 2vw, 32px);
  padding: clamp(30px, 3vw, 44px);
  border-color: rgba(50,121,249,.85);
  background: linear-gradient(135deg, rgba(50,121,249,.9), rgba(50,121,249,.2));
  box-shadow: 0 28px 78px -48px rgba(50,121,249,.9);
}

.bento-card.statement::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 250deg, rgba(255,255,255,.75) 274deg, transparent 300deg, transparent 360deg);
  opacity: .5;
  animation: statusBorderOrbit 7.5s linear infinite;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  padding: 1px;
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.bento-card.statement:hover {
  transform: none;
}

.bento-card.statement > i {
  align-self: center;
  margin: 0;
  background: rgba(255,255,255,.18);
  color: white;
}

.status-quo .bento-grid .bento-card.statement h3 {
  max-width: none;
  margin: 0 0 clamp(10px, 1vw, 14px);
  color: white;
}

.status-quo .bento-grid .bento-card.statement p {
  max-width: 64ch;
  margin-top: 0;
  color: white;
  font-size: clamp(1rem, .95vw, 1.18rem);
  line-height: 1.48;
  letter-spacing: 0;
}

.bento-grid .bento-card:nth-child(2) { grid-column: 9 / span 4; grid-row: 1; }
.bento-grid .bento-card:nth-child(3) { grid-column: 1 / span 4; grid-row: 2; }
.bento-grid .bento-card:nth-child(4) { grid-column: 5 / span 8; grid-row: 2; }
.bento-grid .bento-card:nth-child(5) { grid-column: 1 / span 6; grid-row: 3; }
.bento-grid .bento-card:nth-child(6) { grid-column: 7 / span 3; grid-row: 3; }
.bento-grid .bento-card:nth-child(7) { grid-column: 10 / span 3; grid-row: 3; }


.status-cta {
  position: relative;
  margin-top: clamp(40px, 5vw, 72px);
  padding: clamp(34px, 4vw, 56px);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  background: linear-gradient(135deg, var(--blue) 0%, #164cc9 46%, var(--grey-1200) 100%);
  box-shadow: 0 42px 110px -58px rgba(50,121,249,.95), inset 0 1px 0 rgba(255,255,255,.22);
  overflow: hidden;
}

.status-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,.2) 46%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 34px);
  opacity: .5;
  pointer-events: none;
}

.status-cta > * {
  position: relative;
  z-index: 1;
}

.status-cta p {
  max-width: 760px;
  color: white;
  line-height: 1.5;
  font-weight: 560;
}

.status-cta small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.45;
}

.status-actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.status-cta button {
  border: 0;
  border-radius: 999px;
  padding: 17px 24px;
  background: white;
  color: var(--grey-1200);
  font-weight: 700;
  box-shadow: 0 24px 52px -30px rgba(18,19,23,.72);
}

.status-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: white;
  font-weight: 600;
}

.status-summary {
  margin-top: clamp(40px, 5vw, 72px);
}

.status-summary > div:first-child {
  max-width: 760px;
}

.status-summary-note {
  flex: 0 1 420px;
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}

.status-summary-note h3 {
  color: white;
}

.status-summary-note p {
  margin: 0;
  color: white;
  line-height: 1.42;
  font-weight: 620;
}

@keyframes statusBorderOrbit {
  to { transform: rotate(1turn); }
}

.process {
  background: white;
  border-bottom: 1px solid var(--grey-100);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.process-sticky {
  position: sticky;
  top: 96px;
}

.process-sticky h2 {
  margin-top: 16px;
  max-width: 17ch;
  line-height: 1.03;
  letter-spacing: -.024em;
  font-weight: 430;
}

.process-sticky p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--grey-800);
  font-size: 1.2rem;
}

.process-cards {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-card {
  min-height: 420px;
  padding: 18px 18px 24px;
  border: 1px solid var(--grey-100);
  border-radius: 30px;
  background: var(--grey-10);
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.process-card img {
  width: 100%;
  align-self: center;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 32px;
  filter: grayscale(.75);
}

.process-card h3 {
  margin-top: 10px;
  line-height: 1.04;
  letter-spacing: -.018em;
  font-weight: 520;
}

.process-note,
.content-pack-import {
  margin-top: clamp(24px, 4vw, 56px);
}

.process-note {
  padding: clamp(24px, 4vw, 40px) var(--page);
  border: 1px solid var(--grey-100);
  border-radius: 28px;
  background: var(--grey-10);
}

.process-note .check-list {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-note > p:last-child {
  margin-top: 18px;
  color: var(--grey-800);
}

.wide-head {
  max-width: none;
}

.wide-head h2 {
  max-width: 25ch;
}

.wide-head p { margin-left: 0; }

.provider-row {
  width: min(calc(100% - var(--page) * 2), var(--max));
  margin: 44px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 16px;
  overflow-x: auto;
}

.provider-row article {
  min-height: 180px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--grey-100);
  background: white;
  font-size: clamp(1.3rem, 2.1vw, 2.2rem);
  line-height: 1.1;
  font-weight: 520;
}

.system-statement {
  margin-top: 34px;
  max-width: none;
  width: 100%;
  padding: clamp(24px, 3vw, 42px);
  border-radius: 28px;
  background: var(--grey-1200);
  color: white;
  font-size: clamp(1.3rem, 2.4vw, 2.7rem);
  line-height: 1.16;
}

.market {
  background: var(--grey-10);
}

.career-module {
  background: white;
}

.segments-alt {
  background: white;
  border-top: 1px solid var(--grey-100);
}

.audience-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.audience-board article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--grey-100);
  border-radius: 24px;
  background: var(--grey-10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.audience-board article:nth-child(odd) {
  transform: translateY(22px);
}

.audience-board article:hover {
  transform: translateY(-4px);
  border-color: rgba(50,121,249,.34);
  background: white;
}

.audience-board article:nth-child(odd):hover {
  transform: translateY(14px);
}

.audience-board span,
.service-map span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.audience-board h3 {
  margin-top: auto;
  font-size: clamp(1.25rem, 1.55vw, 1.75rem);
  line-height: 1.08;
}

.audience-board p {
  margin-top: 12px;
  color: var(--grey-800);
  line-height: 1.46;
  font-size: 15px;
}

.one-system-alt {
  background: var(--grey-10);
}

.service-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-map article {
  padding: 24px;
  border: 1px solid var(--grey-100);
  border-radius: 26px;
  background: white;
}

.service-map h3 {
  margin-top: 18px;
  font-size: clamp(1.4rem, 1.9vw, 2rem);
  line-height: 1.06;
}

.service-map ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-map li {
  display: flex;
  gap: 8px;
  color: var(--grey-800);
  font-size: 15px;
}

.service-map li::before {
  content: "✓";
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 760;
}

.market-comparison {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.market-option {
  grid-column: span 3;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--grey-100);
  border-radius: 24px;
  background: white;
}

.market-option.dentalflow {
  grid-column: span 12;
  min-height: auto;
  color: white;
  background: linear-gradient(135deg, var(--grey-1200), var(--grey-1000));
}

.market-option.dentalflow h3 { color: white; }
.market-option.dentalflow p { color: rgba(255,255,255,.75); max-width: 920px; font-size: clamp(1.1rem, 1.6vw, 1.5rem); }

.comparison-table {
  margin-top: 24px;
  border: 1px solid var(--grey-100);
  border-radius: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  background: white;
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  min-width: 760px;
}

.comparison-table [role="row"] + [role="row"] {
  border-top: 1px solid var(--grey-100);
}

.comparison-table span,
.comparison-table strong {
  padding: 16px 18px;
  border-right: 1px solid var(--grey-100);
  color: var(--grey-800);
  font-size: 15px;
  text-align: left;
}

.comparison-table span:last-child,
.comparison-table strong:last-child { border-right: 0; }

.comparison-table [role="columnheader"] {
  background: var(--grey-10);
  color: var(--grey-1200);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.comparison-table strong {
  color: var(--grey-1200);
  background: rgba(50,121,249,.08);
  font-weight: 650;
}

.trust-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--grey-100);
  border-radius: 36px;
  overflow: hidden;
  background: white;
}

.trust-visual {
  min-height: 420px;
  background: var(--grey-50);
}

.trust-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.85);
}

.trust-copy {
  padding: clamp(30px, 5vw, 70px);
}

.career-card .trust-visual {
  min-height: 460px;
}

.trust-compact {
  max-width: 980px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--grey-100);
  border-radius: 30px;
  background: white;
}

.trust-compact h2 {
  margin-top: 14px;
  max-width: 820px;
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1.03;
  font-weight: 440;
  letter-spacing: -.024em;
}

.trust-compact p:not(.eyebrow) {
  margin-top: 16px;
  max-width: 720px;
  color: var(--grey-800);
  font-size: 1.12rem;
  line-height: 1.55;
}

.trust-inline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--grey-800);
}

.check-list li::before {
  content: "✓";
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), #1646aa);
  color: white;
  font-size: 10px;
  font-weight: 760;
  flex: 0 0 auto;
}

.qualification,
.pricing,
.final-cta {
  background: white;
  border-top: 1px solid var(--grey-100);
}

.qualification-grid,
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.qual-card,
.price-card,
.pack-list,
.cta-card {
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid var(--grey-100);
  border-radius: 30px;
  background: var(--grey-10);
}

.qual-card h2 {
  line-height: 1.04;
  font-weight: 450;
  letter-spacing: -.022em;
}

.qual-card.muted {
  background: white;
}

.qual-card ul,
.price-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--grey-800);
  line-height: 1.7;
}

.qualification-grid {
  align-items: stretch;
}

.qualification .qual-card {
  display: flex;
  flex-direction: column;
}

.qualification .qual-card h3 {
  margin-top: 24px;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.qualification .qual-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.qualification .qual-card li {
  display: flex;
  gap: 10px;
  color: var(--grey-800);
  line-height: 1.48;
}

.qualification .qual-card li::before {
  content: "✓";
  width: 19px;
  height: 19px;
  margin-top: 2px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: white;
  background: var(--blue);
  font-size: 11px;
  font-weight: 760;
}

.qualification .qual-card.muted li::before {
  content: "×";
  background: var(--grey-1200);
}

.content-pack {
  background: var(--grey-10);
}

.package-comparison {
  background: var(--grey-10);
}

.package-comparison .market-comparison {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.package-comparison .market-option,
.package-comparison .market-option.dentalflow {
  grid-column: auto;
}

.pack-list {
  display: grid;
  gap: 10px;
  background: white;
}

.pack-list p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-100);
}

.pack-list p:last-child { border-bottom: 0; }

.pack-list strong {
  color: var(--grey-1200);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  max-width: 1180px;
  margin: 0 auto;
}

.pricing-info-card {
  max-width: 980px;
  margin: 0 auto 18px;
  padding: 18px 20px;
  border: 1px solid rgba(50,121,249,.18);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(50,121,249,.055);
}

.pricing-info-card > span,
.tooltip-hint > span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(50,121,249,.12);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.pricing-info-card p {
  margin: 0;
  color: var(--grey-800);
  line-height: 1.5;
  font-size: 15px;
}

.tooltip-hint {
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--grey-600);
  font-size: 13px;
}

.tooltip-hint > span {
  width: 9px;
  height: 9px;
  background: var(--blue);
  animation: pulse 1.8s var(--ease) infinite;
}

.tooltip-hint p {
  margin: 0;
}

.price-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: clamp(24px, 2.8vw, 34px);
  border-radius: 36px;
  background: white;
  box-shadow: 0 26px 70px -54px rgba(18,19,23,.38);
}

.price-card.popular {
  background: white;
  color: var(--grey-1200);
  transform: scale(1.02);
  border-color: rgba(50,121,249,.85);
  box-shadow: 0 28px 78px -52px rgba(50,121,249,.75);
}

.price-card.popular h3 { color: var(--grey-1200); }
.price-card.popular p,
.price-card.popular li { color: var(--grey-800); }

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 650;
}

.tier-label {
  color: var(--grey-600);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
}

.price-card .card-badge {
  width: max-content;
  margin-top: 12px;
  padding: 7px 12px;
  border: 1px solid var(--grey-100);
  border-radius: 999px;
  background: var(--grey-10);
  color: var(--grey-800);
  font-size: 13px;
}

.price {
  margin-top: 20px;
  color: var(--grey-1200);
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  line-height: 1;
  font-weight: 720;
  letter-spacing: -.02em;
}

.price-note {
  margin-top: 6px;
  color: var(--grey-600);
  font-size: 12px;
}

.price-for {
  margin-top: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--grey-100);
  color: var(--grey-800);
  font-size: 15px;
  line-height: 1.5;
}

.price-card button {
  margin-top: auto;
}

.price-card li {
  position: relative;
}

.feature-list {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 9px;
  color: var(--grey-1200);
  font-family: var(--font);
  font-size: clamp(14px, .82vw, 15px);
  font-weight: 430;
  line-height: 1.46;
}

.feature-item::before {
  content: "✓";
  color: var(--blue);
  font-weight: 780;
}

.feature-item span {
  min-width: 0;
  color: var(--grey-1200);
}

.feature-item strong {
  color: transparent;
  background: linear-gradient(95deg, var(--blue), #164cc9 52%, var(--grey-1200));
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 720;
}

.price-card .info-btn {
  width: 21px;
  height: 21px;
  border: 0;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(50,121,249,.09);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(50,121,249,.08);
  opacity: .78;
  transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease), opacity .2s var(--ease);
}

.price-card .info-btn:hover,
.feature-item.tooltip-open .info-btn {
  color: #1646aa;
  background: rgba(50,121,249,.16);
  opacity: 1;
  transform: translateY(-1px);
}

.feature-tooltip-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0 0 0 25px;
  border: 1px solid rgba(50,121,249,.15);
  border-radius: 16px;
  background: linear-gradient(135deg, #f8f9ff, #eef4ff);
  transition: max-height .38s var(--ease), opacity .3s var(--ease), margin-top .3s var(--ease);
}

.tooltip-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
}

.tooltip-row + .tooltip-row {
  border-top: 1px solid rgba(50,121,249,.1);
}

.tooltip-row p {
  margin: 0;
  color: var(--grey-800);
  font-size: 13px;
  line-height: 1.45;
}

.tooltip-tag {
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 3px 7px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  font-weight: 700;
  text-transform: uppercase;
}

.seo-tag {
  color: var(--blue);
  background: rgba(50,121,249,.14);
}

.patient-tag {
  color: #047857;
  background: rgba(16,185,129,.12);
}

.price-card > button {
  width: 100%;
  margin-top: 22px;
  border: 0;
  border-radius: 999px;
  padding: 15px 18px;
  background: linear-gradient(135deg, var(--blue), #1646aa);
  color: white;
  font-weight: 700;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s var(--ease);
}

.price-card > button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 18px 36px -24px rgba(50,121,249,.72);
}

.pricing-note {
  margin: 24px auto 0;
  color: var(--grey-800);
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
}

.faq {
  background: var(--grey-10);
}

.faq-list {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--grey-100);
  border-radius: 20px;
  background: white;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }
.faq details p { padding: 0 24px 24px; }

.cta-card {
  color: white;
  background: linear-gradient(135deg, var(--blue), #1646aa 45%, var(--grey-1200));
  box-shadow: 0 40px 110px -70px rgba(50,121,249,.9);
}

.cta-card h2 {
  max-width: 1000px;
  color: white;
}

.cta-card p { color: rgba(255,255,255,.72); max-width: 780px; margin-top: 20px; }
.cta-card .hero-actions { margin-top: 30px; }
.cta-card .btn-primary { background: white; color: var(--grey-1200); }
.cta-card .btn-secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: white; }
.cta-card .cta-trust { font-family: var(--mono); font-size: 12px; }

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

.cta-side-panel {
  min-height: 100%;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}

.cta-side-panel span {
  color: rgba(255,255,255,.74);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cta-side-panel h3 {
  margin-top: 18px;
  color: white;
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
  line-height: 1.04;
  font-weight: 480;
  letter-spacing: -.02em;
}

.cta-side-panel ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.cta-side-panel li {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
}

.cta-side-panel li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,.18);
  color: white;
  font-size: 12px;
  font-weight: 760;
}

.footer {
  padding: 70px 0 40px;
  background: white;
  border-top: 1px solid var(--grey-100);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer p {
  max-width: 430px;
  margin-top: 18px;
  color: var(--grey-800);
  line-height: 1.58;
}

.footer h4 {
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: var(--grey-800);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.intent-scroll-stage .navigator-mockup.reveal,
.intent-scroll-stage .navigator-mockup.reveal.is-visible {
  transform: scale(var(--intent-scale, .72));
}

@keyframes pulse {
  50% { opacity: .48; }
}

@keyframes bounceDot {
  0%, 80%, 100% { transform: translateY(0); opacity: .45; }
  40% { transform: translateY(-7px); opacity: 1; }
}

@keyframes serviceMarquee {
  from { transform: translateX(128px); }
  to { transform: translateX(calc(-50% + 104px)); }
}

@keyframes tryWiggle {
  0%, 76%, 100% { transform: rotate(-4deg); }
  80% { transform: rotate(-8deg) translateX(-4px); }
  84% { transform: rotate(3deg) translateX(4px); }
  88% { transform: rotate(-6deg) translateX(-4px); }
  92% { transform: rotate(1deg) translateX(2px); }
}

@media (max-width: 1180px) {
  .hero-inner,
  .process-layout,
  .principle-row,
  .navigator-solution-alt,
  .trust-card,
  .qualification-grid,
  .split-section,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    grid-template-rows: auto;
  }

  .hero-copy,
  .hero-demo-wrap,
  .hero-demo {
    min-height: auto;
  }

  .hero h1 { max-width: 13.5ch; }
  .hero-try {
    left: 16px;
    top: -84px;
    transform: rotate(-7deg);
  }
  .segment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .image-card { grid-column: span 1; }
  .navigator-card,
  .navigator-card.result { grid-column: span 6; }
  .principle-trust { grid-template-columns: 1fr; }
  .principle-row:nth-child(even) figure { order: 0; }
  .market-option { grid-column: span 6; }
  .solution-alt-copy { position: relative; top: auto; }
  .audience-board { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .audience-board article:nth-child(odd),
  .audience-board article:nth-child(odd):hover { transform: none; }
  .service-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-inline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-comparison .market-comparison { grid-template-columns: 1fr; }
  .process-sticky { position: relative; top: auto; }
  .process-card { min-height: 360px; }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border: 1px solid var(--grey-100);
    border-radius: 12px;
    background: var(--grey-10);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--grey-1200);
    transition: transform .2s var(--ease), opacity .2s var(--ease);
  }

  .nav-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px var(--page) 20px;
    background: white;
    border-bottom: 1px solid var(--grey-100);
    box-shadow: 0 20px 40px rgba(18,19,23,.08);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-100);
  }

  .nav-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .mockup-routing { grid-template-columns: 1fr; }
  .route-pulse { justify-content: center; }
  .intent-scroll-stage {
    min-height: auto;
  }
  .intent-scroll-stage .navigator-mockup {
    position: relative;
    top: auto;
    transform: none !important;
  }
  .intent-step-notes {
    position: relative;
    top: auto;
    min-height: auto;
    margin-top: 16px;
  }
  .intent-step-note {
    position: relative;
    display: none;
    inset: auto;
  }
  .intent-step-note.is-visible {
    display: grid;
  }
  .bento-card,
  .bento-card.statement { grid-column: span 12; }
  .bento-card:not(.statement) { grid-column: span 12; }
  .bento-grid {
    grid-template-rows: none;
    grid-auto-rows: auto;
    max-height: none;
  }
  .status-quo .section-head {
    grid-template-columns: 1fr;
  }
  .status-quo .section-head .eyebrow,
  .status-quo .section-head h2,
  .status-quo .section-head p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }
  .bento-grid .bento-card:nth-child(n) {
    grid-column: span 12;
    grid-row: auto;
  }
  .bento-card.statement {
    grid-template-columns: 1fr;
  }
  .bento-grid .bento-card:not(.statement):last-child { grid-column: span 12; }
  .status-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .status-summary-note {
    flex-basis: auto;
    width: 100%;
  }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .faq-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .status-quo .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .status-quo .section-head .eyebrow,
  .status-quo .section-head h2,
  .status-quo .section-head p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }
  .status-quo .section-head p:not(.eyebrow) {
    align-self: start;
    max-width: 62ch;
  }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .site-nav { height: 62px; }
  .brand { font-size: 17px; }
  .hero {
    min-height: auto;
    padding-top: 92px;
  }
  .hero h1 {
    line-height: 1.03;
  }
  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .hero-benefits li {
    white-space: normal;
  }
  .hero-actions .btn { width: 100%; }
  .hero-search {
    grid-template-columns: 1fr;
  }
  .hero-search button {
    width: 100%;
  }
  .service-track {
    gap: 28px;
    animation-duration: 28s;
  }
  .trust-tags {
    gap: 24px;
  }
  .checkpoint {
    justify-content: center;
    text-align: center;
  }
  .trust-tags [role="tooltip"] {
    left: 0;
    transform: translate(0, -6px);
  }
  .trust-tags [role="tooltip"]::after {
    left: 24px;
  }
  .trust-tags li:hover [role="tooltip"],
  .trust-tags li:focus-within [role="tooltip"] {
    transform: translate(0, 0);
  }
  .solution-rail article { grid-template-columns: 1fr; }
  .solution-rail::before { display: none; }
  .solution-rail article span { margin-bottom: 14px; }
  .audience-board,
  .service-map,
  .trust-inline { grid-template-columns: 1fr; }
  .term-tip span[role="tooltip"],
  .info-dot span[role="tooltip"] {
    left: 0;
    transform: translate(0, 6px);
  }
  .term-tip span[role="tooltip"]::after,
  .info-dot span[role="tooltip"]::after {
    left: 18px;
  }
  .term-tip:hover span[role="tooltip"],
  .term-tip:focus-visible span[role="tooltip"],
  .term-tip.is-open span[role="tooltip"],
  .info-dot:hover span[role="tooltip"],
  .info-dot:focus-visible span[role="tooltip"],
  .info-dot.is-open span[role="tooltip"] {
    transform: translate(0, 0);
  }
  .segment-grid { grid-template-columns: 1fr; }
  .image-card { flex-basis: 82vw; }
  .navigator-card,
  .navigator-card.result { grid-column: span 12; }
  .comparison-table { overflow-x: auto; }
  .principle-copy h3 { line-height: 1.03; }
  .try-me-sketch {
    display: none;
  }
  .mockup-search { grid-template-columns: 1fr; }
  .patient-bubble { font-size: 18px; }
  .carousel-head { align-items: start; flex-direction: column; }
  .bento-card.statement p { line-height: 1.06; }
  .market-option { grid-column: span 12; }
  .provider-row { grid-template-columns: repeat(4, minmax(78vw, 1fr)); }
  .trust-visual { min-height: 270px; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-days { grid-template-columns: repeat(3, 1fr); }
  .booking-times { grid-template-columns: repeat(2, 1fr); }
}
