/* ---------- Tokens ---------- */
:root {
  --bg:        #FFFFFF;   /* white */
  --bg-card:   #F6F7F8;   /* very light cool gray for alt sections */
  --ink:       #14191A;   /* near black */
  --ink-soft:  #3A4143;
  --muted:     #6F6A62;
  --rule:      #E8EAEC;   /* cool gray rule */
  --accent:    #0E7AB8;   /* Biolexis blue (deeper, text-safe on white) */
  --accent-2:  #C9A47C;   /* warm bronze (light-bg use only) */
  --accent-on-ink: #1B9CD8; /* literal logo blue, contrast-safe on dark sections */
  --on-ink:    #F2EDE3;
  --max:       1180px;
  --r:         14px;
  --shadow:    0 1px 0 rgba(20,25,26,.04), 0 14px 40px -20px rgba(20,25,26,.18);
  --shadow-lg: 0 30px 80px -40px rgba(14,122,184,.45);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
em { font-style: italic; color: var(--accent); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Typography ---------- */
.display, .h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
  margin: 0;
}
.display { font-size: clamp(2.6rem, 5.8vw, 5rem); }
.h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); letter-spacing: -0.018em; line-height: 1.1; }
.h2--light { color: var(--on-ink); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  margin: 0 0 18px;
}
.eyebrow--light { color: var(--accent-on-ink); }

.lede {
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 26px 0 32px;
}
.body { color: var(--ink-soft); font-size: 1.02rem; max-width: 60ch; }

sup { font-size: 0.65em; vertical-align: super; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: conic-gradient(from 140deg at 50% 50%, var(--accent), #1B9CD8, var(--accent-2), var(--accent));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.brand-word { color: var(--ink); }
.brand-tx { color: var(--accent); }
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}
.brand-logo--footer {
  height: 56px;
}
@media (max-width: 620px) {
  .brand-logo { height: 40px; }
}

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  font-size: 0.93rem; font-weight: 500;
  color: var(--ink-soft);
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--ink);
  color: var(--on-ink) !important;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 500;
}
.nav__cta:hover { background: var(--accent); color: var(--on-ink) !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.97rem;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn--primary { background: var(--ink); color: var(--on-ink); }
.btn--primary:hover { background: var(--accent); color: var(--on-ink); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto;
  width: 720px; height: 720px;
  background: radial-gradient(circle at 50% 50%, rgba(14,122,184,0.10), transparent 65%);
  z-index: 0; pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
  position: relative; z-index: 1;
}
.hero__copy { padding: 20px 0; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__panel { padding: 20px 0; }
.panel-card {
  background: var(--ink);
  color: var(--on-ink);
  padding: 32px;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}
.panel-card hr {
  border: 0; border-top: 1px solid rgba(255,255,255,.12);
  margin: 30px 0;
}
.panel-card__label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--accent-on-ink);
  margin: 0 0 8px;
}
.panel-card__big {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.4rem;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
}
.panel-card__sub { color: rgba(242,237,227,.7); font-size: 0.92rem; margin: 8px 0 0; }

/* panel-card heading ("2 Lead Clinical Programs") */
.panel-card__heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--accent-on-ink);
}
.panel-card__count {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.9rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent-on-ink);
}

/* program tiles inside the hero panel-card */
.program-card { display: block; }
.program-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.program-card__code {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.015em;
  color: #FFFFFF;
}
.program-card__chip {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-on-ink);
  background: rgba(27,156,216,.16);
  border: 1px solid rgba(27,156,216,.42);
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.program-card__mech {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
  color: #FFFFFF;
}
.program-card__sub {
  margin: 10px 0 0;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(242,237,227,.82);
}

/* ---------- Stats ---------- */
.stats { padding: 36px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.stat__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--accent);
}
.stat__cap { color: var(--muted); font-size: 0.92rem; margin: 6px 0 0; max-width: 26ch; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-card); }
.section--ink { background: var(--ink); color: var(--on-ink); }

.section__head { max-width: 760px; margin: 0 auto 56px; text-align: left; padding: 0 28px; }

/* three-up cards */
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card__num {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--accent-2);
  font-size: 1.05rem;
  margin: 0 0 24px;
  letter-spacing: 0.05em;
}
.card__h {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 14px;
  line-height: 1.2;
}
.card p { color: var(--ink-soft); margin: 0; }

/* two-col */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col--reverse { grid-template-columns: 1fr 1.05fr; }
.two-col__visual {
  margin: 0;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, rgba(14,122,184,.08), rgba(201,164,124,.10));
  border-radius: var(--r);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.bullets { list-style: none; padding: 0; margin: 28px 0 0; }
.bullets li {
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
}
.bullets li strong { color: var(--ink); margin-right: 6px; }
.bullets li:last-child { border-bottom: 1px solid var(--rule); }

.platform-closing {
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  max-width: 56ch;
}

/* hex cluster decoration */
.hex-cluster {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.hex {
  position: absolute;
  width: 110px; height: 126px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  opacity: 0.85;
}
.hex--1 { background: var(--accent);   transform: translate(0, 0); opacity: 0.95; }
.hex--2 { background: #1B9CD8;          transform: translate(-130px, -75px); opacity: 0.75; }
.hex--3 { background: var(--accent-2);  transform: translate(130px, -75px); opacity: 0.7; }
.hex--4 { background: #5EBEE5;          transform: translate(-130px,  75px); opacity: 0.6; }
.hex--5 { background: var(--ink);       transform: translate(130px,  75px); opacity: 0.85; }
.hex--6 { background: var(--accent);    transform: translate(0, -150px); opacity: 0.35; width: 80px; height: 92px; }
.hex--7 { background: var(--accent-2);  transform: translate(0, 150px); opacity: 0.4; width: 80px; height: 92px; }

/* ---------- Pipeline ---------- */
.pipeline {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  overflow: hidden;
}
.pipeline__head, .pipeline__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 2.4fr;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
}
.pipeline__head {
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--accent-on-ink);
}
.pipeline__stages {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
}
.pipeline__row {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--on-ink);
}
.pipeline__row:last-child { border-bottom: 0; }
.pipeline__row--muted { color: rgba(242,237,227,.55); }
.pl-name strong { display: block; font-size: 1.05rem; letter-spacing: -0.005em; }
.pl-name span { display: block; color: rgba(242,237,227,.6); font-size: 0.88rem; margin-top: 2px; }
.pl-mod, .pl-ind { font-size: 0.92rem; color: rgba(242,237,227,.75); }

.pl-bar {
  position: relative;
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  display: flex;
  align-items: center;
}
.bar {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-on-ink), #5EBEE5);
  position: absolute; left: 0; top: 0;
}
.bar--discovery        { width: 18%; }
.bar--ind              { width: 38%; }
.bar--phase1           { width: 60%; }
.bar--phase1-complete  { width: 60%; }
.bar-flag {
  position: absolute; right: 6px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(242,237,227,.7);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.pipeline__foot {
  font-size: 0.82rem;
  color: rgba(242,237,227,.5);
  margin: 16px 0 0;
}

/* ---------- Lead-program spotlight ---------- */
.spotlight { padding: 100px 0; }
.spotlight .container { max-width: 980px; }

.spotlight__head {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.95rem, 3.3vw, 2.85rem);
  line-height: 1.16;
  letter-spacing: -0.018em;
  margin: 14px 0 30px;
}
.spotlight__line-1 {
  display: block;
  color: var(--ink);
}
.spotlight__line-2 {
  display: block;
  color: var(--accent);
}

.spotlight__chain {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 64ch;
  margin: 0 0 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.spotlight__chain strong { color: var(--ink); }

.spotlight__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0;
}
.sp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.sp-stat__circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #EAF4FB 0%, #CDE3F0 65%, #B0D2E6 100%);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 18px 40px -20px rgba(14,122,184,.40);
}
.sp-stat__circle::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.65);
  pointer-events: none;
}
.sp-stat__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
}
.sp-stat__num sup {
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 2px;
}
.sp-stat__cap {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: 24ch;
  margin: 0;
}

.spotlight__src {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  margin: 36px 0 0;
  max-width: 80ch;
}

@media (max-width: 760px) {
  .spotlight { padding: 70px 0; }
  .spotlight__stats { grid-template-columns: 1fr; gap: 28px; }
  .sp-stat__circle { width: 150px; height: 150px; }
  .sp-stat__num { font-size: 2.2rem; }
}

/* ---------- Team ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.bio {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.bio__photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), #1B9CD8);
  color: var(--on-ink);
  font-family: 'Fraunces', serif;
  display: grid; place-items: center;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 22px -14px rgba(20,25,26,.25);
}
.bio__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.bio__name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.2;
}
.bio__role {
  color: var(--accent);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  margin: 6px 0 12px;
  text-transform: uppercase;
}
.bio__txt { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* ---------- News grid ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
  color: inherit;
}
.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.news-card__meta time {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.news-card__tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  background: rgba(14,122,184,.08);
  border: 1px solid rgba(14,122,184,.22);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.news-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  /* clamp to 3 lines so cards stay uniform */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__teaser {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  /* clamp to 3 lines so cards stay uniform */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__more {
  margin-top: auto;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.92rem;
  align-self: flex-start;
}
.news-card:hover .news-card__more { text-decoration: underline; }

@media (max-width: 980px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ---------- Quote ---------- */
.quote { padding: 96px 0; background: var(--bg-card); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.quote blockquote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 28px;
}
.quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 24px;
}
.quote cite {
  font-style: normal;
  color: var(--muted);
  letter-spacing: 0.06em;
  font-size: 0.88rem;
  text-transform: uppercase;
}

/* ---------- Contact ---------- */
.contact-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 22px; color: var(--ink-soft); }
.contact-list > li > strong { color: var(--ink); display: block; margin-bottom: 8px; }
.contact-list a { color: var(--accent); }
.email-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; font-size: 0.95rem; }
.email-list li { color: var(--muted); }
.email-list a { font-weight: 500; }

.contact-form {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 32px;
  display: grid; gap: 16px;
}
.contact-form label {
  display: grid; gap: 6px;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,122,184,0.10);
}
.contact-form button { justify-self: start; }
.contact-form__ack { color: var(--accent); font-weight: 500; margin: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(242,237,227,.7); padding: 64px 0 28px; }
.footer .nav__brand { color: var(--on-ink); }
.footer .brand-word { color: var(--on-ink); }
.footer .brand-tx { color: var(--accent-on-ink); }
.footer__addr { color: rgba(242,237,227,.6); margin: 14px 0 0; font-size: 0.92rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}
.footer__h {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--accent-on-ink);
  margin: 0 0 14px;
}
.footer nav a {
  display: block;
  padding: 5px 0;
  color: rgba(242,237,227,.7);
  font-size: 0.93rem;
}
.footer nav a:hover { color: var(--on-ink); }
.footer__base {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; gap: 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.footer__refs { color: rgba(242,237,227,.5); max-width: 56ch; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__panel { order: 2; }
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .three-up { grid-template-columns: 1fr; }
  .two-col, .two-col--reverse { grid-template-columns: 1fr; gap: 36px; }
  .two-col__visual { aspect-ratio: 16 / 10; }
  .pipeline__head, .pipeline__row { grid-template-columns: 1fr; gap: 8px; }
  .pipeline__head { display: none; }
  .pipeline__row { padding: 20px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .pl-bar { height: 8px; margin-top: 6px; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .team { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .stats__grid { grid-template-columns: 1fr; }
  .display { font-size: 2.4rem; }
  .footer__grid { grid-template-columns: 1fr; }
}
