/* ==========================================================================
   MST — production styles
   Tokens, values and animations transcribed pixel-for-pixel from the design
   reference: /root/projects/mst/source/MST Hero v2.dc.html
   ========================================================================== */

:root {
  --ink: #12244a;
  --ink-hover: #1d3a75;
  --accent: #2f66d0;
  --accent-light: #7fa4e8;
  --text-light: #eaf0fa;
  --text-light-2: #a9bbdc;
  --bg-light: #f6f8fc;
  --bg-light-2: #eef2f8;
  --muted: #5a6a85;
  --muted-2: #8b99b0;
  --body-text: #44546e;
  --border-color: rgba(195, 206, 222, .8);
  --section-x: clamp(20px, 4vw, 56px);
}

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

html, body {
  margin: 0;
  padding: 0;
  background: #eef2f8;
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: 'Onest', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }

/* ---------- keyframes ---------- */
@keyframes riseIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroDrift { 0% { transform: translateY(0); } 50% { transform: translateY(-14px); } 100% { transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { transform: translateY(0); opacity: .9; } 50% { transform: translateY(8px); opacity: .4; } }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(47, 102, 208, .35); } 50% { box-shadow: 0 0 0 14px rgba(47, 102, 208, 0); } }
@keyframes flowDot { 0% { left: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: calc(100% - 10px); opacity: 0; } }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 14px var(--section-x);
  background: rgba(238, 242, 248, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(195, 206, 222, .5);
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  padding: 11px 0 2px 21px;
}
.logo-dot { position: absolute; border-radius: 50%; }
.logo-dot--yellow { left: 0; top: 16px; width: 15px; height: 15px; background: #f5d94f; }
.logo-dot--red { left: 88px; top: 0; width: 19px; height: 19px; background: #f0564f; }
.logo-text {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #4a4640;
}
.logo-badge {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #3fa9e8;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 600; color: #fff;
  margin: 0 0 -3px 1px;
}

.nav-links {
  flex: 1 1 260px;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
}
.nav-link { color: #3c4c68; }
.nav-link:hover { color: var(--accent); }

.header-right { display: flex; align-items: center; gap: 14px; }

.lang-switch { display: flex; gap: 4px; font-size: 12px; font-weight: 600; letter-spacing: .1em; }
.lang-btn {
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  letter-spacing: .1em;
}
.lang-btn.is-active { background: var(--ink); color: #fff; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--ink-hover); color: #fff; }

/* ==========================================================================
   Shared bits
   ========================================================================== */
.section-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--accent);
  margin-bottom: 26px;
}
.section-tag--light { color: var(--accent-light); }
.section-tag--center { }

/* ==========================================================================
   s1 — Hero
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(160deg, #eef2f8 0%, #dfe6f0 45%, #d6deeb 100%);
}
.hero-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(1100px 640px at 68% 40%, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0) 62%);
}
.hero-env {
  position: absolute; inset: 0;
  transform: none;
  filter: none;
  will-change: transform;
}

.hero-layer { transition: transform .7s ease-out; }
.hero-layer--bg { position: absolute; left: -6%; top: 6%; width: 44%; transform: translate3d(0, 0, 0); transition: transform .7s ease-out; }
.hero-layer--mid { position: absolute; right: -2%; top: 0; width: 40%; transform: translate3d(0, 0, 0); transition: transform .55s ease-out; z-index: 2; }
.hero-layer--fg { position: absolute; right: -9%; bottom: -16%; width: min(52vw, 900px); z-index: 3; pointer-events: none; transform: translate3d(0, 0, 0); transition: transform .45s ease-out; }

.hero-layer-img--bg { width: 100%; opacity: .28; filter: blur(13px); }
.hero-layer-img--mid { width: 100%; opacity: .55; filter: blur(4.5px); }

.hero-fg-shadow {
  position: absolute; left: 12%; right: 8%; bottom: 14%; height: 56px;
  background: radial-gradient(closest-side, rgba(18, 36, 74, .2), rgba(18, 36, 74, 0));
  filter: blur(10px);
}
.hero-fg-img {
  width: 100%;
  position: relative;
  animation: heroDrift 16s ease-in-out infinite;
  filter: drop-shadow(0 50px 80px rgba(18, 36, 74, .18));
}

.hero-text {
  position: absolute;
  left: clamp(24px, 5vw, 80px);
  top: 50%;
  z-index: 4;
  max-width: 860px;
  opacity: 1;
  transform: translateY(-50%);
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .34em; color: var(--accent);
  margin-bottom: clamp(10px, 2.4vh, 30px);
  animation: riseIn .8s .1s ease both;
}
.hero-h1 {
  margin: 0 0 clamp(12px, 2.6vh, 28px);
  font-size: min(clamp(52px, 7.4vw, 118px), 13vh);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.02em;
  animation: riseIn .9s .22s ease both;
  text-wrap: balance;
}
.hero-h1-accent { color: var(--accent); }
.hero-sub {
  margin: 0 0 clamp(14px, 3vh, 34px);
  font-size: clamp(13px, 2vh, 16.5px);
  line-height: 1.55;
  color: var(--body-text);
  font-weight: 400;
  max-width: 400px;
  animation: riseIn .9s .38s ease both;
}
.hero-ctas { display: flex; align-items: center; gap: 34px; animation: riseIn .9s .5s ease both; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 6px;
}
.hero-cta--primary { color: var(--ink); border-bottom-color: var(--ink); }
.hero-cta--primary:hover { color: var(--accent); border-bottom-color: var(--accent); }
.hero-cta--secondary { color: var(--muted); }
.hero-cta--secondary:hover { color: var(--accent); border-bottom-color: var(--accent); }
.hero-cta-arrow { font-size: 14px; }
.hero-cta--secondary .hero-cta-arrow { font-size: 13px; }

.hero-city {
  display: flex; align-items: center; gap: 10px;
  margin-top: clamp(10px, 2.6vh, 40px);
  font-size: clamp(10.5px, 1.8vh, 12px);
  color: var(--muted);
  animation: riseIn .9s .62s ease both;
}
.hero-pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: pulseDot 3s ease-in-out infinite;
}
.hero-city-name { font-weight: 700; letter-spacing: .14em; color: var(--accent); }

.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  background: linear-gradient(180deg, rgba(246, 248, 252, 0), #f6f8fc);
  pointer-events: none;
  z-index: 4;
}

.hero-stats {
  position: absolute;
  left: var(--section-x); right: var(--section-x); bottom: 20px;
  z-index: 5;
  display: flex;
  gap: 14px 40px;
  align-items: baseline;
  border-top: 1px solid rgba(18, 36, 74, .1);
  padding-top: 14px;
  overflow: hidden;
  white-space: nowrap;
}
.hero-stat { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.hero-stat-num { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--accent); }
.hero-stat-num--plain { font-size: 17px; font-weight: 600; letter-spacing: normal; color: var(--ink); }
.hero-stat-label {
  font-size: 10px; letter-spacing: .06em; color: var(--muted-2);
  text-transform: uppercase;
  overflow: hidden; text-overflow: ellipsis;
}
.hero-scroll {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: .26em; color: var(--muted-2);
  flex: none;
}
.hero-scroll-arrow { animation: scrollPulse 1.8s ease-in-out infinite; }

/* ==========================================================================
   s2 — About
   ========================================================================== */
.about { position: relative; background: var(--bg-light); padding: 120px var(--section-x); }
.about-container { max-width: 1240px; margin: 0 auto; }
.about-h2 {
  margin: 0 0 28px;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -.015em;
  max-width: 960px;
  text-wrap: balance;
}
.about-body { margin: 0 0 60px; font-size: 18px; line-height: 1.6; color: var(--body-text); max-width: 560px; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 26px;
}
.about-card {
  position: relative;
  min-height: 430px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #10254c, #0c1a38);
}
.about-card--light { min-height: 202px; background: linear-gradient(180deg, #e9eef6, #dce4f0); }
.about-card-img {
  position: absolute;
  right: -6%; top: -2%;
  width: 90%; height: 96%;
  object-fit: contain;
  opacity: .9;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .35));
}
.about-card-img--stent {
  right: -20%; top: -30%; width: 120%; height: 150%;
  transform: rotate(9deg);
  filter: drop-shadow(0 30px 50px rgba(18, 36, 74, .14));
}
.about-card-img--evla {
  right: -8%; top: -18%; width: 70%; height: 110%;
  filter: drop-shadow(0 20px 40px rgba(18, 36, 74, .15));
}
.about-card-overlay { position: absolute; inset: 0; }
.about-card-overlay--dark { background: linear-gradient(180deg, rgba(12, 26, 56, 0) 40%, rgba(12, 26, 56, .94) 84%); }
.about-card-overlay--light { background: linear-gradient(180deg, rgba(238, 242, 248, 0) 30%, rgba(238, 242, 248, .92) 75%); }
.about-card-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 34px; }
.about-card-content--dark { padding: 30px 34px; color: var(--text-light); }
.about-card-title { font-size: 12px; font-weight: 700; letter-spacing: .16em; margin-bottom: 8px; }
.about-card-content--dark .about-card-title { color: var(--accent-light); margin-bottom: 10px; }
.about-card-text { font-size: 13.5px; line-height: 1.5; color: var(--muted); max-width: 380px; }
.about-card-content--dark .about-card-text { font-size: 14.5px; line-height: 1.55; color: var(--text-light-2); }

.about-substack { display: grid; grid-template-rows: 1fr 1fr; gap: 26px; }

/* ==========================================================================
   s4 — Urology workflow (scroll-driven, 340vh)
   ========================================================================== */
.urology {
  position: relative;
  background: linear-gradient(165deg, #0c1a38 0%, #10254c 55%, #0a1730 100%);
  color: var(--text-light);
  height: 340vh;
}
.urology-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 var(--section-x);
  box-sizing: border-box;
}
.urology-container { max-width: 1240px; margin: 0 auto; width: 100%; }
.urology-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.urology-h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3.6vh + 8px, 42px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -.01em;
  color: #fff;
  text-wrap: balance;
}
.urology-sub {
  margin: 0 0 clamp(16px, 3vh, 36px);
  font-size: clamp(13px, 1.8vh, 16px);
  line-height: 1.55;
  color: var(--text-light-2);
  max-width: 460px;
}
.urology-steps-wrap { display: flex; gap: 24px; }
.urology-track {
  width: 2px;
  border-radius: 1px;
  background: rgba(127, 164, 232, .18);
  position: relative;
}
.urology-progress {
  position: absolute; left: 0; top: 0;
  width: 2px; border-radius: 1px;
  background: var(--accent);
  height: 0%;
  transition: height .3s ease;
}
.urology-steps { display: flex; flex-direction: column; gap: 0; flex: 1; }
.urology-step {
  display: flex; gap: 22px;
  padding: clamp(9px, 1.7vh, 20px) 0;
  border-top: 1px solid rgba(127, 164, 232, .25);
  opacity: .35;
  transition: opacity .5s ease;
}
.urology-step--last { border-bottom: 1px solid rgba(127, 164, 232, .25); }
.urology-step.is-active { opacity: 1; }
.step-num { font-size: 13px; font-weight: 700; letter-spacing: .14em; color: rgba(127, 164, 232, .45); min-width: 36px; }
.urology-step.is-active .step-num { color: var(--accent-light); }
.step-title { font-size: clamp(13px, 1.7vh, 16px); font-weight: 600; letter-spacing: .1em; color: #fff; }
.step-desc { margin-top: 5px; font-size: clamp(11.5px, 1.5vh, 13.5px); color: var(--text-light-2); }

.urology-visual { position: relative; height: 72vh; }
.urology-glow {
  position: absolute; inset: 8%;
  background: radial-gradient(closest-side, rgba(127, 164, 232, .16), rgba(127, 164, 232, 0));
  border-radius: 50%;
}
.stage-img {
  position: absolute;
  inset: 6%;
  width: 88%; height: 88%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(36px) scale(.96);
  transition: opacity .7s ease, transform .8s ease;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .5));
}
.stage-img--kidney {
  inset: 0;
  width: 100%; height: 100%;
  border-radius: 20px;
  opacity: .45;
  transform: none;
  transition: opacity .7s ease;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .4));
}
.stage-img.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.stage-label {
  position: absolute; right: 4px; bottom: 0;
  font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--accent-light);
}

/* ==========================================================================
   s5 — Products
   ========================================================================== */
.products { position: relative; background: var(--bg-light); padding: 120px var(--section-x); }
.products-container { max-width: 1240px; margin: 0 auto; }
.products-head {
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px;
  margin-bottom: 50px;
}
.products-h2 { margin: 0; font-size: clamp(38px, 4.4vw, 58px); font-weight: 500; letter-spacing: -.015em; }
.products-sub { margin: 14px 0 0; font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 420px; }
.products-viewall { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; color: var(--accent); }

.products-list { display: flex; flex-direction: column; gap: 0; }

.prod-row {
  display: grid;
  grid-template-columns: 64px 1fr minmax(260px, 380px);
  gap: 30px;
  align-items: center;
  padding: 38px 24px;
  border-top: 1px solid var(--border-color);
  cursor: pointer;
  background: transparent;
  transition: background .4s ease;
  border-radius: 18px;
}
.prod-row--last { border-bottom: 1px solid var(--border-color); }
.prod-row:hover { background: rgba(47, 102, 208, .06); }

.prod-num { font-size: 12px; font-weight: 700; letter-spacing: .2em; color: var(--muted-2); }

.prod-title {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.05;
  transform: scale(1);
  transform-origin: left center;
  transition: transform .5s ease;
}
.prod-row:hover .prod-title { transform: scale(1.03); }
.prod-desc { margin-top: 12px; font-size: 14px; color: var(--muted); }
.prod-open {
  margin-top: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; color: var(--accent);
  opacity: 0;
  transition: opacity .35s ease;
}
.prod-row:hover .prod-open { opacity: 1; }

.prod-img-wrap { height: 180px; }
.prod-img {
  width: 100%; height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform .5s ease;
  filter: drop-shadow(0 20px 30px rgba(18, 36, 74, .14));
}
.prod-row:hover .prod-img { transform: scale(1.08) translateX(-12px); }

.products-divider { display: flex; align-items: center; gap: 18px; padding: 56px 24px 20px; }
.products-divider-tag { font-size: 11.5px; font-weight: 700; letter-spacing: .26em; color: var(--accent); white-space: nowrap; }
.products-divider-line { flex: 1; height: 1px; background: var(--border-color); }
.products-divider-sub { font-size: 12px; color: var(--muted-2); max-width: 340px; text-align: right; line-height: 1.5; }

/* ==========================================================================
   s6 — Clinical engagement
   ========================================================================== */
.clinical { position: relative; background: #fff; padding: 120px var(--section-x); }
.clinical-container { max-width: 1100px; margin: 0 auto; text-align: center; }
.clinical-h2 {
  margin: 0 auto 24px;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 500; letter-spacing: -.015em;
  max-width: 700px;
  text-wrap: balance;
}
.clinical-body { margin: 0 auto 70px; font-size: 17px; line-height: 1.6; color: var(--body-text); max-width: 560px; }

.clinical-net {
  position: relative;
  width: min(560px, 78vw);
  aspect-ratio: 1;
  margin: 0 auto;
}
.net-circle { position: absolute; inset: 6%; border: 1.5px dashed rgba(47, 102, 208, .28); border-radius: 50%; }
.net-arm { position: absolute; inset: 6%; transform: rotate(0deg); transition: transform 1s ease; }
.net-arm-dot {
  position: absolute; left: 50%; top: -6px;
  transform: translateX(-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(47, 102, 208, .14);
}
.net-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 9px;
}
.net-node--0 { left: 50%; top: 6%; }
.net-node--1 { left: 88%; top: 28%; }
.net-node--2 { left: 88%; top: 72%; }
.net-node--3 { left: 50%; top: 94%; }
.net-node--4 { left: 12%; top: 72%; }
.net-node--5 { left: 12%; top: 28%; }
.net-dot { width: 15px; height: 15px; border-radius: 50%; background: #b9c6dd; transition: background .6s ease; }
.net-label { font-size: 11.5px; font-weight: 700; letter-spacing: .16em; white-space: nowrap; color: var(--muted-2); transition: color .6s ease; }
.net-node.is-active .net-dot { background: var(--accent); }
.net-node.is-active .net-label { color: var(--ink); }
.net-node.is-passed .net-dot { background: var(--accent-light); }
.net-node.is-passed .net-label { color: var(--muted); }
.net-center {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px; font-weight: 700; letter-spacing: .22em; color: var(--muted-2);
}

/* ==========================================================================
   s7 — Market
   ========================================================================== */
.market { position: relative; background: var(--bg-light); padding: 110px var(--section-x); }
.market-container {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 60px;
  align-items: stretch;
}
.market-left { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.market-h2 { margin: 0 0 18px; font-size: clamp(34px, 3.6vw, 52px); line-height: 1.08; font-weight: 500; letter-spacing: -.015em; }
.market-h2-accent { color: var(--accent); }
.market-note { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 360px; }

.market-metrics { display: flex; flex-direction: column; }
.market-metric { display: flex; align-items: baseline; gap: 14px; padding: 18px 0; border-top: 1px solid var(--border-color); }
.market-metric--last { border-bottom: 1px solid var(--border-color); }
.market-metric-val { font-size: 26px; font-weight: 600; min-width: 88px; }
.market-metric-val--accent { color: var(--accent); }
.market-metric-label { font-size: 11px; letter-spacing: .08em; color: var(--muted-2); text-transform: uppercase; }

.market-legend { display: flex; flex-direction: column; gap: 12px; font-size: 12.5px; font-weight: 600; color: var(--body-text); }
.market-legend-item { display: flex; align-items: center; gap: 9px; }
.market-legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.market-legend-dot--1 { background: var(--accent); animation: pulseDot 3s ease-in-out infinite; }
.market-legend-dot--2 { background: var(--ink); }
.market-legend-dot--3 { background: #c3cede; }

.market-map-card {
  position: relative;
  min-height: 70vh;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #e9eef6, #dde5f1);
}
.market-map-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.market-map-caption {
  position: absolute; left: 24px; bottom: 16px;
  font-size: 10.5px; letter-spacing: .08em; color: var(--muted-2);
  pointer-events: none;
  text-transform: uppercase;
}

/* ==========================================================================
   s8 — Partners
   ========================================================================== */
.partners { position: relative; background: linear-gradient(180deg, #e7edf6, #eef2f8); padding: 130px var(--section-x); }
.partners-container { max-width: 1100px; margin: 0 auto; text-align: center; }
.partners-h2 {
  margin: 0 auto 70px;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 500; letter-spacing: -.015em;
  max-width: 680px;
  text-wrap: balance;
}
.partners-chain {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}
.partners-node { display: flex; flex-direction: column; align-items: center; gap: 14px; font-size: 13px; font-weight: 700; letter-spacing: .14em; }
.partners-node-dot { width: 11px; height: 11px; border-radius: 50%; }
.partners-node-dot--1 { background: var(--ink); }
.partners-node-dot--3 { background: var(--accent); }
.partners-node-dot--4 { background: var(--accent-light); }
.partners-arrow { font-size: 20px; color: var(--accent); }
.partners-center {
  justify-self: center;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 22px 40px;
  font-size: 15px; font-weight: 700; letter-spacing: .14em;
  box-shadow: 0 20px 40px rgba(18, 36, 74, .2);
}
.partners-flow {
  position: relative;
  height: 2px;
  background: rgba(195, 206, 222, .6);
  margin: 36px 6% 0;
  border-radius: 1px;
}
.partners-flow-dot {
  position: absolute; top: -4px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  animation: flowDot 5.5s linear infinite;
}
.partners-body { margin: 44px auto 0; font-size: 15.5px; line-height: 1.6; color: var(--body-text); max-width: 560px; }

/* ==========================================================================
   s9 — Growth
   ========================================================================== */
.growth { position: relative; background: #fff; padding: 130px var(--section-x); }
.growth-container { max-width: 1240px; margin: 0 auto; }
.growth-h2 {
  margin: 0 0 70px;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 500; letter-spacing: -.015em;
  max-width: 700px;
  text-wrap: balance;
}
.growth-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(195, 206, 222, .45);
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}
.growth-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(18, 36, 74, .2) 0%, rgba(47, 102, 208, .5) 45%, #2f66d0 75%, #12244a 100%);
  transition: width 2s ease;
}
.growth-line.is-on .growth-fill { width: 100%; }

.growth-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
.growth-item-label { font-size: 12px; font-weight: 700; letter-spacing: .2em; margin-bottom: 14px; }
.growth-item-label--muted { color: var(--muted-2); }
.growth-item-label--accent { color: var(--accent); }
.growth-item-label--ink { color: var(--ink); }
.growth-item-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.growth-item-desc { font-size: 13.5px; line-height: 1.55; color: var(--muted); }

/* ==========================================================================
   s10 — Contact / footer
   ========================================================================== */
.contact {
  position: relative;
  background: linear-gradient(160deg, #eef2f8 0%, #dfe6f0 60%, #d6deeb 100%);
  padding: 150px var(--section-x) 60px;
  overflow: hidden;
  text-align: center;
}
.contact-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(1000px 600px at 50% 30%, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0) 65%);
}
.contact-content { position: relative; max-width: 900px; margin: 0 auto; }
.contact-image { width: min(460px, 72vw); margin: 0 auto 40px; }
.contact-image img { animation: heroDrift 16s ease-in-out infinite; filter: drop-shadow(0 40px 60px rgba(18, 36, 74, .15)); }
.contact-h2 {
  margin: 0 auto 34px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 500; letter-spacing: -.015em;
  max-width: 820px;
  text-wrap: balance;
}
.contact-features {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 14px 36px;
  font-size: 14.5px; font-weight: 600; color: var(--body-text);
  margin-bottom: 50px;
}
.contact-dot { color: #c3cede; }
.contact-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink);
  color: #fff;
  padding: 20px 38px;
  border-radius: 14px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em;
  cursor: pointer;
}
.contact-cta:hover { background: var(--ink-hover); color: #fff; }
.contact-cta-arrow { font-size: 15px; }
.contact-loc { margin: 56px auto 0; }
.contact-loc-text { font-size: 12px; letter-spacing: .1em; color: var(--muted-2); text-transform: uppercase; }

.site-footer {
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(195, 206, 222, .7);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 12px;
  font-size: 11.5px; letter-spacing: .1em; color: var(--muted-2);
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo-dots { display: flex; align-items: center; }
.footer-dot { border-radius: 50%; }
.footer-dot--yellow { width: 10px; height: 10px; background: #f5d94f; }
.footer-dot--red { width: 12px; height: 12px; background: #f0564f; margin: -8px 0 0 -3px; }
.footer-dot--blue { width: 13px; height: 13px; background: #3fa9e8; margin: 6px 0 0 -4px; }
.footer-legal { display: flex; flex-direction: column; gap: 6px; text-align: right; line-height: 1.6; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .market-container { grid-template-columns: 1fr; }
  .market-map-card { min-height: 50vh; order: 2; }
  .market-left { order: 1; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }

  .hero-text { top: auto; bottom: 22%; transform: none; left: var(--section-x); right: var(--section-x); max-width: none; }
  .hero-layer--fg { width: 80vw; right: -6%; bottom: -8%; }

  .hero-stat--3, .hero-stats .hero-stat:nth-child(2) { display: none; }

  .urology-grid { grid-template-columns: 1fr; gap: 28px; }
  .urology-visual { height: 40vh; order: -1; }
  .urology-sticky { padding: 24px var(--section-x); overflow-y: auto; }

  .prod-row {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 6px 14px;
  }
  .prod-num { grid-column: 1; grid-row: 1; }
  .prod-body { grid-column: 2; grid-row: 1; }
  .prod-img-wrap { grid-column: 1 / -1; grid-row: 2; height: 140px; }
  .prod-open { opacity: 1; }

  .clinical-net { width: 90vw; }

  .partners-chain { grid-template-columns: 1fr; }
  .partners-arrow { transform: rotate(90deg); }

  .about, .products, .clinical, .market, .partners, .growth {
    padding-top: clamp(64px, 12vw, 120px);
    padding-bottom: clamp(64px, 12vw, 120px);
  }
  .contact { padding-top: clamp(64px, 12vw, 150px); }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero-fg-img, .contact-image img,
  .hero-scroll-arrow,
  .hero-pulse-dot, .market-legend-dot--1,
  .partners-flow-dot {
    animation: none !important;
  }
  .hero-eyebrow, .hero-h1, .hero-sub, .hero-ctas, .hero-city {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
