:root {
  --ink: #071521;
  --ink-2: #0c2031;
  --navy: #081a2a;
  --navy-soft: #0c2639;
  --teal: #20c7b7;
  --teal-bright: #52d9cf;
  --blue: #4fa3ff;
  --sky: #eaf7f8;
  --mint: #dff7f3;
  --paper: #ffffff;
  --surface: #f4f8fa;
  --line: #dce8ec;
  --text: #223746;
  --muted: #637987;
  --shadow: 0 24px 70px rgba(7, 21, 33, .12);
  --shadow-soft: 0 16px 42px rgba(7, 21, 33, .08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { transform: translateY(0); }

.hiring-strip {
  position: relative;
  z-index: 30;
  color: #dffcf8;
  background: linear-gradient(90deg, #0b3843, #0a2a43 55%, #12334d);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hiring-strip__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .01em;
}
.hiring-strip__badge {
  padding: 4px 9px;
  border: 1px solid rgba(82,217,207,.48);
  border-radius: 999px;
  color: #9cf2e9;
  background: rgba(82,217,207,.09);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hiring-strip a {
  color: white;
  text-underline-offset: 4px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid rgba(12,38,57,.08);
  background: rgba(255,255,255,.91);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #087b7a;
  background: linear-gradient(145deg, #e3faf7, #e7f3ff);
  box-shadow: inset 0 0 0 1px rgba(32,199,183,.14);
}
.brand-mark svg { width: 25px; height: 25px; fill: currentColor; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { color: var(--ink); font-size: 17px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav > a {
  position: relative;
  color: #385060;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}
.primary-nav > a:not(.nav-linkedin)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: var(--teal);
  transition: right .2s ease;
}
.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after { right: 0; }
.nav-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid #cbdce3;
  border-radius: 10px;
  background: white;
  box-shadow: 0 7px 18px rgba(7,21,33,.05);
}
.nav-linkedin svg { width: 18px; height: 18px; fill: #0a66c2; }
.nav-linkedin:hover { border-color: #93becf; transform: translateY(-1px); }
.menu-button { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(49,170,179,.16), transparent 28%),
    linear-gradient(135deg, #071722 0%, #092336 55%, #092b3e 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, transparent 0, black 24%, black 100%);
}
.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}
.hero-glow--one { width: 420px; height: 420px; right: -130px; top: 40px; background: rgba(32,199,183,.08); }
.hero-glow--two { width: 260px; height: 260px; left: 32%; bottom: -120px; background: rgba(79,163,255,.08); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
  align-items: center;
  gap: 64px;
  padding-block: 96px;
}
.hero-copy { max-width: 670px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #8ceae2;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 2px; background: currentColor; }
.eyebrow--dark { color: #088c8b; }
.hero h1 {
  margin: 0;
  max-width: 780px;
  color: white;
  font-size: clamp(45px, 5.2vw, 72px);
  line-height: 1.035;
  letter-spacing: -.055em;
  font-weight: 820;
}
.hero-lead {
  max-width: 655px;
  margin: 26px 0 0;
  color: #bfd0da;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .primary-nav a:focus-visible, .menu-button:focus-visible, .text-link:focus-visible {
  outline: 3px solid rgba(82,217,207,.45);
  outline-offset: 3px;
}
.button--primary {
  color: #062321;
  background: linear-gradient(135deg, #66e6db, #35cbbd);
  box-shadow: 0 13px 28px rgba(32,199,183,.22);
}
.button--primary:hover { box-shadow: 0 17px 36px rgba(32,199,183,.3); }
.button--ghost {
  color: white;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.055);
}
.button--ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.09); }
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  color: #91a9b6;
  font-size: 12px;
  font-weight: 650;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 5px rgba(82,217,207,.11);
}

.network-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(145,212,219,.18);
  border-radius: 34px;
  background:
    linear-gradient(155deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    radial-gradient(circle at center, rgba(60,203,197,.13), transparent 44%);
  box-shadow: inset 0 1px rgba(255,255,255,.1), 0 40px 100px rgba(0,0,0,.25);
}
.network-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 26px;
  pointer-events: none;
}
.network-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(116,220,211,.18);
  border-radius: 50%;
}
.network-orbit--outer { width: 400px; height: 400px; animation: spin 48s linear infinite; }
.network-orbit--inner { width: 255px; height: 255px; animation: spinReverse 32s linear infinite; }
.network-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.network-lines path, .network-lines circle { fill: none; stroke: url(#lineGradient); stroke-width: 1.4; stroke-dasharray: 5 8; }
.network-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 154px;
  height: 154px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(110,232,221,.4);
  border-radius: 50%;
  color: white;
  background: radial-gradient(circle at 35% 30%, #17475a, #0b2638 68%);
  box-shadow: 0 0 0 14px rgba(66,206,197,.055), 0 30px 70px rgba(0,0,0,.28);
}
.network-core::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(82,217,207,.18);
  border-radius: 50%;
}
.network-core__mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 7px;
  border-radius: 13px;
  color: #0b2c32;
  background: linear-gradient(135deg, #7aeee4, #39c5b9);
  font-weight: 900;
  font-size: 22px;
}
.network-core strong { font-size: 16px; letter-spacing: -.01em; }
.network-core small { margin-top: 2px; color: #8fb2bd; font-size: 9px; text-transform: uppercase; letter-spacing: .09em; }
.stakeholder {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(166,224,229,.17);
  border-radius: 12px;
  color: white;
  background: rgba(8,33,48,.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 35px rgba(0,0,0,.22);
}
.stakeholder__icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #7ce9df;
  background: rgba(82,217,207,.1);
}
.stakeholder__icon svg { width: 18px; height: 18px; fill: currentColor; }
.stakeholder > span:last-child { display: grid; line-height: 1.18; }
.stakeholder strong { font-size: 11px; }
.stakeholder small { margin-top: 3px; color: #829ca8; font-size: 8px; text-transform: uppercase; letter-spacing: .07em; }
.stakeholder--patients { top: 75px; left: 31px; }
.stakeholder--researchers { top: 74px; right: 25px; }
.stakeholder--providers { top: 283px; right: 9px; }
.stakeholder--pharma { bottom: 35px; right: 92px; }
.stakeholder--payers { bottom: 72px; left: 26px; }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spinReverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }

.facts-band { position: relative; z-index: 2; margin-top: -1px; background: #fff; border-bottom: 1px solid var(--line); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}
.fact:first-child { border-left: 1px solid var(--line); }
.fact strong { color: var(--ink); font-size: 17px; letter-spacing: -.02em; }
.fact span { margin-top: 5px; color: var(--muted); font-size: 11px; font-weight: 760; text-transform: uppercase; letter-spacing: .09em; }

.section { padding: 116px 0; }
.section-light { background: #fff; }
.section-heading { max-width: 700px; margin-bottom: 54px; }
.section-heading--center { max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section h2,
.contact-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 51px);
  line-height: 1.1;
  letter-spacing: -.045em;
}
.section-heading p,
.process-copy > p,
.about-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff, #f9fcfd);
  box-shadow: 0 12px 30px rgba(10,38,52,.045);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pillar-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -68px;
  bottom: -68px;
  border-radius: 50%;
  background: rgba(32,199,183,.055);
}
.pillar-card:hover { transform: translateY(-6px); border-color: #afd8dd; box-shadow: var(--shadow-soft); }
.card-number { position: absolute; top: 22px; right: 23px; color: #b3c5ce; font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 45px;
  border-radius: 14px;
  color: #078b87;
  background: linear-gradient(145deg, #e1f8f4, #edf7fb);
}
.card-icon svg { width: 24px; height: 24px; fill: currentColor; }
.pillar-card h3 { margin: 0; color: var(--ink); font-size: 21px; letter-spacing: -.025em; }
.pillar-card p { margin: 13px 0 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

.process-section { background: #f1f6f8; border-block: 1px solid #e2ecef; }
.process-grid { display: grid; grid-template-columns: .84fr 1.16fr; align-items: start; gap: 100px; }
.process-copy { position: sticky; top: 130px; }
.process-copy h2 { font-size: clamp(35px, 4vw, 49px); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: #087f7c;
  font-size: 14px;
  font-weight: 820;
  text-underline-offset: 5px;
}
.process-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 17px; }
.process-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 28px;
  border: 1px solid #d9e6ea;
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 34px rgba(7,21,33,.045);
}
.process-item > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0a716f;
  background: #e1f6f3;
  font-size: 15px;
  font-weight: 900;
}
.process-item h3 { margin: 0; color: var(--ink); font-size: 22px; letter-spacing: -.02em; }
.process-item p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.technology-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: linear-gradient(145deg, #071722, #092a3d);
}
.tech-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .22;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.22) 1px, transparent 0);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent, black 25%, black 75%, transparent);
}
.technology-section .section-heading h2 { color: white; }
.technology-section .section-heading p { color: #aec3ce; }
.technology-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.technology-card {
  min-height: 235px;
  padding: 30px;
  border: 1px solid rgba(180,224,228,.16);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: inset 0 1px rgba(255,255,255,.07);
  transition: border-color .2s ease, transform .2s ease;
}
.technology-card:hover { transform: translateY(-4px); border-color: rgba(82,217,207,.36); }
.technology-card__tag {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid rgba(82,217,207,.28);
  border-radius: 999px;
  color: #8ce9e1;
  background: rgba(82,217,207,.07);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.technology-card h3 { margin: 28px 0 0; color: white; font-size: 25px; letter-spacing: -.025em; }
.technology-card p { margin: 13px 0 0; color: #a9c0cb; font-size: 14px; line-height: 1.73; }

.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 90px; }
.about-visual { position: relative; min-height: 510px; }
.about-map-card {
  position: absolute;
  inset: 0 45px 56px 0;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 60% 45%, rgba(32,199,183,.18), transparent 26%),
    linear-gradient(145deg, #0a2638, #0c3a47);
  box-shadow: var(--shadow);
}
.map-grid {
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: perspective(600px) rotateX(55deg) scale(1.5) translateY(-32px);
}
.map-grid::after {
  content: "";
  position: absolute;
  inset: 20% 15%;
  border: 2px solid rgba(100,227,217,.22);
  border-radius: 48% 43% 58% 38%;
  transform: rotate(-14deg);
}
.map-pin {
  position: absolute;
  left: 57%;
  top: 42%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid #84eee5;
  border-radius: 50% 50% 50% 7px;
  background: #24c9ba;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 14px rgba(36,201,186,.11), 0 15px 34px rgba(0,0,0,.25);
}
.map-pin i { width: 8px; height: 8px; border-radius: 50%; background: #062e33; }
.map-label {
  position: absolute;
  left: 10%;
  bottom: 12%;
  display: grid;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(6,29,42,.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.map-label small { color: #8fc5c9; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.map-label strong { margin-top: 3px; color: white; font-size: 14px; }
.about-mini-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 245px;
  padding: 22px;
  border: 1px solid #d7e7ea;
  border-radius: 17px;
  background: white;
  box-shadow: var(--shadow-soft);
}
.about-mini-card span { color: #0a8c88; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.about-mini-card strong { display: block; margin-top: 8px; color: var(--ink); font-size: 18px; line-height: 1.35; }
.about-copy h2 { font-size: clamp(36px, 4vw, 52px); }
.about-facts { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid var(--line); }
.about-facts > div { display: grid; grid-template-columns: 125px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.about-facts span { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.about-facts strong { color: var(--ink); font-size: 14px; }

.careers-section { padding-top: 28px; background: #fff; }
.career-card {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #095867, #0a344c 55%, #0b2b45);
  box-shadow: 0 34px 90px rgba(8,48,65,.22);
}
.career-card__content { padding: 60px; color: white; }
.career-label {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(119,239,228,.34);
  border-radius: 999px;
  color: #9ef2ea;
  background: rgba(101,230,218,.08);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.career-card h2 { margin: 21px 0 0; max-width: 700px; color: white; font-size: clamp(34px, 4vw, 50px); }
.career-card__content > p { max-width: 680px; margin: 21px 0 0; color: #c3d8df; font-size: 16px; line-height: 1.75; }
.job-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 33px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; background: rgba(255,255,255,.14); }
.job-details > div { min-height: 92px; display: flex; flex-direction: column; justify-content: center; padding: 18px; background: rgba(4,29,44,.54); }
.job-details span { color: #8eb1be; font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.job-details strong { margin-top: 5px; color: white; font-size: 14px; }
.career-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button--light { color: #063139; background: #7ae9df; box-shadow: 0 14px 30px rgba(64,210,197,.18); }
.button--outline-light { color: white; border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.04); }
.career-disclaimer { margin-top: 17px !important; color: #83a7b3 !important; font-size: 10px !important; line-height: 1.5 !important; }
.career-code { display: grid; place-items: center; padding: 50px 45px; background: rgba(4,24,38,.35); }
.code-window { width: 100%; max-width: 405px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: #061b2a; box-shadow: 0 32px 65px rgba(0,0,0,.28); transform: rotate(1deg); }
.code-window__top { display: flex; gap: 6px; padding: 13px 15px; border-bottom: 1px solid rgba(255,255,255,.08); background: #0a2638; }
.code-window__top span { width: 8px; height: 8px; border-radius: 50%; background: #496171; }
.code-window pre { margin: 0; padding: 29px 26px 34px; overflow: auto; color: #d4e6ee; font: 13px/1.8 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.code-muted { color: #658493; }
.code-purple { color: #c9a4ff; }
.code-green { color: #82e6b1; }

.contact-cta { padding: 90px 0; background: #f0f7f8; border-top: 1px solid #dce9ec; }
.contact-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.contact-cta span:first-child { color: #0a8b87; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .11em; }
.contact-cta h2 { max-width: 670px; margin-top: 8px; font-size: clamp(30px, 3vw, 43px); }

.site-footer { padding: 70px 0 24px; color: #9bb2be; background: #061621; }
.footer-grid { display: grid; grid-template-columns: 1.8fr .7fr 1fr; gap: 70px; }
.brand--footer .brand-copy strong { color: white; }
.brand--footer .brand-copy small { color: #7995a2; }
.footer-brand > p { max-width: 430px; margin: 22px 0 0; color: #7f9aa7; font-size: 14px; line-height: 1.75; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column > strong { margin-bottom: 4px; color: white; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.footer-column a, .footer-column span { color: #89a2ae; font-size: 13px; text-decoration: none; }
.footer-column a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #5f7b89; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 790px; }
  .network-visual { max-width: 620px; width: 100%; margin-inline: auto; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { gap: 55px; }
  .about-grid { gap: 55px; }
  .career-card { grid-template-columns: 1fr; }
  .career-code { min-height: 440px; }
}

@media (max-width: 820px) {
  .hiring-strip__inner { justify-content: flex-start; min-height: 48px; overflow-x: auto; white-space: nowrap; }
  .hiring-strip a { margin-left: auto; }
  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid #d4e1e5;
    border-radius: 11px;
    background: white;
  }
  .menu-button span:not(.sr-only) { width: 20px; height: 2px; border-radius: 9px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    top: 122px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px;
    border: 1px solid #d9e6ea;
    border-radius: 17px;
    background: white;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a { padding: 13px 12px; border-radius: 9px; }
  .primary-nav > a:hover { background: #f2f8f9; }
  .primary-nav > a::after { display: none; }
  .nav-linkedin { margin-top: 7px; justify-content: center; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-grid { grid-template-columns: 1fr; }
  .process-copy { position: static; }
  .technology-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 620px; width: 100%; margin-inline: auto; }
  .contact-cta__inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.3fr .7fr; }
  .footer-column:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .hiring-strip__inner { gap: 9px; font-size: 11px; }
  .hiring-strip__badge { display: none; }
  .site-header .nav-shell { min-height: 68px; }
  .primary-nav { top: 112px; left: 14px; right: 14px; }
  .hero { min-height: auto; }
  .hero-grid { padding-block: 72px; }
  .hero h1 { font-size: clamp(40px, 13vw, 58px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .network-visual { min-height: 430px; border-radius: 25px; }
  .network-orbit--outer { width: 330px; height: 330px; }
  .network-orbit--inner { width: 220px; height: 220px; }
  .network-core { width: 128px; height: 128px; }
  .stakeholder { padding: 8px 9px; }
  .stakeholder__icon { width: 27px; height: 27px; }
  .stakeholder strong { font-size: 9px; }
  .stakeholder small { font-size: 7px; }
  .stakeholder--patients { top: 50px; left: 13px; }
  .stakeholder--researchers { top: 48px; right: 10px; }
  .stakeholder--providers { top: 238px; right: 2px; }
  .stakeholder--pharma { bottom: 27px; right: 44px; }
  .stakeholder--payers { bottom: 57px; left: 8px; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact, .fact:first-child { min-height: 96px; border-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 86px 0; }
  .section-heading { margin-bottom: 38px; }
  .section h2, .contact-cta h2 { font-size: 35px; }
  .section-heading p, .process-copy > p, .about-copy > p { font-size: 15px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 280px; }
  .process-item { grid-template-columns: 46px 1fr; gap: 13px; padding: 22px; }
  .process-item > span { width: 40px; height: 40px; }
  .about-visual { min-height: 430px; }
  .about-map-card { right: 20px; bottom: 50px; }
  .about-mini-card { width: 220px; }
  .about-facts > div { grid-template-columns: 1fr; gap: 3px; }
  .career-card__content { padding: 36px 24px; }
  .job-details { grid-template-columns: 1fr; }
  .career-code { min-height: 360px; padding: 35px 22px; }
  .code-window pre { padding: 24px 20px 30px; font-size: 11px; }
  .contact-cta { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
