@font-face {
  font-family: "Speed DIN";
  src: url("./din1451-36breit.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Cairo";
  src: url("./cairo-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Cairo";
  src: url("./cairo-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Cairo";
  src: url("./cairo-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Cairo";
  src: url("./cairo-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Cairo";
  src: url("./cairo-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

:root {
  --ink: #333333;
  --navy: #172430;
  --muted: #65717a;
  --soft-blue: #99c1d7;
  --blue-mid: #7899ac;
  --blue-dark: #50616c;
  --topbar: #e9e9e9;
  --panel: #f4f4f4;
  --paper: #ffffff;
  --line: rgba(51, 51, 51, 0.14);
  --shadow: 0 24px 70px rgba(23, 36, 48, 0.08);
  --page-pad: clamp(1.25rem, 4.7vw, 5rem);
  --header-row-height: clamp(4.9rem, 7vh, 5.55rem);
}

* {
  box-sizing: border-box;
}

::selection {
  color: var(--ink);
  background: var(--soft-blue);
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Cairo", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.045em;
}

:lang(ar) {
  direction: rtl;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.speed-brand {
  font-family: "Speed DIN", "Arial Narrow", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.speed-brand-dhi {
  color: var(--soft-blue);
  -webkit-text-fill-color: var(--soft-blue);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--soft-blue);
  outline-offset: 5px;
}

.page {
  position: relative;
  min-height: 100svh;
  overflow: visible;
  background: var(--paper);
}

.site-header {
  --submenu-end-offset: calc(2.05rem + clamp(0.82rem, 1vw, 1.28rem));
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(8.5rem, 13rem) 1fr;
  grid-template-rows: var(--header-row-height) auto;
  align-items: center;
  column-gap: clamp(1rem, 2.2vw, 2.5rem);
  row-gap: 0;
  min-height: var(--header-row-height);
  padding: 0 var(--page-pad);
  background: rgba(233, 233, 233, 0.66);
  backdrop-filter: blur(16px);
  transition: background-color 320ms ease, box-shadow 320ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(233, 233, 233, 0.94);
  box-shadow: 0 1rem 2.4rem rgba(23, 36, 48, 0.045);
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: center;
  grid-row: 1;
  width: max-content;
}

.brand img {
  display: block;
  width: clamp(142px, 12vw, 205px);
  height: auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.55rem;
  height: 1px;
  background: currentColor;
  transition: transform 280ms ease, opacity 280ms ease, color 280ms ease;
}

.menu-toggle span + span {
  margin-top: 0.42rem;
}

.menu-toggle:hover {
  color: var(--soft-blue);
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(0.42rem) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.main-nav {
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.82rem, 1vw, 1.28rem);
  font-size: clamp(0.62rem, 0.68vw, 0.82rem);
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.main-nav a {
  width: max-content;
  color: var(--ink);
  text-transform: uppercase;
  transition: color 280ms ease, border-color 280ms ease, background-color 280ms ease;
}

.main-nav > a {
  letter-spacing: 0.075em;
}

.main-nav a:hover {
  color: var(--soft-blue);
}

.main-nav a[aria-current="page"] {
  color: var(--soft-blue);
}

.technology-strip {
  position: relative;
  align-self: stretch;
  grid-column: 1 / -1;
  grid-row: 2;
  display: none;
  width: 100%;
  min-height: 2.9rem;
  margin-top: 0;
  padding: 0.72rem 0 0.95rem;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  overflow: hidden;
}

.technology-strip-scroller {
  width: 100%;
  padding-right: var(--submenu-end-offset);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.technology-strip-scroller::-webkit-scrollbar {
  display: none;
}

.technology-strip.is-open {
  display: block;
}

.technology-strip-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-dark);
  font-family: inherit;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.78;
  transform: translateY(-42%);
  transition: color 220ms ease, opacity 220ms ease;
}

.technology-strip-arrow:hover {
  color: var(--soft-blue);
  opacity: 1;
}

.technology-strip-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.technology-strip-arrow-prev {
  left: 0;
}

.technology-strip-arrow-next {
  right: 0;
}

.technology-strip-track {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.85rem, 1.4vw, 1.45rem);
  width: max-content;
  min-width: max-content;
  margin-left: auto;
}

.technology-strip-track a {
  flex: 0 0 auto;
  padding: 0.18rem 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(0.64rem, 0.68vw, 0.78rem);
  line-height: 1;
  letter-spacing: 0.035em;
  white-space: nowrap;
  transition: color 240ms ease;
}

.technology-strip-track a:hover {
  color: var(--soft-blue);
}

.technology-strip-track a[aria-current="page"] {
  color: var(--soft-blue);
}

.nav-separator {
  display: none;
  color: rgba(51, 51, 51, 0.52);
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  color: rgba(51, 51, 51, 0.62);
}

.language-switch-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.05rem;
  height: 2.05rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: color 240ms ease, transform 240ms ease;
}

.language-switch-toggle svg {
  display: block;
  width: 1.22rem;
  height: 1.22rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-switch-toggle:hover,
.language-switch.is-open .language-switch-toggle {
  color: var(--soft-blue);
}

.language-switch.is-open .language-switch-toggle {
  transform: translateY(-1px);
}

.language-options {
  position: absolute;
  top: calc(100% + 0.72rem);
  right: 0;
  z-index: 40;
  display: grid;
  gap: 0.1rem;
  min-width: 7rem;
  padding: 0.5rem;
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1.2rem 2.4rem rgba(23, 36, 48, 0.11);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  visibility: hidden;
}

.language-switch.is-open .language-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.language-options a,
.language-switch:not(.is-enhanced) a {
  color: rgba(51, 51, 51, 0.62);
}

.language-options a {
  display: block;
  width: 100%;
  padding: 0.58rem 0.72rem;
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease;
}

.language-options a.is-active,
.language-switch:not(.is-enhanced) a.is-active {
  color: var(--soft-blue);
}

.language-options a:hover,
.language-switch:not(.is-enhanced) a:hover {
  color: var(--soft-blue);
}

.language-switch:not(.is-enhanced) {
  gap: 0.42rem;
}

.language-switch > span[aria-hidden="true"] {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.82rem 1.2rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(0.68rem, 0.74vw, 0.86rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 280ms ease, background-color 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.nav-cta {
  margin-left: clamp(0.45rem, 0.9vw, 1rem);
}

.nav-cta:hover,
.button:hover {
  color: var(--paper);
  background: var(--soft-blue);
  border-color: var(--soft-blue);
  transform: translateY(-1px);
}

.main-nav a.nav-cta:hover {
  color: var(--paper);
}

.button-secondary {
  color: var(--blue-dark);
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.hero {
  position: relative;
  min-height: clamp(30rem, 58vh, 38rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(2.8rem, 4.8vw, 4.4rem) var(--page-pad);
  background: var(--panel);
  overflow: hidden;
}

.hero-ecosystem {
  grid-template-columns: minmax(0, 0.86fr) minmax(18rem, 0.74fr);
  column-gap: clamp(2rem, 5vw, 6rem);
}

.hero-ecosystem .hero-copy {
  max-width: 58rem;
  min-width: 0;
}

.hero-ecosystem .page-title {
  font-size: clamp(2.55rem, 5.4vw, 5.95rem);
  line-height: 0.98;
}

.ecosystem-hero-panel {
  display: grid;
  gap: 1.15rem;
  align-self: center;
  justify-self: end;
  width: min(42vw, 40rem);
}

.ecosystem-hero-media {
  align-self: center;
  justify-self: end;
  width: 100%;
  margin: 0;
}

.ecosystem-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2rem 3.2rem rgba(23, 36, 48, 0.1));
}

.ecosystem-hero-media figcaption,
.ecosystem-media-card figcaption {
  margin-top: 0.95rem;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero-workflow-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.45rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.15rem 0 0.4rem;
  scrollbar-width: none;
}

.hero-workflow-strip::-webkit-scrollbar {
  display: none;
}

.hero-workflow-strip span {
  flex: 0 0 auto;
  display: grid;
  min-width: 6.2rem;
  padding: 0.72rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--navy);
  font-size: 0.76rem;
  line-height: 1.1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-workflow-strip strong {
  margin-bottom: 0.28rem;
  color: var(--soft-blue);
  font-weight: 400;
  font-size: 0.68rem;
  line-height: 1;
}

.hero-workflow-strip i {
  align-self: center;
  color: var(--soft-blue);
  font-style: normal;
  line-height: 1;
}

.hero-speeddhi {
  background: var(--panel);
}

.hero-platform.hero-speeddhi {
  grid-template-columns: minmax(0, 0.76fr) minmax(20rem, 1.05fr);
  column-gap: clamp(1.2rem, 3.2vw, 4.2rem);
  isolation: isolate;
}

.hero-platform.hero-speeddhi::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
  pointer-events: none;
}

.hero-speeddhi .hero-copy {
  max-width: 50rem;
}

.hero-platform.hero-speeddhi .eyebrow {
  color: var(--blue-dark);
}

.hero-platform.hero-speeddhi .gradient-title {
  background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-mid) 48%, var(--soft-blue) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: none;
}

.hero-platform.hero-speeddhi .hero-subtitle {
  color: var(--navy);
}

.hero-platform.hero-speeddhi .hero-text {
  color: var(--muted);
}

.hero-platform.hero-speeddhi .button {
  color: var(--ink);
  border-color: currentColor;
  background: transparent;
}

.hero-platform.hero-speeddhi .button-secondary {
  color: var(--blue-dark);
  border-color: currentColor;
}

.hero-platform.hero-speeddhi .button:hover {
  color: var(--paper);
  border-color: var(--soft-blue);
  background: var(--soft-blue);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 68rem;
}

.hero-platform {
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 0.78fr);
  column-gap: clamp(1.4rem, 3.8vw, 5rem);
}

.hero-platform .hero-copy {
  max-width: 55rem;
}

.hero-product {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(47vw, 48rem);
  margin: 0 calc(var(--page-pad) * -0.35) clamp(-2.8rem, -3vw, -1.4rem) 0;
  pointer-events: none;
}

.hero-product img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2.3rem 3.2rem rgba(23, 36, 48, 0.14));
}

.hero-room {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(49vw, 52rem);
  margin: 0 calc(var(--page-pad) * -0.4) clamp(-1.2rem, -1.8vw, -0.45rem) 0;
  pointer-events: none;
}

.hero-room img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2rem 3rem rgba(23, 36, 48, 0.1));
  transform: translate(clamp(-3rem, -3vw, -1.2rem), clamp(-1.8rem, -2vw, -0.8rem));
}

.eyebrow,
.section-kicker,
.card-kicker {
  margin: 0 0 1rem;
  color: var(--blue-dark);
  font-size: clamp(0.68rem, 0.78vw, 0.86rem);
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gradient-title,
.page-title {
  margin: 0;
  color: transparent;
  background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-mid) 48%, var(--soft-blue) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2.75rem, 6.25vw, 6.6rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 48rem;
  margin: clamp(1.4rem, 2.5vw, 2.2rem) 0 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.15vw, 2.45rem);
  line-height: 1.25;
  letter-spacing: 0.07em;
}

.hero-text,
.lede,
.body-copy {
  color: var(--muted);
  font-family: inherit;
  letter-spacing: 0;
}

.hero-text {
  max-width: 45rem;
  margin: 1.35rem 0 0;
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
}

.section {
  padding: clamp(4.4rem, 8vw, 8rem) var(--page-pad);
}

#applications,
#clinic-network,
.section[aria-labelledby="device-lineup-title"] {
  padding-top: clamp(2.2rem, 4vw, 4rem);
}

.section-soft {
  background: var(--panel);
}

.ecosystem-first-section,
.page-first-section {
  padding-top: clamp(2.6rem, 4.5vw, 4.5rem);
}

.section-dark {
  color: var(--paper);
  background: var(--navy);
}

.section-dark .section-kicker,
.section-dark .card-kicker {
  color: var(--soft-blue);
}

.section-dark .lede,
.section-dark .body-copy,
.section-dark .card p,
.section-dark li {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 64rem;
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.section-heading h1,
.section-heading h2,
.compact-heading {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.section-dark .section-heading h2,
.section-dark .compact-heading {
  color: var(--paper);
}

.lede {
  max-width: 48rem;
  margin: 1.1rem 0 0;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.75;
}

.split {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(20rem, 1.15fr);
  gap: clamp(2.2rem, 6vw, 6rem);
  align-items: start;
}

.align-center {
  align-items: center;
}

.device-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(21rem, 36vw, 32rem);
  overflow: visible;
}

.device-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 44rem);
  height: auto;
  filter: drop-shadow(0 2rem 2.8rem rgba(23, 36, 48, 0.12));
  transition: transform 320ms ease, filter 320ms ease;
}

.device-visual:hover img {
  filter: drop-shadow(0 2.4rem 3.1rem rgba(23, 36, 48, 0.16));
  transform: translateY(-4px) scale(1.012);
}

.multipen-device img {
  width: min(108%, 46rem);
}

.grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.product-card,
.technology-card,
.program-card {
  min-height: 100%;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.link-card {
  display: block;
  transition: border-color 280ms ease, background-color 280ms ease, transform 280ms ease;
}

.link-card:hover {
  border-color: rgba(153, 193, 215, 0.82);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.section-dark .link-card:hover {
  border-color: rgba(153, 193, 215, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.section-dark .card,
.section-dark .product-card,
.section-dark .technology-card,
.section-dark .program-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.card h3,
.product-card h3,
.technology-card h3,
.program-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 1.65vw, 1.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section-dark .card h3,
.section-dark .product-card h3,
.section-dark .technology-card h3,
.section-dark .program-card h3 {
  color: var(--paper);
}

.card p,
.product-card p,
.technology-card p,
.program-card p,
.card li,
.product-card li,
.technology-card li,
.program-card li {
  color: var(--muted);
  font-family: inherit;
  font-size: 0.98rem;
  line-height: 1.68;
  letter-spacing: 0;
}

.card p,
.product-card p,
.technology-card p,
.program-card p {
  margin: 1rem 0 0;
}

.clean-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 1rem;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--soft-blue);
}

.care-grid {
  align-items: stretch;
}

.care-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.care-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--care-accent, var(--soft-blue));
}

.care-essential {
  --care-accent: #7fb99a;
}

.care-professional {
  --care-accent: var(--soft-blue);
}

.care-premium {
  --care-accent: #b7a4d8;
}

.care-tier {
  margin: 0;
  color: var(--care-accent, var(--soft-blue));
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.care-detail {
  display: grid;
  gap: 0.55rem;
}

.care-detail strong {
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.care-excluded .clean-list li::before {
  background: rgba(80, 97, 108, 0.4);
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.comparison-table {
  width: 100%;
  min-width: 46rem;
  border-collapse: collapse;
  font-family: inherit;
  letter-spacing: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem clamp(0.9rem, 1.6vw, 1.35rem);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table th {
  color: var(--navy);
  font-weight: 500;
  text-align: left;
}

.comparison-table thead th {
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.comparison-device-heading {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  min-width: 20rem;
}

.comparison-device-heading img {
  display: block;
  width: min(20rem, 38vw);
  max-height: 15rem;
  object-fit: contain;
  transform: translateX(-15%);
  filter: drop-shadow(0 0.95rem 1.35rem rgba(23, 36, 48, 0.14));
}

.comparison-device-heading-xl img {
  width: min(23rem, 42vw);
  transform: translateX(-15%) scale(1.06);
}

.comparison-device-heading > span {
  display: block;
  white-space: nowrap;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  text-align: center;
}

.care-check {
  color: var(--soft-blue);
  font-weight: 600;
}

.care-empty {
  color: rgba(80, 97, 108, 0.42);
}

.comparison-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin: 0 0 1.2rem;
}

.feature-status {
  --status-color: var(--soft-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.feature-status::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 2px;
  background: var(--status-color);
  box-shadow: inset 0 0 0 1px rgba(23, 36, 48, 0.06);
}

.status-included {
  --status-color: var(--soft-blue);
}

.status-optional {
  --status-color: #d8bf73;
}

.status-none {
  --status-color: rgba(80, 97, 108, 0.22);
  color: rgba(80, 97, 108, 0.68);
}

.device-showcase-grid {
  align-items: stretch;
}

.device-card {
  scroll-margin-top: calc(var(--header-row-height) + 4.5rem);
}

.device-render {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(16rem, 23vw, 23rem);
  margin: 0 0 clamp(1.25rem, 2vw, 1.8rem);
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 55% 62%, rgba(153, 193, 215, 0.2), transparent 38%),
    linear-gradient(135deg, #fbfbfb 0%, #f1f4f6 100%);
  overflow: hidden;
}

.device-render img {
  width: min(76%, 27rem);
  max-height: 20rem;
  object-fit: contain;
  filter: drop-shadow(0 1.6rem 2.1rem rgba(23, 36, 48, 0.16));
}

.device-card-xl .device-render img {
  width: min(88%, 31rem);
  transform: scale(1.06);
}

.device-card-multipen .device-render img {
  width: min(96%, 34rem);
  max-height: 14rem;
  transform: none;
}

.device-card-extract .device-render img {
  width: min(88%, 30rem);
  max-height: 13rem;
  transform: scaleX(-1) rotate(-7deg);
}

.product-detail-section {
  padding-top: clamp(1.4rem, 2.8vw, 2.8rem);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: start;
}

.product-media-panel,
.product-summary-panel {
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.product-media-panel {
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.product-main-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(22rem, 38vw, 35rem);
  background:
    radial-gradient(circle at 58% 62%, rgba(153, 193, 215, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(241, 244, 246, 0.92));
  overflow: hidden;
}

.product-main-image img {
  width: min(90%, 44rem);
  max-height: 32rem;
  object-fit: contain;
  filter: drop-shadow(0 1.8rem 2.4rem rgba(23, 36, 48, 0.16));
  transform: translateX(-7%);
}

.product-main-image-xl img {
  width: min(96%, 48rem);
  transform: translateX(-7%) scale(1.05);
}

.product-main-image-multipen img {
  width: min(96%, 48rem);
  max-height: 24rem;
  transform: none;
}

.product-main-image-extract img {
  width: min(92%, 44rem);
  max-height: 23rem;
  transform: scaleX(-1) rotate(-6deg);
}

.image-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: block;
  width: clamp(0.72rem, 0.95vw, 0.95rem);
  height: clamp(0.72rem, 0.95vw, 0.95rem);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: var(--soft-blue);
  box-shadow:
    0 0 0 0.45rem rgba(153, 193, 215, 0.2),
    0 0.45rem 1rem rgba(23, 36, 48, 0.18);
  transform: translate(-50%, -50%);
}

.image-hotspot::before {
  content: "";
  position: absolute;
  inset: -0.55rem;
  border: 1px solid rgba(153, 193, 215, 0.42);
  border-radius: inherit;
  transform: scale(0.78);
  transition: transform 220ms ease, opacity 220ms ease;
}

.image-hotspot-tooltip {
  position: absolute;
  top: calc(100% + 0.72rem);
  left: 50%;
  width: max-content;
  max-width: min(15rem, 64vw);
  padding: 0.62rem 0.76rem;
  border: 1px solid rgba(80, 97, 108, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: none;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.35rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.image-hotspot:hover,
.image-hotspot:focus-visible {
  outline: 0;
}

.image-hotspot:hover::before,
.image-hotspot:focus-visible::before {
  opacity: 0.2;
  transform: scale(1.35);
}

.image-hotspot:hover .image-hotspot-tooltip,
.image-hotspot:focus-visible .image-hotspot-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-media-notes,
.product-pills,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.product-media-notes {
  margin-top: 1rem;
}

.product-media-notes span,
.product-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.48rem 0.85rem;
  border: 1px solid rgba(80, 97, 108, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-summary-panel {
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.product-summary-panel h1 {
  margin: 0.55rem 0 0.85rem;
  color: var(--navy);
  font-family: "Speed DIN", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.9rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.product-subtitle {
  margin: 0 0 1.15rem;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.product-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.quote-panel {
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
  padding-top: clamp(1.2rem, 2.4vw, 1.8rem);
  border-top: 1px solid rgba(80, 97, 108, 0.16);
}

.quote-label {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-text {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.55;
}

.product-actions {
  align-items: center;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-spec-grid div {
  padding: clamp(1rem, 2vw, 1.45rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.product-spec-grid div:nth-child(2n) {
  border-right: 0;
}

.product-spec-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.product-spec-grid dt {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-spec-grid dd {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.55;
}

.product-compare-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.product-compare-cta h2 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.product-compare-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.device-note {
  margin-top: clamp(1.2rem, 2vw, 1.7rem);
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  border: 1px solid rgba(153, 193, 215, 0.42);
  border-radius: 8px;
  background: rgba(244, 244, 244, 0.72);
}

.device-note p {
  max-width: 70rem;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.7;
  letter-spacing: 0.025em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.timeline-step {
  min-height: 9rem;
  padding: 1.2rem;
  background: var(--paper);
}

.timeline-step span {
  display: block;
  color: var(--soft-blue);
  font-size: 0.78rem;
  line-height: 1;
}

.timeline-step h3 {
  margin: 0.75rem 0 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-history {
  background: var(--paper);
}

.history-page {
  padding-top: clamp(2.2rem, 4vw, 4rem);
  background: var(--panel);
}

.history-timeline {
  position: relative;
  display: grid;
  gap: clamp(2.1rem, 4.4vw, 4.4rem);
  max-width: 94rem;
  margin: clamp(2.6rem, 5vw, 4.8rem) auto 0;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 0.35rem;
  bottom: 0.35rem;
  left: clamp(5.4rem, 10vw, 9rem);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(80, 97, 108, 0.24), rgba(153, 193, 215, 0.45), transparent);
}

.history-item {
  position: relative;
  display: grid;
  grid-template-columns: clamp(4.8rem, 9vw, 8rem) minmax(0, 1fr);
  gap: clamp(1.4rem, 3.6vw, 4.5rem);
  align-items: start;
}

.history-year {
  position: relative;
  z-index: 1;
  color: var(--blue-dark);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.history-year::after {
  content: "";
  position: absolute;
  top: 0.36rem;
  right: clamp(-2.7rem, -3vw, -1.5rem);
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid var(--soft-blue);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 0.5rem rgba(153, 193, 215, 0.11);
}

.history-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(16rem, 0.72fr);
  gap: clamp(1.4rem, 3.2vw, 3.2rem);
  align-items: center;
  padding-bottom: clamp(0.4rem, 1.4vw, 1.4rem);
}

.history-item:nth-child(even) .history-content {
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 0.95fr);
}

.history-item:nth-child(even) .history-copy {
  order: 2;
}

.history-copy h3 {
  max-width: 48rem;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.history-copy p:not(.card-kicker) {
  max-width: 46rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  line-height: 1.72;
  letter-spacing: 0;
}

.history-media {
  position: relative;
  min-height: clamp(12rem, 22vw, 20rem);
  margin: 0;
  border: 1px solid rgba(80, 97, 108, 0.11);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 30%, rgba(153, 193, 215, 0.2), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(233, 238, 241, 0.72));
  overflow: hidden;
}

.history-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 360ms ease, filter 360ms ease;
}

.history-item:hover .history-media img {
  filter: saturate(0.92);
  transform: scale(1.018);
}

.flow-diagram,
.ecosystem-diagram {
  display: grid;
  gap: 0.9rem;
}

.flow-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.flow-node,
.diagram-node {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.flow-node span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--soft-blue);
  font-size: 0.72rem;
  line-height: 1;
}

.diagram-core {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border-radius: 8px;
  background: var(--navy);
  color: var(--paper);
  text-align: center;
}

.ecosystem-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  max-width: 54rem;
}

.ecosystem-flow-large {
  max-width: 62rem;
}

.ecosystem-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.58fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.ecosystem-media-card {
  position: sticky;
  top: calc(var(--header-row-height) + 2.2rem);
  margin: 0;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.ecosystem-media-card img {
  display: block;
  width: 100%;
  max-height: clamp(18rem, 36vw, 30rem);
  object-fit: contain;
}

.ecosystem-step {
  position: relative;
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  align-items: center;
  min-height: 4.65rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  overflow: hidden;
  transition: border-color 280ms ease, color 280ms ease, transform 280ms ease;
}

.ecosystem-step::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-dark), var(--soft-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.ecosystem-step:hover,
.ecosystem-step:focus-visible {
  color: var(--soft-blue);
  border-color: rgba(153, 193, 215, 0.82);
  transform: translateX(0.3rem);
}

.ecosystem-step:hover::after,
.ecosystem-step:focus-visible::after {
  transform: scaleX(1);
}

.ecosystem-step span {
  color: var(--soft-blue);
  font-size: 0.78rem;
  line-height: 1;
}

.ecosystem-step strong {
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ecosystem-step small {
  grid-column: 2;
  display: block;
  margin-top: 0.42rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
  letter-spacing: 0.035em;
  text-transform: none;
}

.ecosystem-arrow {
  justify-self: start;
  padding-left: 1.5rem;
  color: var(--soft-blue);
  line-height: 1;
}

.ecosystem-card-media {
  display: grid;
  place-items: center;
  min-height: clamp(10rem, 17vw, 14rem);
  margin: 0 0 1.35rem;
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 34%, rgba(153, 193, 215, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(233, 238, 241, 0.62));
  overflow: hidden;
}

.ecosystem-card-media img {
  display: block;
  width: min(88%, 22rem);
  max-height: 13rem;
  object-fit: contain;
}

.operation-journey {
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
}

.operation-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 1fr);
  gap: clamp(1.4rem, 4vw, 3.8rem);
  align-items: center;
  padding: clamp(1.4rem, 3.2vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.operation-stage-feature {
  background:
    radial-gradient(circle at 82% 32%, rgba(153, 193, 215, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.82);
}

.operation-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 3.35rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.operation-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.72;
}

.operation-copy .stage-number,
.operation-copy .stage-tools {
  color: var(--soft-blue);
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operation-copy .stage-tools {
  color: var(--blue-dark);
}

.stage-visual {
  min-height: clamp(18rem, 27vw, 26rem);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2.4vw, 1.8rem);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 30%, rgba(153, 193, 215, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(233, 238, 241, 0.58));
  overflow: hidden;
}

.stage-visual-centered {
  gap: clamp(1rem, 2vw, 1.6rem);
}

.planner-mockup {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) minmax(9rem, 0.62fr);
  gap: 1rem;
  width: 100%;
}

.image-placeholder,
.product-placeholder {
  min-height: 15rem;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(80, 97, 108, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.data-tile,
.count-display,
.report-sheet {
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 1rem 2.4rem rgba(23, 36, 48, 0.06);
}

.data-tile {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  padding: 1.2rem;
  color: var(--navy);
}

.data-tile strong,
.data-tile b {
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-tile span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
}

.product-placeholder {
  width: min(100%, 26rem);
  min-height: 10rem;
}

.count-display {
  width: min(100%, 26rem);
  padding: 1.35rem;
  text-align: center;
}

.count-display strong {
  display: block;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.count-display span {
  color: var(--soft-blue);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.transfer-diagram,
.doctor-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  width: 100%;
}

.transfer-diagram span,
.transfer-diagram strong,
.doctor-flow span,
.doctor-flow strong,
.doctor-support span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(51, 51, 51, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transfer-diagram strong,
.doctor-flow strong {
  border-color: rgba(153, 193, 215, 0.82);
  color: var(--blue-dark);
}

.transfer-diagram i,
.doctor-flow i {
  color: var(--soft-blue);
  font-style: normal;
  line-height: 1;
}

.doctor-support {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.72rem;
  margin-top: 1.25rem;
}

.mini-product-image {
  display: grid;
  place-items: center;
  margin: 1.2rem 0 0;
}

.mini-product-image img {
  width: min(82%, 24rem);
  max-height: 12rem;
  object-fit: contain;
}

.tracking-visual {
  grid-template-columns: minmax(12rem, 0.52fr) minmax(18rem, 1fr);
  gap: 1.2rem;
}

.progress-orbit {
  width: min(100%, 15rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.94) 0 56%, transparent 57%),
    conic-gradient(var(--soft-blue) 0 83%, rgba(51, 51, 51, 0.12) 83% 100%);
  color: var(--navy);
}

.progress-orbit strong {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 400;
  line-height: 0.9;
}

.progress-orbit span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--navy);
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  letter-spacing: 0.02em;
}

.region-table th,
.region-table td {
  padding: 0.82rem 0.7rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.12);
  text-align: left;
}

.region-table th {
  color: var(--blue-dark);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-preview {
  justify-items: stretch;
}

.report-sheet {
  width: min(100%, 28rem);
  padding: 1.35rem;
}

.report-sheet strong {
  display: block;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-sheet ul {
  columns: 2;
  gap: 1.2rem;
  margin: 1rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.platform-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.platform-core,
.platform-module {
  min-height: 8rem;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.platform-core {
  grid-row: span 2;
  background: var(--navy);
  color: var(--paper);
  font-size: clamp(1.4rem, 2vw, 2.25rem);
}

.platform-module {
  background: var(--paper);
  color: var(--navy);
  transition: color 280ms ease, background-color 280ms ease;
}

.platform-module:hover {
  color: var(--paper);
  background: var(--soft-blue);
}

.platform-map-dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.platform-map-dark .platform-module {
  background: rgba(255, 255, 255, 0.045);
  color: var(--paper);
}

.connected-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.72rem;
  align-items: center;
}

.connected-map a,
.connected-map i {
  min-height: 5.5rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--paper);
  text-align: center;
  font-size: clamp(0.78rem, 0.95vw, 0.98rem);
  line-height: 1.25;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.connected-map i {
  min-height: 2.4rem;
  border-color: transparent;
  background: transparent;
  color: var(--soft-blue);
  font-style: normal;
  font-size: 1.2rem;
}

.connected-map a:hover,
.connected-map a:focus-visible {
  border-color: rgba(153, 193, 215, 0.78);
  background: rgba(153, 193, 215, 0.14);
  color: var(--soft-blue);
}

.architecture-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.85fr;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.architecture-column {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  min-height: 24rem;
  padding: clamp(1.35rem, 2.8vw, 2.2rem);
  background: rgba(255, 255, 255, 0.74);
}

.architecture-column h3 {
  margin: 0 0 0.7rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.architecture-column a,
.architecture-column > span {
  display: grid;
  gap: 0.24rem;
  padding: 0.72rem 0;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: 0.045em;
  transition: color 220ms ease;
}

.architecture-column a:hover {
  color: var(--soft-blue);
}

.architecture-column strong {
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.architecture-column span span,
.architecture-column a span {
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.clinic-network-grid {
  --clinic-network-height: clamp(32rem, 43vw, 42rem);
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(20rem, 0.68fr);
  gap: clamp(1.2rem, 2.8vw, 2.4rem);
  align-items: stretch;
}

.clinic-map-shell {
  min-width: 0;
}

.clinic-map {
  height: var(--clinic-network-height);
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 34%, rgba(153, 193, 215, 0.18), transparent 34%),
    linear-gradient(135deg, #f5f6f7, #e8ecef);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.clinic-map .leaflet-tile {
  filter: grayscale(1) saturate(0) contrast(0.92) brightness(1.05);
}

.clinic-map .leaflet-container {
  font-family: inherit;
}

.clinic-map .leaflet-control-zoom a,
.clinic-map .leaflet-control-attribution {
  border-color: rgba(51, 51, 51, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.clinic-map .leaflet-control-attribution {
  font-size: 0.68rem;
  letter-spacing: 0;
}

.clinic-marker {
  --marker-color: var(--soft-blue);
  display: grid;
  place-items: center;
  width: 2.125rem !important;
  height: 2.125rem !important;
  background: transparent;
  filter: drop-shadow(0 0.5rem 0.8rem rgba(23, 36, 48, 0.2));
}

.clinic-marker-dealer {
  --marker-color: #d8bf73;
}

.clinic-marker-symbol {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--marker-color);
  mask: url("./favicon.svg") center / contain no-repeat;
  -webkit-mask: url("./favicon.svg") center / contain no-repeat;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.map-legend span::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--legend-color, var(--soft-blue));
}

.map-legend .is-dealer {
  --legend-color: #d8bf73;
}

.clinic-popup {
  min-width: 13rem;
  color: var(--ink);
  font-family: "Cairo", Arial, sans-serif;
  letter-spacing: 0;
}

.clinic-popup strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.clinic-popup span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.45;
}

.clinic-map-fallback {
  display: grid;
  place-items: center;
  min-height: inherit;
  padding: 2rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0;
}

.map-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  letter-spacing: 0;
}

.clinic-info-panel,
.arveg-contact {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.clinic-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: var(--clinic-network-height);
  padding: clamp(1.35rem, 2.4vw, 2rem);
}

.clinic-info-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.clinic-detail-list,
.arveg-contact dl {
  display: grid;
  gap: 1rem;
  margin: clamp(1.4rem, 2.4vw, 2rem) 0 0;
}

.clinic-detail-list div,
.arveg-contact dl div {
  display: grid;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(51, 51, 51, 0.12);
}

.clinic-detail-list dt,
.arveg-contact dt {
  color: var(--blue-dark);
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.clinic-detail-list dd,
.arveg-contact dd,
.arveg-contact p {
  margin: 0;
  color: var(--muted);
  font-family: inherit;
  line-height: 1.65;
  letter-spacing: 0;
}

.arveg-contact dd a {
  color: var(--blue-dark);
  transition: color 240ms ease;
}

.arveg-contact dd a:hover {
  color: var(--soft-blue);
}

.clinic-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.arveg-contact {
  display: grid;
  grid-template-columns: minmax(16rem, 0.92fr) minmax(18rem, 1.08fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  margin-top: clamp(1.2rem, 2.8vw, 2.4rem);
  padding: clamp(1.45rem, 3vw, 2.5rem);
}

.arveg-contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.arveg-contact p {
  margin-top: 1rem;
}

.tech-visual {
  position: relative;
}

.tech-screen {
  min-height: clamp(22rem, 36vw, 31rem);
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  padding: clamp(1.2rem, 2.6vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(244, 244, 244, 0.78)),
    repeating-linear-gradient(90deg, transparent 0 4.2rem, rgba(153, 193, 215, 0.14) 4.2rem 4.25rem);
  box-shadow: var(--shadow);
  transition: border-color 300ms ease, transform 300ms ease;
}

.tech-visual:hover .tech-screen {
  border-color: rgba(153, 193, 215, 0.88);
  transform: translateY(-4px);
}

.tech-screen-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--blue-dark);
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
}

.tech-pulse-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.tech-pulse-row span {
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(153, 193, 215, 0.42);
  animation: signalPulse 2200ms ease-in-out infinite;
}

.tech-pulse-row span:nth-child(2) {
  animation-delay: 180ms;
}

.tech-pulse-row span:nth-child(3) {
  animation-delay: 360ms;
}

.tech-pulse-row span:nth-child(4) {
  animation-delay: 540ms;
}

.tech-node-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.tech-node {
  min-height: 7.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  transition: border-color 280ms ease, transform 280ms ease;
}

.tech-node.is-primary,
.tech-node:hover {
  border-color: rgba(153, 193, 215, 0.9);
  transform: translateY(-2px);
}

.tech-node span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--soft-blue);
  font-size: 0.72rem;
  line-height: 1;
}

.tech-node strong {
  color: var(--navy);
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.benefit-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.benefit-band div {
  min-height: 15rem;
  padding: clamp(1.3rem, 2.6vw, 2rem);
  background: var(--paper);
}

.benefit-band span {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--soft-blue);
  font-size: 0.78rem;
  line-height: 1;
}

.benefit-band strong {
  display: block;
  color: var(--navy);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.55vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.benefit-band p,
.testimonial-slot p {
  color: var(--muted);
  font-family: inherit;
  line-height: 1.68;
  letter-spacing: 0;
}

.testimonial-slot {
  min-height: 16rem;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border: 1px dashed rgba(51, 51, 51, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.testimonial-slot h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 1.65vw, 1.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: inherit;
  letter-spacing: 0;
}

.spec-table th,
.spec-table td {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: var(--navy);
  font-family: inherit;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-form .field-full > .button {
  width: 100%;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.8rem 0 0;
  color: var(--blue-dark);
  font-family: inherit;
  font-size: 0.92rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.download-meta {
  display: grid;
  gap: 0.42rem;
  margin: 1.2rem 0 0;
  padding: 0;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.88rem;
  line-height: 1.55;
  letter-spacing: 0;
  list-style: none;
}

.download-meta li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.58rem;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}

.download-meta strong {
  color: var(--blue-dark);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.access-panel {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(1.45rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.access-panel .contact-form {
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.access-note {
  margin-top: 1rem;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.92rem;
  line-height: 1.65;
  letter-spacing: 0;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 8px;
  background: var(--navy);
  color: var(--paper);
}

.cta-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.cta-section p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: inherit;
  line-height: 1.7;
  letter-spacing: 0;
}

.cta-section .button {
  color: var(--paper);
}

.cta-section .button-secondary {
  color: var(--soft-blue);
}

.site-footer {
  padding: clamp(2rem, 4vw, 3rem) var(--page-pad) 1.4rem;
  background: var(--topbar);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(10rem, 14rem) 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}

.footer-brand {
  display: inline-flex;
  width: max-content;
}

.footer-brand img {
  width: clamp(130px, 11vw, 190px);
  height: auto;
  display: block;
}

.footer-subscribe {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2vw, 1.8rem);
  text-align: right;
}

.footer-subscribe p {
  width: min(36rem, 100%);
  margin: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.25rem);
  line-height: 1.35;
  letter-spacing: 0.055em;
}

.footer-divider {
  height: 1px;
  margin: clamp(1.6rem, 3vw, 2.2rem) 0;
  background: rgba(51, 51, 51, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 4.2rem);
  align-items: start;
}

.footer-column h4 {
  margin: 0 0 1rem;
  font-size: clamp(0.74rem, 0.82vw, 0.9rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column p,
.footer-column a {
  color: var(--ink);
  font-family: inherit;
  font-size: 0.92rem;
  line-height: 1.7;
  letter-spacing: 0;
}

.footer-column nav {
  display: grid;
  gap: 0.45rem;
}

.footer-column a:hover,
.footer-legal a:hover {
  color: var(--soft-blue);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.footer-legal,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.footer-legal a {
  font-family: inherit;
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(51, 51, 51, 0.34);
  border-radius: 50%;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 280ms ease, background-color 280ms ease, border-color 280ms ease;
}

.footer-social a:hover {
  color: var(--paper);
  background: var(--soft-blue);
  border-color: var(--soft-blue);
}

.footer-bottom {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.3;
}

.footer-bottom p {
  margin: 0;
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    align-items: center;
    min-height: auto;
    padding: 1.25rem var(--page-pad);
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
  }

  .main-nav {
    grid-row: 2;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.95rem;
    padding: 0.6rem 0 0.2rem;
    font-size: clamp(0.82rem, 2.3vw, 1rem);
    white-space: normal;
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .technology-strip {
    --strip-arrow-space: 2.75rem;
    grid-row: 3;
    margin-top: 0;
    padding-top: 0.75rem;
  }

  .technology-strip.is-open {
    display: grid;
    grid-template-columns: var(--strip-arrow-space) minmax(0, 1fr) var(--strip-arrow-space);
    align-items: center;
  }

  .technology-strip-scroller {
    grid-column: 2;
    align-self: center;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding-right: 0;
    scrollbar-width: none;
  }

  .technology-strip-scroller::-webkit-scrollbar {
    display: none;
  }

  .technology-strip.is-scrollable .technology-strip-arrow {
    position: static;
    display: inline-flex;
    align-self: center;
    justify-self: center;
    transform: none;
  }

  .technology-strip-arrow-prev {
    grid-column: 1;
  }

  .technology-strip-arrow-next {
    grid-column: 3;
  }

  .technology-strip-track {
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    margin-right: 0;
  }

  .technology-strip-track a {
    font-size: clamp(0.72rem, 2.25vw, 0.9rem);
  }

  .nav-separator {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-speeddhi {
    background-position: center;
  }

  .hero-platform {
    grid-template-columns: 1fr;
    gap: clamp(1.4rem, 4vw, 2.6rem);
  }

  .hero-ecosystem {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.8rem);
  }

  .ecosystem-hero-media {
    justify-self: start;
    width: min(76vw, 34rem);
  }

  .ecosystem-hero-panel {
    justify-self: start;
    width: min(100%, 42rem);
  }

  .hero-workflow-strip {
    justify-content: flex-start;
  }

  .hero-platform.hero-speeddhi {
    grid-template-columns: 1fr;
  }

  .hero-platform .hero-copy {
    max-width: 64rem;
  }

  .hero-room {
    justify-self: center;
    width: min(80vw, 42rem);
    margin: 0;
  }

  .hero-room img {
    transform: translate(-1.2rem, -0.85rem);
  }

  .hero-product {
    width: min(78vw, 42rem);
    margin: -0.4rem 0 0;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-story-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-media-card {
    position: static;
  }

  .operation-stage,
  .operation-stage-feature {
    grid-template-columns: 1fr;
  }

  .connected-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .architecture-grid {
    grid-template-columns: 1fr;
  }

  .platform-core {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .history-content,
  .history-item:nth-child(even) .history-content {
    grid-template-columns: 1fr;
  }

  .history-item:nth-child(even) .history-copy {
    order: 0;
  }

  .clinic-network-grid,
  .arveg-contact,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .clinic-map {
    height: 28rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    letter-spacing: 0.055em;
  }

  .brand img {
    width: min(56vw, 190px);
  }

  .hero {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .ecosystem-hero-media {
    width: min(88vw, 28rem);
  }

  .hero-ecosystem .page-title {
    max-width: 100%;
    font-size: clamp(1.85rem, 8.4vw, 3.2rem);
    line-height: 1.03;
    letter-spacing: 0.055em;
    overflow-wrap: anywhere;
  }

  .ecosystem-hero-panel {
    width: 100%;
  }

  .hero-ecosystem .hero-subtitle {
    max-width: 100%;
    font-size: clamp(1.05rem, 4.7vw, 1.45rem);
    overflow-wrap: anywhere;
  }

  .hero-ecosystem .hero-text {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-workflow-strip {
    max-width: 100%;
  }

  .hero-speeddhi {
    background: var(--panel);
  }

  .hero-platform.hero-speeddhi {
    background: var(--panel);
  }

  .hero-product {
    justify-self: center;
    width: min(96vw, 31rem);
    margin-top: 0;
  }

  .hero-room {
    width: min(84vw, 29rem);
    margin-top: 0.4rem;
  }

  .hero-room img {
    transform: translate(-0.55rem, -0.45rem);
  }

  .gradient-title,
  .page-title {
    font-size: clamp(2.35rem, 12.5vw, 4.5rem);
    line-height: 0.95;
  }

  .hero-subtitle {
    font-size: clamp(1.15rem, 5.5vw, 1.85rem);
  }

  .clinic-map {
    height: 22rem;
  }

  .clinic-info-panel {
    height: auto;
  }

  .clinic-panel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions,
  .cta-actions,
  .footer-subscribe,
  .footer-meta {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .split,
  .footer-top,
  .cta-section,
  .product-compare-cta,
  .access-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .product-detail-section {
    padding-top: 1.35rem;
  }

  .product-main-image {
    min-height: 20rem;
  }

  .product-main-image img,
  .product-main-image-xl img {
    width: min(112%, 34rem);
    transform: translateX(-8%);
  }

  .product-main-image-xl img {
    transform: translateX(-8%) scale(1.04);
  }

  .product-main-image-multipen img {
    width: min(100%, 34rem);
    transform: none;
  }

  .image-hotspot {
    width: 0.82rem;
    height: 0.82rem;
  }

  .image-hotspot-tooltip {
    max-width: min(12rem, 58vw);
    font-size: 0.72rem;
  }

  .product-spec-grid {
    grid-template-columns: 1fr;
  }

  .product-spec-grid div,
  .product-spec-grid div:nth-child(2n),
  .product-spec-grid div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-spec-grid div:last-child {
    border-bottom: 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .flow-row,
  .timeline,
  .footer-grid,
  .benefit-band,
  .tech-node-grid,
  .platform-map {
    grid-template-columns: 1fr;
  }

  .planner-mockup,
  .tracking-visual {
    grid-template-columns: 1fr;
  }

  .stage-visual {
    min-height: auto;
  }

  .transfer-diagram,
  .doctor-flow,
  .region-table {
    min-width: 34rem;
  }

  .stage-visual-scroll,
  .tracking-visual {
    justify-content: start;
    overflow-x: auto;
  }

  .connected-map {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 0.4rem;
  }

  .connected-map a {
    flex: 0 0 12rem;
  }

  .connected-map i {
    flex: 0 0 2rem;
  }

  .architecture-column {
    min-height: auto;
  }

  .ecosystem-step {
    grid-template-columns: 3.1rem 1fr;
    min-height: 4.35rem;
    padding: 0.95rem 1rem;
  }

  .ecosystem-step small {
    font-size: 0.8rem;
  }

  .ecosystem-card-media {
    min-height: 9.5rem;
  }

  .history-timeline {
    gap: 2.4rem;
  }

  .history-timeline::before {
    left: 0.32rem;
  }

  .history-item {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding-left: 1.75rem;
  }

  .history-year::after {
    left: -1.76rem;
    right: auto;
    top: 0.12rem;
  }

  .history-media {
    min-height: 13rem;
  }

  .section-heading h1,
  .section-heading h2,
  .compact-heading {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table th {
    padding-bottom: 0.25rem;
    border-bottom: 0;
  }

  .spec-table td {
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
