:root {
  --ink: #0a0a0a;
  --paper: #f2f0eb;
  --muted: #a7a7a0;
  --line: rgba(255, 255, 255, 0.18);
  --acid: #ff332e;
  --violet: #8b1019;
  --orange: #ff332e;
  --max: 1440px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--acid); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.scrolled {
  height: 66px;
  background: rgba(10, 10, 10, .88);
  border-color: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.035em;
}
.brand-wordmark { display: grid; color: #fff; font-size: 15px; font-weight: 900; line-height: .72; letter-spacing: -.085em; }
.nav { display: flex; gap: 28px; }
.nav a { color: #d0d0ca; font-size: 13px; transition: color .2s ease; }
.nav a:hover { color: #fff; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.language {
  border: 0;
  background: transparent;
  color: #cfcfc9;
  padding: 11px;
  cursor: pointer;
  font-size: 12px;
}
.header-cta {
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 12px;
  transition: background .2s ease, color .2s ease;
}
.header-cta:hover { background: #fff; color: var(--ink); }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.25); background: transparent; border-radius: 50%; cursor: pointer; }
.menu-button span { display: block; width: 16px; height: 1px; margin: 4px auto; background: #fff; transition: transform .25s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(2.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-2.5px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px var(--pad) 30px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 72% 32%, rgba(166,18,28,.3), transparent 34%),
    radial-gradient(circle at 46% 96%, rgba(255,51,46,.1), transparent 28%),
    var(--ink);
}
.camera-outline { position: absolute; pointer-events: none; user-select: none; }
.camera-outline-hero { z-index: 0; width: min(72vw, 1050px); left: -17%; bottom: -10%; opacity: .13; transform: rotate(-8deg); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, transparent 95%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}
.eyebrow, .kicker {
  color: #b9b9b3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.live-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(255,97,56,.6); animation: pulse 2s infinite; }
@keyframes pulse { 60% { box-shadow: 0 0 0 9px rgba(255,97,56,0); } 100% { box-shadow: 0 0 0 0 rgba(255,97,56,0); } }
.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(54px, 7.2vw, 116px);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.075em;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em, .contact h2 em {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--acid);
  font-weight: 400;
  letter-spacing: -.065em;
}
.hero-lead {
  max-width: 610px;
  margin: 40px 0 0;
  color: #c6c6c0;
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.45;
  letter-spacing: -.02em;
}
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.button {
  min-height: 52px;
  border-radius: 999px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--acid); color: #fff; }
.button-primary:hover { background: #ff5a55; }
.button-ghost { border: 1px solid rgba(255,255,255,.26); }
.button-ghost:hover { border-color: #fff; }

.hero-stage { position: relative; min-height: min(62vw, 690px); display: grid; place-items: center; }
.monitor { position: relative; z-index: 2; width: min(78%, 480px); border: 1px solid rgba(255,255,255,.22); padding: 8px; background: rgba(10,10,10,.75); transform: rotate(1deg); box-shadow: 0 40px 100px rgba(0,0,0,.55); }
.monitor-top { height: 32px; padding: 0 4px; display: flex; align-items: center; justify-content: space-between; color: #a7a7a1; font: 9px/1 monospace; letter-spacing: .08em; }
.monitor-top span:first-child { display: flex; align-items: center; gap: 5px; }
.monitor-top i { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.monitor-frame { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: #111; }
.monitor-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.08); }
.frame-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.75)); }
.frame-caption { position: absolute; left: 18px; right: 18px; bottom: 17px; display: flex; justify-content: space-between; align-items: center; font: 9px/1 monospace; letter-spacing: .1em; }
.frame-caption strong { color: var(--orange); }
.signal { position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.signal-a { width: 92%; aspect-ratio: 1; }
.signal-b { width: 65%; aspect-ratio: 1; border-color: rgba(255,51,46,.3); }
.signal::before, .signal::after { content: ""; position: absolute; border-radius: inherit; border: 1px solid currentColor; }
.signal::before { inset: 12%; opacity: .5; }
.signal::after { inset: 25%; opacity: .3; }
.stage-card { position: absolute; z-index: 3; width: 145px; min-height: 110px; padding: 14px; background: var(--paper); color: var(--ink); box-shadow: 0 18px 50px rgba(0,0,0,.3); }
.stage-card p { margin: 18px 0 0; font-size: 11px; line-height: 1.25; }
.stage-card > span:first-child { font: 26px/1 Georgia, serif; }
.stage-card-top { top: 7%; right: -2%; }
.stage-card-bottom { bottom: 8%; left: -4%; background: var(--acid); color: #fff; }
.mini-wave { display: block; width: 100%; height: 25px; background: repeating-linear-gradient(90deg, transparent 0 4px, var(--ink) 4px 6px); clip-path: polygon(0 40%,5% 25%,10% 75%,15% 10%,20% 80%,25% 35%,30% 55%,35% 15%,40% 85%,45% 43%,50% 22%,55% 75%,60% 10%,65% 88%,70% 38%,75% 60%,80% 20%,85% 78%,90% 32%,95% 55%,100% 42%,100% 58%,0 58%); }
.hero-foot { position: relative; z-index: 2; width: min(100%, var(--max)); margin: 28px auto 0; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.18); color: #9c9c96; font: 10px/1.2 monospace; letter-spacing: .12em; text-transform: uppercase; }
.scroll-note { display: flex; gap: 14px; }

.capability-band { position: relative; z-index: 3; padding: 25px var(--pad); border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); background: #0d0d0d; }
.capability-track { width: min(100%, var(--max)); margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 9px; }
.capability-tag { flex: 0 0 auto; padding: 11px 17px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; color: #eeeae5; font-size: 11px; font-weight: 700; letter-spacing: .02em; white-space: nowrap; }
.capability-dot { flex: 0 0 auto; width: 39px; height: 39px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: inset 0 0 0 8px #0d0d0d; background: var(--acid); }

.section { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(100px, 13vw, 190px) var(--pad); }
.section-index { color: #777771; font: 10px/1 monospace; letter-spacing: .1em; }
.section h2 { margin: 0; font-size: clamp(38px, 4.7vw, 72px); line-height: .98; letter-spacing: -.055em; }
.kicker { margin: 0 0 28px; }
.intro { display: grid; grid-template-columns: 14% 1fr 24%; gap: clamp(24px, 5vw, 80px); align-items: start; }
.intro h2 { max-width: 900px; font-size: clamp(36px, 4.3vw, 64px); line-height: 1.04; }
.intro-note { align-self: end; padding-top: 100px; color: #b9b9b3; font-size: 15px; line-height: 1.6; }
.intro-note p { margin: 0; }

.section-heading { display: grid; grid-template-columns: 1fr 1.6fr; gap: 50px; margin-bottom: 70px; }
.section-heading h2 { max-width: 780px; }
.section-heading .section-index { margin-bottom: 52px; }
.services { position: relative; overflow: hidden; }
.services > *:not(.camera-outline) { position: relative; z-index: 1; }
.camera-outline-services { z-index: 0; width: min(66vw, 900px); right: -23%; top: 18%; opacity: .09; transform: rotate(12deg); }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 70px minmax(240px, .8fr) 1.1fr 36px; gap: 25px; align-items: center; padding: 32px 0; border-bottom: 1px solid var(--line); }
.service-number { color: #777771; font: 10px/1 monospace; }
.service-row h3 { margin: 0; font-size: clamp(21px, 1.8vw, 29px); letter-spacing: -.04em; }
.service-row p { max-width: 580px; margin: 0; color: #adada7; font-size: 15px; line-height: 1.55; }
.service-icon { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; display: grid; place-items: center; transition: transform .3s ease, background .3s ease, color .3s ease; }
.service-row:hover .service-icon { background: var(--acid); color: var(--ink); transform: rotate(45deg); }

.medical { width: 100%; max-width: none; padding-left: max(var(--pad), calc((100vw - var(--max))/2 + var(--pad))); padding-right: max(var(--pad), calc((100vw - var(--max))/2 + var(--pad))); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 8vw, 130px); align-items: center; background: var(--paper); color: var(--ink); }
.medical-visual { min-height: 650px; display: grid; place-items: center; background: #090909; overflow: hidden; }
.medical-screen { position: relative; width: 76%; aspect-ratio: 4/5; background: #151515; border: 1px solid #424242; padding: 8px; color: #fff; box-shadow: 0 35px 80px rgba(0,0,0,.35); }
.screen-ui, .screen-sources { height: 36px; display: flex; align-items: center; justify-content: space-between; padding: 0 5px; color: #a7a7a7; font: 9px/1 monospace; letter-spacing: .08em; }
.screen-ui span:first-child { display: flex; align-items: center; gap: 6px; }
.screen-ui i { width: 5px; height: 5px; border-radius: 50%; background: var(--acid); }
.medical-graphic { position: relative; height: calc(100% - 72px); overflow: hidden; background: radial-gradient(circle at 52% 48%, #32171a, #130c0d 58%, #050505); }
.medical-graphic::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 32px 32px; }
.orb { position: absolute; border-radius: 50%; border: 1px solid rgba(255,78,70,.78); box-shadow: inset 0 0 40px rgba(255,51,46,.15), 0 0 30px rgba(255,51,46,.18); }
.orb-one { width: 58%; aspect-ratio: 1; left: 20%; top: 20%; }
.orb-two { width: 32%; aspect-ratio: 1; left: 34%; top: 33%; border-color: rgba(255,255,255,.7); }
.orb-three { width: 10%; aspect-ratio: 1; left: 45%; top: 44%; background: var(--acid); border: none; box-shadow: 0 0 45px rgba(255,51,46,.8); }
.scan-line { position: absolute; left: 0; right: 0; height: 1px; top: 15%; background: rgba(255,51,46,.85); box-shadow: 0 0 12px var(--acid); animation: scan 5s linear infinite; }
@keyframes scan { 50% { top: 84%; } }
.screen-sources { gap: 7px; justify-content: stretch; }
.screen-sources span { flex: 1; border-top: 2px solid #494949; padding-top: 8px; }
.screen-sources span:first-child { border-color: var(--acid); }
.medical-copy { max-width: 650px; }
.medical-copy .section-index { margin-bottom: 70px; }
.medical-copy .kicker { color: #64645f; }
.medical-copy h2 { margin-bottom: 32px; }
.medical-copy > p:not(.kicker) { color: #4f4f4a; font-size: 17px; line-height: 1.55; }
.check-list { list-style: none; margin: 34px 0; padding: 0; border-top: 1px solid rgba(0,0,0,.18); }
.check-list li { position: relative; padding: 14px 0 14px 26px; border-bottom: 1px solid rgba(0,0,0,.18); font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #b20f19; font-weight: 800; }
.text-link { display: inline-flex; align-items: center; gap: 26px; padding-bottom: 5px; border-bottom: 1px solid; font-size: 13px; font-weight: 700; }

.work { padding-bottom: 80px; }
.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.work-card { min-width: 0; padding: 16px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.32); border-radius: 28px; transition: border-color .25s ease, transform .25s ease; }
.work-card:hover { border-color: var(--acid); transform: translateY(-3px); }
.work-card-top { min-height: 46px; padding: 0 1px 13px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.work-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.work-tags span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.46); border-radius: 999px; font-size: 9px; font-weight: 700; letter-spacing: .07em; line-height: 1; }
.work-tags span:first-child { border-color: var(--acid); background: var(--acid); color: #fff; }
.card-arrow { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: #000; font-size: 17px; transition: transform .25s ease, background .25s ease, color .25s ease; }
.work-card:hover .card-arrow { transform: rotate(45deg); background: var(--acid); color: #fff; }
.work-image { position: relative; overflow: hidden; aspect-ratio: 16/9; border-radius: 18px; background: #171717; }
.work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease; filter: saturate(.8); }
.work-image-right img { object-position: center 55%; }
.work-card:hover img { transform: scale(1.035); filter: saturate(1); }
.work-card-copy { min-height: 118px; padding: 22px 2px 2px; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; }
.work-card-copy h3 { max-width: 560px; margin: 0; font-size: clamp(24px, 2.3vw, 34px); line-height: 1; letter-spacing: -.05em; }
.work-card-copy > span { color: #85857f; font: 9px/1 monospace; letter-spacing: .1em; }
.work-more { margin: 65px 0 0 auto; max-width: 500px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.work-more p { margin: 0; color: #9f9f99; font-size: 13px; line-height: 1.5; }

.process { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 140px); border-top: 1px solid var(--line); }
.process-copy { position: sticky; top: 130px; align-self: start; }
.process-copy .section-index { margin-bottom: 70px; }
.process-copy h2 { font-size: clamp(38px, 4.7vw, 72px); }
.process-copy > p:last-child { max-width: 420px; color: #a9a9a3; line-height: 1.6; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 64px 1fr; padding: 31px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { padding-top: 5px; color: var(--acid); font: 10px/1 monospace; }
.process-list h3 { margin: 0 0 9px; font-size: 27px; letter-spacing: -.04em; }
.process-list p { margin: 0; color: #a7a7a1; line-height: 1.5; font-size: 14px; }

.coverage { width: 100%; max-width: none; padding-left: max(var(--pad), calc((100vw - var(--max))/2 + var(--pad))); padding-right: max(var(--pad), calc((100vw - var(--max))/2 + var(--pad))); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 8vw, 130px); align-items: center; background: #11110f; }
.coverage-map { position: relative; min-height: 500px; display: grid; place-items: center; overflow: visible; }
.europe-map { width: min(100%, 760px); height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.28)); }
.coverage-copy h2 { margin-bottom: 30px; }
.coverage-copy > p:not(.kicker) { max-width: 580px; color: #aaa9a3; font-size: 17px; line-height: 1.6; }
.coverage-copy .section-index { margin-bottom: 70px; }
.territories { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.territories span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: 11px; }

.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 10vw, 160px); }
.faq-title h2 { font-size: clamp(38px, 4.7vw, 72px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 82px; display: flex; justify-content: space-between; align-items: center; gap: 30px; cursor: pointer; list-style: none; font-size: clamp(17px, 1.5vw, 22px); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; left: 0; top: 8px; width: 18px; height: 1px; background: #fff; transition: transform .2s ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details p { max-width: 700px; margin: -6px 50px 28px 0; color: #aaa9a3; line-height: 1.6; }

.contact { position: relative; min-height: 84svh; padding: clamp(100px, 13vw, 190px) var(--pad) 35px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; background: var(--violet); color: #fff; }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 72px 72px; }
.contact-glow { position: absolute; width: 62vw; aspect-ratio: 1; right: -12%; top: -45%; border-radius: 50%; background: radial-gradient(circle, rgba(255,116,108,.62), rgba(255,51,46,0) 68%); filter: blur(20px); }
.contact-inner { position: relative; z-index: 2; width: min(100%, var(--max)); margin: auto; }
.contact-inner .kicker { color: #ffd3d0; }
.contact h2 { margin: 0; max-width: 1160px; font-size: clamp(64px, 9vw, 132px); line-height: .82; letter-spacing: -.075em; }
.contact h2 em { color: #fff; }
.contact-inner > p:not(.kicker) { max-width: 560px; margin: 50px 0 28px; font-size: 17px; line-height: 1.55; }
.button-light { background: #fff; color: var(--ink); }
.button-light:hover { background: var(--acid); }
.contact-meta { position: relative; z-index: 2; width: min(100%, var(--max)); margin: 80px auto 0; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.34); font: 10px/1 monospace; letter-spacing: .12em; }

.site-footer { padding: 36px var(--pad); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 25px; align-items: start; background: var(--paper); color: var(--ink); }
.brand-footer .brand-wordmark { color: var(--ink); }
.site-footer p { margin: 1px 0 0; color: #666660; font-size: 12px; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; font-size: 12px; }
.site-footer small { grid-column: 1/-1; margin-top: 28px; color: #8b8b84; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header > .brand, .site-header > .header-actions { position: relative; z-index: 2; }
  .nav { position: fixed; inset: 0; z-index: 1; padding: 120px var(--pad) 40px; background: var(--ink); display: flex; flex-direction: column; gap: 8px; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-105%); transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .2s ease, visibility 0s linear .45s; }
  .nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
  .nav a { padding: 11px 0; color: #fff; font-size: clamp(34px, 8vw, 70px); font-weight: 700; letter-spacing: -.055em; }
  .menu-button { display: block; }
  .header-cta { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-stage { min-height: 700px; }
  .monitor { width: min(62%, 480px); }
  .stage-card-top { right: 12%; }
  .stage-card-bottom { left: 13%; }
  .intro { grid-template-columns: 70px 1fr; }
  .intro-note { grid-column: 2; padding-top: 0; max-width: 500px; }
  .medical, .coverage { grid-template-columns: 1fr; }
  .medical-visual { min-height: 580px; }
  .medical-screen { width: min(65%, 440px); }
  .medical-copy { max-width: 800px; }
  .coverage-map { order: 2; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; }
  .site-header, .site-header.scrolled { height: 64px; }
  .site-header.scrolled { backdrop-filter: none; }
  .brand-wordmark { font-size: 14px; }
  .language { padding: 9px 5px; }
  .hero { padding-top: 112px; }
  .camera-outline-hero { width: 165vw; left: -68%; bottom: 4%; opacity: .11; }
  .hero h1 { font-size: clamp(46px, 13.5vw, 66px); line-height: .92; }
  .hero-lead { margin-top: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-stage { min-height: 520px; margin-top: 12px; }
  .monitor { width: 72%; }
  .stage-card { width: 112px; min-height: 88px; padding: 11px; }
  .stage-card p { margin-top: 11px; font-size: 9px; }
  .stage-card-top { right: 0; top: 6%; }
  .stage-card-bottom { left: 0; bottom: 5%; }
  .hero-foot { margin-top: 8px; }
  .scroll-note span:first-child { display: none; }
  .capability-band { padding: 15px 0; overflow: hidden; }
  .capability-track { width: 100%; padding: 0 20px; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; }
  .capability-track::-webkit-scrollbar { display: none; }
  .capability-tag, .capability-dot { scroll-snap-align: start; }
  .capability-tag { padding: 10px 15px; }
  .section { padding-top: 105px; padding-bottom: 105px; }
  .intro { grid-template-columns: 1fr; }
  .intro .section-index { margin-bottom: 15px; }
  .intro-note { grid-column: auto; max-width: none; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; margin-bottom: 45px; }
  .section-heading .section-index { margin-bottom: 35px; }
  .service-row { grid-template-columns: 40px 1fr 30px; gap: 12px; padding: 25px 0; }
  .service-row p { grid-column: 2 / -1; font-size: 14px; }
  .service-icon { grid-column: 3; grid-row: 1; width: 30px; height: 30px; }
  .medical { padding-top: 80px; }
  .medical-visual { min-height: 480px; }
  .medical-screen { width: 82%; }
  .medical-copy .section-index, .coverage-copy .section-index { margin-bottom: 45px; }
  .work-grid { grid-template-columns: 1fr; gap: 15px; }
  .work-card { padding: 12px; border-radius: 22px; }
  .work-image { aspect-ratio: 16/9; border-radius: 14px; }
  .work-card-copy { min-height: 102px; padding-top: 18px; }
  .work-card-copy h3 { font-size: 25px; }
  .work-more { align-items: stretch; flex-direction: column; }
  .process { grid-template-columns: 1fr; gap: 55px; }
  .process-copy { position: static; }
  .process-copy .section-index { margin-bottom: 45px; }
  .coverage-map { min-height: 350px; }
  .faq { grid-template-columns: 1fr; gap: 55px; }
  .faq-list summary { min-height: 74px; font-size: 17px; }
  .contact { min-height: 760px; }
  .contact h2 { font-size: clamp(54px, 17vw, 88px); line-height: .84; }
  .contact-meta { gap: 20px; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer p { text-align: left; }
  .footer-links { justify-content: flex-start; }
  .site-footer small { grid-column: auto; }
}

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