:root {
  --navy-950: #020814;
  --navy-900: #06101d;
  --navy-850: #081727;
  --navy-800: #0b1f33;
  --red: #ed1c24;
  --red-dark: #b8171d;
  --cyan: #00a7ff;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --soft-gray: #eef1f5;
  --line-light: #d9dde4;
  --line-dark: rgba(255, 255, 255, 0.18);
  --text: #101722;
  --muted: #5d6674;
  --container: 1180px;
  --header-height: 88px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

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

p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

.svg-defs {
  display: none;
}

.site-header {
  align-items: center;
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 34px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  background: rgba(2, 8, 20, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(2, 8, 20, 0.24);
}

.brand {
  align-items: center;
  display: flex;
  width: 258px;
}

.brand img {
  height: auto;
  width: 100%;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 30px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a.active {
  color: var(--white);
}

.nav-cta {
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 6px;
  color: var(--white) !important;
  font-weight: 700;
  padding: 13px 18px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.menu-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.menu-button span {
  background: var(--white);
  display: block;
  height: 2px;
  position: absolute;
  width: 20px;
}

.menu-button span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-button span:nth-child(3) {
  transform: translateY(6px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 34px;
  width: 100%;
}

.hero {
  min-height: 720px;
  overflow: hidden;
  padding: 150px 0 72px;
  position: relative;
  background: var(--navy-950);
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  background-image: url("assets/website-background-v2.png");
  background-position: center;
  background-size: cover;
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 8, 20, 0.94) 0%, rgba(2, 8, 20, 0.78) 39%, rgba(2, 8, 20, 0.18) 78%),
    linear-gradient(180deg, rgba(2, 8, 20, 0.16) 0%, rgba(2, 8, 20, 0.72) 100%);
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(520px, 0.95fr) minmax(520px, 1fr);
  position: relative;
  z-index: 2;
}

.hero-copy {
  color: var(--white);
  max-width: 570px;
  min-width: 0;
}

.eyebrow {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.05;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.28;
  margin-top: 26px;
  max-width: 470px;
}

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

.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-secondary {
  background: rgba(5, 16, 31, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: var(--cyan);
}

.button-secondary.on-dark {
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero-graph {
  align-self: end;
  margin-top: 78px;
  min-height: 358px;
  min-width: 0;
  position: relative;
}

.graph-main {
  opacity: 0.9;
  position: relative;
  width: 100%;
  z-index: 1;
}

.graph-legend {
  position: absolute;
  right: 8px;
  top: 96px;
  width: 196px;
  z-index: 2;
}

.section {
  scroll-margin-top: var(--header-height);
}

.light-section {
  background: var(--off-white);
  color: var(--text);
  padding: 68px 0;
}

.light-section:nth-of-type(4),
.future {
  background: var(--white);
}

.dark-section {
  background:
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-850) 58%, var(--navy-900) 100%);
  color: var(--white);
  padding: 72px 0;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2,
.section-copy h2 {
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}

.section-heading.centered h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.accent-rule {
  background: var(--red);
  display: block;
  height: 2px;
  margin: 13px auto 0;
  width: 42px;
}

.feature-grid {
  display: grid;
  gap: 24px;
}

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

.feature-card {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 96px minmax(0, 1fr);
}

.icon-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-light);
  border-radius: 50%;
  display: flex;
  height: 96px;
  justify-content: center;
  width: 96px;
}

.icon-badge svg,
.cta-card svg {
  fill: none;
  height: 48px;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 48px;
}

.feature-card h3,
.capability-card h3,
.cta-card h3,
.roadmap-step h3 {
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.feature-card p,
.capability-card p,
.cta-card p,
.roadmap-step p,
.section-copy p,
.biomarkers li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

blockquote {
  color: #2a2f38;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-style: italic;
  line-height: 1.3;
  margin: 40px auto 0;
  max-width: 620px;
  text-align: center;
}

.platform-layout {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(245px, 0.32fr) minmax(0, 1fr);
}

.section-copy {
  max-width: 340px;
}

.section-copy p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 22px;
}

.section-copy .button {
  margin-top: 30px;
}

.flow-area {
  min-width: 0;
}

.flow-row {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(13, auto);
  justify-content: space-between;
  padding-top: 14px;
}

.flow-step {
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 10px;
  justify-items: center;
  min-width: 88px;
  text-align: center;
}

.flow-step svg {
  height: 58px;
  overflow: visible;
  width: 58px;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.28));
}

.roadmap-step svg {
  fill: none;
  height: 44px;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 44px;
}

.flow-step span {
  font-size: 13px;
  line-height: 1.22;
}

.flow-arrow {
  color: rgba(255, 255, 255, 0.8);
  font-size: 27px;
  line-height: 58px;
}

.platform-callout {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  margin: 46px auto 0;
  max-width: 620px;
  padding: 17px 28px;
  text-align: center;
}

.platform-callout strong {
  color: var(--red);
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.platform-callout span {
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.feature-grid.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.capability-card {
  border-right: 1px solid var(--line-light);
  min-height: 168px;
  padding: 0 18px;
  text-align: center;
}

.capability-card:last-child {
  border-right: 0;
}

.capability-card svg {
  height: 58px;
  margin: 0 auto 16px;
  overflow: visible;
  width: 58px;
  filter: drop-shadow(0 6px 8px rgba(4, 14, 27, 0.08));
}

.capability-card h3 {
  font-size: 16px;
}

.capability-card p {
  font-size: 12px;
}

.roadmap-layout {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(245px, 0.28fr) minmax(0, 1fr) minmax(215px, 0.24fr);
}

.roadmap-flow {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
}

.roadmap-step {
  min-width: 0;
  position: relative;
  text-align: center;
}

.step-number {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 15px;
  height: 32px;
  justify-content: center;
  margin-bottom: 14px;
  width: 32px;
}

.roadmap-step svg {
  margin: 0 auto 17px;
}

.roadmap-step p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.biomarkers {
  border-left: 1px solid var(--line-dark);
  padding-left: 32px;
}

.biomarkers h3 {
  color: var(--red);
  font-size: 15px;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.biomarkers ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.biomarkers li {
  color: rgba(255, 255, 255, 0.82);
  padding-left: 20px;
  position: relative;
}

.biomarkers li::before {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 8px;
}

.cta-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-card {
  border-right: 1px solid var(--line-light);
  min-height: 170px;
  padding: 0 34px;
}

.cta-card:first-child {
  padding-left: 0;
}

.cta-card:last-child {
  border-right: 0;
  padding-right: 0;
}

.cta-card svg {
  height: 58px;
  margin-bottom: 14px;
  width: 58px;
}

.cta-card .cta-people-icon {
  stroke-width: 2.5;
}

.cta-card a {
  color: var(--red);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  margin-top: 18px;
}

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
  padding: 34px 0 38px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.8fr repeat(4, 1fr) 1.1fr;
}

.footer-brand img {
  margin-bottom: 12px;
  width: 226px;
}

.footer-brand p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.7;
}

.footer-grid nav {
  display: grid;
  gap: 6px;
  align-content: start;
}

.footer-grid h2,
.footer-social h2 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 38px;
}

.social-row svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  width: 18px;
}

.tab-page {
  background: var(--off-white);
}

.page-hero {
  min-height: 540px;
  overflow: hidden;
  padding: 166px 0 86px;
  position: relative;
  background: var(--navy-950);
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 8, 20, 0.95) 0%, rgba(2, 8, 20, 0.82) 48%, rgba(2, 8, 20, 0.34) 100%),
    linear-gradient(180deg, rgba(2, 8, 20, 0.2) 0%, rgba(2, 8, 20, 0.78) 100%);
  inset: 0;
  position: absolute;
}

.page-hero-inner {
  color: var(--white);
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.page-hero-inner h1 {
  color: var(--white);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  max-width: 820px;
}

.page-hero-inner p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.42;
  margin-top: 26px;
  max-width: 690px;
}

.page-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.page-hero-pills span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 13px;
}

.content-band {
  padding: 76px 0;
}

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

.tab-grid {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 330px;
}

.two-column {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.narrative-stack {
  display: grid;
  gap: 28px;
}

.content-card,
.thesis-card,
.marker-list,
.phase-card,
.clinician-grid article,
.investor-steps article {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(4, 14, 27, 0.06);
  padding: 34px;
}

.content-card.wide {
  min-width: 0;
}

.dark-card {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.section-kicker {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.content-card h2,
.thesis-card h2,
.marker-list h2,
.phase-card h2,
.clinician-grid h2,
.investor-steps h2 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 18px;
}

.dark-card h2,
.dark-section .split-heading h2,
.dark-section .thesis-card h2 {
  color: var(--white);
}

.content-card p,
.phase-card p,
.clinician-grid p,
.investor-steps p,
.long-form,
.closing-panel p {
  color: #303948;
  font-size: 16px;
  line-height: 1.68;
}

.content-card p + p,
.phase-card p + p {
  margin-top: 16px;
}

.dark-card p,
.dark-section .long-form,
.dark-section .closing-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.thesis-card {
  background:
    linear-gradient(180deg, rgba(237, 28, 36, 0.08), rgba(255, 255, 255, 0.98)),
    var(--white);
  display: grid;
  align-content: center;
  min-height: 280px;
}

.thesis-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.thesis-card p {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.32;
}

.dark-thesis {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.dark-thesis p {
  color: rgba(255, 255, 255, 0.9);
}

.accent-card {
  border-color: rgba(237, 28, 36, 0.28);
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.55fr);
  margin-bottom: 6px;
}

.split-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.55;
}

.metric-grid,
.capability-matrix,
.investor-steps,
.clinician-grid {
  display: grid;
  gap: 18px;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
}

.metric-grid strong {
  color: var(--red);
  display: block;
  font-size: 26px;
  margin-bottom: 12px;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.48;
}

.long-form {
  max-width: 920px;
}

.centered-text {
  margin: 34px auto 0;
  text-align: center;
}

.capability-matrix {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-matrix article {
  background: var(--off-white);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 28px;
}

.capability-matrix h3 {
  font-size: 18px;
  margin: 0 0 12px;
}

.capability-matrix h3::before {
  background: var(--red);
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 18px;
  width: 34px;
}

.capability-matrix p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.marker-list {
  align-content: center;
  display: grid;
}

.marker-list h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.marker-list ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.marker-list li {
  color: #334052;
  font-size: 14px;
  line-height: 1.4;
  padding-left: 22px;
  position: relative;
}

.marker-list li::before {
  background: var(--red);
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 7px;
}

.closing-panel {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 38px;
}

.dark-closing {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.16);
}

.phase-timeline {
  counter-reset: phase;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.phase-card {
  position: relative;
}

.phase-card span,
.investor-steps span {
  align-items: center;
  background: var(--navy-900);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  margin-bottom: 22px;
  width: 40px;
}

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

.clinician-grid article,
.investor-steps article {
  box-shadow: none;
}

.investor-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.investor-steps article {
  background: var(--off-white);
}

.investor-steps h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.leadership-preview {
  scroll-margin-top: var(--header-height);
}

.leader-preview-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.leader-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  gap: 24px;
  padding: 32px;
}

.leader-card.compact {
  align-items: start;
  grid-template-columns: 86px minmax(0, 1fr);
}

.leader-card h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 12px;
}

.leader-card p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.leader-avatar {
  align-items: center;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(145deg, #ed1c24, #7e0c11);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 24px;
  font-weight: 900;
  height: 86px;
  justify-content: center;
  letter-spacing: 0;
  width: 86px;
}

.leader-avatar.large {
  font-size: 30px;
  height: 104px;
  width: 104px;
}

.leader-headshot {
  aspect-ratio: 1;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(4, 14, 27, 0.12);
  height: 160px;
  object-fit: cover;
  object-position: center 22%;
  width: 160px;
}

.leadership-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.leadership-intro {
  max-width: 900px;
  text-align: center;
}

.leadership-intro h2 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.14;
  margin: 0;
}

.bio-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bio-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(4, 14, 27, 0.06);
  padding: 34px;
}

.bio-header {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  gap: 30px;
  grid-template-columns: auto minmax(0, 1fr);
  margin-bottom: 28px;
  padding-bottom: 28px;
}

.bio-header h2 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
}

.bio-copy {
  display: grid;
  gap: 16px;
}

.bio-copy p {
  color: #303948;
  font-size: 15px;
  line-height: 1.68;
  margin: 0;
}

@media (max-width: 1040px) {
  .menu-button {
    display: inline-flex;
    position: relative;
  }

  .site-nav {
    align-items: stretch;
    background: rgba(2, 8, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    position: absolute;
    right: 34px;
    top: calc(100% + 10px);
    width: min(320px, calc(100vw - 40px));
  }

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

  .site-nav a {
    border-radius: 6px;
    padding: 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-actions {
    margin-top: 46px;
  }

  .hero-graph {
    margin-top: 10px;
    max-width: 680px;
  }

  .feature-grid.six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-card {
    border-bottom: 1px solid var(--line-light);
    min-height: 178px;
    padding: 24px 20px;
  }

  .capability-card:nth-child(3n) {
    border-right: 0;
  }

  .capability-card:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .platform-layout,
  .roadmap-layout {
    grid-template-columns: 1fr;
  }

  .section-copy {
    max-width: 620px;
  }

  .biomarkers {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    padding-left: 0;
    padding-top: 28px;
  }

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

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

  .tab-grid,
  .two-column,
  .split-heading {
    grid-template-columns: 1fr;
  }

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

  .clinician-grid,
  .capability-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bio-layout,
  .leader-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    padding: 0 20px;
  }

  .brand {
    width: 210px;
  }

  .menu-button {
    display: inline-flex;
    position: relative;
  }

  .site-nav {
    align-items: stretch;
    background: rgba(2, 8, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: calc(100% + 10px);
    width: min(320px, calc(100vw - 40px));
  }

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

  .site-nav a {
    border-radius: 6px;
    padding: 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .section-inner {
    padding: 0 22px;
  }

  .hero {
    min-height: 0;
    padding: 120px 0 56px;
  }

  .hero-inner {
    gap: 34px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-graph {
    min-height: 0;
  }

  .graph-legend {
    right: 0;
    top: 64px;
    width: 150px;
  }

  .light-section,
  .dark-section {
    padding: 58px 0;
  }

  .feature-grid.three,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    align-items: start;
    background: var(--white);
    border: 1px solid var(--line-light);
    border-radius: 8px;
    padding: 20px;
  }

  .limitation blockquote {
    font-size: 21px;
  }

  .flow-row,
  .roadmap-flow {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .flow-step,
  .roadmap-step {
    max-width: 260px;
  }

  .flow-arrow {
    line-height: 1;
    transform: rotate(90deg);
  }

  .platform-callout {
    margin-top: 32px;
  }

  .cta-card {
    border-bottom: 1px solid var(--line-light);
    border-right: 0;
    padding: 24px 0;
  }

  .cta-card:first-child {
    padding-top: 0;
  }

  .cta-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .page-hero {
    min-height: 0;
    padding: 120px 0 62px;
  }

  .page-hero-inner h1 {
    font-size: 42px;
  }

  .page-hero-inner p:not(.eyebrow) {
    font-size: 17px;
  }

  .content-band {
    padding: 58px 0;
  }

  .content-card,
  .thesis-card,
  .marker-list,
  .phase-card,
  .clinician-grid article,
  .investor-steps article {
    padding: 26px;
  }

  .phase-timeline,
  .metric-grid,
  .capability-matrix,
  .clinician-grid,
  .investor-steps {
    grid-template-columns: 1fr;
  }

  .closing-panel {
    grid-template-columns: 1fr;
  }

  .leader-card.compact,
  .bio-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand {
    width: 184px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .graph-legend {
    display: none;
  }

  .section-heading h2,
  .section-copy h2 {
    font-size: 29px;
  }

  .section-heading.centered h2 {
    font-size: 16px;
  }

  .feature-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .icon-badge {
    height: 72px;
    width: 72px;
  }

  .icon-badge svg {
    height: 38px;
    width: 38px;
  }

  .feature-grid.six {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .capability-card:nth-child(3n),
  .capability-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line-light);
    border-right: 0;
  }

  .capability-card:last-child {
    border-bottom: 0;
  }

  .biomarkers ul {
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-social {
    grid-column: 1 / -1;
  }

  .page-hero-inner h1 {
    font-size: 36px;
  }

  .content-card h2,
  .thesis-card h2,
  .marker-list h2,
  .phase-card h2,
  .clinician-grid h2,
  .investor-steps h2 {
    font-size: 27px;
  }

  .thesis-card p {
    font-size: 21px;
  }

  .leadership-intro h2 {
    font-size: 30px;
  }

  .bio-card,
  .leader-card {
    padding: 26px;
  }
}
