:root {
  --night: #071426;
  --deep: #0b1f3a;
  --blue: #2563eb;
  --sky: #38bdf8;
  --gold: #c79a32;
  --green: #16a34a;
  --paper: #f8fafc;
  --white: #ffffff;
  --ink: #0f172a;
  --muted: #5c6b7f;
  --line: rgba(15, 23, 42, 0.11);
  --line-light: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 80px rgba(7, 20, 38, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: min(1240px, calc(100% - 40px));
  --font: "Avenir Next", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-is-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--white); background: var(--blue); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 4px; border-radius: 6px; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 140px) 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -100px;
  color: var(--night);
  background: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(248, 250, 252, .88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px) saturate(140%);
}
.header-shell {
  width: min(1400px, calc(100% - 32px));
  height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand-lockup { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-lockup img {
  width: 51px;
  height: 51px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 24px rgba(7, 20, 38, .12);
}
.brand-lockup span { display: grid; line-height: 1.05; }
.brand-lockup strong { font-size: .94rem; letter-spacing: .06em; }
.brand-lockup small { margin-top: 5px; font-size: .62rem; font-weight: 700; letter-spacing: .19em; opacity: .7; }
.primary-nav { display: flex; justify-content: center; gap: clamp(14px, 1.8vw, 28px); }
.primary-nav a { position: relative; font-size: .78rem; font-weight: 700; letter-spacing: .015em; opacity: .8; transition: opacity .2s; }
.primary-nav a:hover, .primary-nav a.is-active { opacity: 1; }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--sky);
  transition: right .2s ease;
}
.primary-nav a:hover::after, .primary-nav a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.language-switch { display: flex; gap: 6px; align-items: center; font-size: .72rem; font-weight: 700; }
.language-switch span { opacity: .35; }
.language-switch a { opacity: .55; transition: opacity .2s; }
.language-switch a:hover { opacity: 1; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  padding: 11px;
}
.menu-toggle > span:not(.sr-only) { display: block; height: 1px; background: currentColor; margin: 4px 0; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: .83rem;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: not-allowed; opacity: .55; transform: none; }
.button-small { min-height: 42px; padding: 10px 17px; font-size: .72rem; }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 30px rgba(37, 99, 235, .25); }
.button-primary:hover { background: #1d4ed8; box-shadow: 0 15px 34px rgba(37, 99, 235, .35); }
.button-secondary { color: var(--ink); border-color: var(--line); background: transparent; }
.button-secondary:hover { color: var(--white); border-color: var(--night); background: var(--night); }
.button-ghost-light { color: var(--white); border-color: rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .04); }
.button-ghost-light:hover { background: rgba(255, 255, 255, .11); border-color: rgba(255, 255, 255, .5); }
.button-pharma { color: var(--white); background: var(--green); }
.button-pharma:hover { background: #12833c; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button-row-center { justify-content: center; }
.centered-button { display: flex; width: max-content; margin: 42px auto 0; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--blue); font-size: .86rem; font-weight: 750; }
.text-link svg { transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.3;
}
.eyebrow-light { color: #8ddcff; }
.eyebrow > span { width: 24px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { letter-spacing: -.055em; line-height: .99; }
h2 { margin-bottom: 0; font-size: clamp(2.5rem, 5vw, 5.2rem); }
h3 { letter-spacing: -.035em; line-height: 1.08; }
p { color: var(--muted); }

.hero {
  position: relative;
  min-height: 820px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 25%, rgba(37, 99, 235, .24), transparent 30%),
    linear-gradient(130deg, var(--night) 0%, #081a31 54%, #0a2850 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  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: 72px 72px;
  mask-image: linear-gradient(to right, transparent, black 32%, black);
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 820px;
  padding-top: 118px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}
.hero-copy { max-width: 740px; }
.hero-copy h1 { max-width: 780px; margin: 24px 0 28px; font-size: clamp(3.4rem, 7vw, 7.3rem); }
.hero-copy h1 em, .innovation-band h2 em { color: var(--sky); font-style: normal; }
.hero-copy > p { max-width: 680px; color: rgba(255, 255, 255, .72); font-size: clamp(1rem, 1.45vw, 1.2rem); line-height: 1.75; }
.hero-signature { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 55px; color: rgba(255, 255, 255, .58); font-size: .69rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-signature span + span::before { content: "•"; margin-right: 16px; color: var(--gold); }
.tech-orbit { position: absolute; border: 1px solid rgba(56, 189, 248, .14); border-radius: 50%; pointer-events: none; }
.tech-orbit-one { width: 720px; height: 720px; top: 0; right: -260px; }
.tech-orbit-two { width: 420px; height: 420px; right: 90px; bottom: -220px; }
.technology-map { position: relative; min-height: 570px; }
.map-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(37, 99, 235, .23);
  filter: blur(55px);
}
.technology-map::before, .technology-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.technology-map::before { width: 430px; height: 430px; }
.technology-map::after { width: 290px; height: 290px; border-style: dashed; animation: slow-spin 32s linear infinite; }
.map-core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 174px;
  height: 174px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 60px rgba(56, 189, 248, .1), 0 0 80px rgba(37, 99, 235, .18);
  backdrop-filter: blur(16px);
}
.map-core img { width: 58px; height: 58px; border-radius: 50%; object-fit: contain; margin-bottom: 7px; }
.map-core span { font-size: .7rem; font-weight: 800; letter-spacing: .08em; }
.map-core small { color: #8ddcff; font-size: .58rem; font-weight: 700; letter-spacing: .2em; }
.map-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 78px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background: rgba(7, 20, 38, .72);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
  font-size: .66rem;
  font-weight: 750;
}
.map-node-1 { top: 11%; left: 44%; }
.map-node-2 { top: 24%; right: 2%; }
.map-node-3 { top: 58%; right: 0; }
.map-node-4 { bottom: 9%; left: 49%; }
.map-node-5 { bottom: 21%; left: 0; }
.map-node-6 { top: 34%; left: -2%; }
.map-node-7 { top: 5%; left: 7%; }
.hero-edge {
  position: absolute;
  z-index: 3;
  left: 30px;
  bottom: 29px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .48);
}
.hero-edge span { color: var(--gold); font-size: .68rem; font-weight: 800; }
.hero-edge p { margin: 0; color: inherit; font-size: .6rem; font-weight: 700; letter-spacing: .18em; }
.hero-edge i { width: 90px; height: 1px; background: rgba(255, 255, 255, .18); }

.split-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 10vw, 150px); align-items: start; }
.split-intro h2 { max-width: 570px; margin-top: 20px; }
.intro-copy { padding-top: 38px; }
.intro-copy .lead { color: var(--ink); font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.6; }
.domain-strip {
  margin-top: 74px;
  display: grid;
  grid-template-columns: 1.4fr repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(7, 20, 38, .06);
}
.domain-strip > span, .since-card { min-height: 108px; display: grid; place-items: center; padding: 16px; border-right: 1px solid var(--line); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.domain-strip > span:last-child { border-right: 0; }
.since-card { color: var(--white); background: var(--night); place-items: start; align-content: center; padding-left: 28px; }
.since-card strong { color: #8ddcff; font-size: .64rem; letter-spacing: .15em; text-transform: uppercase; }
.since-card span { font-size: 2rem; letter-spacing: -.04em; }

.solutions-preview { background: #eef3f9; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 54px; }
.section-heading h2 { margin-top: 16px; }
.section-heading > p { max-width: 440px; margin-bottom: 7px; font-size: 1.05rem; }
.pharmalink-feature {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(135deg, #071426 0%, #0a2a2a 100%);
  box-shadow: var(--shadow);
}
.pharmalink-copy { padding: clamp(36px, 6vw, 76px); }
.featured-badge, .mvp-label {
  display: inline-flex;
  border: 1px solid rgba(97, 255, 153, .25);
  border-radius: 999px;
  color: #87f3a6;
  background: rgba(22, 163, 74, .11);
  padding: 7px 11px;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .15em;
}
.pharmalink-title { display: flex; align-items: center; gap: 16px; margin: 32px 0 25px; }
.pharmalink-title h3 { margin: 0; font-size: clamp(2.6rem, 5vw, 4.7rem); }
.pharmalink-title p { margin: 5px 0 0; color: #87f3a6; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.pharma-mark { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px; color: var(--white); background: var(--green); }
.pharma-mark svg { width: 29px; }
.pharmalink-copy > p { color: rgba(255, 255, 255, .72); font-size: 1.02rem; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; padding: 0; margin: 27px 0; list-style: none; }
.feature-list li { position: relative; padding-left: 18px; color: rgba(255, 255, 255, .72); font-size: .82rem; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: .75em; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.mvp-label { margin-bottom: 20px; border-color: var(--line-light); color: rgba(255, 255, 255, .7); background: rgba(255, 255, 255, .04); }
.pharmalink-copy .button { display: flex; width: max-content; margin-top: 12px; }
.ecosystem-diagram {
  position: relative;
  min-height: 620px;
  background:
    radial-gradient(circle at 50% 50%, rgba(22, 163, 74, .22), transparent 25%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}
.ecosystem-core, .ecosystem-node { position: absolute; z-index: 2; display: grid; place-items: center; text-align: center; }
.ecosystem-core {
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(135, 243, 166, .45);
  border-radius: 50%;
  background: rgba(22, 163, 74, .16);
  box-shadow: 0 0 80px rgba(22, 163, 74, .16);
}
.ecosystem-core svg { color: #87f3a6; width: 40px; height: 40px; }
.ecosystem-core strong { margin-top: -18px; font-size: .82rem; letter-spacing: .12em; }
.ecosystem-core small { margin-top: -45px; color: #87f3a6; font-size: .56rem; letter-spacing: .14em; }
.ecosystem-node { min-width: 148px; min-height: 62px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; color: rgba(255,255,255,.76); background: rgba(7,20,38,.74); padding: 10px 15px; font-size: .64rem; font-weight: 800; letter-spacing: .12em; }
.patient-node { top: 9%; left: 50%; transform: translateX(-50%); }
.pharmacy-node { bottom: 12%; left: 8%; }
.professional-node { bottom: 12%; right: 7%; }
.connector { position: absolute; z-index: 1; display: block; height: 1px; background: linear-gradient(90deg, transparent, #43da77, transparent); transform-origin: center; }
.connector-top { top: 30%; left: 50%; width: 150px; transform: translateX(-50%) rotate(90deg); }
.connector-left { bottom: 31%; left: 24%; width: 175px; transform: rotate(-33deg); }
.connector-right { bottom: 31%; right: 23%; width: 175px; transform: rotate(33deg); }
.product-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.product-card {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-column: span 4;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(37,99,235,.25); box-shadow: 0 22px 50px rgba(7,20,38,.09); }
.product-card > span { color: #a7b0bd; font-size: .65rem; font-weight: 800; }
.product-card > small { margin-top: 46px; color: var(--blue); font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-card h3 { margin: 11px 0 10px; font-size: 1.55rem; }
.product-card p { margin-bottom: 22px; font-size: .88rem; }
.product-card > a { margin-top: auto; width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: color .2s, background .2s; }
.product-card > a:hover { color: var(--white); background: var(--blue); }
.product-card-2 { grid-column: span 5; }
.product-card-3 { grid-column: span 3; background: var(--night); }
.product-card-3 h3, .product-card-3 > span { color: var(--white); }
.product-card-3 p { color: rgba(255,255,255,.6); }
.product-card-3 > a { color: var(--white); border-color: var(--line-light); }

.expertise-section { background: var(--white); }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.expertise-card { position: relative; min-height: 330px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.expertise-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; color: var(--blue); background: rgba(37,99,235,.08); }
.expertise-card > span { position: absolute; top: 33px; right: 30px; color: #a7b0bd; font-size: .65rem; font-weight: 800; }
.expertise-card h3 { margin: 64px 0 15px; font-size: 1.5rem; }
.expertise-card p { font-size: .9rem; }

.innovation-band {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(37,99,235,.2), transparent 28%),
    linear-gradient(140deg, var(--night), #06101e);
}
.innovation-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.innovation-band h2 { margin: 21px 0 28px; }
.innovation-band p { max-width: 630px; color: rgba(255,255,255,.65); }
.impact-flow { display: grid; }
.impact-flow > div { position: relative; min-height: 85px; display: grid; grid-template-columns: 55px 1fr; align-items: center; gap: 18px; border-bottom: 1px solid var(--line-light); }
.impact-flow span { color: var(--gold); font-size: .62rem; font-weight: 800; }
.impact-flow strong { font-size: clamp(1rem, 2vw, 1.45rem); letter-spacing: .06em; }
.impact-flow i { position: absolute; left: 21px; bottom: -16px; width: 1px; height: 31px; background: rgba(56,189,248,.4); }

.leader-feature { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(38px, 7vw, 90px); align-items: center; }
.leader-portrait { position: relative; padding: 22px 0 0 22px; }
.leader-portrait::before { content: ""; position: absolute; inset: 0 24px 24px 0; border: 1px solid rgba(199,154,50,.42); border-radius: var(--radius-md); }
.leader-portrait img { position: relative; z-index: 1; width: 100%; aspect-ratio: 1 / 1.04; object-fit: cover; object-position: center 20%; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.leader-portrait > span {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 35px;
  max-width: 190px;
  color: var(--white);
  background: var(--night);
  padding: 13px 17px;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .13em;
}
.leader-copy h3 { max-width: 650px; margin: 22px 0 28px; font-size: clamp(2.2rem, 4.2vw, 4.6rem); }
.leader-copy p { font-size: .98rem; }

.international-preview { background: #eef3f9; }
.international-copy { max-width: 760px; }
.international-copy h2 { margin: 18px 0 24px; }
.international-images { margin-top: 55px; display: grid; grid-template-columns: .72fr 1fr .72fr; gap: 20px; align-items: center; }
.international-images figure { margin: 0; overflow: hidden; border-radius: var(--radius-md); background: var(--night); }
.international-images figure:nth-child(2) { transform: translateY(28px); }
.international-images img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .5s ease; }
.international-images figure:hover img { transform: scale(1.025); }
.international-images figcaption { min-height: 58px; display: flex; align-items: center; color: rgba(255,255,255,.74); padding: 12px 17px; font-size: .66rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.partnership-section { padding: clamp(75px, 9vw, 120px) 0; color: var(--white); background: var(--deep); }
.partnership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.partnership-grid h2 { margin-top: 18px; }
.partnership-grid p { color: rgba(255,255,255,.67); }
.final-cta { padding: clamp(85px, 11vw, 150px) 0; text-align: center; background: var(--white); }
.final-cta .container { max-width: 900px; }
.final-cta h2 { margin: 20px 0 27px; }
.final-cta p { max-width: 700px; margin-inline: auto; font-size: 1.08rem; }

.site-footer { padding: 80px 0 25px; color: var(--white); background: #04101f; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 55px; }
.brand-lockup-footer img { width: 58px; height: 58px; }
.footer-brand > p { margin: 26px 0 4px; color: var(--white); font-weight: 750; }
.footer-brand > small { display: block; max-width: 280px; color: rgba(255,255,255,.48); line-height: 1.7; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid h2 { margin: 0 0 12px; color: #8ddcff; font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid a { color: rgba(255,255,255,.58); font-size: .8rem; transition: color .2s; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { margin-top: 65px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.42); font-size: .69rem; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a { color: rgba(255,255,255,.5); font-size: .68rem; }

.page-hero {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: end;
  padding: 150px 0 82px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 30%, rgba(37,99,235,.28), transparent 32%),
    linear-gradient(135deg, var(--night), var(--deep));
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  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: 64px 64px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 1000px; margin: 21px 0 25px; font-size: clamp(3rem, 7vw, 7rem); }
.page-hero p { max-width: 720px; margin: 0; color: rgba(255,255,255,.68); font-size: clamp(1rem, 1.8vw, 1.22rem); }
.breadcrumbs { margin-bottom: 35px; display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,.47); font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { opacity: .45; }
.content-section { padding: clamp(68px, 8vw, 120px) 0; background: var(--white); }
.content-section.alt { background: #eef3f9; }
.content-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(45px, 9vw, 130px); }
.content-grid h2 { margin-top: 18px; font-size: clamp(2.3rem, 4.7vw, 4.8rem); }
.prose { max-width: 770px; }
.prose p { font-size: 1.02rem; }
.prose .lead { color: var(--ink); font-size: 1.28rem; line-height: 1.6; }
.value-grid, .solution-grid, .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card, .solution-card, .news-card {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.value-card h3, .solution-card h3, .news-card h3 { margin: 24px 0 12px; font-size: 1.55rem; }
.value-card p, .solution-card p, .news-card p { margin-bottom: 0; font-size: .9rem; }
.value-card > span, .solution-card > span { color: var(--blue); font-size: .65rem; font-weight: 800; letter-spacing: .14em; }
.solution-card { min-height: 300px; display: flex; flex-direction: column; }
.solution-card a { margin-top: auto; }
.solution-card.pharma { grid-column: span 2; color: var(--white); background: linear-gradient(145deg, var(--night), #0a342e); }
.solution-card.pharma p { color: rgba(255,255,255,.68); }
.solution-card.pharma > span { color: #87f3a6; }
.solution-card.pharma .text-link { color: #87f3a6; }
.detail-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.detail-item { padding: 25px; border-left: 3px solid var(--blue); background: var(--paper); }
.detail-item h3 { margin-bottom: 8px; font-size: 1.2rem; }
.detail-item p { margin: 0; font-size: .9rem; }
.dark-section { color: var(--white); background: var(--night); }
.dark-section p { color: rgba(255,255,255,.65); }
.vision-quote { padding: clamp(70px, 10vw, 140px) 0; color: var(--white); background: linear-gradient(135deg, #0b1f3a, #071426); }
.vision-quote blockquote { max-width: 1000px; margin: 30px 0 0; font-size: clamp(2.2rem, 5vw, 5rem); font-weight: 650; letter-spacing: -.05em; line-height: 1.1; }
.vision-quote blockquote::before { content: "“"; color: var(--gold); }
.vision-quote blockquote::after { content: "”"; color: var(--gold); }

.ceo-hero { min-height: 760px; padding-bottom: 0; align-items: stretch; }
.ceo-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; min-height: 760px; }
.ceo-hero-copy { padding: 180px 40px 95px 0; align-self: center; }
.ceo-hero h1 { font-size: clamp(3.4rem, 7vw, 7.4rem); }
.ceo-subtitle { color: #8ddcff !important; font-weight: 650; }
.ceo-role { margin-top: 18px !important; color: var(--white) !important; }
.ceo-hero-image { align-self: end; position: relative; }
.ceo-hero-image::before { content: ""; position: absolute; inset: 12% 0 0 8%; border: 1px solid rgba(199,154,50,.5); border-bottom: 0; border-radius: 240px 240px 0 0; }
.ceo-hero-image img { position: relative; z-index: 1; width: 100%; max-height: 660px; object-fit: cover; object-position: center top; }
.profile-facts { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.profile-facts div { min-height: 145px; padding: 25px; border-right: 1px solid var(--line); }
.profile-facts div:last-child { border-right: 0; }
.profile-facts span { color: var(--blue); font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.profile-facts strong { display: block; margin-top: 18px; font-size: 1.05rem; line-height: 1.45; }
.book-card { display: grid; grid-template-columns: 140px 1fr; gap: 30px; padding: 36px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(145deg, var(--night), var(--deep)); }
.book-cover { min-height: 200px; display: grid; place-items: center; padding: 18px; border: 1px solid rgba(199,154,50,.5); background: linear-gradient(150deg, #0b1f3a, #153a6f); text-align: center; box-shadow: 0 22px 50px rgba(0,0,0,.25); }
.book-cover span { color: var(--gold); font-size: .66rem; font-weight: 800; letter-spacing: .13em; }
.book-cover strong { display: block; margin-top: 15px; font-size: 1.05rem; line-height: 1.3; }
.book-card h3 { margin: 0 0 14px; font-size: 2rem; }
.book-card p { color: rgba(255,255,255,.65); }
.topic-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.topic-tags span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--white); font-size: .67rem; font-weight: 700; }
.dark-section .topic-tags span { color: rgba(255,255,255,.68); border-color: var(--line-light); background: rgba(255,255,255,.05); }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .7fr 1fr; grid-template-rows: 340px 270px; gap: 18px; }
.gallery-item { position: relative; overflow: hidden; border: 0; border-radius: var(--radius-md); padding: 0; color: var(--white); background: var(--night); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(7,20,38,.88)); pointer-events: none; }
.gallery-item span { position: absolute; z-index: 2; left: 19px; bottom: 17px; right: 19px; text-align: left; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.gallery-office { grid-row: span 2; }
.gallery-event { grid-column: 2 / 4; }
.image-dialog { width: min(1050px, calc(100% - 30px)); max-height: 90vh; border: 0; border-radius: 20px; padding: 12px; background: var(--night); box-shadow: 0 40px 120px rgba(0,0,0,.5); }
.image-dialog::backdrop { background: rgba(2,8,16,.85); backdrop-filter: blur(6px); }
.image-dialog img { width: 100%; max-height: calc(90vh - 24px); object-fit: contain; }
.image-dialog button { position: absolute; z-index: 2; top: 22px; right: 22px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--white); background: rgba(7,20,38,.8); font-size: 1.6rem; cursor: pointer; }

.news-card { overflow: hidden; padding: 0; }
.news-card-media { min-height: 200px; display: grid; place-items: center; color: var(--white); background: linear-gradient(135deg, var(--deep), #13573b); }
.news-card-media svg { width: 60px; height: 60px; color: #87f3a6; }
.news-card-body { padding: 27px; }
.news-card time { color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-shell { width: min(800px, calc(100% - 40px)); margin-inline: auto; }
.article-shell h2 { margin: 55px 0 18px; font-size: clamp(2rem, 4vw, 3.4rem); }
.article-shell p, .article-shell li { font-size: 1.06rem; line-height: 1.85; }
.article-lead { color: var(--ink); font-size: 1.35rem !important; line-height: 1.65 !important; }
.article-callout { margin: 45px 0; padding: 30px; border-left: 4px solid var(--green); background: #eef9f1; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 8vw, 110px); }
.contact-intro h2 { margin: 18px 0 25px; font-size: clamp(2.5rem, 5vw, 5rem); }
.contact-points { display: grid; gap: 14px; margin-top: 38px; }
.contact-points div { padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-points span { display: block; color: var(--blue); font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-points strong { display: block; margin-top: 5px; font-size: .95rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: clamp(25px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 25px 70px rgba(7,20,38,.07); }
.form-field { display: grid; gap: 7px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { font-size: .72rem; font-weight: 800; letter-spacing: .04em; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  border: 1px solid rgba(15,23,42,.17);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--paper);
  padding: 13px 15px;
}
.form-field input { min-height: 50px; }
.form-field textarea { min-height: 160px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.1); }
.honeypot { position: absolute !important; left: -10000px !important; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-status { flex: 1; margin: 0; font-size: .8rem; }
.form-status.success { color: var(--green); }
.form-status.error { color: #b42318; }
.privacy-note { grid-column: 1 / -1; margin: 0; color: #7a8798; font-size: .7rem; }

.error-page { min-height: 100vh; display: grid; place-items: center; text-align: center; color: var(--white); background: var(--night); padding: 30px; }
.error-code { color: var(--sky); font-size: clamp(5rem, 20vw, 13rem); font-weight: 800; letter-spacing: -.09em; line-height: .8; }
.error-page h1 { margin: 35px 0 15px; font-size: clamp(2.2rem, 5vw, 4rem); }
.error-page p { max-width: 600px; color: rgba(255,255,255,.65); }
.route-loading { min-height: 100vh; display: grid; place-content: center; text-align: center; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@keyframes slow-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

@media (max-width: 1120px) {
  .header-shell { grid-template-columns: auto auto 1fr; }
  .menu-toggle { display: block; grid-column: 3; justify-self: end; }
  .primary-nav {
    position: fixed;
    inset: 88px 16px auto;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    color: var(--ink);
    background: rgba(248,250,252,.98);
    box-shadow: var(--shadow);
    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .primary-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .primary-nav a { padding: 14px 10px; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { display: none; }
  .header-actions { grid-row: 1; grid-column: 2; }
  .hero-grid { grid-template-columns: 1fr .72fr; }
  .technology-map { transform: scale(.86); margin-inline: -50px; }
  .domain-strip { grid-template-columns: repeat(4, 1fr); }
  .since-card { grid-column: span 2; }
  .domain-strip > span:nth-last-child(-n+2) { border-top: 1px solid var(--line); }
  .product-card, .product-card-2, .product-card-3 { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 30px, 680px); }
  .header-shell { height: 76px; width: calc(100% - 24px); grid-template-columns: auto 1fr auto; gap: 12px; }
  .site-header.is-scrolled .header-shell { height: 70px; }
  .brand-lockup img { width: 44px; height: 44px; }
  .brand-lockup strong { font-size: .78rem; }
  .brand-lockup small { font-size: .54rem; }
  .header-actions { grid-column: 2; justify-self: end; }
  .header-actions .button { display: none; }
  .primary-nav { top: 76px; }
  .menu-toggle { grid-column: 3; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 150px; padding-bottom: 95px; }
  .hero-copy h1 { font-size: clamp(3.1rem, 13vw, 5.4rem); }
  .technology-map { min-height: 470px; transform: none; margin: 0; }
  .technology-map::before { width: 360px; height: 360px; }
  .technology-map::after { width: 245px; height: 245px; }
  .map-node-5 { left: 2%; }
  .map-node-3 { right: 2%; }
  .hero-edge { display: none; }
  .split-intro, .content-grid, .contact-layout { grid-template-columns: 1fr; }
  .intro-copy { padding-top: 0; }
  .domain-strip { grid-template-columns: repeat(2, 1fr); }
  .since-card { grid-column: span 2; }
  .domain-strip > * { border-top: 1px solid var(--line); }
  .since-card { border-top: 0; }
  .section-heading { display: grid; }
  .pharmalink-feature { grid-template-columns: 1fr; }
  .ecosystem-diagram { min-height: 520px; }
  .expertise-grid, .value-grid, .solution-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .innovation-grid, .leader-feature, .partnership-grid { grid-template-columns: 1fr; }
  .leader-portrait { max-width: 600px; margin-inline: auto; }
  .international-images { grid-template-columns: 1fr 1fr; }
  .international-images figure:nth-child(2) { transform: none; }
  .international-images figure:nth-child(3) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .page-hero { min-height: 500px; padding-top: 135px; }
  .ceo-hero-grid { grid-template-columns: 1fr; }
  .ceo-hero-copy { padding: 150px 0 40px; }
  .ceo-hero-image { max-width: 620px; margin-inline: auto; }
  .profile-facts { grid-template-columns: 1fr 1fr; }
  .profile-facts div:nth-child(2) { border-right: 0; }
  .profile-facts div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 280px 280px; }
  .gallery-office { grid-row: auto; grid-column: span 2; }
  .gallery-event { grid-column: span 2; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 24px); }
  .section { padding: 72px 0; }
  .language-switch { font-size: .65rem; }
  .hero-grid { padding-top: 125px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 15vw, 4.6rem); }
  .hero-copy > p { font-size: .96rem; }
  .button { width: 100%; }
  .hero-signature { gap: 8px; }
  .hero-signature span + span::before { margin-right: 8px; }
  .technology-map { min-height: 400px; margin-inline: -20px; }
  .technology-map::before { width: 315px; height: 315px; }
  .technology-map::after { width: 220px; height: 220px; }
  .map-core { width: 145px; height: 145px; }
  .map-node { min-width: 68px; min-height: 38px; font-size: .58rem; padding: 7px 10px; }
  .feature-list, .detail-list { grid-template-columns: 1fr; }
  .pharmalink-copy { padding: 30px 23px; }
  .ecosystem-diagram { min-height: 450px; }
  .ecosystem-core { width: 165px; height: 165px; }
  .ecosystem-node { min-width: 118px; min-height: 54px; font-size: .54rem; }
  .connector-left, .connector-right { width: 125px; }
  .product-card, .product-card-2, .product-card-3 { grid-column: span 12; }
  .expertise-grid, .value-grid, .solution-grid, .news-grid { grid-template-columns: 1fr; }
  .solution-card.pharma { grid-column: auto; }
  .international-images { grid-template-columns: 1fr; }
  .international-images figure:nth-child(3) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .profile-facts { grid-template-columns: 1fr; }
  .profile-facts div { border-right: 0; border-bottom: 1px solid var(--line); }
  .profile-facts div:last-child { border-bottom: 0; }
  .book-card { grid-template-columns: 1fr; }
  .book-cover { max-width: 180px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(5, 330px); }
  .gallery-office, .gallery-event { grid-column: auto; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
  .form-field-full, .form-actions, .privacy-note { grid-column: auto; }
  .form-actions { align-items: stretch; }
}

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

@media print {
  .site-header, .site-footer, .button, .menu-toggle { display: none !important; }
  body { color: #000; background: #fff; }
  .page-hero, .dark-section, .vision-quote { color: #000; background: #fff; }
  .page-hero p, .dark-section p { color: #333; }
}
