:root {
  --bg: #eaf2ff;
  --bg-soft: #d7e5fa;
  --surface: #f7fbff;
  --surface-strong: #eef5ff;
  --surface-raised: #e5f0ff;
  --text: #153456;
  --muted: #4c6787;
  --muted-strong: #29486c;
  --accent: #2d75f6;
  --accent-soft: #5f95ff;
  --line: rgba(28, 73, 130, 0.12);
  --line-strong: rgba(28, 73, 130, 0.24);
  --shadow: 0 24px 60px rgba(41, 82, 142, 0.16);
  --header-offset: 134px;
  --anchor-offset: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset, 88px);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #f6faff, #e7f1ff);
}

h1,
h2,
h3,
.brand-name,
button {
  font-family: "Space Grotesk", sans-serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.micrograph-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.micrograph-layer,
.micrograph-overlay {
  position: absolute;
  inset: calc(var(--parallax-bleed-y, 420px) * -1) calc(var(--parallax-bleed-x, 240px) * -1);
  transform: translate3d(0, calc(var(--parallax-shift, 0px) - var(--parallax-offset, 0px)), 0) scale(var(--parallax-scale, 1.14));
  transform-origin: center center;
  will-change: transform;
}

.micrograph-layer {
  background-image: url("./assets/background-blue.png");
  background-size: cover;
  background-position: center center;
  opacity: 0.88;
  filter: saturate(1.02) brightness(0.98) contrast(0.96);
}

.micrograph-overlay-deep {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.46), transparent 20%),
    radial-gradient(circle at 76% 60%, rgba(77, 139, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(230, 241, 255, 0.1), rgba(224, 236, 255, 0.34));
}

.micrograph-overlay-light {
  background:
    linear-gradient(90deg, rgba(224, 236, 255, 0.28), transparent 18%, transparent 82%, rgba(217, 231, 255, 0.32)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(220, 234, 255, 0.42));
}

.site-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-offset, 134px);
  padding-bottom: 72px;
}

.shell,
.page-frame {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.page-frame {
  display: grid;
  gap: 24px;
}

.topbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  padding-top: 16px;
  background: linear-gradient(180deg, rgba(246, 250, 255, 0.94), rgba(246, 250, 255, 0.84) 74%, rgba(246, 250, 255, 0));
  backdrop-filter: blur(14px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 14px;
  border-bottom: 1px solid var(--line);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  width: clamp(188px, 19vw, 236px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.topbar-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-line:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.nav-toggle-line:nth-child(2) {
  transform: translate(-50%, -50%);
}

.nav-toggle-line:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.nav a {
  padding: 10px 14px;
  border: 1px solid transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.nav a:hover,
.nav a.active,
.nav a.is-active,
.nav a[aria-current="page"] {
  color: var(--text);
  border-color: var(--line);
  background: rgba(95, 149, 255, 0.1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.language-switcher a:hover,
.language-switcher a.is-active,
.language-switcher a[aria-current="true"] {
  background: rgba(95, 149, 255, 0.12);
  color: var(--text);
}

@media (min-width: 761px) {
  .topbar-actions .nav {
    order: 1;
  }

  .topbar-actions .language-switcher {
    order: 2;
  }
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(250, 253, 255, 0.96), rgba(235, 244, 255, 0.98));
  box-shadow: 0 14px 30px rgba(41, 82, 142, 0.18);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease, border-color 180ms ease;
}

.back-to-top[data-visible="true"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--line-strong);
}

.back-to-top-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.analytics-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: min(680px, calc(100% - 48px));
  padding: 14px 16px;
  border: 1px solid rgba(47, 93, 157, 0.18);
  background: rgba(247, 251, 255, 0.92);
  box-shadow: 0 18px 44px rgba(41, 82, 142, 0.18);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.analytics-consent[data-visible="true"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.analytics-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.analytics-consent a {
  color: var(--muted-strong);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 117, 246, 0.34);
}

.analytics-consent-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.analytics-consent button {
  padding: 9px 12px;
  border: 1px solid rgba(47, 93, 157, 0.22);
  background: rgba(255, 255, 255, 0.54);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.analytics-consent .analytics-consent-accept {
  border-color: rgba(45, 117, 246, 0.36);
  background: rgba(45, 117, 246, 0.1);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: 2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer span {
  color: rgba(21, 52, 86, 0.62);
}

.site-footer a {
  color: rgba(21, 52, 86, 0.72);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 117, 246, 0.24);
}

.site-footer a::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 12px 2px 0;
  border-radius: 50%;
  background: rgba(21, 52, 86, 0.36);
}

.site-footer a:hover,
.analytics-consent a:hover {
  color: var(--text);
  border-bottom-color: rgba(45, 117, 246, 0.56);
}

.page-hero,
.section-panel {
  position: relative;
  scroll-margin-top: var(--anchor-offset, 88px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(252, 254, 255, 0.78), rgba(239, 246, 255, 0.76));
  box-shadow: var(--shadow);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.92fr);
  align-items: stretch;
}

.page-hero::before,
.section-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(210, 226, 255, 0.08));
  pointer-events: none;
}



.page-leadership .page-hero {
  min-height: 0;
}

.page-leadership .leadership-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  align-items: center;
}

.page-leadership .leadership-hero-copy {
  align-self: center;
  padding: 46px 28px 34px 56px;
}

.leadership-founder-summary {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  max-width: 68ch;
  margin: 0;
  padding: 46px 34px 34px 18px;
}

.page-leadership .page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 3.8vw, 3.4rem);
}

.page-leadership .leadership-roster-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: stretch;
  padding: 0 34px 34px;
  gap: 16px;
}

.page-leadership .leadership-roster-grid .roster-card {
  min-height: 0;
  align-content: start;
}

@media (min-width: 1121px) {
  .page-leadership .leadership-roster-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .page-leadership .leadership-roster-grid .roster-card {
    grid-column: span 2;
  }

  .page-leadership .leadership-roster-grid .roster-card:nth-last-child(2):nth-child(3n + 1) {
    grid-column: 2 / span 2;
  }

  .page-leadership .leadership-roster-grid .roster-card:nth-last-child(1):nth-child(3n + 2) {
    grid-column: 4 / span 2;
  }
}

.page-leadership .leadership-roster-grid .roster-card h3,
.page-leadership .leadership-roster-grid .roster-card p {
  max-width: 28ch;
}

.bio-portrait {
  display: block;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 32%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(234, 243, 255, 0.92));
  box-shadow: 0 12px 28px rgba(66, 108, 173, 0.14);
}

.bio-card {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
  padding: 34px 40px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(244, 249, 255, 0.72)),
    rgba(255, 255, 255, 0.68);
}

.bio-card-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  align-content: center;
  justify-items: center;
  min-height: 100%;
  margin-bottom: 0;
  padding: 10px 32px 10px 0;
  border-right: 1px solid var(--line);
  text-align: center;
}

.bio-card-head-copy {
  display: grid;
  gap: 16px;
  justify-items: center;
  min-width: 0;
}

.bio-card-head-copy .eyebrow,
.bio-card-head-copy h2 {
  margin: 0;
}

.bio-portrait {
  order: -1;
  width: 142px;
  justify-self: center;
  align-self: center;
}

.bio-card-head-copy h2 {
  max-width: 11ch;
  font-size: clamp(1.65rem, 1.85vw, 2.05rem);
  line-height: 1.02;
}

.bio-meta {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding-top: 14px;
  border-top: 2px solid rgba(45, 117, 246, 0.34);
}

.bio-credentials,
.bio-position {
  display: block;
  color: var(--muted-strong);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bio-credentials {
  font-size: 0.8rem;
}

.bio-position {
  min-width: 64px;
  padding: 7px 12px;
  border: 1px solid rgba(88, 148, 244, 0.28);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font-size: 0.72rem;
}

.bio-card-body {
  display: grid;
  gap: 16px;
}

.bio-card-body .body-copy {
  max-width: 84ch;
  margin: 0;
  line-height: 1.78;
}

.page-hero-copy,
.section-copy,
.section-heading-row,
.detail-card,
.roster-card {
  position: relative;
  z-index: 1;
}

.page-hero-copy {
  padding: 64px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.1vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.page-home .page-hero h1 {
  width: 100%;
  max-width: none;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

@media (min-width: 761px) {
  .page-home .page-hero {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  }

  .page-home .page-hero h1 {
    font-size: clamp(1.2rem, 1.4vw, 1.45rem);
  }
}

.hero-copy-block {
  max-width: 58ch;
}

.page-hero-visual {
  position: relative;
  z-index: 1;
  min-height: 100%;
}

.page-home .page-hero-visual {
  min-height: 0;
  align-self: center;
}

.visual-panel {
  position: relative;
  padding: 28px;
  background: linear-gradient(180deg, rgba(242, 248, 255, 0.84), rgba(225, 237, 255, 0.82));
  border-left: 1px solid var(--line);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #dbe8fb;
  filter: hue-rotate(164deg) saturate(0.72) brightness(1.08);
}

.responsive-figure {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.responsive-figure img,
.bio-portrait {
  cursor: zoom-in;
}

.real-figure-panel {
  display: grid;
  align-items: stretch;
  padding: 18px;
  background: linear-gradient(160deg, rgba(7, 21, 42, 0.94), rgba(14, 38, 72, 0.88));
}

.real-figure-panel .responsive-figure {
  display: block;
  height: 100%;
  border: 1px solid rgba(186, 210, 244, 0.16);
  background: radial-gradient(circle at 50% 42%, rgba(55, 116, 208, 0.16), rgba(2, 10, 22, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.real-figure-panel img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: contain;
  border: 0;
  background: transparent;
  filter: none;
}

.figure-panel-home {
  padding: 14px;
  background: linear-gradient(160deg, rgba(240, 247, 255, 0.96), rgba(219, 234, 253, 0.92));
}

.figure-panel-home .responsive-figure {
  height: auto;
  min-height: 0;
  aspect-ratio: 1659 / 948;
  border: 1px solid rgba(133, 166, 209, 0.28);
  background: linear-gradient(180deg, rgba(244, 250, 255, 0.92), rgba(225, 239, 255, 0.88));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 14px 34px rgba(50, 86, 132, 0.12);
}

.figure-panel-home img {
  min-height: 0;
  object-fit: contain;
  object-position: center center;
}

.figure-panel-science {
  padding: 14px;
  background: linear-gradient(160deg, rgba(240, 247, 255, 0.96), rgba(219, 234, 253, 0.92));
}

.figure-panel-science .responsive-figure {
  height: auto;
  min-height: 0;
  aspect-ratio: 1650 / 953;
  border: 1px solid rgba(133, 166, 209, 0.28);
  background: linear-gradient(180deg, rgba(244, 250, 255, 0.92), rgba(225, 239, 255, 0.88));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 14px 34px rgba(50, 86, 132, 0.12);
}

.figure-panel-science img {
  min-height: 0;
  object-fit: contain;
  object-position: center center;
}

.science-panel {
  display: grid;
  gap: 0;
}

.science-copy-panel {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 34px 34px 0;
}

.science-figure-panel {
  width: min(calc(100% - 68px), 1060px);
  margin: 8px auto 34px;
}

.investor-hero {
  grid-template-columns: 1fr;
}

.investor-hero-lockup {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
}

.page-investors .investor-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
  min-height: 300px;
  padding: 56px clamp(56px, 7vw, 86px);
}

.investor-hero-heading {
  min-width: 0;
}

.page-investors .page-hero h1 {
  max-width: 21ch;
  font-size: clamp(1.95rem, 2.55vw, 2.75rem);
  line-height: 1.06;
  margin-bottom: 0;
}

.page-investors .hero-copy-block {
  justify-self: center;
  max-width: 50ch;
  margin: 0;
}

.placeholder-note {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: min(320px, calc(100% - 80px));
  padding: 12px 14px;
  border: 1px solid rgba(28, 73, 130, 0.14);
  background: linear-gradient(180deg, rgba(251, 254, 255, 0.88), rgba(235, 244, 255, 0.84));
  box-shadow: 0 12px 28px rgba(41, 82, 142, 0.12);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.placeholder-note-kicker {
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.placeholder-note-copy {
  color: rgba(21, 52, 86, 0.76);
  font-size: 0.84rem;
  line-height: 1.45;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.meta-row span,
.roster-role,
.route-kicker {
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted-strong);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roster-role {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
}

.roster-position {
  padding-left: 10px;
  border-left: 1px solid rgba(64, 111, 180, 0.22);
  color: var(--ink);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.body-copy,
.pipeline-content p,
.route-copy,
.roster-card p {
  color: var(--muted);
  line-height: 1.72;
  text-align: left;
  text-wrap: pretty;
}

.inline-link {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 117, 246, 0.34);
}

.inline-link:hover {
  color: var(--text);
  border-bottom-color: rgba(45, 117, 246, 0.62);
}

.muted-copy {
  color: #baa39d;
}

.section-panel {
  padding: 34px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.92fr);
  gap: 30px;
  align-items: stretch;
}

.split-panel-reverse .section-copy {
  order: 2;
}

.split-panel-reverse .section-visual {
  order: 1;
}

.science-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.science-copy .body-copy {
  max-width: none;
  margin: 0;
}

.science-opening {
  font-size: 1.08rem;
}

.science-inline-title {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 1.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-copy h2,
.section-heading-row h2,
.detail-card h2 {
  max-width: 18ch;
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-visual {
  min-height: 100%;
  padding: 18px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(12, 28, 54, 0.72);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  display: block;
  max-width: min(100%, 1440px);
  max-height: min(100%, 86vh);
  object-fit: contain;
  border: 1px solid rgba(218, 231, 252, 0.72);
  background: rgba(245, 249, 255, 0.96);
  box-shadow: 0 32px 90px rgba(12, 36, 76, 0.42);
  cursor: zoom-out;
}

body.lightbox-open {
  overflow: hidden;
}

.section-visual img {
  min-height: 360px;
}

.privacy-policy-panel {
  padding: clamp(28px, 5vw, 64px);
}

.privacy-policy-panel h1 {
  position: relative;
  z-index: 1;
  max-width: 20ch;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.privacy-policy-panel h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.privacy-policy-panel .body-copy {
  position: relative;
  z-index: 1;
  max-width: 78ch;
}

.privacy-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  max-width: 980px;
  margin-top: 34px;
}

.privacy-copy section {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.privacy-copy ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.72;
}

.privacy-copy li + li {
  margin-top: 8px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading-copy {
  max-width: 44ch;
}

.pipeline-panel {
  background: linear-gradient(180deg, rgba(249, 252, 255, 0.86), rgba(232, 242, 255, 0.84));
}

.program-journey-header {
  align-items: start;
  justify-content: start;
  margin-bottom: 26px;
}

.program-journey-header > div,
.route-heading > div {
  width: 100%;
}

.program-journey-header h2,
.route-heading h2 {
  max-width: none;
  margin-bottom: 0;
}

.route-heading {
  align-items: start;
  justify-content: start;
}

.program-journey {
  display: grid;
  gap: 0;
}

.program-journey-board {
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(236, 245, 255, 0.58));
}

.program-journey-board > .journey-board-row + .journey-board-row {
  border-top: 1px solid var(--line);
}

.journey-board-row {
  position: relative;
  padding: 24px;
}

.journey-board-row-label {
  padding-top: 18px;
  padding-bottom: 18px;
}

.journey-phase-kicker {
  margin: 0;
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journey-phase-copy,
.journey-step-summary,
.journey-outcome span {
  color: var(--muted);
  line-height: 1.68;
}

.journey-board-row-current {
  display: grid;
  gap: 22px;
}

.journey-phase-head {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.journey-phase-head .journey-phase-copy {
  margin: 0;
  max-width: 62ch;
}

.journey-workstreams {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.journey-workstream {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 0 28px 0 0;
}

.journey-workstream + .journey-workstream {
  padding: 0 0 0 28px;
  border-left: 1px solid var(--line);
}

.journey-step-heading-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.journey-step-title-group {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.journey-step-number {
  color: var(--accent-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.journey-workstream h3,
.journey-stage-row h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.14;
}

.journey-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.journey-status-active {
  border-color: rgba(45, 117, 246, 0.22);
  background: rgba(95, 149, 255, 0.12);
  color: #1d4f95;
}

.journey-status-planned {
  border-color: rgba(28, 73, 130, 0.14);
  background: rgba(255, 255, 255, 0.64);
  color: #486786;
}

.journey-status-future {
  border-color: rgba(28, 73, 130, 0.18);
  background: rgba(231, 240, 255, 0.86);
  color: #335f97;
}

.journey-stage-row {
  display: block;
}

.journey-step-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.journey-stage-row-future .journey-step-copy {
  gap: 14px;
}

.journey-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.journey-outcome {
  display: grid;
  gap: 8px;
  padding-right: 18px;
}

.journey-outcome + .journey-outcome {
  padding-left: 18px;
  padding-right: 0;
  border-left: 1px solid var(--line);
}

.route-card strong,
.roster-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.22rem, 2vw, 1.6rem);
}

.route-panel {
  gap: 0;
}

.route-heading {
  margin-bottom: 22px;
}

.route-grid,
.roster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-card,
.roster-card {
  display: grid;
  gap: 14px;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  text-decoration: none;
}

.route-card:hover {
  border-color: var(--line-strong);
  background: rgba(245, 250, 255, 0.9);
}

.roster-card:hover {
  border-color: var(--line-strong);
  background: rgba(245, 250, 255, 0.9);
}

.detail-grid {
  display: grid;
  gap: 18px;
}

.two-column-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-column-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card,
.info-strip {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.bio-card {
  scroll-margin-top: var(--anchor-offset, 88px);
}

.compact-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.28rem, 2.1vw, 1.7rem);
}
.contact-compose-panel {
  align-items: start;
}

.contact-compose-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.contact-form {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field span {
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font: inherit;
}

.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(76, 103, 135, 0.62);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(45, 117, 246, 0.45);
  box-shadow: inset 0 0 0 1px rgba(45, 117, 246, 0.12);
}

.contact-submit {
  width: fit-content;
  padding: 14px 22px;
  border: 1px solid rgba(45, 117, 246, 0.18);
  background: linear-gradient(135deg, #4b8fff, #275dd8);
  color: white;
  font: inherit;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-recaptcha {
  min-height: 78px;
}

.contact-form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.roster-panel {
  padding-bottom: 34px;
}

.info-strip {
  padding: 24px 34px;
}

.info-strip .section-heading-row {
  align-items: center;
  margin-bottom: 0;
}

.info-strip .section-heading-copy {
  max-width: 58ch;
  margin: 0;
}

.info-strip .eyebrow {
  margin-bottom: 12px;
}

.info-strip h2 {
  margin-bottom: 0;
}

.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;
}

@media (max-width: 1120px) {
  .page-hero,
  .split-panel,
  .two-column-grid,
  .three-column-grid,
  .route-grid,
  .roster-grid,
  .journey-workstreams,
  .journey-outcome-grid {
    grid-template-columns: 1fr;
  }

  .split-panel-reverse .section-copy,
  .split-panel-reverse .section-visual {
    order: initial;
  }

  .page-hero {
    min-height: auto;
  }

  .page-leadership .leadership-roster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .page-hero-visual {
    order: -1;
  }

  .page-home .page-hero-copy {
    padding-top: 30px;
  }

  .page-investors .investor-hero-copy {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 30px;
  }

  .page-investors .hero-copy-block {
    max-width: 58ch;
    padding-left: 0;
    border-left: 0;
  }

  .page-home #science .section-visual {
    order: -1;
  }

  .science-figure-panel {
    order: -1;
    margin-top: 30px;
    margin-bottom: 0;
  }

  .science-copy-panel {
    padding-top: 0;
  }

  .visual-panel {
  position: relative;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-visual img,
  .page-hero-visual img {
    min-height: 320px;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }

  .journey-phase-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .journey-phase-head .journey-phase-copy {
    max-width: none;
  }

  .journey-workstream + .journey-workstream {
    padding-left: 0;
    padding-top: 20px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .journey-step .pipeline-points {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .journey-step-heading-row {
    flex-wrap: wrap;
  }

  .journey-outcome + .journey-outcome {
    padding-left: 0;
    padding-top: 14px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  :root {
    --header-offset: 98px;
    --anchor-offset: 74px;
  }

  .shell,
  .page-frame {
    width: min(100% - 20px, 1360px);
  }

  .site-content {
    padding-top: var(--header-offset, 98px);
    padding-bottom: 48px;
  }

  .topbar-wrap {
    padding-top: 10px;
    background: linear-gradient(180deg, rgba(246, 250, 255, 0.96), rgba(246, 250, 255, 0.9) 80%, rgba(246, 250, 255, 0));
  }

  .topbar {
    align-items: center;
    flex-direction: row;
    gap: 16px;
    padding: 8px 0 12px;
  }

  .topbar-actions {
    margin-left: auto;
    gap: 8px;
  }

  .brand-logo {
    width: 154px;
  }

  .language-switcher {
    padding: 2px;
  }

  .language-switcher a {
    min-width: 34px;
    min-height: 32px;
    padding: 8px;
    font-size: 0.68rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: var(--line);
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(260px, calc(100vw - 20px));
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(236, 245, 255, 0.98));
    box-shadow: 0 18px 44px rgba(41, 82, 142, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav[data-open="true"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
  }

  .page-hero-copy,
  .section-panel,
  .detail-card,
  .route-card,
  .roster-card,
  .info-strip {
    padding: 22px;
  }

  .page-investors .investor-hero-copy {
    gap: 24px;
    min-height: auto;
    padding: 34px clamp(26px, 8vw, 44px);
  }

  .site-footer {
    justify-content: center;
    width: min(100% - 20px, 1360px);
    padding-top: 4px;
    padding-bottom: 6px;
  }

  .analytics-consent {
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    width: calc(100% - 20px);
    gap: 12px;
  }

  .analytics-consent-actions {
    justify-content: flex-end;
  }

  .back-to-top {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
    box-shadow: 0 12px 24px rgba(41, 82, 142, 0.2);
  }

  .back-to-top-label {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .page-hero h1 {
    font-size: clamp(1.95rem, 7.2vw, 2.8rem);
    max-width: 14ch;
  }

  .page-home .page-hero h1 {
    max-width: none;
    font-size: clamp(1.35rem, 5.6vw, 1.8rem);
    line-height: 1.04;
    text-wrap: pretty;
  }

  .figure-panel-home {
    padding: 12px;
  }

  .figure-panel-home .responsive-figure {
    aspect-ratio: 1659 / 948;
  }

  .science-copy-panel {
    padding: 22px 22px 0;
  }

  .science-figure-panel {
    margin: 0 22px 22px;
  }

  .program-journey-header {
    margin-bottom: 22px;
  }

  .journey-board-row {
    padding: 20px;
  }

  .journey-board-row-label {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .journey-workstream h3,
  .journey-stage-row h3 {
    font-size: clamp(1.08rem, 5.6vw, 1.32rem);
  }

  .journey-step-number {
    font-size: 0.98rem;
  }

  .journey-status {
    padding: 7px 10px;
    font-size: 0.69rem;
  }

  .journey-phase-copy,
  .journey-step-summary,
  .journey-outcome span {
    line-height: 1.62;
  }

  .journey-workstreams {
    gap: 20px;
  }

  .page-leadership .leadership-hero-copy {
    padding-bottom: 18px;
  }

  .page-leadership .leadership-hero {
    grid-template-columns: 1fr;
  }

  .leadership-founder-summary {
    padding: 0 22px 22px;
    justify-self: stretch;
    max-width: none;
  }

  .page-leadership .leadership-roster-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 22px 24px;
  }

  .page-leadership .leadership-roster-grid .roster-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 0;
    gap: 8px 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.72);
  }

  .page-leadership .leadership-roster-grid .roster-card h3 {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    margin: 0;
    font-size: clamp(1.02rem, 5vw, 1.18rem);
    line-height: 1.18;
  }

  .page-leadership .leadership-roster-grid .roster-role {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 7px;
    padding: 8px 10px;
    white-space: nowrap;
  }

  .page-leadership .leadership-roster-grid .roster-position {
    padding-left: 8px;
  }

  .page-leadership .leadership-roster-grid .roster-card p {
    display: none;
  }

  .bio-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }

  .bio-card-head {
    grid-template-columns: 1fr;
    gap: 14px;
    align-content: center;
    justify-items: center;
    text-align: center;
    min-height: 0;
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .bio-card-head-copy {
    grid-column: 1;
    justify-items: center;
    gap: 10px;
  }

  .bio-portrait {
    order: -1;
    grid-column: 1;
    grid-row: auto;
    width: 96px;
    border-radius: 50%;
  }

  .bio-card-head-copy h2 {
    max-width: none;
  }

  .bio-meta {
    justify-items: center;
    gap: 7px;
    padding-top: 8px;
  }

  .bio-credentials {
    font-size: 0.76rem;
  }

  .bio-position {
    min-width: 54px;
    padding: 6px 10px;
  }

  .placeholder-note {
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: none;
  }

  .section-copy h2,
  .section-heading-row h2,
  .detail-card h2 {
    font-size: clamp(1.4rem, 5.8vw, 2rem);
    max-width: none;
  }

  .page-frame {
    gap: 16px;
  }

  .page-hero,
  .section-panel {
    box-shadow: 0 18px 46px rgba(41, 82, 142, 0.16);
  }

  .section-visual img,
  .page-hero-visual img {
    min-height: 240px;
  }

}

@media (max-width: 360px) {
  .page-leadership .leadership-roster-grid .roster-card {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .page-leadership .leadership-roster-grid .roster-role {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }
}












