:root {
  --bg: #f4f4f2;
  --surface: #fbfbfa;
  --surface-2: #e9e9e6;
  --text: #20201f;
  --muted: #666663;
  --line: #d5d5d1;
  --accent: #737373;
  --accent-strong: #505050;
  --accent-soft: #e3e3e0;
  --button-text: #ffffff;
  --selection-bg: #a3a3a3;
  --selection-text: #171717;
  --teal: #496b66;
  --teal-soft: #e0ebe8;
  --shadow: 0 18px 60px rgba(32, 32, 31, 0.10);
  --shadow-sm: 0 8px 28px rgba(32, 32, 31, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: #141414;
  --surface: #1d1d1d;
  --surface-2: #292929;
  --text: #f1f1ef;
  --muted: #b5b5b1;
  --line: #3d3d3a;
  --accent: #a3a3a3;
  --accent-strong: #d4d4d4;
  --accent-soft: #333333;
  --button-text: #171717;
  --selection-bg: #c4c4c4;
  --selection-text: #161616;
  --teal: #83aaa4;
  --teal-soft: #203a36;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  --shadow-sm: 0 8px 28px rgba(0, 0, 0, 0.24);
  color-scheme: dark;
}

* { box-sizing: border-box; }

::selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}
::-moz-selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 7% 0%, rgba(115, 115, 115, 0.12), transparent 28rem),
    radial-gradient(circle at 100% 30%, rgba(73, 107, 102, 0.07), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  transition: background-color 180ms ease, color 180ms ease;
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 100% 30%, rgba(131, 170, 164, 0.05), transparent 32rem),
    var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: var(--bg);
  border-radius: 10px;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(50, 35, 27, 0.06);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 150px;
}
.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: var(--logo-color, var(--text));
  transition: background-color 180ms ease, transform 180ms ease;
}
.brand:hover .brand-mark,
.brand:focus-visible .brand-mark,
.footer-logo:hover .brand-mark,
.footer-logo:focus-visible .brand-mark { transform: scale(1.08); }
.brand:focus-visible,
.footer-logo:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 50%, transparent);
  outline-offset: 5px;
  border-radius: 999px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--surface-2);
  color: var(--text);
}

.nav-actions { display: flex; align-items: center; gap: 0.55rem; }
.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.icon-button:hover { transform: translateY(-1px); border-color: var(--accent); }
.icon-button svg { width: 19px; height: 19px; }
.theme-icon-moon { display: none; }
html[data-theme="dark"] .theme-icon-sun { display: none; }
html[data-theme="dark"] .theme-icon-moon { display: block; }

.menu-button { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: var(--button-text);
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(32, 32, 31, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(32, 32, 31, 0.26); }
.button.secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}
.button.secondary:hover { border-color: var(--accent); }
.button.small { min-height: 42px; padding: 0.58rem 0.95rem; font-size: 0.93rem; }

.hero {
  padding: 6.5rem 0 5.5rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 4rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 850px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.hero h1 { font-size: clamp(3.2rem, 7vw, 6.7rem); line-height: 1.15; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-copy {
  max-width: 660px;
  margin: 1.55rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-note { margin-top: 1rem; color: var(--muted); font-size: 0.88rem; }

.science-orbit {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.orbit-core {
  position: relative;
  width: min(74vw, 350px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.92), transparent 18%),
    linear-gradient(145deg, #686868, #a1a1a1 60%, #d6d6d3);
  box-shadow: inset -24px -30px 70px rgba(40,40,40,0.16), 0 40px 90px rgba(48,48,47,0.22);
  animation: float 6s ease-in-out infinite;
}
html[data-theme="dark"] .orbit-core {
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.42), transparent 18%),
    linear-gradient(145deg, #b6b6b3, #646462 72%, #2c2c2b);
}
.orbit-ring {
  position: absolute;
  inset: 9%;
  border: 1px solid color-mix(in srgb, var(--text) 20%, transparent);
  border-radius: 50%;
  transform: rotate(22deg) scaleX(1.28) scaleY(0.58);
}
.orbit-ring.ring-2 { transform: rotate(-38deg) scaleX(1.18) scaleY(0.72); }
.orbit-dot {
  position: absolute;
  width: 18px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--teal) 16%, transparent);
}
.dot-3 { bottom: 10%; right: 11%; width: 10px; background: var(--accent-strong); }
.molecule-card {
  position: absolute;
  width: 210px;
  padding: 1rem 1.05rem;
  border: 1px solid color-mix(in srgb, var(--line) 85%, transparent);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.molecule-card strong { display: block; font-size: 1rem; }
.molecule-card span { display: block; margin-top: 0.2rem; color: var(--muted); font-size: 0.82rem; }
.card-a { top: 6%; left: 0; }
.card-b { right: -2%; bottom: 8%; }

@keyframes float { 50% { transform: translateY(-14px) rotate(1deg); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: 0.01ms !important; }
}

.section { padding: 5.5rem 0; }
.section.compact { padding: 3.5rem 0; }
#approach { scroll-margin-top: 78px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}
.section-heading-single {
  grid-template-columns: minmax(0, 850px);
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 1.05rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.card {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow-sm);
}
.card-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 850;
}
.card h3 { margin: 1.05rem 0 0.45rem; font-size: 1.25rem; }
.card p { margin: 0; color: var(--muted); }

.focus-band {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.focus-row {
  display: block;
}
.focus-content { padding: clamp(2rem, 5vw, 4.5rem); }
.focus-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.focus-content p { color: var(--muted); max-width: 640px; }
.focus-list { margin: 1.7rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.75rem; }
.focus-list li { display: grid; gap: 0.1rem; padding: 0.8rem 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.focus-list li:last-child { border-bottom: 0; }
.focus-list li span { display: block; color: var(--muted); font-weight: 550; }
.stage-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 800;
  font-size: 0.78rem;
  white-space: nowrap;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-soft), color-mix(in srgb, var(--teal-soft) 60%, var(--surface)));
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
}
.cta-panel h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.1rem, 4vw, 3.7rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.035em; }
.cta-panel p { margin: 0.7rem 0 0; color: var(--muted); }

.page-hero { padding: 5.5rem 0 3.3rem; }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 1.15rem; margin: 1.25rem 0 0; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; color: var(--muted); font-size: 0.88rem; margin-bottom: 1rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-strong); }

.pipeline-category-heading { max-width: 790px; margin-bottom: 2rem; }
.pipeline-category-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.035em; }
.pipeline-category-heading h2 span { color: var(--accent-strong); }
.pipeline-category-heading p { margin: 1rem 0 0; color: var(--muted); font-size: 1.05rem; }

.pipeline-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.pipeline-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}
.pipeline-table th,
.pipeline-table td { padding: 1.05rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.pipeline-table tr:last-child td { border-bottom: 0; }
.pipeline-table th { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; background: var(--surface-2); }
.program-id { color: var(--accent-strong); font-weight: 850; }
.program-title { font-weight: 750; }
.program-sub { display: block; color: var(--muted); font-size: 0.86rem; margin-top: 0.2rem; }

.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 3rem; align-items: start; }
.legal-nav { position: sticky; top: 105px; padding: 1rem; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.legal-nav strong { display: block; margin-bottom: 0.65rem; }
.legal-nav a { display: block; padding: 0.38rem 0; color: var(--muted); font-size: 0.9rem; text-decoration: none; }
.legal-nav a:hover { color: var(--accent-strong); }
.legal-copy h2 { margin: 2.5rem 0 0.65rem; font-size: 1.55rem; scroll-margin-top: 105px; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p, .legal-copy li { color: var(--muted); }
.legal-copy ul { padding-left: 1.25rem; }
.effective-date { display: inline-flex; padding: 0.4rem 0.7rem; border-radius: 999px; background: var(--surface-2); color: var(--muted); font-size: 0.82rem; }

.site-footer { margin-top: 4rem; border-top: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 72%, transparent); }
.footer-main { padding: 3rem 0 2rem; display: grid; grid-template-columns: 1.3fr 0.7fr 0.7fr; gap: 2rem; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}
.footer-logo .brand-mark { width: 36px; height: 36px; }
.footer-brand p { max-width: 460px; color: var(--muted); margin: 0.8rem 0 0; }

.us-flag-wrap { margin-top: 0.7rem; }
.footer-brand img.us-flag {
  width: 24px;
  height: auto;
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(25, 20, 18, 0.10);
}
.footer-column strong { display: block; margin-bottom: 0.7rem; }
.footer-column a { display: block; margin: 0.38rem 0; color: var(--muted); text-decoration: none; }
.footer-column a:hover { color: var(--accent-strong); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0 1.5rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.82rem; }
.footer-bottom a { text-decoration: none; }

.scroll-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 80;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, border-color 160ms ease, background 160ms ease;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-to-top:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.scroll-to-top:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: 3px;
}
.scroll-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .menu-button { display: inline-grid; }
  .nav-links {
    position: fixed;
    inset: 78px 1rem auto 1rem;
    display: none;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; }
  .nav-links a { width: 100%; border-radius: 12px; }
  .hero { padding-top: 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .science-orbit { min-height: 430px; }
  .section-heading { grid-template-columns: 1fr; gap: 0.8rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .pipeline-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .pipeline-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }
  .pipeline-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .pipeline-table tbody {
    display: grid;
    gap: 1rem;
  }
  .pipeline-table tr {
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
  }
  .pipeline-table td {
    display: grid;
    gap: 0.28rem;
    width: 100%;
    padding: 0.85rem 1rem;
  }
  .pipeline-table td::before {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .pipeline-table td:nth-child(1)::before { content: "Program"; }
  .pipeline-table td:nth-child(2)::before { content: "Indication"; }
  .pipeline-table td:nth-child(3)::before { content: "Candidate"; }
  .pipeline-table td:nth-child(4)::before { content: "Regulatory milestone"; }
  .pipeline-table tr:last-child td:not(:last-child) { border-bottom: 1px solid var(--line); }
  .pipeline-table td:last-child { border-bottom: 0; }
  .stage-pill {
    justify-self: start;
    max-width: 100%;
    margin-left: -2px;
    line-height: 1.35;
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 1.2rem), var(--max)); }
  .navbar { min-height: 70px; }
  .nav-links { top: 70px; }
  .brand .brand-mark { width: 31px; height: 31px; }
  .hero { padding: 3.3rem 0 4rem; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .science-orbit {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
  }
  .orbit-ring,
  .orbit-dot,
  .orbit-core { display: none; }
  .molecule-card {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 1rem;
  }
  .molecule-card strong {
    margin-bottom: 0.35rem;
    line-height: 1.3;
  }
  .molecule-card span {
    margin-top: 0;
    line-height: 1.5;
  }
  .card-a,
  .card-b {
    inset: auto;
  }
  .section { padding: 4rem 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .scroll-to-top { right: 0.9rem; bottom: 0.9rem; }
}

/*
 * Subsidiary disclosure in the footer. Quieter than the blurb above it: it
 * answers "who is behind this" for anyone who asks, and stays out of the way
 * of everyone who does not.
 */
.lineage {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  opacity: 0.75;
}

/*
 * ── Pipeline status ─────────────────────────────────────────────────────────
 *
 * Three counts, stated plainly. A reader doing diligence wants the position
 * before the argument, and every figure here is one they can check against the
 * pipeline table rather than a claim they have to take on trust.
 *
 * The figure is set in the serif at display size for the same reason the
 * section headings are: it makes the number the thing the eye lands on, which
 * is the whole point of the row.
 */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.6rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow-sm);
}

.stat-figure {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
}

.stat-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* The heading rule zeroes every margin, so the lede needs its own gap back. */
.section-lede { margin-top: 1rem !important; }


@media (max-width: 860px) {
  .stat-row { grid-template-columns: 1fr; }
}

/*
 * A note under the model cards.
 *
 * Deliberately does not name the tool or link to it. Hex Infrastructure's own
 * site describes MGAM as provenance rather than as a customer reference, and
 * that honesty only holds if this page does not turn around and advertise
 * back — a reader who checks both would see a reference manufactured between
 * two companies with one owner. Stated as an operational fact about MGAM, it
 * corroborates the claim without becoming one.
 */
.model-note {
  margin: 1.6rem 0 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/*
 * The site-wide legal note, in the footer under the ownership line.
 *
 * Wider than the sibling paragraphs and a step smaller: it is four sentences of
 * securities and medical-advice language that nobody reads top to bottom, and
 * squeezing it to the 460px measure the blurb uses would turn it into eight
 * cramped lines. Muted rather than hidden — a disclaimer that is hard to find
 * is worth less than one that is simply quiet.
 */
.footer-brand .footer-disclaimer {
  max-width: 620px;
  margin-top: 0.9rem;
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--muted);
}
