:root {
  --ink: #071622;
  --ink-soft: #183244;
  --navy: #07111c;
  --blue: #256ef0;
  --blue-deep: #164aa8;
  --teal: #16b9b5;
  --teal-soft: #dffbf5;
  --mint: #f1fffb;
  --aqua: #ecfbff;
  --white: #ffffff;
  --paper: #f7fafb;
  --line: rgba(12, 48, 70, 0.13);
  --muted: #607282;
  --coral: #ff8f70;
  --gold: #f2c14e;
  --shadow: 0 24px 70px rgba(4, 23, 38, 0.14);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  --chart-support: #3ab98a;
  --chart-wellbeing: #7656d6;
  --chart-self: #2aa4bd;
  --chart-therapy: #d99aa5;
  --chart-psych-deep: #4f348d;
  --chart-psych-mid: #6e50c8;
  --chart-psych-soft: #a88bdc;
  --chart-muted: rgba(184, 208, 218, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(22, 185, 181, 0.25);
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-light {
  background: linear-gradient(180deg, #f8fbfc 0%, #eef7f8 100%);
}

.section-white {
  background: var(--white);
}

.section-aqua {
  background:
    linear-gradient(180deg, rgba(236, 251, 255, 0.94), rgba(244, 255, 251, 0.98)),
    repeating-linear-gradient(90deg, transparent 0, transparent 118px, rgba(20, 122, 180, 0.05) 119px, transparent 120px);
}

section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  scroll-margin-top: 84px;
}

.site-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1400;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.site-progress span {
  display: block;
  width: var(--scroll-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--gold));
  transition: width 90ms linear;
}

.cursor-spotlight {
  position: fixed;
  left: var(--cursor-x);
  top: var(--cursor-y);
  z-index: 999;
  width: 520px;
  height: 520px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(20, 194, 190, 0.2) 0%, rgba(37, 110, 240, 0.11) 32%, transparent 68%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 180ms ease;
}

body.has-pointer .cursor-spotlight {
  opacity: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 17, 28, 0.72);
  color: var(--white);
  backdrop-filter: blur(22px);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(7, 17, 28, 0.9);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
}

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

.brand-logo {
  width: 168px;
  height: 36px;
  object-fit: contain;
}

.brand-text {
  display: none;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--teal), #aef7ee);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--ink);
  background: linear-gradient(135deg, #8df4ec, var(--white));
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
}

.section-rail {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 1000;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.section-rail a {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(15, 63, 85, 0.28);
  outline-offset: 5px;
  transition: background 180ms ease, transform 180ms ease;
}

.section-rail a.is-active {
  background: var(--teal);
  transform: scale(1.45);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: 5.4rem;
}

h2 {
  margin-bottom: 20px;
  font-size: 3.5rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.34rem;
}

h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

p {
  color: var(--muted);
}

.section-dark p,
.section-dark .hero-lede,
.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.75);
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
  max-width: none;
  margin-bottom: 52px;
}

.section-heading.split p {
  margin-bottom: 0;
}

.large-copy {
  font-size: 1.26rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button-primary {
  color: #02161f;
  background: linear-gradient(135deg, #49e0dc, #e9fffb);
  box-shadow: 0 18px 48px rgba(22, 185, 181, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(22, 185, 181, 0.34);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero {
  min-height: 92vh;
  padding: 136px 0 86px;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mesh-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 74%, transparent 100%);
}

.beam {
  position: absolute;
  width: 82vw;
  height: 250px;
  border: 1px solid rgba(124, 246, 236, 0.1);
  background: linear-gradient(90deg, transparent, rgba(22, 185, 181, 0.22), rgba(37, 110, 240, 0.18), transparent);
  filter: blur(14px);
  transform-origin: left center;
}

.beam-one {
  top: 18%;
  left: -10%;
  transform: rotate(-17deg);
  animation: beamDrift 12s ease-in-out infinite alternate;
}

.beam-two {
  right: -18%;
  bottom: 5%;
  transform: rotate(16deg);
  animation: beamDrift 15s ease-in-out infinite alternate-reverse;
}

.pulse-path {
  position: absolute;
  width: 280px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.pulse-path::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  animation: pathPulse 3.8s linear infinite;
}

.pulse-path-one {
  top: 34%;
  right: 17%;
  transform: rotate(27deg);
}

.pulse-path-two {
  bottom: 28%;
  left: 13%;
  transform: rotate(-18deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(610px, 1.12fr);
  gap: 36px;
  align-items: center;
}

.hero-copy,
.contact-copy,
.section-heading {
  min-width: 0;
}

.hero-logo {
  width: min(430px, 100%);
  height: auto;
  margin: 0 0 28px;
}

.hero-lede {
  max-width: 760px;
  margin-bottom: 32px;
  font-size: 1.24rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.evidence-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 800px;
}

.evidence-strip span,
.contact-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.hero-system {
  position: relative;
  min-height: 620px;
  perspective: 1200px;
}

.system-topline,
.dashboard-preview,
.phone-frame,
.care-plan,
.hcp-dashboard,
.tabs-shell,
.cost-panel {
  border: 1px solid rgba(9, 55, 78, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.system-topline {
  position: absolute;
  top: 8px;
  left: 22px;
  right: 24px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.system-topline span,
.preview-header span,
.recommendation-preview span,
.dash-top span,
.domain-card span,
.recommendation-grid span,
.screen-kicker,
.journal-library span,
.stakeholder-grid span,
.secure-pill {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.phone-frame {
  width: 258px;
  min-height: 520px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(24px);
}

.hero-phone {
  position: absolute;
  top: 82px;
  left: 2px;
  z-index: 2;
  transform: rotate(-5deg);
}

.phone-speaker {
  width: 64px;
  height: 5px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
}

.phone-screen {
  min-height: 474px;
  padding: 20px;
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(180deg, #f9ffff, #eef8fb);
}

.phone-screen h2,
.phone-screen h3 {
  margin: 8px 0 18px;
  color: var(--ink);
  font-size: 1.35rem;
}

.question-card {
  margin: 0 0 13px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.question-card.active {
  border-color: rgba(22, 185, 181, 0.45);
  box-shadow: 0 15px 34px rgba(22, 185, 181, 0.16);
}

.question-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 800;
}

.question-card strong {
  display: block;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.3;
}

.slider {
  height: 7px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #d9edf1;
}

.slider i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.dashboard-preview {
  position: absolute;
  right: 0;
  bottom: 14px;
  z-index: 1;
  width: min(390px, 78%);
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  transform: rotate(3deg);
}

.preview-header,
.dash-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.priority-map {
  position: relative;
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.node,
.concern-bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(22, 185, 181, 0.82), rgba(37, 110, 240, 0.78));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  animation: gentleFloat 7s ease-in-out infinite alternate;
}

.node:nth-child(1) {
  top: 20px;
  left: 22px;
}

.node:nth-child(2) {
  top: 98px;
  right: 18px;
  animation-delay: -2s;
}

.node:nth-child(3) {
  bottom: 22px;
  left: 36px;
  animation-delay: -3s;
}

.node:nth-child(4) {
  right: 54px;
  bottom: 30px;
  animation-delay: -5s;
}

.node-large {
  min-width: 140px;
  min-height: 64px;
}

.recommendation-preview {
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.recommendation-preview strong {
  display: block;
  margin-top: 4px;
}

.hero-concern-system {
  min-height: 610px;
}

.concern-map-window {
  position: absolute;
  inset: 22px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(102, 232, 223, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at var(--cursor-zone-x, 50%) var(--cursor-zone-y, 50%), rgba(22, 185, 181, 0.13), transparent 46%),
    linear-gradient(145deg, rgba(10, 31, 45, 0.9), rgba(4, 16, 27, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(24px);
}

.concern-map-window::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 44%, black 0%, transparent 72%);
  pointer-events: none;
}

.concern-map-title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 18px 22px 10px;
}

.concern-map-title span,
.chart-card-top span,
.concern-insight span {
  color: rgba(73, 224, 220, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.concern-map-title strong {
  display: grid;
  gap: 3px;
  min-width: 220px;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.12;
  text-align: right;
}

.concern-map-title strong::before {
  content: "Active signal";
  color: rgba(73, 224, 220, 0.74);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.concern-map-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(265px, 0.94fr) minmax(265px, 1.06fr);
  gap: 16px;
  padding: 10px 22px 20px;
}

.chart-card,
.concern-insight {
  border: 1px solid rgba(151, 238, 231, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(22, 185, 181, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.chart-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.chart-card.is-active,
.chart-card:hover {
  border-color: rgba(73, 224, 220, 0.34);
  background:
    radial-gradient(circle at 20% 0%, rgba(22, 185, 181, 0.13), transparent 48%),
    rgba(255, 255, 255, 0.075);
}

.chart-card-primary {
  min-height: 0;
}

.mini-chart-stack {
  display: grid;
  gap: 14px;
}

.mini-chart {
  grid-template-columns: 112px 1fr;
  align-items: center;
  column-gap: 16px;
}

.mini-chart .chart-card-top {
  grid-column: 1 / -1;
}

.mini-chart .donut-button {
  grid-column: 1;
}

.mini-chart .micro-legend {
  grid-column: 2;
}

.chart-card-top {
  display: grid;
  gap: 4px;
}

.chart-card-top strong {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.18;
}

.donut-button {
  position: relative;
  display: grid;
  place-items: center;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.primary-donut {
  width: min(260px, 82%);
  aspect-ratio: 1;
  margin-top: 2px;
  margin-bottom: 4px;
}

.small-donut {
  width: 108px;
  aspect-ratio: 1;
  margin-top: -4px;
  margin-bottom: -2px;
}

.donut-chart {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.22)) saturate(0.86);
  transform: rotate(-90deg);
  transition: transform 260ms ease, filter 260ms ease;
  animation: chartBreathe 4.6s ease-in-out infinite;
}

.donut-button:hover .donut-chart,
.donut-button:focus-visible .donut-chart,
.chart-card.is-active .donut-chart {
  filter: drop-shadow(0 20px 38px rgba(22, 185, 181, 0.14)) saturate(0.92);
  transform: rotate(-90deg) scale(1.04);
}

.concern-donut {
  background:
    conic-gradient(var(--chart-support) 0deg 72deg, var(--chart-wellbeing) 72deg 288deg, var(--chart-self) 288deg 342deg, var(--chart-therapy) 342deg 360deg);
}

.psych-donut {
  background:
    conic-gradient(var(--chart-psych-deep) 0deg 138deg, var(--chart-psych-mid) 138deg 256deg, var(--chart-psych-soft) 256deg 326deg, var(--chart-muted) 326deg 360deg);
}

.social-donut {
  background:
    conic-gradient(#267d5f 0deg 252deg, var(--chart-support) 252deg 326deg, var(--chart-muted) 326deg 360deg);
}

.donut-hole {
  position: absolute;
  inset: 31%;
  z-index: 2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 55%),
    #07111c;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 0 10px rgba(255, 255, 255, 0.04);
}

.donut-sheen {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.12), transparent 18%),
    conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.11), transparent 22%, transparent 100%);
  mix-blend-mode: screen;
  animation: sheenSweep 6s linear infinite;
}

.donut-center {
  position: absolute;
  inset: 35%;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  pointer-events: none;
}

.donut-center strong {
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 38%, rgba(255, 255, 255, 0.12), transparent 52%),
    rgba(7, 17, 28, 0.8);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  font-size: 0;
  font-weight: 900;
  line-height: 0.9;
}

.concern-legend,
.micro-legend {
  display: grid;
  gap: 7px;
}

.concern-legend button,
.micro-legend button {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 31px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.038);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.micro-legend button {
  grid-template-columns: 10px 1fr;
  min-height: 25px;
  padding: 5px 7px;
  font-size: 0.64rem;
}

.concern-legend button:hover,
.concern-legend button:focus-visible,
.concern-legend button.is-active,
.micro-legend button:hover,
.micro-legend button:focus-visible,
.micro-legend button.is-active {
  border-color: color-mix(in srgb, var(--swatch, #49e0dc) 52%, transparent);
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  transform: translateX(2px);
}

.concern-legend i,
.micro-legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 12px color-mix(in srgb, var(--swatch) 34%, transparent);
}

.micro-legend i {
  width: 10px;
  height: 10px;
}

.concern-legend b {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.concern-insight {
  display: none;
  gap: 8px;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(22, 185, 181, 0.18), rgba(37, 110, 240, 0.1)),
    rgba(255, 255, 255, 0.08);
}

.concern-insight strong {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.16;
}

.concern-insight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.42;
}

.insight-meter {
  height: 5px;
  margin-top: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.insight-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--blue), #8b5cf6);
  transition: width 260ms ease;
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 110px;
}

.problem-board {
  display: grid;
  gap: 22px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.before-after > div,
.pipeline-card,
.workflow-steps article,
.metric-card,
.stakeholder-grid article,
.journal-library article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 44px rgba(7, 22, 34, 0.08);
}

.before-after > div {
  min-height: 244px;
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.before-after > div:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 185, 181, 0.35);
  box-shadow: 0 24px 58px rgba(7, 22, 34, 0.13);
}

.before-after span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 850;
}

.before-after strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.18;
}

.context-reveal {
  position: relative;
  min-height: 490px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(9, 55, 78, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--cursor-zone-x, 50%) var(--cursor-zone-y, 50%), rgba(22, 185, 181, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(7, 22, 34, 0.96), rgba(12, 47, 64, 0.94));
  box-shadow: var(--shadow);
  color: var(--white);
  isolation: isolate;
}

.context-reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
  z-index: -2;
}

.context-reveal::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 70%;
  opacity: 0.52;
  background: radial-gradient(circle, rgba(22, 185, 181, 0.28), transparent 62%);
  z-index: -1;
}

.context-reveal-header {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 20px;
}

.context-reveal-header span,
.clinical-signal-grid span,
[data-context-card] span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.context-reveal-header strong {
  display: block;
  max-width: 610px;
  font-size: 1.42rem;
  line-height: 1.18;
}

.clinical-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.clinical-signal-grid article {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
}

.context-reveal.is-awake .clinical-signal-grid article {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.11);
}

.clinical-signal-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  line-height: 1.16;
}

.context-depth-map {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 50%, rgba(37, 110, 240, 0.22), transparent 26%),
    radial-gradient(circle at 82% 26%, rgba(22, 185, 181, 0.18), transparent 28%),
    rgba(0, 0, 0, 0.18);
}

.reveal-beam {
  position: absolute;
  top: -26%;
  left: calc((var(--context-progress, 14) * 1%) - 18%);
  width: 42%;
  height: 152%;
  opacity: 0.78;
  background:
    linear-gradient(90deg, transparent, rgba(190, 255, 249, 0.14), rgba(20, 194, 190, 0.38), rgba(37, 110, 240, 0.2), transparent);
  filter: blur(4px);
  transform: rotate(12deg);
  transition: left 220ms ease;
  pointer-events: none;
}

[data-context-card] {
  position: absolute;
  width: min(288px, 42%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  filter: saturate(0.68);
  opacity: 0.34;
  transform: translateY(8px) scale(0.98);
  transition: opacity 300ms ease, transform 300ms ease, filter 300ms ease, border-color 300ms ease, background 300ms ease;
}

[data-context-card]:nth-of-type(1) {
  top: 28px;
  left: 24px;
}

[data-context-card]:nth-of-type(2) {
  top: 94px;
  right: 38px;
}

[data-context-card]:nth-of-type(3) {
  left: 29%;
  bottom: 24px;
}

[data-context-card].is-lit {
  opacity: 1;
  filter: saturate(1);
  transform: translateY(0) scale(1);
  border-color: rgba(22, 185, 181, 0.55);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(22, 185, 181, 0.14));
}

[data-context-card] strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  line-height: 1.22;
}

.context-reveal > p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
}

.pipeline i {
  align-self: center;
  width: 30px;
  height: 2px;
  overflow: hidden;
  background: rgba(22, 185, 181, 0.28);
}

.pipeline i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--blue));
  animation: pathPulse 2.6s linear infinite;
}

.pipeline-card {
  min-height: 220px;
  padding: 22px;
  background: linear-gradient(180deg, var(--white), #f5ffff);
  transition: transform 220ms ease, border-color 220ms ease;
}

.pipeline-card:hover {
  border-color: rgba(22, 185, 181, 0.4);
  transform: translateY(-6px);
}

.pipeline-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-weight: 850;
  font-size: 0.8rem;
}

.pipeline-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.pipeline-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.tabs-shell {
  position: relative;
  padding: 26px;
  background:
    radial-gradient(circle at var(--cursor-zone-x, 50%) var(--cursor-zone-y, 50%), rgba(22, 185, 181, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.tab-list {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.tab-list button {
  flex: 1;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: transparent;
  font-weight: 850;
}

.tab-list button[aria-selected="true"] {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue-deep));
  box-shadow: 0 12px 32px rgba(7, 22, 34, 0.18);
}

.tab-panels {
  margin-top: 20px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.workflow-steps article {
  min-height: 246px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 220ms ease, border-color 220ms ease;
}

.workflow-steps article:hover {
  border-color: rgba(37, 110, 240, 0.32);
  transform: translateY(-5px);
}

.workflow-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--teal-soft);
  font-weight: 900;
}

.workflow-visual {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.data-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 14px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 22, 34, 0.08);
  font-weight: 850;
}

.data-node.strong {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.data-line {
  height: 2px;
  overflow: hidden;
  background: rgba(22, 185, 181, 0.24);
}

.data-line::after {
  content: "";
  display: block;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  animation: pathPulse 3s linear infinite;
}

.product-section {
  background:
    linear-gradient(180deg, rgba(7, 17, 28, 0.96), rgba(5, 24, 39, 0.98)),
    repeating-linear-gradient(90deg, transparent 0, transparent 88px, rgba(255, 255, 255, 0.05) 89px, transparent 90px);
}

.product-lab {
  display: grid;
  grid-template-columns: 250px minmax(360px, 1fr) 300px;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--cursor-zone-x, 50%) var(--cursor-zone-y, 50%), rgba(22, 185, 181, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(24px);
}

.product-lab .phone-frame {
  width: 100%;
  min-height: 100%;
  box-shadow: none;
}

.product-lab .phone-screen {
  min-height: 458px;
}

.phone-screen label {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.phone-screen input[type="range"] {
  width: 100%;
  accent-color: var(--teal);
}

.hcp-dashboard,
.care-plan {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.hcp-dashboard {
  padding: 22px;
}

.dash-top h3 {
  margin: 4px 0 0;
  font-size: 1.65rem;
}

.secure-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--teal-soft);
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.domain-card {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbfc;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.domain-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 18% 0%, rgba(22, 185, 181, 0.16), transparent 48%);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.domain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 185, 181, 0.4);
}

.domain-card.is-selected {
  border-color: rgba(22, 185, 181, 0.58);
  background: linear-gradient(180deg, #ffffff, #effffd);
  box-shadow: 0 18px 42px rgba(22, 185, 181, 0.14);
}

.domain-card.is-selected::after {
  opacity: 1;
}

.domain-card strong {
  display: block;
  min-height: 46px;
  margin: 6px 0 14px;
  line-height: 1.15;
}

.domain-card i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dbeaf0;
}

.domain-card i::after {
  content: "";
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.domain-card.high i::after {
  background: linear-gradient(90deg, var(--coral), var(--teal));
}

.domain-card.medium i::after {
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.bubble-panel {
  position: relative;
  min-height: 210px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(8, 28, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 28, 42, 0.05) 1px, transparent 1px),
    #f9ffff;
  background-size: 30px 30px;
}

.concern-bubble {
  color: var(--white);
  appearance: none;
  cursor: pointer;
  animation: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease;
}

.concern-bubble:hover,
.concern-bubble:focus-visible,
.concern-bubble.is-active {
  border-color: rgba(255, 255, 255, 0.62);
  filter: saturate(1.08);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 22px 52px rgba(24, 88, 160, 0.28);
  outline: none;
}

.concern-bubble.is-active::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(22, 185, 181, 0.48);
  border-radius: inherit;
  animation: activeBubble 1.8s ease-in-out infinite;
  pointer-events: none;
}

.bubble-panel .concern-bubble:nth-child(1) {
  top: 20px;
  left: 24px;
}

.bubble-panel .concern-bubble:nth-child(2) {
  top: 74px;
  right: 30px;
  animation-delay: -2s;
}

.bubble-panel .concern-bubble:nth-child(3) {
  bottom: 26px;
  left: 140px;
  animation-delay: -4s;
}

.bubble-panel .concern-bubble:nth-child(4) {
  bottom: 32px;
  right: 108px;
  animation-delay: -6s;
}

.size-lg {
  min-width: 150px;
  min-height: 70px;
}

.size-md {
  min-width: 126px;
  min-height: 58px;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.recommendation-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbfc;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.recommendation-grid article.is-updating,
.care-plan.is-updating {
  border-color: rgba(22, 185, 181, 0.44);
  box-shadow: 0 18px 40px rgba(22, 185, 181, 0.13);
  transform: translateY(-3px);
}

.recommendation-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.care-plan {
  padding: 22px;
}

.care-plan h3 {
  margin-top: 6px;
  font-size: 1.45rem;
}

.care-plan dl,
.care-plan dd {
  margin: 0;
}

.care-plan div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.care-plan dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 850;
}

.care-plan dd {
  color: var(--muted);
  font-size: 0.94rem;
}

.ai-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: center;
}

.context-stack {
  position: relative;
  min-height: 560px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--cursor-zone-x, 50%) var(--cursor-zone-y, 50%), rgba(22, 185, 181, 0.14), transparent 44%),
    linear-gradient(180deg, #fbffff, #edf8fb);
  box-shadow: var(--shadow);
  perspective: 1200px;
  --stack-progress: 0;
}

.stack-layer {
  position: absolute;
  left: 36px;
  right: 36px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(7, 22, 34, 0.1);
  z-index: 2;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease, opacity 300ms ease;
}

.stack-layer:hover {
  border-color: rgba(22, 185, 181, 0.4);
  transform: translateY(-5px);
}

.stack-layer.is-active {
  border-color: rgba(22, 185, 181, 0.58);
  box-shadow: 0 24px 60px rgba(22, 185, 181, 0.18);
}

.stack-orbit {
  position: absolute;
  border: 1px solid rgba(37, 110, 240, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 420px;
  height: 420px;
  right: -130px;
  top: 40px;
  animation: orbitTurn 22s linear infinite;
}

.orbit-two {
  width: 260px;
  height: 260px;
  left: -84px;
  bottom: 28px;
  border-color: rgba(22, 185, 181, 0.16);
  animation: orbitTurn 18s linear infinite reverse;
}

.stack-beam {
  position: absolute;
  top: 22px;
  bottom: 74px;
  left: calc(16% + (var(--stack-progress, 0) * 52%));
  width: 120px;
  opacity: 0.38;
  background: linear-gradient(90deg, transparent, rgba(22, 185, 181, 0.28), transparent);
  filter: blur(8px);
  transform: skewX(-18deg);
  transition: left 240ms ease, opacity 240ms ease;
  pointer-events: none;
}

.stack-depth-meter {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.stack-depth-meter i {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(12, 48, 70, 0.12);
}

.stack-depth-meter i::after {
  content: "";
  display: block;
  width: calc(18% + (var(--stack-progress, 0) * 82%));
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--gold));
  transition: width 240ms ease;
}

.stack-layer.clinical {
  top: 52px;
}

.stack-layer.behavioural {
  top: 170px;
  left: 74px;
}

.stack-layer.human {
  top: 296px;
  right: 74px;
}

.stack-layer.spotlight {
  bottom: 52px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue-deep));
}

.stack-layer.spotlight span,
.stack-layer.spotlight strong {
  color: var(--white);
}

.stack-layer strong {
  font-size: 1.08rem;
  line-height: 1.22;
}

.context-note {
  margin-top: 38px;
}

.context-note p {
  max-width: 940px;
  margin: 0 auto;
  padding: 30px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #f7fbfc;
  color: var(--ink-soft);
  font-size: 1.24rem;
  line-height: 1.5;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.metric-card {
  min-height: 214px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.84);
  transition: transform 220ms ease, border-color 220ms ease;
}

.metric-card:hover {
  border-color: rgba(37, 110, 240, 0.32);
  transform: translateY(-6px);
}

.metric-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-size: 3.1rem;
  line-height: 1;
}

.metric-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.cost-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 28px;
  background: linear-gradient(135deg, var(--ink), var(--blue-deep));
  color: var(--white);
}

.cost-panel h3 {
  margin-bottom: 0;
}

.cost-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cost-list span {
  display: grid;
  gap: 4px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.cost-list strong {
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.evidence-note {
  max-width: 980px;
  margin: 18px auto 0;
  color: #5b6975;
  font-size: 0.88rem;
  text-align: center;
}

.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stakeholder-grid article {
  min-height: 320px;
  padding: 26px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.stakeholder-grid article:hover {
  border-color: rgba(22, 185, 181, 0.36);
  transform: translateY(-6px);
}

.stakeholder-grid h3 {
  margin-top: 14px;
}

.stakeholder-grid p {
  margin-bottom: 0;
}

.trust-grid,
.research-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: start;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.logo-wall figure {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 166px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(7, 22, 34, 0.07);
  transition: transform 220ms ease, border-color 220ms ease;
}

.logo-wall figure:hover {
  border-color: rgba(22, 185, 181, 0.36);
  transform: translateY(-4px);
}

.logo-wall img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.logo-wall figcaption {
  align-self: end;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.journal-library {
  display: grid;
  gap: 14px;
}

.journal-library article {
  position: relative;
  min-height: 142px;
  padding: 24px 24px 24px 30px;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff, #f7fbfc);
  transition: transform 220ms ease, border-color 220ms ease;
}

.journal-library article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: linear-gradient(180deg, var(--teal), var(--blue));
}

.journal-library article:nth-child(2)::before {
  background: linear-gradient(180deg, var(--blue), var(--gold));
}

.journal-library article:nth-child(3)::before {
  background: linear-gradient(180deg, var(--coral), var(--teal));
}

.journal-library article:nth-child(4)::before {
  background: linear-gradient(180deg, var(--ink), var(--teal));
}

.journal-library article:hover {
  border-color: rgba(22, 185, 181, 0.36);
  transform: translateX(5px);
}

.journal-library p {
  margin-bottom: 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.founder-portrait {
  position: relative;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 48, 70, 0.12);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(7, 22, 34, 0.28));
  pointer-events: none;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 54% 34%;
}

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

.founder-copy h2 {
  max-width: 760px;
}

.founder-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.founder-points article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.founder-points article:hover {
  border-color: rgba(22, 185, 181, 0.36);
  box-shadow: 0 18px 42px rgba(7, 22, 34, 0.08);
  transform: translateY(-4px);
}

.founder-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--teal));
  font-size: 0.82rem;
  font-weight: 900;
}

.founder-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.04rem;
}

.founder-points p {
  grid-column: 2;
  margin: 0;
}

.contact {
  background:
    linear-gradient(180deg, rgba(7, 17, 28, 0.96), rgba(3, 14, 24, 0.98)),
    repeating-linear-gradient(90deg, transparent 0, transparent 104px, rgba(255, 255, 255, 0.04) 105px, transparent 106px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: start;
}

.contact-copy h2 {
  font-size: 4.1rem;
}

.contact-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(24px);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-honey {
  display: none;
}

.form-row.two-up {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row.two-up > div {
  display: grid;
  gap: 8px;
}

label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

input,
select {
  padding: 0 14px;
}

textarea {
  min-height: 136px;
  padding: 13px 14px;
  resize: vertical;
}

select option {
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(22, 185, 181, 0.84);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 0 4px rgba(22, 185, 181, 0.14);
}

.demo-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #b8fff8;
  font-weight: 700;
}

.site-footer {
  padding: 30px 0;
  background: #020b12;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-grid > a:last-child {
  color: var(--teal);
  font-weight: 850;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes gentleFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@keyframes beamDrift {
  from {
    translate: 0 0;
  }
  to {
    translate: 4% 8%;
  }
}

@keyframes pathPulse {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(260%);
  }
}

@keyframes activeBubble {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.74;
    transform: scale(1.04);
  }
}

@keyframes chartBreathe {
  0%,
  100% {
    scale: 1;
  }
  50% {
    scale: 1.025;
  }
}

@keyframes sheenSweep {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

@keyframes orbitTurn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 4.3rem;
  }

  h2,
  .contact-copy h2 {
    font-size: 3rem;
  }

  .hero-grid,
  .problem-grid,
  .ai-grid,
  .trust-grid,
  .research-grid,
  .contact-grid {
    gap: 44px;
  }

  .pipeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .pipeline i {
    display: none;
  }

  .product-lab {
    grid-template-columns: 240px 1fr;
  }

  .care-plan {
    grid-column: 1 / -1;
  }

  .stakeholder-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 940px) {
  section {
    padding: 90px 0;
  }

  .site-header {
    min-height: 66px;
    padding: 12px 20px;
  }

  .brand-logo {
    width: 142px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 66px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: rgba(7, 17, 28, 0.96);
    box-shadow: var(--shadow-dark);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .section-rail {
    display: none;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2,
  .contact-copy h2 {
    font-size: 2.48rem;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-grid,
  .problem-grid,
  .section-heading.split,
  .ai-grid,
  .trust-grid,
  .research-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

  .hero-system {
    min-height: 620px;
  }

  .hero-concern-system {
    min-height: 0;
  }

  .concern-map-window {
    position: relative;
    inset: 0;
  }

  .concern-map-body {
    grid-template-columns: 1fr;
  }

  .chart-card-primary {
    grid-row: auto;
  }

  .mini-chart-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concern-insight {
    grid-column: auto;
  }

  .hero-phone {
    left: 4%;
  }

  .dashboard-preview {
    right: 2%;
  }

  .workflow-steps,
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-portrait {
    min-height: 560px;
  }

  .before-after,
  .domain-grid,
  .recommendation-grid,
  .cost-panel,
  .cost-list,
  .product-lab {
    grid-template-columns: 1fr;
  }

  .product-lab .phone-frame {
    max-width: 320px;
    margin: 0 auto;
  }

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

@media (max-width: 680px) {
  .wrap {
    width: min(1180px, calc(100% - 56px));
  }

  section {
    padding: 74px 0;
  }

  h1 {
    font-size: 1.92rem;
    line-height: 1.12;
  }

  h2,
  .contact-copy h2 {
    font-size: 2.08rem;
  }

  h3 {
    font-size: 1.16rem;
  }

  .hero-lede,
  .large-copy,
  .context-note p {
    font-size: 0.96rem;
  }

  .hero-copy h1,
  .hero-lede {
    max-width: calc(100vw - 44px);
    overflow-wrap: break-word;
  }

  .hero-logo {
    width: 260px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .eyebrow {
    font-size: 0.74rem;
  }

  .evidence-strip span,
  .contact-signals span {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-system {
    min-height: 740px;
  }

  .hero-concern-system {
    min-height: 0;
  }

  .concern-map-title {
    display: grid;
    gap: 2px;
    padding: 16px;
  }

  .concern-map-title strong {
    max-width: none;
    text-align: left;
  }

  .concern-map-body {
    padding: 10px;
  }

  .chart-card {
    padding: 14px;
  }

  .primary-donut {
    width: min(190px, 72%);
  }

  .mini-chart-stack {
    grid-template-columns: 1fr;
  }

  .mini-chart {
    grid-template-columns: 1fr;
  }

  .mini-chart .chart-card-top,
  .mini-chart .donut-button,
  .mini-chart .micro-legend {
    grid-column: auto;
  }

  .small-donut {
    width: 96px;
  }

  .concern-legend button {
    grid-template-columns: 1fr;
  }

  .concern-legend i,
  .concern-legend b {
    display: none;
  }

  .concern-insight strong {
    font-size: 1rem;
  }

  .system-topline {
    left: 0;
    right: 0;
  }

  .hero-phone {
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
  }

  .dashboard-preview {
    right: auto;
    left: 50%;
    bottom: 0;
    width: min(100%, 360px);
    transform: translateX(-50%) rotate(2deg);
  }

  .clinical-signal-grid,
  .pipeline,
  .workflow-steps,
  .metric-grid,
  .stakeholder-grid,
  .logo-wall,
  .form-row.two-up,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    gap: 28px;
  }

  .founder-portrait {
    min-height: 430px;
  }

  .founder-points article {
    grid-template-columns: 40px 1fr;
    padding: 16px;
  }

  .founder-points span {
    width: 40px;
    height: 40px;
  }

  .context-reveal {
    min-height: auto;
    padding: 18px;
  }

  .context-reveal-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .context-reveal-header strong {
    font-size: 1.08rem;
  }

  .clinical-signal-grid article {
    min-height: 82px;
  }

  .context-depth-map {
    display: grid;
    gap: 10px;
    min-height: auto;
    padding: 12px;
  }

  [data-context-card],
  [data-context-card]:nth-of-type(1),
  [data-context-card]:nth-of-type(2),
  [data-context-card]:nth-of-type(3) {
    position: static;
    width: 100%;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .reveal-beam {
    display: none;
  }

  .tab-list {
    display: grid;
  }

  .workflow-visual {
    grid-template-columns: 1fr;
  }

  .data-line {
    height: 34px;
    width: 2px;
    justify-self: center;
  }

  .data-line::after {
    width: 100%;
    height: 38%;
    animation-name: pathPulseVertical;
  }

  .domain-grid {
    grid-template-columns: 1fr;
  }

  .bubble-panel .concern-bubble {
    position: static;
    margin: 10px;
  }

  .bubble-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 12px;
  }

  .context-stack {
    min-height: auto;
    padding: 14px;
    padding-bottom: 64px;
  }

  .stack-layer,
  .stack-layer.clinical,
  .stack-layer.behavioural,
  .stack-layer.human,
  .stack-layer.spotlight {
    position: static;
    margin-bottom: 12px;
  }

  .stack-orbit,
  .stack-beam {
    display: none;
  }

  .stack-depth-meter {
    left: 14px;
    right: 14px;
  }

  .cost-list span {
    min-height: 86px;
  }

  .demo-form {
    padding: 20px;
  }
}

@media (pointer: coarse) {
  .cursor-spotlight {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-context-card],
  .stack-layer {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

@keyframes pathPulseVertical {
  from {
    transform: translateY(-120%);
  }
  to {
    transform: translateY(260%);
  }
}
