:root {
  --bg: #ffffff;
  --bg-alt: #eef7f8;
  --panel: rgba(255, 255, 255, 0.98);
  --panel-strong: #eef5fb;
  --text: #12324f;
  --muted: #58718c;
  --line: rgba(11, 61, 145, 0.08);
  --brand: #3ab0a6;
  --brand-deep: #0b3d91;
  --accent: #4c9a2a;
  --shadow: 0 22px 50px rgba(19, 48, 79, 0.05);
  --radius: 28px;
  --content-width: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 7.5rem;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background: #ffffff;
}

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

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

.site-shell {
  position: relative;
}

.site-header {
  width: min(1240px, calc(100vw - 2rem));
  margin: 0.9rem auto 0;
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0.6rem;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 61, 145, 0.07);
  border-radius: 28px;
  box-shadow: 0 16px 34px rgba(19, 48, 79, 0.06);
  padding-left: 1rem;
  padding-right: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
}

.brand-logo {
  width: 10.8rem;
  max-width: 34vw;
  height: auto;
}

.brand-text {
  display: grid;
  gap: 0.08rem;
  align-self: flex-start;
}

.brand-legal {
  color: rgba(18, 50, 79, 0.72);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
}

.brand-tagline {
  color: #2b958e;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.site-nav button,
.footer-column button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.site-nav a,
.site-nav button {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: inherit;
}

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

.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.08rem) rotate(45deg);
}

.nav-group[open] summary,
.nav-group summary:hover,
.nav-group summary:focus-visible {
  color: var(--text);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  min-width: 11rem;
  padding: 0.8rem 0.9rem;
  display: grid;
  gap: 0.6rem;
  border: 1px solid rgba(11, 61, 145, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(19, 48, 79, 0.08);
  transform: translateX(-50%);
}

.nav-submenu a {
  color: var(--muted);
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--brand-deep);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font: inherit;
}

main {
  width: 100%;
  margin: 0;
  padding-bottom: 5rem;
}

.js-ready .hero,
.js-ready .section,
.js-ready .intro-strip,
.js-ready .page-hero,
.js-ready .vision-strip {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.hero {
  position: relative;
  min-height: min(74vh, 42rem);
  padding: 5.6rem 0 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #ffffff;
}

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

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: none;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(4, 14, 24, 0.05) 0%, rgba(4, 14, 24, 0.22) 42%, rgba(4, 14, 24, 0.6) 100%),
    linear-gradient(90deg, rgba(4, 14, 24, 0.4) 0%, rgba(4, 14, 24, 0.1) 54%, rgba(4, 14, 24, 0.2) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.hero-caption {
  position: absolute;
  right: max(0.9rem, calc((100vw - 1180px) / 2) + 0.4rem);
  bottom: 0.8rem;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.hero-copy {
  max-width: 64rem;
  margin-left: max(2rem, calc((100vw - 1180px) / 2));
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-deep);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: #ffffff;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.hero h1,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: none;
  color: #ffffff;
  font-size: clamp(2.3rem, 4.9vw, 4.3rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.hero-text {
  max-width: 42rem;
  margin: 1.1rem 0 0;
  color: #f5fbff;
  font-size: 1.02rem;
  line-height: 1.85;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  background: var(--brand-deep);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(11, 61, 145, 0.16);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.panel-card,
.info-card,
.timeline-card,
.process-step,
.team-card,
.note-card,
.contact-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 1.4rem;
}

.glass {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    var(--panel);
}

.panel-label,
.team-role {
  margin: 0 0 0.45rem;
  color: #84d9d2;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-role {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.panel-value {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #f7fbff;
}

.intro-strip {
  position: relative;
  width: var(--content-width);
  margin: 0 auto 3rem;
  padding: 2.5rem 0 1.4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 9rem;
  height: calc(100% + 2px);
  background:
    radial-gradient(circle at 14% 22%, rgba(58, 176, 166, 0.16) 0 0.22rem, transparent 0.24rem),
    radial-gradient(circle at 52% 48%, rgba(11, 61, 145, 0.12) 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 80% 70%, rgba(76, 154, 42, 0.14) 0 0.2rem, transparent 0.22rem),
    linear-gradient(120deg, transparent 12%, rgba(11, 61, 145, 0.08) 12.8%, transparent 13.8%),
    linear-gradient(60deg, transparent 48%, rgba(58, 176, 166, 0.08) 48.8%, transparent 49.8%);
  opacity: 0.8;
  pointer-events: none;
}

.intro-strip p {
  margin: 0;
  max-width: 62rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
}

.intro-kicker {
  margin-bottom: 0.45rem;
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vision-strip {
  width: var(--content-width);
  margin: -1.2rem auto 3rem;
  padding: 0 0 1.4rem;
  border-bottom: 1px solid var(--line);
}

.vision-strip p:last-child {
  margin: 0;
  max-width: 62rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
}

.section {
  position: relative;
  width: var(--content-width);
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12.5rem;
  height: 1.35rem;
  background:
    radial-gradient(circle at 0.55rem 0.34rem, rgba(11, 61, 145, 0.78) 0 0.17rem, transparent 0.19rem),
    radial-gradient(circle at 2.1rem 1rem, rgba(58, 176, 166, 0.76) 0 0.17rem, transparent 0.19rem),
    radial-gradient(circle at 3.65rem 0.34rem, rgba(11, 61, 145, 0.74) 0 0.17rem, transparent 0.19rem),
    radial-gradient(circle at 5.2rem 1rem, rgba(58, 176, 166, 0.76) 0 0.17rem, transparent 0.19rem),
    radial-gradient(circle at 6.75rem 0.34rem, rgba(11, 61, 145, 0.74) 0 0.17rem, transparent 0.19rem),
    radial-gradient(circle at 8.3rem 1rem, rgba(58, 176, 166, 0.76) 0 0.17rem, transparent 0.19rem),
    radial-gradient(circle at 9.85rem 0.34rem, rgba(11, 61, 145, 0.74) 0 0.17rem, transparent 0.19rem),
    radial-gradient(circle at 11.4rem 1rem, rgba(58, 176, 166, 0.76) 0 0.17rem, transparent 0.19rem),
    linear-gradient(25deg, transparent 7%, rgba(11, 61, 145, 0.22) 7.6%, rgba(11, 61, 145, 0.22) 9.3%, transparent 10%),
    linear-gradient(-25deg, transparent 18%, rgba(58, 176, 166, 0.24) 18.6%, rgba(58, 176, 166, 0.24) 20.3%, transparent 21%),
    linear-gradient(25deg, transparent 31%, rgba(11, 61, 145, 0.22) 31.6%, rgba(11, 61, 145, 0.22) 33.3%, transparent 34%),
    linear-gradient(-25deg, transparent 42%, rgba(58, 176, 166, 0.24) 42.6%, rgba(58, 176, 166, 0.24) 44.3%, transparent 45%),
    linear-gradient(25deg, transparent 55%, rgba(11, 61, 145, 0.22) 55.6%, rgba(11, 61, 145, 0.22) 57.3%, transparent 58%),
    linear-gradient(-25deg, transparent 66%, rgba(58, 176, 166, 0.24) 66.6%, rgba(58, 176, 166, 0.24) 68.3%, transparent 69%),
    linear-gradient(25deg, transparent 79%, rgba(11, 61, 145, 0.22) 79.6%, rgba(11, 61, 145, 0.22) 81.3%, transparent 82%),
    linear-gradient(-25deg, transparent 90%, rgba(58, 176, 166, 0.24) 90.6%, rgba(58, 176, 166, 0.24) 92.3%, transparent 93%);
  background-repeat: no-repeat;
  opacity: 1;
}

.section-heading {
  display: grid;
  gap: 1.1rem;
  max-width: none;
  margin-bottom: 3rem;
}

.section-heading h2,
.contact-card h2 {
  font-size: 2.7rem;
  color: #1f8f9f;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading::after {
  content: "";
  width: 5.6rem;
  height: 0.8rem;
  background:
    radial-gradient(circle, rgba(58, 176, 166, 0.9) 0 0.14rem, transparent 0.16rem) left center / 1.4rem 100% repeat-x,
    linear-gradient(90deg, rgba(11, 61, 145, 0.18), rgba(58, 176, 166, 0.22));
  border-radius: 999px;
  opacity: 0.7;
}

.section-heading.compact h2 {
  max-width: none;
}

.grid.three-up,
.timeline-grid,
.process-grid,
.team-grid {
  display: grid;
  gap: 1.5rem;
}

.grid.three-up,
.timeline-grid,
.process-grid,
.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.timeline-card,
.process-step,
.team-card,
.note-card,
.contact-card {
  padding: 2rem;
}

.team-photo {
  width: 86%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(11, 61, 145, 0.08);
  box-shadow: 0 10px 24px rgba(19, 48, 79, 0.05);
}

.info-card h3,
.timeline-card h3,
.process-step h3,
.team-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.32rem;
  color: var(--brand-deep);
  line-height: 1.25;
}

.ecosystem-card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.bio-trigger {
  margin-top: 0.9rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-deep);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.bio-trigger:hover,
.bio-trigger:focus-visible {
  color: #1f8f9f;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.linkedin-link:hover,
.linkedin-link:focus-visible {
  color: #1f8f9f;
}

.linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: #0a66c2;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
}

.info-card p,
.timeline-card p,
.process-step p,
.team-card p,
.note-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.process-step {
  position: relative;
  padding-top: 3.4rem;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 1.6rem;
  width: 3.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.featured {
  background:
    linear-gradient(180deg, rgba(58, 176, 166, 0.12), rgba(238, 245, 251, 0.98)),
    var(--panel-strong);
}

.leadership-grid {
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.25rem;
}

.leadership-card {
  display: grid;
  align-content: start;
  height: 100%;
  padding: 1.45rem;
}

.leadership-card .team-photo {
  width: 56%;
  margin-bottom: 0.8rem;
}

.leadership-summary {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.inline-bio-trigger {
  display: inline;
  margin-top: 0;
  margin-left: 0.35rem;
  white-space: nowrap;
}

.leadership-card .logo-strip {
  margin-top: 0.85rem;
  padding-top: 0.8rem;
}

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

.founder-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.45rem;
  border: 1px solid rgba(11, 61, 145, 0.1);
  box-shadow: 0 18px 40px rgba(19, 48, 79, 0.06);
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), var(--brand-deep));
}

.founder-card::after {
  content: "";
  position: absolute;
  inset: auto -3rem -3rem auto;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(58, 176, 166, 0.12), transparent 68%);
  pointer-events: none;
}

.founder-photo {
  width: 5.6rem;
  height: 5.6rem;
  object-fit: cover;
  object-position: center top;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.96);
  outline: 1px solid rgba(11, 61, 145, 0.12);
  box-shadow: 0 14px 28px rgba(19, 48, 79, 0.1);
}

.founder-body {
  display: grid;
  gap: 0.22rem;
  position: relative;
  z-index: 1;
}

.founder-body h3 {
  margin: 0;
  color: var(--brand-deep);
  font-size: 1.28rem;
  line-height: 1.18;
}

.founder-body p:not(.team-role) {
  max-width: 52rem;
}

.founder-body .team-role {
  margin-bottom: 0;
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-body .bio-trigger {
  margin-top: 0.35rem;
  justify-self: start;
}

.founder-logo-strip {
  margin-top: 0.6rem;
}

@media (max-width: 640px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1.35rem 1.3rem;
  }

  .founder-photo {
    width: 5.4rem;
    height: 5.4rem;
  }
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 61, 145, 0.08);
}

.logo-strip img {
  width: 8.5rem;
  height: 3rem;
  object-fit: contain;
  object-position: center;
  padding: 0.15rem 0.2rem;
  filter: saturate(1);
}

.logo-strip .logo-bioanalysis {
  width: 11.2rem;
  height: 4rem;
}

.logo-strip .logo-sanofi {
  width: 9.4rem;
  height: 3.3rem;
}

.logo-strip .logo-amicus {
  width: 7.4rem;
  height: 2.7rem;
}

.logo-strip .logo-lilly {
  width: 6.6rem;
  height: 2.5rem;
}

.logo-strip .logo-catalent {
  width: 7.2rem;
  height: 2.6rem;
}

.section-heading + .grid.three-up,
.section-heading + .process-grid,
.section-heading + .team-grid {
  margin-top: 0.5rem;
}

.pipeline-board {
  margin-top: 0.9rem;
  border: 1px solid rgba(11, 61, 145, 0.08);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(58, 176, 166, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
  box-shadow: 0 16px 34px rgba(19, 48, 79, 0.04);
}

.pipeline-header,
.pipeline-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.4rem;
}

.pipeline-header {
  border-bottom: 1px solid rgba(11, 61, 145, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.pipeline-header span {
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pipeline-row + .pipeline-row {
  border-top: 1px solid rgba(11, 61, 145, 0.07);
}

.pipeline-program strong,
.pipeline-area {
  color: var(--text);
  font-size: 1.02rem;
}

.stage-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.stage-target {
  background: rgba(11, 61, 145, 0.1);
  color: var(--brand-deep);
}

.stage-early {
  background: rgba(58, 176, 166, 0.14);
  color: #157a72;
}

.stage-eval {
  background: rgba(76, 154, 42, 0.14);
  color: #3b7a22;
}

.note-card {
  margin-top: 1.2rem;
}

.contact-section {
  padding-bottom: 1rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
  background:
    radial-gradient(circle at top right, rgba(58, 176, 166, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-email-link {
  color: var(--brand-deep);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contact-email-link:hover,
.contact-email-link:focus-visible {
  color: var(--brand);
}

.page-hero {
  position: relative;
  padding: 8.8rem 0 2.8rem;
  min-height: 31rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 31rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.34) 34%, rgba(255, 255, 255, 0.76) 100%),
    radial-gradient(circle at top right, rgba(58, 176, 166, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(16, 65, 109, 0.1) 0%, rgba(58, 176, 166, 0.06) 38%, rgba(255, 255, 255, 0.02) 100%),
    url("assets/gokyo-lake-mod1.jpg") center 56% / cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

.page-hero-copy {
  max-width: 68rem;
}

.page-hero-copy h1 {
  color: var(--brand-deep);
  font-size: clamp(2.45rem, 4.7vw, 4.45rem);
  max-width: 18ch;
  line-height: 1.02;
}

.page-hero-copy p {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.partnership-hero {
  min-height: 34rem;
  padding-bottom: 3.2rem;
}

.partnership-hero::before {
  height: 34rem;
}

.partnership-hero .page-hero-inner {
  gap: 0.75rem;
}

.partnership-hero .page-actions {
  margin-top: -0.8rem;
}

.page-hero .button-secondary:hover,
.page-hero .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.94);
}

.page-hero .button-secondary {
  border-color: rgba(11, 61, 145, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-deep);
  box-shadow: 0 10px 24px rgba(19, 48, 79, 0.08);
}

.investor-intro {
  padding-top: 1.35rem;
}

.partnership-hero + .investor-intro {
  padding-top: 0;
  margin-top: 0;
}

.section-intro {
  max-width: 54rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.challenge-list,
.capability-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.challenge-item,
.capability-item {
  display: grid;
  gap: 0.35rem;
  padding: 1.4rem 1.45rem;
  border: 1px solid rgba(11, 61, 145, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(19, 48, 79, 0.04);
}

.challenge-item strong,
.capability-item strong,
.value-point strong {
  color: var(--brand-deep);
  font-size: 1.02rem;
}

.challenge-item span,
.capability-item span,
.value-point span {
  color: var(--muted);
  line-height: 1.75;
}

.investor-highlight {
  display: grid;
  gap: 1.5rem;
  padding: 1.8rem;
  border: 1px solid rgba(11, 61, 145, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(58, 176, 166, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
  box-shadow: var(--shadow);
}

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

.value-point {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(11, 61, 145, 0.07);
}

.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 1.2rem;
  border-top: 1px solid rgba(11, 61, 145, 0.08);
  background: linear-gradient(180deg, #f8fbfd 0%, #f2f7fa 100%);
}

.footer-inner,
.footer-bottom {
  width: var(--content-width);
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-logo {
  width: 12.2rem;
  max-width: 100%;
  height: auto;
}

.footer-tagline {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.footer-heading {
  margin: 0 0 0.35rem;
  color: var(--brand-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p,
.footer-column button {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-column button:hover,
.footer-column button:focus-visible {
  color: var(--brand-deep);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 61, 145, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
}

.footer-bottom p {
  margin: 0;
  color: #73849d;
  font-size: 0.84rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 40;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 31, 53, 0.38);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(40rem, calc(100vw - 1.5rem));
  margin: min(12vh, 5rem) auto 0;
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
  padding: 2rem;
  border: 1px solid rgba(11, 61, 145, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(19, 48, 79, 0.16);
}

.modal-panel-bio {
  width: min(52rem, calc(100vw - 1.5rem));
}

.modal-panel h2 {
  margin: 0 0 1rem;
  color: #1f8f9f;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.08;
}

.modal-role {
  margin: -0.35rem 0 1rem;
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.modal-panel p:last-of-type {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.modal-panel-bio p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  border: 0;
  background: transparent;
  color: var(--brand-deep);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-actions {
  margin-top: 1.5rem;
}

@media (max-width: 980px) {
  .hero,
  .grid.three-up,
  .process-grid,
  .team-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding: 4rem 0 1.5rem;
  }

  .page-hero {
    padding-top: 7.6rem;
    min-height: 0;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .section-heading h2,
  .page-hero-copy h1,
  .contact-card h2 {
    font-size: 2.2rem;
  }

  .site-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
    padding: 1rem;
  }

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

  .nav-group {
    width: 100%;
  }

  .nav-group summary {
    width: 100%;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 0.65rem;
    transform: none;
    box-shadow: none;
  }

  .pipeline-header,
  .pipeline-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .pipeline-header {
    display: none;
  }

  .pipeline-row {
    padding: 1.25rem 1rem;
  }

  .pipeline-program::before,
  .pipeline-area::before,
  .pipeline-stage::before {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--brand-deep);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .pipeline-program::before {
    content: "Program";
  }

  .pipeline-area::before {
    content: "Therapeutic Area";
  }

  .pipeline-stage::before {
    content: "Stage";
  }

}

@media (max-width: 640px) {
  .site-header {
    width: min(100vw - 1rem, 100%);
    margin-top: 0.55rem;
  }

  .brand-text span {
    white-space: normal;
  }

  .brand {
    gap: 0.12rem;
  }

  .brand-logo {
    width: 9.7rem;
  }

  .hero-copy {
    width: min(100vw - 1rem, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-caption {
    right: 0.55rem;
    bottom: 0.6rem;
    font-size: 0.7rem;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .page-hero {
    padding-top: 6.8rem;
    padding-bottom: 1.8rem;
  }

  .modal-panel {
    max-height: calc(100vh - 2rem);
    margin-top: 1rem;
    padding: 1.6rem;
  }

  .hero-text,
  .intro-strip p,
  .page-hero-copy p,
  .section-intro {
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.9rem;
  }

  .intro-strip,
  .section {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .footer-inner,
  .footer-bottom {
    width: min(100vw - 1rem, 100%);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-ready .hero,
  .js-ready .section,
  .js-ready .intro-strip,
  .js-ready .page-hero,
  .js-ready .vision-strip {
    transition: none;
    opacity: 1;
    transform: none;
  }

}
