:root {
  --bg: #eef4f7;
  --bg-soft: #d9e8f0;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(43, 158, 212, 0.14);
  --text: #18384b;
  --muted: #637d8d;
  --brand: #2b9ed4;
  --brand-bright: #7fd3f4;
  --brand-deep: #166c9c;
  --success: #228b68;
  --shadow: 0 20px 50px rgba(30, 72, 96, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --content: 1180px;
  --section-title-size: clamp(2.15rem, 3.65vw, 3.65rem);
  --section-title-line: 1.08;
  --section-title-track: -0.03em;
  --section-title-weight: 900;
  --section-copy-color: rgba(16, 39, 52, 0.72);
  --section-copy-size: 1rem;
  --meta-chip-border: rgba(43, 158, 212, 0.18);
  --meta-chip-fill: rgba(255, 255, 255, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fbfc 0%, #eef4f7 54%, #eaf2f6 100%);
  min-height: 100vh;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(43, 158, 212, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 158, 212, 0.04) 1px, transparent 1px);
  background-size: 138px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.03) 70%, transparent 100%);
  opacity: 0.4;
}

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

button {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 20px 8px;
  margin-top: 0;
  border: 0;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(135deg, #0a1628 0%, #0d2a3f 60%, #0e3152 100%);
  box-shadow: 0 8px 32px rgba(7, 18, 40, 0.28);
  width: 100%;
  max-width: 100%;
  left: 0;
  right: 0;
  margin-left: 0;
  transform: none;
  padding-left: clamp(16px, 4vw, 80px);
  padding-right: clamp(16px, 4vw, 80px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.nav-shell {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 7px 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.brand-icon {
  overflow: visible;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 0;
  clip-path: none;
  image-rendering: auto;
  object-fit: contain;
  transform: none;
  transform-origin: center;
  filter: none;
  mix-blend-mode: normal;
  flex-shrink: 0;
}

.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);;
}


.hero h1,
.section h2,
.feature-card h3,
.track-step h3,
.timeline-item h3,
.leader-card h3 {
  font-family: "Sora", sans-serif;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  color: rgba(200, 220, 235, 0.82);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  border-radius: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: color 140ms ease, opacity 140ms ease;
}

.site-nav a:not(.button)::after {
  content: none;
}

.site-nav a:last-child::after,
.site-nav a.button::after {
  display: none;
}

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

.menu-toggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(156, 206, 236, 0.62);
  padding: 10px 14px;
  border-radius: 999px;
  color: #f5fbff;
  -webkit-text-fill-color: #f5fbff;
  background: linear-gradient(180deg, rgba(44, 93, 130, 0.92), rgba(25, 67, 100, 0.95));
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 1px rgba(2, 15, 30, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 1;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: linear-gradient(180deg, rgba(71, 124, 166, 0.96), rgba(34, 83, 122, 0.98));
  border-color: rgba(193, 226, 245, 0.78);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}


.section {
  position: relative;
  padding: 72px 0;
}

section[id] {
  scroll-margin-top: 128px;
}

.section-block {
  margin-top: 22px;
  padding: 36px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 56, 75, 0), rgba(24, 56, 75, 0.08) 50%, rgba(24, 56, 75, 0));
  pointer-events: none;
}

.hero {
  position: relative;
  display: block;
  min-height: clamp(560px, 58vw, 740px);
  padding: clamp(40px, 4vw, 58px) clamp(36px, 4vw, 58px) clamp(42px, 4vw, 60px);
  margin-top: 10px;
  overflow: hidden;
  border-radius: 46px 46px 34px 34px;
  background-image:
    linear-gradient(90deg, rgba(2, 8, 15, 0.96) 0%, rgba(2, 8, 15, 0.9) 22%, rgba(2, 8, 15, 0.7) 36%, rgba(2, 8, 15, 0.38) 48%, rgba(2, 8, 15, 0.12) 60%, rgba(2, 8, 15, 0) 72%),
    radial-gradient(circle at 24% 44%, rgba(69, 126, 165, 0.1), rgba(69, 126, 165, 0.04) 18%, rgba(69, 126, 165, 0.01) 30%, rgba(69, 126, 165, 0) 44%),
    linear-gradient(90deg, rgba(4, 12, 22, 0) 90%, rgba(10, 22, 34, 0.05) 95%, rgba(238, 244, 247, 0.03) 98%, rgba(238, 244, 247, 0) 100%),
    url("./hero-replacement.png");
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%, cover;
  background-position: center, center, center, 61% center;
  box-shadow: 0 18px 36px rgba(7, 18, 29, 0.08);
  isolation: isolate;
}

.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(2, 8, 15, 0.82) 0%, rgba(2, 8, 15, 0.66) 18%, rgba(2, 8, 15, 0.34) 34%, rgba(2, 8, 15, 0.1) 48%, rgba(2, 8, 15, 0) 62%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-meta {
  margin: -6px 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.hero-copy > .eyebrow {
  margin-top: 10px;
  margin-bottom: 14px;
  display: block;
  max-width: none;
  color: rgba(182, 206, 222, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.2em;
  white-space: normal;
  text-shadow: none;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 35rem);
  margin-left: 0;
  text-align: left;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 5vw, 4.85rem);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-text,
.section-intro p,
.feature-card p,
.track-step p,
.timeline-item p,
.leader-card p,
.contact-copy p,
.signal-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 42ch;
  margin: 14px 0 0;
  font-size: 1.08rem;
  color: rgba(225, 238, 247, 0.84);
}

.hero-text em {
  color: rgba(255, 255, 255, 0.96);
}

.hero-actions,
.program-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-actions {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-bright) 0%, var(--brand) 46%, var(--brand-deep) 100%);
}

.button.secondary,
.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-cluster,
.hero-flow,
.hero-particles {
  display: none;
}

.hero-cluster {
  display: none;
}

.hero-cluster-tertiary,
.hero-cluster-secondary,
.hero-cluster-primary,
.hero-flow,
.hero-flow-one,
.hero-flow-two,
.hero-particles,
.hero-particles::before,
.hero-particles::after,
.hero-particles-back::before,
.hero-particles-back::after,
.hero-particles-front::before,
.hero-particles-front::after {
  display: none;
}


.signal-label,
.timeline-date,
.leader-role {
  display: inline-block;
  color: var(--brand);
}

.signal-label {
  margin-bottom: 12px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.metrics,
.platform-grid,
.leadership-grid,
.team-grid {
  display: grid;
  gap: 26px;
}

.human-burden-section .section-vertical-marker {
  top: 0;
  bottom: 0;
  justify-content: center;
}

.has-vertical-label {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  column-gap: 26px;
  align-items: start;
}

.has-vertical-label > .vertical-section-label {
  grid-row: 1 / span 3;
  margin: 0;
  align-self: stretch;
  justify-self: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
  color: rgba(92, 195, 239, 0.94);
  text-transform: uppercase;
  text-shadow:
    1px 0 0 rgba(255, 255, 255, 0.62),
    0 0 14px rgba(92, 195, 239, 0.16);
  opacity: 0.94;
}

.has-vertical-label > :not(.vertical-section-label) {
  grid-column: 2;
}

.section-with-vertical-marker {
  position: relative;
  padding-left: 92px;
}

#programs .program-copy,
.editorial-team .section-intro,
.news-section .news-intro,
.contact-copy,
.collaboration-intro,
.collaboration-field {
  margin-left: 28px;
}

.section-vertical-marker {
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 72px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
  color: var(--brand);
  text-transform: uppercase;
  text-shadow:
    1px 0 0 rgba(255, 255, 255, 0.62),
    0 0 14px rgba(43, 158, 212, 0.16);
  opacity: 0.94;
  pointer-events: none;
}
.contact-panel .button {
  align-self: flex-start;
  width: auto;
}

.section-vertical-marker::before,
.section-vertical-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(43, 158, 212, 0.88), rgba(22, 108, 156, 0.18));
  opacity: 0.78;
}

.section-vertical-marker::before {
  top: 12%;
  left: calc(50% - 3px);
  height: 36px;
}

.section-vertical-marker::after {
  bottom: 6%;
  left: calc(50% + 4px);
  height: 92px;
}

.human-burden-layout {
  margin-left: 28px;
  margin-right: 18px;
  display: grid;
  gap: 54px;
}

.human-burden-intro {
  display: grid;
  gap: 14px;
  max-width: min(100%, 74rem);
}

.human-burden-intro strong {
  display: block;
  margin: 0;
  font-family: "Sora", sans-serif;
  max-width: 19ch;
  white-space: normal;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  letter-spacing: var(--section-title-track);
  font-weight: var(--section-title-weight);
  color: #0d2431;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.human-burden-intro p {
  margin: 0;
  color: var(--section-copy-color);
  font-size: var(--section-copy-size);
  line-height: 1.72;
  max-width: 46rem;
}

.stats-human-visual,
.stats-human-visual::before,
.stats-human-visual::after {
  display: none;
}

.stats-human-visual svg {
  display: none;
}

.op-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand-bright);
}


.collaboration-section {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr;
  padding-top: 30px;
  background: transparent;
}

#collaborations .section-vertical-marker::before {
  top: 1.5%;
  height: 14px;
}

#collaborations .section-vertical-marker::after {
  bottom: 1.5%;
  height: 30px;
}

.collaboration-intro h2 {
  max-width: none;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  letter-spacing: var(--section-title-track);
}

.collaboration-intro,
.collaboration-field {
  margin-left: 128px;
}

.collaboration-field {
  padding: 6px 0 0;
  background: transparent;
  border: 0;
}

.collaboration-strip {
  position: relative;
  width: min(100%, 980px);
  margin: 0 0 0 auto;
  padding: 22px 6px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.collaboration-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  right: 0;
  top: 0;
  height: 1px;
  border-radius: 0;
  border: 0;
  background: linear-gradient(90deg, rgba(24, 56, 75, 0), rgba(24, 56, 75, 0.1) 18%, rgba(24, 56, 75, 0.08) 82%, rgba(24, 56, 75, 0));
  pointer-events: none;
}

.collaboration-strip img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: auto;
  filter: saturate(0.96) contrast(1.02);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 28px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  margin: 0;
}

.partner-logo img {
  width: 100%;
  max-width: 280px;
  max-height: 84px;
  object-fit: contain;
}
.partner-logo-uofc img {
  max-width: 150px;
  max-height: 150px;
}
.partner-logo-portal img {
  max-width: 280px;
  max-height: 84px;
}

.partner-logo-carbx img {
  max-width: 280px;
  max-height: 84px;
}

.metric,
.feature-card,
.leader-card,
.contact-section,
.timeline-item {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.metric {
  padding: 28px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}

.metric span {
  display: block;
  color: rgba(16, 39, 52, 0.68);
  margin-bottom: 12px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.metric strong {
  font-size: 1.22rem;
  line-height: 1.32;
  color: #102734;
}

.human-story-kicker {
  display: block;
  color: rgba(16, 39, 52, 0.56);
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.human-story-number {
  display: block;
  font-family: "Sora", sans-serif;
  line-height: 0.84;
  letter-spacing: -0.08em;
  font-weight: 900;
  color: #0d2431;
  text-shadow: 0 10px 24px rgba(34, 111, 152, 0.1);
}

.human-story-copy {
  margin: 0;
  color: #102734;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.human-story-copy em {
  font-style: italic;
}

.human-burden-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) 120px minmax(0, 1.34fr) 150px minmax(0, 0.92fr);
  align-items: center;
  gap: 0;
  width: min(100%, 1120px);
}

.human-story-step {
  display: grid;
  align-content: start;
  gap: 10px;
}

.human-story-step-prevalence {
  max-width: 250px;
  align-self: start;
  margin-top: 56px;
}

.human-story-step-prevalence .human-story-number {
  font-size: clamp(4.7rem, 7.2vw, 6.2rem);
  line-height: 0.94;
}

.human-story-step-prevalence .human-story-copy {
  max-width: 11ch;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.human-story-step-risk {
  justify-self: center;
  max-width: 430px;
  align-self: center;
  margin-top: -18px;
}

.human-story-step-risk .human-story-kicker {
  color: rgba(16, 39, 52, 0.76);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.human-story-step-risk .human-story-number {
  font-size: clamp(5.8rem, 9vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #081824;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.24),
    0 12px 28px rgba(43, 158, 212, 0.12);
}

.human-story-step-risk .human-story-copy {
  max-width: 11ch;
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  line-height: 1.02;
}

.human-story-step-burden {
  max-width: 300px;
  align-self: end;
  margin-top: 94px;
}

.human-story-step-burden .human-story-number {
  font-size: clamp(5.1rem, 7.4vw, 6.8rem);
  line-height: 0.94;
}

.human-story-step-burden .human-story-copy {
  max-width: 12ch;
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
}

.human-story-connector {
  position: relative;
  display: block;
  height: 3px;
  align-self: center;
  background: linear-gradient(90deg, rgba(43, 158, 212, 0.1), rgba(43, 158, 212, 0.62), rgba(43, 158, 212, 0.08));
  border-radius: 999px;
}

.human-story-connector::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43, 158, 212, 0.72), rgba(43, 158, 212, 0));
  transform: translate(55%, -50%);
}

.human-story-connector-left {
  margin: 30px 20px 0 10px;
}

.human-story-connector-right {
  margin: -12px 24px 0 12px;
}


.split-section,
.program-section,
.contact-section {
  display: grid;
  gap: 28px;
}

.split-section,
.program-section {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.section-intro h2 {
  max-width: none;
  margin: 0 0 14px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  letter-spacing: var(--section-title-track);
  font-weight: var(--section-title-weight);
  color: #0d2431;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
}

.section-intro.narrow h2 {
  max-width: none;
}

.platform-section {
  display: grid;
  gap: 68px;
  padding-top: 96px;
}

#platform {
  scroll-margin-top: 164px;
}

#platform .platform-intro,
#platform .platform-differentiation,
#platform .platform-field {
  margin-left: 28px;
}

#platform .platform-intro {
  max-width: 52rem;
}

.platform-thesis {
  margin: 0.75rem 0 0.85rem;
  max-width: 35rem;
  color: rgba(13, 36, 49, 0.94);
  font-size: 1.03rem;
  line-height: 1.46;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.platform-thesis em {
  font-style: italic;
}

.platform-validation {
  margin: 0.6rem 0 0;
  max-width: 42rem;
  color: rgba(24, 56, 75, 0.56);
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.platform-breakthrough {
  margin: 0.5rem 0 1rem;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 600;
}

.platform-intro p:not(.platform-thesis) {
  max-width: 38rem;
  margin: 4px 0 0;
  color: rgba(13, 36, 49, 0.74);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  line-height: 1.56;
  letter-spacing: -0.01em;
}

.platform-differentiation {
  margin: 24px 0 0 28px;
  max-width: 40rem;
}

.platform-differentiation h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(24, 56, 75, 0.58);
}

.platform-differentiation-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.platform-differentiation-list li {
  position: relative;
  padding-left: 16px;
  color: rgba(13, 36, 49, 0.76);
  font-size: 0.93rem;
  line-height: 1.5;
}

.platform-differentiation-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: rgba(43, 158, 212, 0.74);
}

.platform-field {
  display: grid;
  grid-template-columns: minmax(0, 35rem) minmax(360px, 1fr);
  gap: 74px;
  align-items: start;
}

.platform-narrative {
  display: grid;
  gap: 22px;
  max-width: 31rem;
  padding-top: 2px;
}

.platform-point {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(24, 56, 75, 0.05);
}

.platform-point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.platform-card-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(23, 122, 173, 0.78);
  font-family: "Sora", sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.platform-point p {
  margin: 0;
  max-width: 27rem;
  color: rgba(16, 39, 52, 0.64);
  font-size: 0.96rem;
  line-height: 1.68;
}

.platform-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 100%;
  padding-top: 0;
  overflow: visible;
}

.platform-antibody {
  width: min(100%, 680px);
  transform: translate(-26%, -21%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 42%, rgba(0, 0, 0, 0.92) 60%, rgba(0, 0, 0, 0.5) 82%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 42%, rgba(0, 0, 0, 0.92) 60%, rgba(0, 0, 0, 0.5) 82%, rgba(0, 0, 0, 0) 100%);
}

#programs .program-copy p {
  max-width: 44rem;
  color: var(--section-copy-color);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 10px;
  color: rgba(16, 39, 52, 0.66);
  font-size: 0.95rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #0d2431;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(24, 56, 75, 0.08);
  font-size: 0.82rem;
  color: var(--muted);
}

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

.feature-card,
.leader-card {
  padding: 28px;
  border-radius: 0;
}

.feature-card h3,
.timeline-item h3,
.leader-card h3,
.track-step h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.program-track {
  position: relative;
  margin-top: 28px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#programs.program-section {
  grid-template-columns: 1fr;
  row-gap: 22px;
}

#programs .section-vertical-marker {
  justify-content: center;
}

#programs .program-copy {
  width: 100%;
  justify-self: stretch;
}

#programs .program-copy h2,
#programs .program-copy p {
  max-width: none;
}

#programs .program-copy h2 {
  max-width: none;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  letter-spacing: var(--section-title-track);
  font-weight: var(--section-title-weight);
  color: #0d2431;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
}

#programs .program-track {
  width: min(100%, 1120px);
  margin: 0 auto;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#programs .program-copy h2,
#programs .program-copy p {
  margin-left: 0;
}

.pipeline-schematic {
  display: grid;
  gap: 0;
  justify-items: center;
  padding-top: 6px;
}

.pipeline-center {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  row-gap: 18px;
  width: min(100%, 760px);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  isolation: isolate;
}

.pipeline-bg {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  background-image: url("./antibody.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1;
  filter:
    drop-shadow(-8px -10px 18px rgba(255, 255, 255, 0.18))
    drop-shadow(0 0 20px rgba(124, 191, 232, 0.16));
  transform: none;
  transform-origin: center;
  pointer-events: none;
  isolation: isolate;
  z-index: 0;
}

.platform-visual .platform-antibody {
  transform: translate(-26%, -21%);
}

.pipeline-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./antibody.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.28;
  filter: blur(18px);
  transform: scale(1.035);
  z-index: -2;
}

.pipeline-bg::after {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.20) 0%, rgba(180, 215, 238, 0.14) 16%, rgba(238, 243, 247, 0) 46%);
  filter: blur(18px);
  opacity: 0.9;
  z-index: -1;
}

.pipeline-center-content {
  position: relative;
  z-index: 1;
  padding-inline: 12px;
  text-align: center;
}

.pipeline-card-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 0.48rem 0.92rem 0.46rem 0.96rem;
  border: 1px solid rgba(43, 158, 212, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
  box-shadow: none;
}

.pipeline-card-label::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43, 158, 212, 0.92), rgba(22, 108, 156, 0.22));
  flex-shrink: 0;
}

.pipeline-center strong,
.pipeline-card h3 {
  display: block;
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.52rem;
  color: #102734;
}

.pipeline-center strong {
  max-width: 12ch;
  margin: 0 auto 8px;
  line-height: 1.08;
}

.pipeline-center p {
  max-width: 46ch;
  margin: 0 auto;
}

.pipeline-center p,
.pipeline-card p,
.pipeline-progress span {
  margin: 0;
  color: var(--section-copy-color);
  line-height: 1.55;
}

.pipeline-card p {
  font-size: 0.98rem;
  min-height: 0;
  max-width: 24ch;
}

.pipeline-card-mechanism {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(16, 39, 52, 0.76);
}

.pipeline-card > p:not(.pipeline-card-mechanism) {
  max-width: 22ch;
  color: rgba(16, 39, 52, 0.7);
}


.pipeline-branches {
  position: relative;
  width: min(100%, 1180px);
  height: 76px;
  margin: 4px 0 8px;
}

.pipeline-branches::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 34px;
  background: linear-gradient(180deg, rgba(43, 158, 212, 0.3), rgba(22, 108, 156, 0.96));
  transform: translateX(-50%);
}

.pipeline-branch-line {
  position: absolute;
  top: 34px;
  height: 3px;
}

.pipeline-branch-left,
.pipeline-branch-right {
  position: absolute;
  top: 34px;
  height: 3px;
}

.pipeline-branch-line::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 28px;
  background: linear-gradient(180deg, rgba(43, 158, 212, 0.8), rgba(22, 108, 156, 0.22));
}

.pipeline-branch-left {
  left: 12%;
  right: 50%;
  background: linear-gradient(90deg, rgba(43, 158, 212, 0.82), rgba(22, 108, 156, 0.34));
}

.pipeline-branch-left::after {
  left: 0;
}

.pipeline-branch-right {
  left: 50%;
  right: 6%;
  background: linear-gradient(90deg, rgba(43, 158, 212, 0.82), rgba(22, 108, 156, 0.24));
}

.pipeline-branch-right::after {
  right: 0;
  left: auto;
}

.pipeline-cards {
  position: relative;
  width: min(100%, 1120px);
  height: 432px;
  justify-self: stretch;
}

.pipeline-card {
  position: absolute;
  top: 0;
  width: 372px;
  padding: 24px 28px 22px;
  border: 1px solid rgba(43, 158, 212, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: none;
}

.pipeline-card-program-01 {
  left: 32%;
  transform: translateX(-50%);
}

.pipeline-card-program-02 {
  left: 68%;
  top: 0;
  transform: translateX(-50%);
}

.pipeline-progress {
  margin-top: 20px;
}

.pipeline-progress > span {
  display: block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(16, 39, 52, 0.82);
}

.pipeline-progress-labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 8px;
  margin-bottom: 12px;
}

.pipeline-progress-labels span {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(16, 39, 52, 0.54);
  white-space: nowrap;
  text-align: center;
}

.pipeline-card-program-01 .pipeline-progress-labels span:nth-child(2),
.pipeline-card-program-02 .pipeline-progress-labels span:nth-child(2) {
  color: #0d2431;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pipeline-progress-track {
  position: relative;
  height: 20px;
}

.pipeline-progress-track::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(24, 56, 75, 0.12), rgba(43, 158, 212, 0.2));
  transform: translateY(-50%);
}

.pipeline-progress-track::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 14px;
  transform: translateY(-50%);
  background-image:
    linear-gradient(90deg,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(255, 255, 255, 0.92) calc(25% - 1px),
      rgba(255, 255, 255, 0.92) calc(25% + 1px),
      transparent calc(25% + 1px),
      transparent calc(50% - 1px),
      rgba(255, 255, 255, 0.92) calc(50% - 1px),
      rgba(255, 255, 255, 0.92) calc(50% + 1px),
      transparent calc(50% + 1px),
      transparent calc(75% - 1px),
      rgba(255, 255, 255, 0.92) calc(75% - 1px),
      rgba(255, 255, 255, 0.92) calc(75% + 1px),
      transparent calc(75% + 1px));
  pointer-events: none;
}

.pipeline-progress-fill {
  position: absolute;
  left: 0;
  top: 50%;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8ae0ff, #2b9ed4);
  box-shadow:
    0 12px 18px rgba(43, 158, 212, 0.18),
    0 0 0 1px rgba(43, 158, 212, 0.22) inset;
  transform: translateY(-50%);
}

.pipeline-progress-fill-long {
  width: 50%;
}

.pipeline-progress-fill-mid {
  width: 50%;
}

.program-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(133, 240, 208, 0.22);
  border-radius: 999px;
  color: var(--success);
  background: rgba(133, 240, 208, 0.05);
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.news-section .timeline,
.news-section .news-archive {
  display: block;
  margin-top: 22px;
}

.news-date-list {
  display: grid;
  gap: 14px;
  max-width: 58rem;
}

.news-event {
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(24, 56, 75, 0.08);
}

.news-event-featured {
  padding: 0 0 20px;
}

.news-featured-tag {
  display: inline-block;
  margin: 0 0 10px;
  color: rgba(23, 122, 173, 0.88);
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-item-title {
  margin: 0;
  color: #102734;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.news-event-featured .news-item-title {
  font-size: 1.22rem;
  color: #0d2431;
}

.news-item-date {
  margin: 8px 0 0;
  color: rgba(24, 56, 75, 0.52);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news-more-button {
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-deep);
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.news-more-button:hover,
.news-more-button:focus-visible {
  color: #0d2431;
  text-decoration: underline;
  outline: none;
}

.news-inline-detail {
  margin: 12px 0 0;
  max-width: 46rem;
}

.news-inline-detail[hidden] {
  display: none;
}

.news-inline-detail p {
  margin: 0;
  color: var(--section-copy-color);
  line-height: 1.72;
}

.news-inline-detail a {
  display: inline-block;
  margin-top: 8px;
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.timeline-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 26px 28px;
  border-radius: 0;
}

.timeline-date {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leader-role {
  margin-bottom: 14px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.leadership-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.editorial-team {
  background:
    transparent;
  background-size: auto;
  background-position: left top;
  box-shadow: none;
  padding-bottom: 110px;
}

.editorial-team .section-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  max-width: none;
  width: 100%;
  padding-bottom: 28px;
  padding-left: 0;
  border-bottom: 1px solid rgba(24, 56, 75, 0.08);
}

.editorial-team .section-intro h2 {
  max-width: none;
  white-space: normal;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  letter-spacing: var(--section-title-track);
  font-weight: var(--section-title-weight);
  color: #0d2431;
}

.editorial-team .section-intro p:last-child {
  margin: 0;
  max-width: 56rem;
  color: var(--section-copy-color);
  font-size: 0.98rem;
  line-height: 2.15;
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 52px;
  max-width: 980px;
  margin-top: 42px;
  margin-bottom: 28px;
}

.team-card {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  box-shadow: none;
  z-index: 1;
}

.team-portrait {
  position: relative;
  display: grid;
  place-items: center;
  width: 206px;
  height: 206px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 50%;
  border: 1px solid rgba(18, 58, 82, 0.08);
  background: rgba(233, 241, 246, 0.82);
  box-shadow: 0 8px 18px rgba(24, 56, 75, 0.06);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.team-portrait::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(16, 39, 52, 0.1);
}

.team-portrait::after {
  display: none;
}

.team-portrait span {
  position: relative;
  font-family: "Sora", sans-serif;
  font-size: 2.3rem;
  letter-spacing: 0.08em;
  color: var(--brand-deep);
}

.team-portrait-photo {
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(18, 58, 82, 0.04);
  background-color: rgba(217, 231, 241, 0.96);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: normal;
  box-shadow: 0 10px 22px rgba(24, 56, 75, 0.07);
  filter:grayscale (8%) saturate(0.85) contrast(1.04) brightness(1.02);
}

.team-portrait-photo::before {
  inset: 8px;
  border: 1px solid rgba(24, 56, 75, 0.08);
  background: none;
  box-shadow: none;
  z-index: 1;
  pointer-events: none;
}

.team-portrait-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, rgba(12, 48, 75, 0.08), rgba(12, 48, 75, 0.22));
  z-index: 0;
  pointer-events: none;
}

.team-portrait-photo span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.team-portrait-josh {
  background-image: url("./josh-lensmire.png");
  background-blend-mode: normal;
}

.team-portrait-vt {
  background-image: url("./vt.png");
}

.team-portrait-dm {
  background-image: url("./dm.png");
}

.team-portrait:hover,
.team-portrait:focus-visible,
.team-card.is-open .team-portrait {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(24, 56, 75, 0.12);
  filter: saturate(1.03);
  outline: none;
}

.team-name {
  margin: 12px 0 0;
  max-width: 300px;
  min-height: 2.5em;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  line-height: 1.24;
  color: #102734;
  font-weight: 800;
}

.team-title {
  margin: 4px 0 0;
  max-width: 300px;
  min-height: 2.4em;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.42;
  color: rgba(45, 92, 121, 0.48);
}

.team-summary {
  margin-top: 0.5rem;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
  text-align: center;
  color: rgba(16, 39, 52, 0.86);
}

.team-name,
.team-title {
  transition: opacity 160ms ease;
}

.team-overlay {
  position: absolute;
  width: min(100%, 520px);
  max-width: 520px;
  margin: 0;
  padding: 18px 20px 20px;
  border-radius: 16px;
  background: rgba(248, 251, 253, 0.96);
  color: #102734;
  border: 1px solid rgba(24, 56, 75, 0.08);
  box-shadow: 0 12px 24px rgba(18, 49, 74, 0.06);
  overflow: hidden;
  transform: translateX(-50%);
  transition: opacity 180ms ease, transform 220ms ease;
  z-index: 2;
  top:0;
  left:50%;
  opacity:0;
  pointer-events: none;
}


.team-card:hover .team-overlay {
  opacity: 1;
  pointer-events: auto;
}

.team-overlay::before {
  display: none;
}

.team-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, rgba(43, 158, 212, 0.46), rgba(43, 158, 212, 0.08));
}

.team-overlay p {
  color: rgba(16, 39, 52, 0.84);
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.58;
}

.team-overlay p + p {
  margin-top: 12px;
}

.team-card.is-open {
  z-index: 8;
}

.team-card.is-open .team-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.team-card.is-open .team-name,
.team-card.is-open .team-title {
  opacity: 1;
}

.team-portrait:hover ~ .team-overlay,
.team-portrait:focus-visible ~ .team-overlay {
  opacity: 1;
  transform: translate(-50%, 0);
}

.team-card:has(.team-portrait:hover),
.team-card:has(.team-portrait:focus-visible) {
  z-index: 8;
}

.team-portrait:hover ~ .team-name,
.team-portrait:focus-visible ~ .team-name,
.team-portrait:hover ~ .team-title,
.team-portrait:focus-visible ~ .team-title {
  opacity: 1;
}

.team-overlay .leader-role {
  margin-bottom: 12px;
  color: rgba(16, 39, 52, 0.68);
}

.contact-section {
  grid-template-columns: 1fr;
  align-items: start;
  row-gap: 30px;
  padding: 44px 0 28px;
  border-radius: 0;
  background: transparent;
  border-top: 0;
}

#contact .section-vertical-marker::before,
#contact .section-vertical-marker::after {
  display: none;
}

.ribbon-section {
  padding: 0;
  overflow: hidden;
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 56, 75, 0), rgba(24, 56, 75, 0.12), rgba(24, 56, 75, 0));
}

.contact-panel {
  display: grid;
  gap: 22px;
  width: min(100%, 980px);
  justify-self: center;
  align-self: start;
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-photo {
  display: block;
  width: min(100%, 1100px);
  height: 520px;
  justify-self: center;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 18px;
  border: 0;
  box-shadow: none;
}

.contact-link {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.contact-copy {
  align-self: start;
  padding-top: 8px;
  width: min(100%, 1100px);
}

.contact-copy h2 {
  max-width: none;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  letter-spacing: var(--section-title-track);
  font-weight: var(--section-title-weight);
  margin-top: 0;
  white-space: normal;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.42),
    0 0 22px rgba(43, 158, 212, 0.08);
}

.contact-copy p {
  max-width: 54rem;
  color: var(--section-copy-color);
  font-size: var(--section-copy-size);
}

.contact-location {
  display: grid;
  gap: 2px;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: rgba(16, 39, 52, 0.84);
}

.contact-social {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 108, 156, 0.28);
  padding-bottom: 2px;
}

.contact-social svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.contact-social span {
  display: inline-block;
}

.contact-social:hover,
.contact-social:focus-visible {
  color: #0d2431;
  border-color: rgba(13, 36, 49, 0.4);
}

.contact-page-shell {
  padding-bottom: 40px;
}

.contact-page-main {
  padding: 86px 0 24px;
}

.contact-page-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 64px;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 20px 0 0;
}

.contact-page-form,
.contact-page-info {
  position: relative;
}

.contact-page-eyebrow {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #102734;
}

.contact-page-note {
  margin: 0 0 24px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(24, 56, 75, 0.62);
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

.contact-form-label {
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(24, 56, 75, 0.78);
}

.contact-form-label span {
  color: #d45a5a;
}

.contact-name-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 17px;
  border: 1px solid rgba(24, 56, 75, 0.14);
  background: rgba(255, 255, 255, 0.74);
  color: #18384b;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
  min-height: 198px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(43, 158, 212, 0.48);
  box-shadow: 0 0 0 3px rgba(43, 158, 212, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.contact-submit {
  justify-self: start;
  padding: 14px 28px;
  border: 0;
  background: rgba(24, 56, 75, 0.14);
  color: #102734;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-1px);
  background: rgba(24, 56, 75, 0.18);
  outline: none;
}

.contact-form-fallback {
  margin: -4px 0 0;
  max-width: 28rem;
  color: rgba(24, 56, 75, 0.64);
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-form-fallback a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
}

.contact-form-fallback a:hover,
.contact-form-fallback a:focus-visible {
  text-decoration: underline;
}

.contact-page-info h2 {
  margin: 6px 0 24px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: rgba(24, 56, 75, 0.68);
}

.contact-page-address {
  margin: 0 0 28px;
  font-family: "Sora", sans-serif;
  font-size: 1.9rem;
  line-height: 1.24;
  color: #102734;
}

.contact-page-copy {
  margin: 0 0 30px;
  max-width: 22rem;
  font-family: "Sora", sans-serif;
  font-size: 1.16rem;
  line-height: 1.6;
  color: rgba(24, 56, 75, 0.82);
}

.contact-page-email {
  margin: 0;
  font-size: 1.02rem;
  color: rgba(24, 56, 75, 0.84);
}

.contact-page-email a {
  color: var(--brand-deep);
  font-weight: 700;
}

.footer {
  padding: 0 0 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1100px) {
  .hero,
  .split-section,
  .program-section,
  .contact-section,
  .metrics,
  .platform-grid,
  .leadership-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .program-track,
  .opportunity-header {
    grid-template-columns: 1fr;
  }

  .contact-page-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .editorial-team .section-intro {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .news-section .news-intro,
  .news-section .timeline,
  .news-section .news-archive {
    margin-left: 0;
  }

  .news-date-list {
    max-width: none;
  }

  .platform-field {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  #platform .platform-intro,
  #platform .platform-differentiation,
  #platform .platform-field,
  #programs .program-copy {
    margin-left: 0;
  }

  .platform-point p,
  #programs .program-copy p {
    max-width: none;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .pipeline-cards {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pipeline-card,
  .pipeline-card-program-01,
  .pipeline-card-program-02 {
    position: static;
    width: auto;
    transform: none;
  }

  .pipeline-branches {
    height: 44px;
    width: 100%;
  }

  .pipeline-center {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    row-gap: 14px;
    justify-items: center;
    text-align: center;
    transform: none;
  }

  .pipeline-bg {
    width: min(92vw, 360px);
    margin-top: 0;
    transform: none;
  }

  .pipeline-branch-line {
    display: none;
  }

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

  .hero {
    min-height: clamp(500px, 78vw, 680px);
    padding-right: 28px;
    background-size: 100% 100%, 100% 100%, 100% 100%, cover;
    background-position: center, center, center, 62% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(2, 8, 15, 0.84) 0%, rgba(2, 8, 15, 0.66) 20%, rgba(2, 8, 15, 0.34) 36%, rgba(2, 8, 15, 0.12) 52%, rgba(2, 8, 15, 0) 66%);
  }

  .hero-copy {
    width: min(100%, 33rem);
    margin-left: 0;
    text-align: left;
  }

  .hero-copy {
    width: min(100%, 34rem);
    padding-left: 0;
    padding-right: 0;
    filter: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card:nth-child(2),
  .metric {
    transform: none;
  }

  .team-card::before {
    display: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 36px;
  }
}


@media (max-width: 980px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--content));
  }

  .topbar {
    top: 6px;
    gap: 10px;
    padding: 6px 0 4px;
  }

  .nav-shell {
    padding: 7px 12px;
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 8px;
    color: rgba(228, 239, 248, 0.96);
  }

  .site-nav.is-open {
    display: flex;
    margin-top: 6px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(4, 21, 37, 0.72);
    border: 1px solid rgba(157, 198, 226, 0.28);
  }

  .human-burden-layout {
    margin-left: 0;
    margin-right: 0;
    gap: 28px;
  }

  .human-burden-intro strong {
    max-width: 13ch;
  }

  .human-burden-intro p {
    max-width: 34rem;
  }

  .human-burden-story {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(100%, 640px);
  }

  .human-story-step,
  .human-story-step-prevalence,
  .human-story-step-risk,
  .human-story-step-burden {
    max-width: none;
    margin-top: 0;
    justify-self: stretch;
  }

  .human-story-step-risk {
    justify-self: stretch;
  }

  .human-story-number,
  .human-story-step-risk .human-story-number,
  .human-story-step-burden .human-story-number,
  .human-story-step-prevalence .human-story-number {
    font-size: clamp(4.2rem, 12vw, 6rem);
  }

  .human-story-copy,
  .human-story-step-prevalence .human-story-copy,
  .human-story-step-risk .human-story-copy,
  .human-story-step-burden .human-story-copy {
    max-width: 14ch;
  }

  .human-story-connector {
    height: 34px;
    width: 2px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(43, 158, 212, 0.16), rgba(43, 158, 212, 0.72), rgba(43, 158, 212, 0.16));
    margin: 0;
  }

  .human-story-connector::after {
    right: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(50%) rotate(135deg);
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--content));
  }

  .topbar {
    top: 8px;
    flex-wrap: wrap;
    padding: 8px 12px;
  }

  .brand {
    padding: 0;
  }

  .nav-shell {
    width: 100%;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 22px;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 8px;
    color: rgba(228, 239, 248, 0.96);
  }

  .site-nav a {
    padding: 10px 0;
    font-size: 1rem;
    color: inherit;
  }

  .site-nav.is-open a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(126, 176, 212, 0.08);
  }

  .site-nav.is-open a:hover,
  .site-nav.is-open a:focus-visible {
    background: rgba(126, 176, 212, 0.18);
    color: #ffffff;
  }

  .contact-page-main {
    padding-top: 42px;
  }

  .contact-name-row {
    grid-template-columns: 1fr;
  }

  .site-nav.is-open {
    display: flex;
    margin-top: 6px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(4, 21, 37, 0.78);
    border: 1px solid rgba(157, 198, 226, 0.3);
  }

  .menu-toggle {
    align-self: center;
    min-height: 44px;
    min-width: 88px;
  }

  .section {
    padding: 52px 0;
  }

  .section-block {
    padding: 22px 0;
    border-radius: 0;
  }

  .hero {
    min-height: clamp(480px, 118vw, 620px);
    padding: 28px 22px 34px;
    border-radius: 28px;
    background-size: 100% 100%, 100% 100%, 100% 100%, cover;
    background-position: center, center, center, 38% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(4, 12, 22, 0.78) 0%, rgba(4, 12, 22, 0.56) 24%, rgba(4, 12, 22, 0.26) 42%, rgba(4, 12, 22, 0.08) 58%, rgba(4, 12, 22, 0) 72%);
  }

  .hero-copy {
    width: min(100%, 29rem);
    margin-left: 0;
    text-align: left;
  }

  .hero-copy {
    width: min(100%, 30rem);
    padding-left: 0;
    padding-right: 0;
    filter: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .has-vertical-label {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .has-vertical-label > .vertical-section-label {
    grid-row: auto;
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.92rem;
    letter-spacing: 0.16em;
  }

  .has-vertical-label > :not(.vertical-section-label) {
    grid-column: auto;
  }

  .section-with-vertical-marker {
    padding-left: 0;
  }

  .section-vertical-marker {
    position: static;
    display: block;
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
  }

  .section-vertical-marker::before,
  .section-vertical-marker::after {
    display: none;
  }

  .collaboration-intro,
  .collaboration-field {
    margin-left: 0;
  }

  .collaboration-field {
    padding: 8px 0 0;
  }

  .feature-card,
  .leader-card,
  .team-card,
  .contact-section,
  .track-step,
  .metric,
  .timeline-item {
    border-radius: 22px;
  }

  .contact-section {
    padding: 28px;
  }

  .human-burden-layout {
    margin-left: 0;
    margin-right: 0;
    gap: 26px;
  }

  .human-burden-story {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .human-story-step,
  .human-story-step-prevalence,
  .human-story-step-risk,
  .human-story-step-burden {
    max-width: none;
    margin-top: 0;
  }

  .human-story-step-risk {
    padding: 30px 24px 24px;
  }

  .human-story-step-risk::before {
    left: 24px;
    width: 88px;
  }

  .human-story-number,
  .human-story-step-risk .human-story-number {
    font-size: clamp(3.8rem, 16vw, 5.8rem);
  }

  .human-story-copy,
  .human-story-step-prevalence .human-story-copy,
  .human-story-step-risk .human-story-copy,
  .human-story-step-burden .human-story-copy {
    max-width: none;
  }

  .human-story-connector {
    height: 34px;
    width: 2px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(43, 158, 212, 0.16), rgba(43, 158, 212, 0.72), rgba(43, 158, 212, 0.16));
    margin: 2px 0;
  }

  .human-story-connector::after {
    right: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(50%) rotate(135deg);
  }

  .team-portrait {
    width: 194px;
    height: 194px;
    background: var (--bg-soft);
  }

  .team-overlay {
    width: min(100%, 440px);
    max-width: 440px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-icon {
    width: 48px;
    height: 48px;
  }

  .team-card {
    min-height: auto;
    padding: 24px 20px 20px;
  }

  .team-portrait {
    width: 170px;
    height: 170px;
  }

  .team-overlay {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
    transform: none;
    padding: 16px 16px 18px;
  }

  .footer {
    padding-bottom: 32px;
  }
}

@media (max-width: 560px) {
  .brand {
    padding: 0;
    max-width: calc(100% - 102px);
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    padding: 10px 12px;
    min-width: 84px;
  }
}
/* ── News Split Layout ─────────────────────────────────── */
.news-split {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  align-items: start;
  margin-top: 2.5rem;
  margin-left: 28px;
  overflow: visible;
}

.news-timeline {
  display: flex;
  flex-direction: column;
  border-right: none;
}

.news-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 12px;
  align-items: center;
  gap: 0 0.75rem;
  padding: 1rem 1.25rem 1rem 0;
  border: none;
  border-bottom: 1px solid rgba(24, 56, 75, 0.06);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s;
}

.news-timeline-item:hover,
.news-timeline-item.active {
  background: rgba(24, 56, 75, 0.04);
}

.news-tl-date {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2b9ed4;
  white-space: nowrap;
  transition: color 0.18s;
}

.news-timeline-item:hover .news-tl-date,
.news-timeline-item.active .news-tl-date {
  color: #166c9c;
}

.news-tl-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #18384b;
  line-height: 1.35;
  transition: color 0.18s, font-weight 0.18s;
}

.news-timeline-item:hover .news-tl-label,
.news-timeline-item.active .news-tl-label {
  color: #0d2431;
  font-weight: 700;
}

.news-tl-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2b9ed4;
  opacity: 0;
  transition: opacity 0.18s;
  justify-self: end;
}

.news-timeline-item:hover .news-tl-dot,
.news-timeline-item.active .news-tl-dot {
  opacity: 1;
}

.news-detail-panel {
  padding: 0 0 0.5rem 2.5rem;
  min-height: 220px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.news-detail-card {
  animation: news-fade-in 0.25s ease both;
}

@keyframes news-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.news-detail-tag {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #2b9ed4;
  border: 1px solid #2b9ed4;
  padding: 0.2em 0.65em;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.news-detail-date {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2b9ed4;
  margin: 0 0 0.55rem;
}

.news-detail-panel h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 0.85rem;
  max-width: 520px;
  color: #18384b;
}

.news-detail-panel p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #637d8d;
  margin: 0 0 1rem;
}

.news-detail-link {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #2b9ed4;
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 158, 212, 0.3);
  transition: border-color 0.15s;
}

.news-detail-link:hover {
  border-bottom-color: #2b9ed4;
}

@media (max-width: 680px) {
  .news-split {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
  .news-timeline {
    border-bottom: 1px solid rgba(24, 56, 75, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
  .news-timeline-item {
    padding: 0.7rem 0;
  }
  .news-detail-panel {
    padding: 0;
  }
}
.platform-contrast {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-top: 24px;
  background: var(--bg-soft);
}

.platform-contrast-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.20;
  pointer-events: none;
  z-index: 0;
}

.platform-contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}

.platform-contrast-left {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}

.platform-contrast-right {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(43, 158, 212, 0.35);
}

.platform-contrast-label {
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;                
  font-weight: 800;
  letter-spacing: 0.2em;             
  text-transform: uppercase;
  color: var(--brand);              
  margin: 0 0 14px;
}

.platform-contrast-headline {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 14px;
}

.platform-contrast-headline em {
  font-style: italic;
  color: inherit;
}

.platform-contrast-right .signal-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d2431;
  margin-bottom: 5px;
}

.platform-contrast-footer {
  text-align: center;
  padding: 20px 40px 28px;
  border-top: 1px solid rgba(43, 158, 212, 0.25);
}

.platform-contrast-footer p {
  font-size: 1.4rem;        
  font-weight: 800;         
  font-style: italic;
  color: var(--brand-deep);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.platform-contrast-footer {
  text-align: center;
  padding: 26px 40px 34px;  /* more top/bottom padding */
  border-top: 1px solid rgba(43, 158, 212, 0.25);
}

@media (max-width: 760px) {
  .platform-contrast-grid {
    grid-template-columns: 1fr;
  }

  .platform-contrast-left,
  .platform-contrast-right {
    padding: 28px 20px;
  }

  .platform-contrast-right {
    border-left: 0;
    border-top: 1px solid rgba(43, 158, 212, 0.35);
  }

  .platform-contrast-footer {
    padding: 20px 20px 26px;
  }

  .platform-contrast-footer p {
    margin: 0;
    font-size: clamp(1.05rem, 5.5vw, 1.3rem);
  }
}
.team-card.no-photo {
  padding-top: 0;
  justify-content:center;
}
