@font-face {
  font-family: "TT Firs";
  src: url("assets/tt-firs-text-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --brand-mint: #cdeeec;
  --brand-turquoise: #9ee2e0;
  --brand-gray: #949fa7;
  --brand-dark-turquoise: #232c33;
  --ink: var(--brand-dark-turquoise);
  --ink-soft: rgba(35, 44, 51, 0.74);
  --dark: var(--brand-dark-turquoise);
  --deep: var(--brand-dark-turquoise);
  --turquoise: var(--brand-turquoise);
  --turquoise-soft: var(--brand-mint);
  --mist: rgba(205, 238, 236, 0.42);
  --paper: #fff;
  --line: rgba(35, 44, 51, 0.14);
  --line-dark: rgba(205, 238, 236, 0.24);
  --pad: clamp(24px, 5.5vw, 96px);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "TT Firs", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.section-shell { padding-inline: var(--pad); }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(24px);
}
.logo img { display: block; width: 150px; }
.site-header .logo img { mix-blend-mode: multiply; }
.site-nav { display: flex; gap: clamp(20px, 3vw, 48px); margin-left: auto; }
.site-nav a, .header-contact, .language-switcher a {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.site-nav a:hover, .header-contact:hover, .text-link:hover, .language-switcher a:hover { color: var(--dark); }
.header-contact { display: inline-flex; align-items: center; gap: 4px; color: var(--ink); line-height: 1; }
.header-contact span { color: var(--brand-gray); font-size: 18px; }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}
.language-switcher a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  padding: 0 8px;
  letter-spacing: 0.03em;
  line-height: 1;
}
.language-switcher a + a {
  border-left: 1px solid var(--line);
}
.language-switcher a[aria-current="page"] {
  color: #fff;
  background: var(--dark);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: max(900px, 100dvh);
  overflow: hidden;
  padding-top: 178px;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  grid-template-rows: 1fr auto;
}
.hero-grid, .map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent 10%, #000 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 840px; padding-top: 44px; }
.hero-content, .hero-actions, h1, .hero-copy, .eyebrow { min-width: 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow i { width: 32px; height: 1px; background: var(--turquoise); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 830px;
  margin-bottom: 30px;
  color: var(--dark);
  font-size: clamp(60px, 6.1vw, 106px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 0.96;
}
h1 em { color: var(--brand-gray); font-style: normal; }
h2 {
  margin-bottom: 24px;
  color: var(--dark);
  font-size: clamp(40px, 4vw, 72px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.07;
}
.hero-copy { max-width: 610px; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; margin-top: 40px; }
.button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 220px;
  padding: 17px 21px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 260ms cubic-bezier(.16, 1, .3, 1);
}
.button span { font-size: 18px; line-height: 1; }
.button-primary { color: #fff; background: var(--dark); }
.button-primary:hover { color: var(--dark); background: var(--brand-turquoise); }
.button-text { min-width: 260px; padding-inline: 0; color: var(--ink-soft); border-bottom-color: rgba(35, 44, 51, 0.35); }
.button-text:hover { border-bottom-color: var(--turquoise); }

.hero-art {
  --pointer-x: 0px;
  --pointer-y: 0px;
  --pointer-x-reverse: 0px;
  --pointer-y-reverse: 0px;
  --pointer-x-soft: 0px;
  --pointer-y-soft: 0px;
  --pointer-x-strong: 0px;
  --pointer-y-strong: 0px;
  --pointer-x-strong-reverse: 0px;
  --pointer-y-strong-reverse: 0px;
  position: relative;
  min-height: 580px;
}
.axis { position: absolute; background: rgba(35, 44, 51, 0.16); }
.axis-x { top: 51%; right: -5%; width: 94%; height: 1px; }
.axis-y { top: 2%; right: 46%; width: 1px; height: 95%; }
.hero-glow { position: absolute; top: 2%; right: -16%; width: min(920px, 118%); height: auto; opacity: .94; transform: translate3d(var(--pointer-x-strong), var(--pointer-y-strong), 0); }
.hero-sign { position: absolute; top: 34%; right: 31%; width: 170px; height: 170px; transform: translate3d(var(--pointer-x-soft), var(--pointer-y-soft), 0); }
.hero-sign img { display: block; width: 100%; height: 100%; }
.art-caption { position: absolute; color: var(--ink-soft); font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.caption-one { top: 6%; right: 33%; transform: translate3d(var(--pointer-x-strong-reverse), var(--pointer-y-strong-reverse), 0); }
.caption-two { right: 0; bottom: 28%; transform: translate3d(var(--pointer-x-strong), var(--pointer-y-strong), 0); }
.caption-three { bottom: 8%; left: 7%; transform: translate3d(var(--pointer-x-reverse), var(--pointer-y-reverse), 0); }
.hero-meta {
  z-index: 2;
  display: flex;
  grid-column: 1 / -1;
  gap: 22px;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
}
.hero-meta p { flex: 1; margin: 0; color: var(--ink-soft); font-size: 11px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; }
.hero-meta span { margin-right: 18px; color: var(--brand-gray); }
.scroll-note { position: absolute; right: 22px; bottom: 134px; color: var(--ink-soft); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; transform: rotate(-90deg); }
.scroll-note i { display: inline-block; width: 38px; height: 1px; margin-right: 12px; background: var(--brand-turquoise); vertical-align: middle; }

.intro, .directions, .process, .presence { border-top: 1px solid var(--line); }
.intro {
  display: grid;
  padding-top: 40px;
  padding-bottom: 110px;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.75fr) minmax(300px, 0.45fr);
  gap: 28px;
}
.section-index { color: var(--ink-soft); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.intro-copy { padding-top: 54px; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.text-link { display: inline-block; margin-top: 16px; color: var(--ink-soft); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.text-link span { padding-left: 22px; font-size: 17px; }
.metrics { display: grid; grid-column: 2 / -1; grid-template-columns: repeat(3, 1fr); margin-top: 36px; border-top: 1px solid var(--line); }
.bridge { display: grid; grid-column: 2 / -1; grid-template-columns: 1fr auto 1fr auto 1fr auto .7fr; align-items: stretch; margin-top: 42px; border: 1px solid var(--line); }
.bridge article { display: grid; min-height: 128px; align-content: center; gap: 5px; padding: 20px; }
.bridge article + i, .bridge i { align-self: center; color: var(--brand-gray); font-size: 22px; font-style: normal; }
.bridge span, .bridge small { color: var(--ink-soft); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.bridge strong { color: var(--dark); font-size: 20px; font-weight: 500; letter-spacing: 0; }
.bridge-core { background: var(--dark); }
.bridge-core strong { color: #fff; }
.bridge-core small, .bridge-core span { color: var(--brand-turquoise); }
.metric { padding: 30px 18px 0 0; }
.metric + .metric { padding-left: 26px; border-left: 1px solid var(--line); }
.metric strong { color: var(--dark); font-size: clamp(50px, 5vw, 86px); font-weight: 500; letter-spacing: -0.04em; }
.metric strong span { color: var(--brand-gray); }
.metric p { color: var(--ink-soft); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.metric small, .presence small, .contact-form small { color: var(--brand-gray); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }

.directions, .process, .presence { padding-top: 40px; padding-bottom: 120px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-top: 28px; }
.section-heading > p { max-width: 360px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.direction-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 38px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.direction-card { position: relative; min-height: 330px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: 240ms ease; }
.direction-card-large { grid-column: span 2; min-height: 430px; }
.direction-card:hover { color: #fff; background: var(--dark); transform: translateY(-8px); }
.direction-card > span { color: var(--brand-gray); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; }
.card-symbol { position: relative; height: 135px; margin: 34px 0 10px; color: var(--brand-turquoise); font-size: 120px; font-weight: 400; line-height: 1; }
.symbol-grid { width: 106px; height: 106px; background-image: linear-gradient(var(--brand-turquoise) 1px, transparent 1px), linear-gradient(90deg, var(--brand-turquoise) 1px, transparent 1px); background-size: 22px 22px; }
.symbol-ring { width: 104px; height: 104px; border: 1px solid var(--brand-turquoise); border-radius: 50%; box-shadow: 0 0 0 22px rgba(158, 226, 224, .16), 0 0 0 44px rgba(158, 226, 224, .08); }
.symbol-axis::before, .symbol-axis::after { position: absolute; top: 45px; left: 0; width: 120px; height: 1px; background: var(--brand-turquoise); content: ""; }
.symbol-axis::after { transform: rotate(90deg); }
.symbol-network { width: 118px; height: 94px; background: radial-gradient(circle at 10% 50%, var(--brand-turquoise) 0 5px, transparent 6px), radial-gradient(circle at 50% 10%, var(--brand-turquoise) 0 5px, transparent 6px), radial-gradient(circle at 90% 55%, var(--brand-turquoise) 0 5px, transparent 6px), radial-gradient(circle at 45% 90%, var(--brand-turquoise) 0 5px, transparent 6px); border: 1px solid rgba(158, 226, 224, .45); transform: rotate(-10deg); }
.symbol-wave { width: 124px; height: 84px; border-top: 1px solid var(--brand-turquoise); border-bottom: 1px solid var(--brand-turquoise); background: repeating-linear-gradient(90deg, transparent 0 14px, rgba(158, 226, 224, .52) 15px 16px); transform: skewY(-14deg); }
.direction-card h3 { max-width: 230px; color: inherit; font-size: 23px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.08; }
.direction-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.direction-card:hover p { color: var(--brand-mint); }
.direction-card a { position: absolute; right: 22px; bottom: 18px; color: var(--brand-gray); font-size: 28px; }

.audiences { display: grid; grid-template-columns: repeat(2, 1fr); }
.audience { min-height: 590px; padding: 74px var(--pad); }
.audience h2 { max-width: 660px; color: #fff; font-size: clamp(42px, 4vw, 68px); letter-spacing: 0; line-height: 1.08; }
.audience ul { display: grid; gap: 13px; margin: 36px 0; padding: 0; color: rgba(255,255,255,.78); font-size: 15px; list-style: none; }
.audience li::before { margin-right: 14px; color: var(--turquoise); content: "—"; }
.audience-clients { background: var(--deep); }
.audience-makers { background: rgba(35, 44, 51, .9); }
.audience .eyebrow { color: var(--brand-turquoise); }
.button-light { color: var(--dark); background: #fff; }
.button-light:hover { color: var(--dark); background: var(--brand-turquoise); }
.button-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.button-outline:hover { color: var(--dark); background: #fff; }

.process-line { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 52px; }
.process-progress { position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, var(--brand-gray), var(--brand-turquoise)); transform: scaleX(0); transform-origin: left; transition: transform 1.4s cubic-bezier(.16, 1, .3, 1); }
.process-line.is-visible .process-progress { transform: scaleX(1); }
.process-step { position: relative; min-width: 0; min-height: 150px; border-top: 1px solid var(--line); }
.process-step span { display: block; padding-top: 18px; color: var(--ink-soft); font-size: 12px; letter-spacing: .14em; }
.process-step i { position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border: 2px solid var(--paper); border-radius: 50%; background: var(--brand-turquoise); box-shadow: 0 0 0 1px var(--brand-gray); }
.process-step h3 { margin-top: 28px; color: var(--dark); font-size: 26px; font-weight: 500; letter-spacing: 0; line-height: 1.1; }

.presence { padding-bottom: 50px; overflow: hidden; background: var(--mist); }
.presence-layout { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 500px; margin-top: 30px; }
.presence-copy { align-self: center; max-width: 600px; }
.presence-copy p { max-width: 530px; color: var(--ink-soft); line-height: 1.65; }
.map { position: relative; overflow: hidden; min-height: 430px; border-left: 1px solid var(--line); }
.map-grid { mask-image: radial-gradient(circle, #000, transparent 75%); }
.map-dot { position: absolute; width: 13px; height: 13px; border: 2px solid var(--paper); border-radius: 50%; background: var(--brand-turquoise); box-shadow: 0 0 0 1px var(--brand-gray), 0 0 32px var(--brand-turquoise); }
.dot-one { top: 22%; left: 20%; }.dot-two { top: 32%; left: 42%; }.dot-three { top: 52%; left: 55%; }
.dot-four { top: 61%; left: 74%; }.dot-five { top: 29%; left: 81%; }.dot-six { top: 72%; left: 36%; }
.map-line { --line-angle: 0deg; position: absolute; height: 1px; background: rgba(148, 159, 167, 0.58); transform: rotate(var(--line-angle)); transform-origin: left; }
.line-one { --line-angle: 16deg; top: 24%; left: 21%; width: 280px; }.line-two { --line-angle: 26deg; top: 34%; left: 43%; width: 340px; }.line-three { --line-angle: -15deg; top: 73%; left: 37%; width: 300px; }
.map > p { position: absolute; right: 8%; bottom: 8%; color: var(--dark); font-size: 42px; font-weight: 500; letter-spacing: -.03em; }
.map > p small { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.partner-showcase { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.partner-showcase::after { content: ""; position: absolute; left: 0; bottom: 0; width: calc(100% / 12); height: 1px; background: var(--line); }
.partner-card { display: grid; grid-column: span 2; min-height: 118px; place-items: center; padding: 20px 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink-soft); text-align: center; transition: background-color 180ms ease; }
.partner-card:nth-child(7) { grid-column: 2 / span 2; }
.partner-card img { display: block; max-width: 132px; max-height: 44px; object-fit: contain; filter: grayscale(1); opacity: .66; transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease; }
.partner-logo-ge { width: 132px; }
.partner-logo-philips { width: 108px; }
.partner-logo-echosens { width: 108px; }
.partner-card .partner-logo-biomerieux { width: 78px; max-height: 78px; }
.partner-logo-bd { width: 70px; }
.partner-logo-bionic { width: 112px; }
.partner-logo-erba { width: 98px; }
.partner-logo-haiermedical { width: 124px; }
.partner-logo-lmb { width: 88px; }
.partner-logo-nanoentek { width: 122px; }
.partner-logo-wuhan { width: 104px; }
.partner-card span { display: block; color: var(--ink-soft); font-size: 11px; font-weight: 600; letter-spacing: .11em; line-height: 1.35; text-transform: uppercase; transition: color 180ms ease, transform 180ms ease; }
.partner-card img + span { display: none; }
.partner-card img[hidden] + span { display: block; }
.partner-card:hover { background: rgba(205, 238, 236, .18); }
.partner-card:hover img { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
.partner-card:hover span { color: var(--dark); transform: translateY(-2px); }

.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; padding-top: 100px; padding-bottom: 100px; background: var(--dark); }
.contact h2 { color: #fff; }
.contact-intro > p:not(.eyebrow) { max-width: 500px; color: var(--brand-mint); font-size: 17px; line-height: 1.6; }
.contact-form { display: grid; gap: 20px; }
.scenario-switch { display: flex; gap: 8px; margin: 0 0 8px; padding: 0; border: 0; }
.scenario-switch label { padding: 12px 15px; border: 1px solid var(--line-dark); color: var(--brand-mint); cursor: pointer; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; transition: 180ms; }
.scenario-switch label:has(input:checked) { color: var(--deep); background: var(--turquoise-soft); }
.scenario-switch input { position: absolute; opacity: 0; }
.contact-form > label span { display: block; margin-bottom: 7px; color: var(--brand-turquoise); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
input, textarea { width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid var(--line-dark); outline: 0; color: #fff; background: transparent; resize: vertical; }
input:focus, textarea:focus { border-bottom-color: var(--turquoise); }
input::placeholder, textarea::placeholder { color: var(--brand-gray); }
.contact-form .button { margin-top: 10px; background: var(--brand-turquoise); }
.contact-form .button:hover { color: var(--deep); background: #fff; }
.form-consents { display: grid; gap: 8px; margin-top: 2px; }
.form-consent { display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: start; color: var(--brand-mint); font-size: 12px; line-height: 1.42; }
.form-consent input { width: 15px; height: 15px; margin: 1px 0 0; accent-color: var(--brand-turquoise); }
.form-consent span { margin: 0; color: var(--brand-mint); font-size: 12px; letter-spacing: 0; text-transform: none; }
.form-consent em { color: var(--brand-turquoise); font-style: normal; }
.form-consent a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.contact-form .button[aria-disabled="true"] { cursor: not-allowed; }

.site-footer { color: var(--brand-mint); background: var(--dark); font-size: 12px; }
.site-footer p { margin: 0; }
.footer-primary { display: grid; grid-template-columns: 1.4fr 1fr 1.25fr; gap: 30px; align-items: center; padding: 30px var(--pad); border-top: 1px solid rgba(205, 238, 236, .18); }
.footer-contacts { display: grid; gap: 4px; }
.footer-address { max-width: 360px; line-height: 1.5; }
.logo-footer img { width: 122px; }
.footer-copy { color: var(--brand-gray); }
.footer-secondary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 15px var(--pad) 17px; border-top: 1px solid rgba(205, 238, 236, .13); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px 0; }
.footer-legal a, .footer-legal button { padding: 0; border: 0; color: var(--brand-gray); background: transparent; cursor: pointer; font-size: 10px; font-weight: 600; letter-spacing: .08em; line-height: 1.35; text-align: left; text-transform: uppercase; transition: color 180ms ease; }
.footer-legal > * + * { margin-left: 18px; padding-left: 18px; border-left: 1px solid rgba(205, 238, 236, .18); }
.footer-legal a:hover, .footer-legal button:hover { color: var(--brand-mint); }
.footer-legal span { color: var(--brand-turquoise); font-size: 13px; line-height: 0; }

.modal[hidden], .cookie-notice[hidden] { display: none; }
.modal { position: fixed; z-index: 20; inset: 0; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10, 31, 36, .72); backdrop-filter: blur(5px); }
.modal-panel { position: relative; z-index: 1; overflow: auto; width: min(760px, 100%); max-height: min(760px, calc(100dvh - 40px)); padding: 42px; border: 1px solid var(--line); background: #f8fbfa; box-shadow: 0 24px 80px rgba(10, 31, 36, .24); }
.modal-panel h2 { max-width: 620px; margin-top: 18px; font-size: clamp(38px, 5vw, 64px); }
.modal-close, .cookie-close { position: absolute; top: 14px; right: 16px; border: 0; color: var(--ink); background: transparent; cursor: pointer; font-size: 30px; line-height: 1; }
.company-details { display: grid; gap: 0; margin: 28px 0 0; }
.company-details div { display: grid; grid-template-columns: minmax(150px, .75fr) 1.25fr; gap: 18px; padding: 12px 0; border-top: 1px solid var(--line); }
.company-details dt { color: var(--ink-soft); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.company-details dd { margin: 0; color: var(--ink); line-height: 1.45; }

.cookie-notice { position: fixed; z-index: 15; right: 22px; bottom: 22px; display: grid; gap: 15px; width: min(520px, calc(100vw - 44px)); padding: 22px 56px 20px 22px; border: 1px solid rgba(205, 238, 236, .3); color: var(--brand-mint); background: var(--dark); box-shadow: 0 18px 54px rgba(10, 31, 36, .2); }
.cookie-notice p { margin: 0; font-size: 13px; line-height: 1.55; }
.cookie-notice a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cookie-notice .button { justify-self: start; min-width: 120px; padding: 11px 16px; color: var(--deep); background: var(--brand-turquoise); }
.cookie-close { color: var(--brand-mint); }
.back-to-top { --back-to-top-right: 22px; position: fixed; z-index: 14; right: var(--back-to-top-right); bottom: 22px; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(205, 238, 236, .36); color: var(--brand-mint); background: var(--dark); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 200ms ease, transform 240ms cubic-bezier(.16, 1, .3, 1), bottom 240ms ease, color 180ms ease, background-color 180ms ease; }
.back-to-top span { font-size: 22px; line-height: 1; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top.is-cookie-shifted { bottom: 236px; }
.back-to-top:hover { color: var(--deep); background: var(--brand-turquoise); }

.legal-page { color: var(--ink); background: #f8fbfa; }
.legal-header { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 22px var(--pad); border-bottom: 1px solid var(--line); }
.legal-header .text-link { margin: 0; }
.legal-document { width: min(920px, calc(100% - 48px)); margin: 0 auto; padding: 74px 0 100px; }
.legal-document h1 { max-width: 900px; margin: 20px 0 14px; font-size: clamp(50px, 7vw, 92px); line-height: .98; }
.legal-document h2 { margin: 46px 0 14px; font-size: clamp(28px, 4vw, 42px); line-height: 1.08; }
.legal-document p, .legal-document li { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.legal-document a { color: var(--dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { font-size: 13px !important; }

.motion-enabled .reveal { opacity: 0; transform: translateY(34px); transition: opacity 820ms ease, transform 920ms cubic-bezier(.16, 1, .3, 1); }
.motion-enabled .reveal.is-visible { opacity: 1; transform: none; }
.motion-enabled .hero-content { animation: heroIntro 1.05s .14s both cubic-bezier(.16, 1, .3, 1); }
.motion-enabled .hero-grid { animation: gridReveal 1.5s .05s both ease; }
.motion-enabled .hero-glow { animation: trajectoryReveal 1.4s .08s both cubic-bezier(.16, 1, .3, 1); transition: transform 700ms cubic-bezier(.16, 1, .3, 1); }
.motion-enabled .hero-sign { animation: signReveal 1.1s .3s both cubic-bezier(.16, 1, .3, 1); transition: transform 450ms cubic-bezier(.16, 1, .3, 1); }
.motion-enabled .art-caption { transition: transform 700ms cubic-bezier(.16, 1, .3, 1); }
.motion-enabled .direction-card { transition-duration: 420ms; transition-timing-function: cubic-bezier(.16, 1, .3, 1); }
.motion-enabled .map-dot { opacity: 0; transform: scale(.15); transition: opacity 600ms ease, transform 700ms cubic-bezier(.16, 1, .3, 1); }
.motion-enabled .map-line { opacity: 0; transform: rotate(var(--line-angle)) scaleX(0); transition: opacity 450ms ease, transform 1.1s cubic-bezier(.16, 1, .3, 1); }
.motion-enabled .map.is-visible .map-dot { opacity: 1; transform: scale(1); }
.motion-enabled .map.is-visible .map-dot:nth-of-type(2) { transition-delay: 120ms; }
.motion-enabled .map.is-visible .map-dot:nth-of-type(3) { transition-delay: 240ms; }
.motion-enabled .map.is-visible .map-dot:nth-of-type(4) { transition-delay: 360ms; }
.motion-enabled .map.is-visible .map-dot:nth-of-type(5) { transition-delay: 480ms; }
.motion-enabled .map.is-visible .map-dot:nth-of-type(6) { transition-delay: 600ms; }
.motion-enabled .map.is-visible .map-line { opacity: 1; transform: rotate(var(--line-angle)) scaleX(1); }
.motion-enabled .map.is-visible .line-two { transition-delay: 250ms; }
.motion-enabled .map.is-visible .line-three { transition-delay: 480ms; }
@keyframes heroIntro { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
@keyframes gridReveal { from { opacity: 0; transform: scale(1.06); } to { opacity: .48; transform: scale(1); } }
@keyframes trajectoryReveal { from { opacity: 0; transform: translate3d(80px, -24px, 0); } to { opacity: .94; transform: translate3d(var(--pointer-x-strong), var(--pointer-y-strong), 0); } }
@keyframes signReveal { from { opacity: 0; scale: .5; rotate: -30deg; } to { opacity: 1; scale: 1; rotate: 0deg; } }

@media (max-width: 1000px) {
  .hero { min-height: max(850px, 100dvh); grid-template-columns: 1fr; }
  .hero-art { position: absolute; right: -90px; bottom: 110px; width: 600px; opacity: .42; }
  .hero-content { max-width: 760px; }
  .intro { grid-template-columns: .35fr 1fr; }
  .intro-copy { grid-column: 2; padding-top: 0; }
  .bridge { grid-column: 1 / -1; }
  .metrics { grid-column: 1 / -1; }
  .direction-grid { grid-template-columns: repeat(2, 1fr); }
  .direction-card-large { grid-column: span 2; }
  .audiences { grid-template-columns: 1fr; }
  .audience { min-height: auto; }
  .presence-layout { grid-template-columns: 1fr; }
  .map { border-top: 1px solid var(--line); border-left: 0; }
  .contact { grid-template-columns: 1fr; }
  .footer-primary { grid-template-columns: 1fr 1fr; }
  .footer-address { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .site-header { gap: 8px; padding-block: 16px; }
  .logo img { width: 118px; }
  .menu-toggle { z-index: 2; display: grid; gap: 6px; order: 3; padding: 6px; border: 0; background: transparent; }
  .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--dark); }
  .site-nav { position: absolute; top: 69px; left: 0; display: none; width: 100%; padding: 24px var(--pad); background: rgba(248,251,250,.98); }
  .site-nav.is-open { display: grid; }
  .header-contact { margin-left: auto; font-size: 0; }
  .header-contact span { font-size: 24px; }
  .language-switcher { flex: 0 0 auto; height: 34px; background: rgba(255, 255, 255, 0.86); }
  .language-switcher a { min-width: 34px; min-height: 32px; padding-inline: 7px; font-size: 11px; letter-spacing: 0.02em; }
  .language-switcher a[lang="zh-CN"] { min-width: 42px; }
}
@media (max-width: 760px) {
  .hero { min-height: max(800px, 100dvh); overflow: hidden; padding-top: 125px; grid-template-rows: 1fr auto; }
  .hero-content { width: 100%; }
  .eyebrow { max-width: 100%; flex-wrap: wrap; line-height: 1.45; }
  .art-caption { display: none; }
  h1 { font-size: clamp(48px, 13vw, 62px); letter-spacing: -0.01em; }
  h2 { font-size: clamp(36px, 11vw, 45px); }
  .hero-copy { max-width: 520px; font-size: 16px; }
  .hero-art { right: -220px; bottom: 90px; width: 580px; transform: scale(.78); }
  .hero-meta { display: grid; gap: 11px; }
  .scroll-note { display: none; }
  .intro { display: block; padding-top: 26px; padding-bottom: 74px; }
  .intro-main { margin-top: 28px; }
  .intro-copy { font-size: 16px; }
  .bridge { display: grid; grid-template-columns: 1fr; margin-top: 30px; }
  .bridge article { min-height: 92px; }
  .bridge i { justify-self: center; line-height: 1; transform: rotate(90deg); }
  .metrics { grid-template-columns: 1fr; }
  .metric + .metric { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .directions, .process, .presence { padding-top: 28px; padding-bottom: 80px; }
  .section-heading { display: block; margin-top: 28px; }
  .direction-grid { grid-template-columns: 1fr; }
  .direction-card { min-height: 300px; }
  .direction-card-large { grid-column: auto; min-height: 340px; }
  .audiences { display: block; }
  .audience { padding: 58px var(--pad); }
  .audience h2 { font-size: clamp(36px, 11vw, 45px); }
  .process-line { grid-template-columns: repeat(2, 1fr); }
  .process-step { min-height: 135px; }
  .process-step h3 { overflow-wrap: anywhere; }
  .map { min-height: 300px; }
  .partner-showcase { grid-template-columns: repeat(2, 1fr); overflow-x: visible; scroll-snap-type: none; }
  .partner-showcase::-webkit-scrollbar { display: none; }
  .partner-card { min-width: 0; padding-inline: 10px; }
  .partner-card img { max-width: 100%; }
  .partner-card, .partner-card:nth-child(7) { grid-column: span 1; min-height: 104px; scroll-snap-align: none; }
  .partner-card:last-child { grid-column: 1 / -1; }
  .contact { padding-top: 72px; padding-bottom: 72px; }
  .scenario-switch { display: grid; }
  .contact-form .button { width: 100%; }
  .footer-primary { grid-template-columns: 1fr; gap: 14px; padding-block: 24px; }
  .footer-address { grid-column: auto; }
  .footer-secondary { display: grid; gap: 12px; }
  .footer-legal { display: grid; justify-content: start; }
  .footer-legal > * + * { margin-left: 0; padding-top: 9px; padding-left: 0; border-top: 1px solid rgba(205, 238, 236, .13); border-left: 0; }
  .back-to-top { --back-to-top-right: 18px; bottom: 18px; width: 42px; height: 42px; }
  .back-to-top.is-cookie-shifted { bottom: 260px; }
  .modal-panel { padding: 34px 22px 22px; }
  .company-details div { grid-template-columns: 1fr; gap: 5px; }
  .cookie-notice { right: 12px; bottom: 12px; width: calc(100vw - 24px); }
  .legal-document { width: min(100% - 32px, 920px); padding-top: 54px; }
}
@media (max-width: 360px) {
  .hero { min-height: max(760px, 100dvh); }
  h1 { font-size: clamp(40px, 12.8vw, 46px); line-height: 1; }
  .hero-copy { font-size: 15px; line-height: 1.55; }
  .hero-actions { gap: 24px; }
  .button { width: 100%; min-width: 0; gap: 16px; padding-inline: 17px; font-size: 10px; letter-spacing: 0.11em; }
  .button-text { width: 100%; }
}
@media (max-width: 420px) {
  .process-line { grid-template-columns: 1fr; }
  .process-step { min-height: 118px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 1ms !important; transition-duration: 1ms !important; }
  .motion-enabled .reveal, .motion-enabled .map-dot, .motion-enabled .map-line { opacity: 1 !important; transform: none !important; }
  .process-progress { transform: scaleX(1); }
}
