:root {
  --paper: #f4f5f4;
  --white: #ffffff;
  --ink: #2b2d2d;
  --muted: #5f6468;
  --line: #6a6d6c;
  --soft-line: #d8dcda;
  --blue: #e8f0f4;
  --gray: #e4e6e5;
  --dark-gray: #575b59;
  --page-x: 10.5%;
  --type-hero: clamp(43px, 3.34vw, 62px);
  --type-section: clamp(30px, 2.84vw, 48px);
  --type-feature: clamp(24px, 2.16vw, 38px);
  --type-card-title: clamp(22px, 1.6vw, 30px);
  --type-body: clamp(16px, 1.05vw, 20px);
  --type-small: 14px;
  --type-label: 12px;
  --weight-display: 600;
  --weight-brand: 1000;
  --weight-brand-axis: 1600;
  --weight-heading: 500;
  --weight-body: 500;
  --weight-label: 700;
  --leading-display: 1.1;
  --leading-heading: 1.1;
  --leading-feature: 1.12;
  --leading-card: 1.16;
  --leading-body: 1.7;
  --leading-small: 1.6;
  --leading-label: 1.4;
  --leading-nav: 1.35;
  --nav-underline-thickness: 2px;
  --nav-panel-underline-thickness: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Microsoft YaHei", Arial, Helvetica, sans-serif;
  font-weight: 500;
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  --nav-theme: var(--white);
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(28px, 5vw, 88px);
  padding: 12px var(--page-x);
  background: var(--white);
  border-bottom: 0;
  box-shadow: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.site-header-menu-open {
  background: var(--nav-theme);
  color: var(--ink);
  border-bottom-color: transparent;
}

.site-header-home {
  --nav-theme: var(--white);
}

.site-header-products {
  --nav-theme: var(--white);
}

.site-header-about {
  --nav-theme: var(--white);
}

.site-header-contact {
  --nav-theme: var(--white);
}

.brand-mark {
  position: relative;
  z-index: 31;
  width: clamp(136px, 8.8vw, 154px);
  height: 42px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: auto;
  max-width: none;
  height: clamp(52px, 3.2vw, 58px);
  filter: invert(1);
  transform: translateY(-1px);
}

.brand-mark span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-nav {
  position: relative;
  z-index: 31;
  display: flex;
  gap: clamp(34px, 4.4vw, 70px);
  align-items: center;
  font-size: clamp(14px, 0.82vw, 16px);
  font-weight: 700;
  letter-spacing: 0;
}

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

.nav-hover-bg {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 29;
  height: 64px;
  background: var(--nav-theme);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    background 260ms ease;
}

.site-header-menu-open .nav-hover-bg {
  opacity: 1;
}

.nav-link,
.nav-item {
  position: relative;
}

.nav-item {
  display: flex;
  align-items: center;
  min-height: 64px;
  margin: -12px 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: var(--nav-underline-thickness);
  background: currentColor;
  opacity: 0;
}

.nav-link:hover::after,
.nav-item:hover > .nav-link::after,
.nav-item:focus-within > .nav-link::after,
.nav-link[data-active="true"]::after {
  opacity: 1;
}

.nav-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: 64px;
  z-index: 29;
  height: clamp(720px, 78vh, 840px);
  padding: clamp(66px, 6vw, 112px) var(--page-x) clamp(76px, 7vw, 128px);
  background: var(--nav-theme);
  color: var(--ink);
  border-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 220ms ease,
    background 260ms ease;
}

.nav-panel[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-panel-content {
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(420px, 0.9fr) minmax(260px, 0.52fr);
  gap: clamp(42px, 6vw, 104px);
  animation: nav-content-reveal 260ms ease both;
}

.nav-panel-intro {
  max-width: 340px;
  align-self: start;
  padding-top: 0;
  transform: translateY(-8px);
  color: var(--ink);
  font-size: clamp(22px, 1.55vw, 30px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.58;
  text-transform: none;
}

@keyframes nav-content-reveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-panel-intro p {
  margin: 0;
}

.nav-panel-main,
.nav-panel-list {
  display: flex;
  flex-direction: column;
}

.nav-panel-main {
  gap: 0;
  border-top: 1px solid var(--soft-line);
}

.nav-panel-main a {
  display: block;
  position: relative;
  width: fit-content;
  padding: 14px 0 18px;
  color: var(--ink);
  font-size: clamp(46px, 4vw, 72px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  text-decoration: none;
  text-transform: none;
}

.nav-panel-main a::after,
.nav-panel-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: var(--nav-panel-underline-thickness);
  min-height: var(--nav-panel-underline-thickness);
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.nav-panel-main a:hover,
.nav-panel-main a:focus-visible {
  color: var(--ink);
  opacity: 1;
}

.nav-panel-main a:hover::after,
.nav-panel-main a:focus-visible::after,
.nav-panel-list a:hover::after,
.nav-panel-list a:focus-visible::after {
  transform: scaleX(1);
}

.nav-panel-main a:last-child {
  border-bottom: 0;
}

.nav-panel-list {
  gap: 0;
  padding-top: 14px;
  border-top: 1px solid var(--soft-line);
  transform: translateY(-2px);
}

.nav-panel-list-title {
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--soft-line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-panel-list a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  position: relative;
  width: fit-content;
  padding: 0 0 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-panel-list a:not(:has(span)) {
  display: block;
  letter-spacing: 0.18em;
}

.nav-panel-list a span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.nav-panel-list a + a {
  margin-top: 8px;
}

.nav-panel-list a:hover,
.nav-panel-list a:focus-visible {
  color: var(--ink);
  opacity: 1;
}

.contact-grid a:hover {
  background: var(--dark-gray);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 64px;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 64px 0 0;
  background-image: var(--asset-brand-hero-product-system-webp);
  background-color: #eaf3f9;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-visual img,
.hero-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: min(904px, 47vw);
  min-height: clamp(410px, 22.8vw, 460px);
  padding: clamp(78px, 4.8vw, 94px) 43px clamp(62px, 3.8vw, 76px) var(--page-x);
  background: var(--white);
  clip-path: polygon(0 0, 68% 0, 78% 16%, 100% 16%, 100% 100%, 0 100%);
}

.hero-copy h1 {
  margin: 0;
  color: #303030;
  font-size: var(--type-hero);
  font-weight: var(--weight-display);
  line-height: 1.06;
  letter-spacing: 0;
  animation: hero-text-reveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.hero-copy h1,
section h2 {
  margin: 0;
  color: #303030;
  font-weight: var(--weight-heading);
  letter-spacing: 0;
}

section h2 {
  font-size: var(--type-section);
  line-height: 1.08;
}

.hero-copy p {
  max-width: 690px;
  margin: clamp(36px, 2.4vw, 48px) 0 0;
  color: #303030;
  font-size: var(--type-body);
  line-height: 1.68;
  font-weight: var(--weight-body);
  animation: hero-text-reveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 300ms both;
}

@keyframes hero-text-reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label,
.statement-label {
  margin: 0;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.statement-section {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(56px, 6vw, 132px);
  align-items: center;
  padding: clamp(82px, 7vw, 128px) var(--page-x);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 1.3px, transparent 2px) 0 0 / 24px 24px,
    #050505;
  color: #fff;
}

.statement-copy h2 {
  max-width: 1160px;
  margin-top: 0;
  color: #fff;
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
  line-height: 1.12;
  text-align: left;
}

.statement-copy p {
  max-width: 780px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.72;
  text-align: left;
}

.statement-copy h2,
.statement-copy p {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.section-in-view .statement-copy h2,
.section-in-view .statement-copy p {
  opacity: 1;
  transform: translateY(0);
}

.statement-copy p {
  transition-delay: 160ms;
}

.statement-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 220ms;
  will-change: opacity, transform;
}

.statement-brand img {
  width: min(100%, 746px);
  max-height: 292px;
  object-fit: contain;
  transform: translateY(-9%);
}

.section-in-view .statement-brand {
  opacity: 1;
  transform: translateY(0);
}

.lifecycle-section {
  border-top: 1px solid #e1e5e4;
  padding: clamp(72px, 7vw, 132px) var(--page-x);
  background: #eef1f1;
}

.platform-diagram {
  --technology-card-gap: clamp(14px, 1.3vw, 22px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(64px, 8vw, 138px);
  row-gap: clamp(24px, 3vw, 42px);
  max-width: 1500px;
  margin: 0 auto;
}

.platform-intro {
  position: sticky;
  top: clamp(96px, 10vh, 138px);
  grid-column: 1;
  align-self: start;
  max-width: 620px;
  margin: 0;
  padding-top: 0;
  text-align: left;
}

.platform-intro h2,
.platform-intro .section-label,
.platform-intro > p:not(.section-label),
.technology-card,
.technology-feature > div {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.section-in-view .platform-intro h2,
.section-in-view .platform-intro .section-label,
.section-in-view .platform-intro > p:not(.section-label),
.section-in-view .technology-card,
.section-in-view .technology-feature > div {
  opacity: 1;
  transform: translateY(0);
}

.platform-intro .section-label {
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.platform-intro h2 {
  max-width: 640px;
  margin: 14px 0 0;
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
  line-height: 1.12;
  text-wrap: balance;
}

.platform-intro > p:not(.section-label) {
  max-width: 790px;
  margin: clamp(14px, 1.4vw, 22px) 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.72;
  transition-delay: 40ms;
}

.technology-card-grid {
  grid-column: 2;
  justify-self: stretch;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--technology-card-gap);
}

.technology-card-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--technology-card-gap);
}

.technology-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(12px, 1vw, 18px);
  min-height: clamp(190px, 14vw, 252px);
  padding: clamp(22px, 2vw, 34px);
  background: #fff;
  border: 1px solid #e0e4e3;
  border-radius: 0;
  transition-delay: calc(40ms + (var(--reveal-index, 0) * 35ms));
}

.technology-card-row .technology-card {
  min-height: clamp(160px, 10vw, 196px);
  padding: clamp(18px, 1.6vw, 26px);
}

.technology-card-icon,
.technology-feature-icon {
  width: clamp(56px, 4vw, 64px);
  height: clamp(56px, 4vw, 64px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4b5350;
  opacity: 1;
}

.technology-card-icon {
  width: clamp(42px, 3vw, 52px);
  height: clamp(42px, 3vw, 52px);
  justify-self: start;
  margin-bottom: 0;
}

.technology-feature-icon {
  margin-bottom: 0;
}

.technology-feature-label {
  display: block;
  margin-bottom: clamp(14px, 1.2vw, 22px);
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.technology-card-icon svg,
.technology-feature-icon svg {
  width: clamp(52px, 3.6vw, 60px);
  height: clamp(52px, 3.6vw, 60px);
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.technology-card-icon svg {
  width: clamp(34px, 2.3vw, 42px);
  height: clamp(34px, 2.3vw, 42px);
}

.technology-card-copy {
  width: 100%;
  min-width: 0;
  padding-right: 0;
}

.technology-card h3 {
  margin: 0;
  color: #202020;
  font-size: clamp(22px, 1.45vw, 27px);
  font-weight: var(--weight-heading);
  line-height: 1.18;
}

.technology-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: clamp(13px, 0.78vw, 14px);
  font-weight: var(--weight-body);
  line-height: 1.52;
}

.technology-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: clamp(26px, 3vw, 52px);
  min-height: clamp(132px, 9.6vw, 176px);
  padding: clamp(22px, 1.9vw, 34px);
  background: #fff;
  color: var(--ink);
  border: 1px solid #e0e4e3;
  border-radius: 0;
}

.technology-feature > div:first-child {
  display: grid;
  grid-template-columns: clamp(58px, 4.4vw, 70px) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(14px, 1.4vw, 24px);
  transition-delay: 80ms;
}

.technology-feature > div:last-child {
  transition-delay: 140ms;
}

.technology-feature strong {
  display: block;
  color: #202020;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.18;
}

.technology-feature-copy {
  display: grid;
  gap: 10px;
  width: min(100%, 680px);
  justify-self: end;
  align-self: center;
  min-height: auto;
  padding: 0;
  color: #5d6562;
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.7;
}

.technology-feature-copy p {
  margin: 0;
}

.architecture-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 3.2vw, 54px) var(--page-x) clamp(28px, 2.8vw, 46px);
  background: #f5f6f6;
  overflow: hidden;
  scroll-margin-top: 64px;
}

.architecture-section h2 {
  max-width: 980px;
  margin-top: 14px;
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
}

.architecture-section > .section-label,
.architecture-section > h2 {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.architecture-section > h2 {
  transition-delay: 70ms;
}

.product-carousel-in-view > .section-label,
.product-carousel-in-view > h2 {
  opacity: 1;
  transform: translateY(0);
}

.product-carousel {
  position: relative;
  margin-top: clamp(26px, 2.7vw, 42px);
}

.product-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.carousel-button {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #494b51;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.carousel-button::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.carousel-button-prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.carousel-button-next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

.carousel-button:hover {
  background: #5a5d64;
  transform: translateY(-1px);
}

.carousel-button:active {
  background: #6a6d74;
  transform: translateY(0);
}

.carousel-button:focus-visible {
  outline: none;
  background: #6a6d74;
}

.carousel-button:hover::before {
  border-color: #fff;
}

.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  touch-action: pan-x pan-y;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  --reveal-index: 0;
  scroll-margin-top: 96px;
  min-height: clamp(390px, 28vw, 488px);
  display: grid;
  grid-template-rows: minmax(190px, 0.58fr) minmax(162px, 0.42fr);
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
}

.product-card:focus-visible {
  outline: 2px solid #202020;
  outline-offset: 4px;
}

.architecture-section .product-card {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(160ms + (var(--reveal-index) * 90ms));
  will-change: opacity, transform;
}

.product-carousel-in-view .product-card {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.product-card-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e8eceb;
}

.product-card-media img {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  object-position: center;
}

.product-card-image {
  transform-origin: center;
}

.product-card-image-symcns {
  max-width: 64%;
  max-height: 64%;
  transform: translateY(-2px);
}

.product-card-image-symarm {
  max-width: 70%;
  max-height: 70%;
  transform: translateY(-10px);
}

.product-card-image-symmove {
  max-width: 76%;
  max-height: 70%;
  transform: translateY(-10px);
}

.product-card-image-symteach {
  max-width: 58%;
  max-height: 72%;
  transform: translateY(-18px);
}

.product-card-image-symverse {
  max-width: 78%;
  max-height: 72%;
  transform: translateY(-14px);
}

.product-card-image-aion {
  max-width: 58%;
  max-height: 74%;
  transform: translateY(4px);
}

.product-card-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 1.6vw, 26px);
  padding-bottom: clamp(42px, 3.2vw, 58px);
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.product-card-meta span {
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: var(--weight-label);
}

.product-card-copy h3 {
  margin: 14px 0 0;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.05;
}

.product-card-copy p {
  margin: 10px 0 0;
  font-size: var(--type-small);
  font-weight: var(--weight-body);
}

.product-card-copy small {
  margin-top: 14px;
  padding-top: 14px;
  padding-right: 118px;
  color: var(--muted);
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.7;
}

.product-card-link {
  position: absolute;
  right: clamp(18px, 1.6vw, 26px);
  bottom: clamp(18px, 1.6vw, 26px);
  align-self: flex-end;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 0;
  padding-top: 0;
  color: #202020;
  font-size: var(--type-small);
  font-weight: var(--weight-label);
  line-height: 1;
  text-decoration: none;
}

.product-card-link::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1.4px solid currentColor;
  border-right: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-0.5px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy h1,
  .hero-copy p,
  .statement-copy h2,
  .statement-copy p,
  .statement-brand,
  .platform-intro h2,
  .platform-intro > p:not(.section-label),
  .technology-card,
  .technology-feature > div,
  .architecture-section > .section-label,
  .architecture-section > h2,
  .architecture-section .product-card {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

.feature-section {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(64px, 8vw, 150px);
  padding: clamp(88px, 8vw, 138px) var(--page-x);
  background: #eef3f6;
  overflow: hidden;
}

.feature-section:nth-of-type(even) {
  background: #666a68;
}

.feature-section-1 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: clamp(86px, 8vw, 132px) var(--page-x) clamp(72px, 6.5vw, 108px);
  background: #eef3f6;
}

.feature-section-1 .feature-media {
  position: absolute;
  inset: 0;
  min-height: auto;
}

.feature-section-1 .feature-media img {
  object-fit: cover;
  object-position: center;
}

.feature-section-1 .feature-card {
  width: min(620px, 36vw);
  min-height: clamp(360px, 24vw, 455px);
  margin-left: 0;
  margin-right: auto;
}

.feature-section.feature-section-2 {
  grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(48px, 6vw, 108px);
  background: #e7ebec;
}

.feature-media {
  position: relative;
  min-height: clamp(420px, 33vw, 640px);
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  opacity: 1;
}

.feature-section-2 .feature-media {
  position: absolute;
  inset: clamp(56px, 5.8vw, 96px) var(--page-x) clamp(56px, 5.8vw, 96px) 46%;
  width: auto;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: transparent;
}

.feature-section-2 .feature-media::after {
  display: none;
}

.feature-section-2 .feature-media img {
  width: auto;
  height: auto;
  max-width: 118%;
  max-height: 112%;
  object-fit: contain;
  object-position: center right;
  transform: scale(1.18) translate(1%, -1%);
}

.feature-card {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 430px;
  margin-left: 0;
  padding: clamp(36px, 3.5vw, 52px);
  background: #fff;
}

.feature-section-2 .feature-card {
  grid-column: 1;
  grid-row: 1;
  width: min(650px, 40vw);
  min-height: clamp(430px, 28vw, 520px);
  align-self: center;
  margin-top: 0;
  padding: clamp(44px, 4.3vw, 72px);
}

.feature-card h2 {
  margin-top: 26px;
  font-size: clamp(36px, 3.2vw, 56px);
  line-height: 1.08;
}

.feature-section-1 .feature-card h2 {
  font-size: clamp(34px, 2.8vw, 50px);
}

.feature-card p:last-child {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.72;
}

.feature-section-1 .feature-card p:last-child {
  margin-top: 28px;
  font-size: clamp(15px, 0.95vw, 18px);
}

.applications-section,
.team-section,
.contact-section {
  padding: clamp(88px, 10vw, 150px) var(--page-x);
}

.applications-section {
  background: #fff;
}

.applications-section .section-label {
  display: block;
  width: fit-content;
}

.applications-section h2 {
  display: block;
  clear: both;
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.12;
}

.capability-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(34px, 4vw, 54px);
  padding: 0;
  border: 1px solid #d4d8d7;
  background: #e7ebec;
}

.capability-map::before,
.capability-map::after {
  display: none;
}

.capability-core {
  grid-column: 1 / -1;
  position: relative;
  left: auto;
  top: auto;
  z-index: 3;
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 20px 28px;
  background: #4f5351;
  color: #fff;
  text-align: left;
  transform: none;
  border: 0;
}

.capability-core span {
  font-size: clamp(30px, 2.5vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.capability-core strong {
  margin-top: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.capability-node {
  position: relative;
  z-index: 2;
  min-height: 188px;
  padding: clamp(24px, 2.2vw, 36px);
  background: #f7f8f7;
  border-top: 1px solid #d4d8d7;
  border-left: 1px solid #d4d8d7;
}

.capability-node:nth-child(3n + 2) {
  border-left: 0;
}

.capability-node span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.capability-node h3 {
  max-width: 360px;
  margin: 38px 0 0;
  font-size: clamp(23px, 1.55vw, 30px);
  font-weight: 400;
  line-height: 1.14;
}

.capability-node p {
  max-width: 360px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.team-section {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: clamp(44px, 8vw, 150px);
  background: var(--paper);
}

.team-section h2 {
  margin-top: 30px;
  font-size: clamp(42px, 4.3vw, 72px);
  line-height: 1.08;
}

.team-section > p {
  margin: 0;
  align-self: end;
  color: var(--muted);
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.76;
}

.contact-section {
  background: #050505;
  color: #fff;
  padding-bottom: 0;
}

.contact-section h2 {
  max-width: 1220px;
  margin-top: 30px;
  color: #fff;
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
  line-height: 1.08;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-grid a {
  min-height: 132px;
  display: flex;
  align-items: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.12;
}

.footer-menu {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(620px, 1.72fr) minmax(220px, 0.6fr);
  gap: clamp(24px, 3vw, 52px);
  align-items: start;
  margin-top: clamp(24px, 2.6vw, 40px);
  padding-top: clamp(36px, 3vw, 50px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-column,
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-column .footer-column-title {
  margin-bottom: 10px;
}

.footer-column a:not(.footer-column-title) + a:not(.footer-column-title) {
  margin-top: 0;
}

.footer-column-toggle {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.footer-column-panel {
  display: flex;
  flex-direction: column;
}

.footer-column-chevron {
  display: none;
}

.footer-links {
  display: inline-grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: end;
  justify-self: end;
  column-gap: clamp(22px, 2.4vw, 36px);
}

.footer-menu strong {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-brand strong {
  font-size: clamp(30px, 2.9vw, 52px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.14;
  max-width: none;
  white-space: nowrap;
}

.footer-menu .footer-column-title {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-menu a:hover {
  color: #fff;
}

.footer-social {
  justify-self: end;
  width: min(100%, 260px);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  margin-bottom: 14px;
}

.footer-social-icons span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icons img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 160ms ease;
}

.footer-social-icons span:hover img {
  opacity: 1;
}

.footer-social p {
  margin: 0;
  text-align: right;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 24px;
  margin-top: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.35;
}

.footer-legal > span:first-child {
  margin-right: auto;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
}

.footer-legal .public-security-record {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-legal .public-security-record img {
  width: 18px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.section-shell {
  width: calc(100% - var(--page-x) - var(--page-x));
  margin: 0 auto;
}

.contact-page-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(118px, 10vw, 168px) var(--page-x) clamp(58px, 6vw, 98px);
  background-color: #fff;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.08) 100%),
    var(--asset-brand-hero-product-system-webp);
  background-position:
    center center,
    center clamp(-104px, -9vh, -68px);
  background-repeat: no-repeat;
  background-size:
    100% 100%,
    116% auto;
}

.contact-page .contact-page-hero {
  padding-inline: 0;
}

.contact-page-hero__inner {
  width: calc(100% - var(--page-x) - var(--page-x));
  margin: 0 auto;
}

.contact-page-copy {
  position: relative;
  z-index: 1;
  width: 100%;
}

.contact-page-copy h1 {
  margin: 0;
  color: #202020;
  font-size: var(--type-hero);
  font-weight: var(--weight-display);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-page-copy .section-label + h1 {
  margin-top: clamp(28px, 4vw, 64px);
}

.contact-page-copy > p {
  max-width: 760px;
  margin: clamp(24px, 2.6vw, 42px) 0 0;
  color: #636b68;
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.7;
}

.contact-page-copy small {
  display: block;
  max-width: 720px;
  margin: clamp(22px, 2.2vw, 36px) 0 0;
  color: #636b68;
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.68;
}

.contact-page-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(46px, 7vw, 132px);
  padding: clamp(86px, 9vw, 142px) var(--page-x);
  background: #fff;
}

.contact-page .contact-page-section {
  display: block;
  padding-inline: 0;
}

.contact-page-section__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(46px, 7vw, 132px);
}

.contact-page-heading {
  position: sticky;
  top: 104px;
  align-self: start;
}

.contact-page-heading h2 {
  margin: 0;
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
  line-height: 1.08;
}

.contact-page-list {
  border-top: 0;
}

.contact-page-content {
  display: grid;
  gap: clamp(28px, 3vw, 44px);
}

.contact-page-row {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: 76px minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 3.4vw, 64px);
  align-items: start;
  padding: clamp(30px, 3.4vw, 56px) 0;
  border-bottom: 1px solid #cfd5d3;
}

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

.contact-page .contact-page-row:first-child {
  padding-top: 0;
}

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

.contact-page-row span {
  color: #1f656b;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: 0.18em;
}

.contact-page-row h3 {
  margin: 0;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.12;
}

.contact-page-row p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.78;
}

.contact-page-actions {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cfd5d3;
  border-left: 1px solid #cfd5d3;
}

.contact-page-content .contact-page-actions {
  grid-column: auto;
}

.contact-page-actions a {
  min-height: 112px;
  display: flex;
  align-items: center;
  padding: 26px;
  border-right: 1px solid #cfd5d3;
  border-bottom: 1px solid #cfd5d3;
  color: #202323;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.2;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.contact-page-actions a:hover {
  background: #1f656b;
  color: #fff;
}

.contact-featured {
  padding: 0 var(--page-x) clamp(58px, 6vw, 96px);
  background: #fff;
}

.contact-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  gap: clamp(36px, 6vw, 112px);
  align-items: end;
  min-height: clamp(300px, 32vw, 480px);
  padding: clamp(34px, 4.4vw, 72px) 0;
  border-top: 1px solid #d8dddb;
  border-bottom: 1px solid #d8dddb;
}

.contact-featured-card span,
.contact-index-item span,
.contact-index-toolbar span {
  display: block;
  color: #1f656b;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-featured-card h2 {
  max-width: 900px;
  margin: clamp(26px, 3vw, 48px) 0 0;
  color: #202020;
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
  line-height: 1.04;
}

.contact-featured-card p {
  max-width: 700px;
  margin: clamp(22px, 2vw, 34px) 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.7;
}

.contact-featured-actions {
  display: grid;
  border-top: 1px solid #d8dddb;
}

.contact-featured-actions a {
  display: flex;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid #d8dddb;
  color: #202323;
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.3;
  text-decoration: none;
  transition:
    color 180ms ease,
    padding-left 180ms ease;
}

.contact-featured-actions a:hover {
  color: #1f656b;
  padding-left: 10px;
}

.contact-index {
  padding: clamp(62px, 7vw, 118px) var(--page-x) clamp(82px, 8vw, 140px);
  background: #f7f8f7;
}

.contact-index-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: clamp(28px, 3.2vw, 52px);
  border-bottom: 1px solid #d8dddb;
}

.contact-index-toolbar h2 {
  margin: 0;
  color: #202020;
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
  line-height: 1.08;
}

.contact-index-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid #d8dddb;
}

.contact-index-item {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: clamp(300px, 28vw, 440px);
  padding: clamp(28px, 3vw, 50px);
  border-right: 1px solid #d8dddb;
  border-bottom: 1px solid #d8dddb;
  color: #202020;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.contact-index-item:hover {
  background: #fff;
}

.contact-index-item h3 {
  max-width: 560px;
  margin: clamp(28px, 3vw, 50px) 0 0;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.12;
}

.contact-index-item p {
  max-width: 560px;
  margin: clamp(18px, 1.8vw, 30px) 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.7;
}

.contact-index-item small {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(32px, 3vw, 54px);
  color: #202323;
  font-size: var(--type-small);
  font-weight: var(--weight-label);
  line-height: 1.3;
}

.contact-index-item small::after {
  content: "→";
}

.about-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 96px var(--page-x) 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.5)),
    var(--asset-brand-about-hero-product-system-webp) center top / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.about-page .about-hero {
  padding-inline: 0;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.46));
  pointer-events: none;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(42px, 5vw, 86px) 0;
  text-align: center;
  background: transparent;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 96px);
  padding: clamp(42px, 5vw, 86px) 0;
  text-align: center;
}

.about-hero-copy .section-label {
  color: rgba(255, 255, 255, 0.82);
}

.about-hero__inner h1,
.about-hero-copy h1 {
  max-width: 1060px;
  margin: 0;
  color: #fff;
  font-size: var(--type-hero);
  font-weight: var(--weight-display);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-hero__inner > p,
.about-hero-copy > p:last-child {
  max-width: 820px;
  margin: clamp(34px, 3vw, 52px) 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.72;
}

.about-statement {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 7vw, 130px);
  padding: clamp(88px, 10vw, 150px) var(--page-x);
  background: #fff;
}

.about-page .about-statement {
  display: block;
  padding-inline: 0;
}

.about-statement__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 7vw, 130px);
}

.about-statement h2 {
  max-width: 920px;
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
}

.mission-copy {
  max-width: 760px;
  margin-top: 34px;
}

.mission-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.72;
}

.mission-copy p + p {
  margin-top: 10px;
}

.about-statement__copy {
  max-width: 760px;
}

.about-statement__copy h3,
.capability-content > h3,
.about-team__copy h3 {
  margin: 0;
  color: #202020;
  font-size: var(--type-feature);
  font-weight: var(--weight-heading);
  line-height: 1.12;
}

.about-statement__copy p,
.capability-content > p,
.about-team__copy p {
  margin: clamp(18px, 1.8vw, 30px) 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.72;
}

.about-statement > div > p:last-child {
  max-width: 760px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.72;
}

.about-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 6vw, 118px);
  background: #f4f5f4;
}

.about-page .about-capabilities {
  display: block;
  padding: clamp(88px, 10vw, 150px) 0;
}

.about-capabilities__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 6vw, 118px);
}

.capability-heading {
  position: relative;
  top: auto;
  align-self: start;
}

.capability-heading h2 {
  max-width: 620px;
  margin-top: 0;
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
}

.capability-heading > p:last-child {
  max-width: 520px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.72;
}

.capability-content {
  align-self: start;
}

.capability-content > p {
  max-width: 650px;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.capability-list {
  border-top: 1px solid #cfd5d3;
}

.capability-row {
  display: grid;
  grid-template-columns: 54px minmax(190px, 0.46fr) minmax(230px, 0.54fr);
  gap: clamp(16px, 1.8vw, 30px);
  align-items: start;
  padding: clamp(20px, 2vw, 32px) 0;
  border-bottom: 1px solid #cfd5d3;
}

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

.about-page .capability-row p {
  margin-top: -2px;
}

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

.capability-row span {
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: var(--weight-label);
}

.capability-row h3 {
  margin: 0;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.16;
}

.capability-row p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.62;
}

.about-team {
  background: #fff;
}

.about-page .about-team {
  display: block;
  padding: clamp(88px, 10vw, 150px) 0;
}

.about-team__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 8vw, 150px);
}

.about-team__copy {
  max-width: 780px;
  align-self: end;
}

.about-team h2 {
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
}

.about-page .about-contact {
  padding: clamp(88px, 10vw, 150px) 0 0;
}

.products-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 96px var(--page-x) 0;
  background:
    var(--asset-brand-products-hero-arm-replacement-webp) calc(100% + 210px) calc(50% + 120px) / min(78vw, 1320px) auto no-repeat,
    #fff;
  overflow: hidden;
}

.products-hero img {
  display: none;
}

.products-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  transform: translateY(-7vh);
}

.products-hero h1 {
  margin: 0;
  color: #202020;
  font-size: var(--type-hero);
  font-weight: var(--weight-display);
  line-height: 1.12;
  text-align: left;
}

.products-hero-copy p {
  max-width: 720px;
  margin: clamp(22px, 2vw, 34px) 0 0;
  color: #6b706e;
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.72;
}

.product-platform {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-rows: auto auto;
  row-gap: clamp(20px, 2.2vw, 34px);
  padding: clamp(42px, 3.6vw, 64px) var(--page-x) clamp(48px, 4vw, 72px);
  background: #f7f7f7;
  overflow: hidden;
  scroll-margin-top: 64px;
}

.product-platform-copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.product-platform-copy h2 {
  max-width: 1120px;
  margin: 14px 0 0;
  color: #303030;
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
  line-height: 1.05;
}

.product-platform-copy p {
  margin: 0;
  color: #111;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-platform-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 28px);
  width: 100%;
}

.product-platform .product-carousel {
  width: 100%;
  margin-top: clamp(12px, 1.4vw, 24px);
}

.product-platform-card {
  min-width: 0;
  min-height: clamp(520px, 34vw, 610px);
  display: grid;
  grid-template-rows: 58% 42%;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
}

.product-platform-card-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e8eceb;
}

.product-platform-card-media img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  object-position: center;
}

.product-platform-card-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.2vw, 34px);
}

.product-platform-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-platform-card-meta span,
.product-list-card span,
.product-detail-copy span {
  display: block;
  color: #111;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
}

.product-platform-card-meta a {
  color: #666;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  text-decoration: none;
}

.product-platform-card-copy h3 {
  margin: clamp(18px, 2vw, 28px) 0 0;
  color: #111;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.08;
}

.product-platform-card-copy p {
  margin: 10px 0 0;
  color: #111;
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.35;
  letter-spacing: 0;
}

.product-platform-card-copy small {
  margin-top: auto;
  color: #555;
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.6;
}

.product-solutions {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(320px, 0.38fr) minmax(660px, 0.62fr);
  align-items: start;
  gap: clamp(54px, 7vw, 126px);
  padding: clamp(88px, 8vw, 136px) var(--page-x);
  background: #f7f8f8;
  border-top: 1px solid #e4e8e6;
  border-bottom: 1px solid #e4e8e6;
  scroll-margin-top: 0;
}

.product-solutions h2,
.product-list-heading h2,
.product-detail-heading h2 {
  margin: 0;
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
  line-height: 1.06;
}

.product-solutions h2,
.product-list-heading h2 {
  max-width: 1080px;
  color: #111;
  line-height: 1.08;
}

.product-solutions-heading p {
  max-width: 520px;
  margin: clamp(20px, 2vw, 32px) 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.7;
}

.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.2vw, 52px);
  margin-top: clamp(28px, 2.8vw, 46px);
}

.solution-card-grid-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: min(1100px, 100%);
  margin-top: 0;
}

.solution-card {
  min-height: clamp(520px, 36vw, 660px);
  border: 1px solid #e8ebea;
  background: #fff;
}

.solution-card header {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: clamp(20px, 2.4vw, 44px);
  min-height: clamp(132px, 9vw, 172px);
  padding: clamp(34px, 3vw, 52px);
  border-bottom: 1px solid #eceeed;
}

.solution-card h3 {
  margin: 0;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.1;
}

.solution-card header p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.62;
}

.solution-card-body {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: clamp(20px, 2.4vw, 44px);
  min-height: clamp(360px, 25vw, 488px);
  padding: clamp(34px, 3vw, 52px);
}

.solution-card-icon {
  position: relative;
  width: clamp(150px, 12vw, 220px);
  aspect-ratio: 1;
  align-self: center;
  justify-self: center;
  color: #e9e9e9;
}

.solution-icon-1 {
  background: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M80 35V58M80 102V125M35 80H58M102 80H125' stroke='%23dedede' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M58 58L42 42M102 58L118 42M58 102L42 118M102 102L118 118' stroke='%23eeeeee' stroke-width='1.5' stroke-linecap='round'/%3E%3Crect x='66' y='12' width='28' height='28' rx='7' fill='%23f4f4f4' stroke='%23dddddd'/%3E%3Crect x='66' y='120' width='28' height='28' rx='7' fill='%23f4f4f4' stroke='%23dddddd'/%3E%3Crect x='12' y='66' width='28' height='28' rx='7' fill='%23f4f4f4' stroke='%23dddddd'/%3E%3Crect x='120' y='66' width='28' height='28' rx='7' fill='%23f4f4f4' stroke='%23dddddd'/%3E%3Cpath d='M80 50L107 65.5V94.5L80 110L53 94.5V65.5L80 50Z' fill='%23f1f1f1' stroke='%23d8d8d8'/%3E%3Cpath d='M80 50L107 65.5L80 81L53 65.5L80 50Z' fill='%23fafafa'/%3E%3Cpath d='M53 65.5L80 81V110L53 94.5V65.5Z' fill='%23e7e7e7'/%3E%3Cpath d='M107 65.5L80 81V110L107 94.5V65.5Z' fill='%23dddddd'/%3E%3Cpath d='M80 50L107 65.5M80 50L53 65.5M80 81V110M53 65.5L80 81L107 65.5' stroke='%23d7d7d7' stroke-width='1.2' stroke-linejoin='round'/%3E%3Ccircle cx='80' cy='26' r='3.5' fill='%23d2d2d2'/%3E%3Ccircle cx='80' cy='134' r='3.5' fill='%23d2d2d2'/%3E%3Ccircle cx='26' cy='80' r='3.5' fill='%23d2d2d2'/%3E%3Ccircle cx='134' cy='80' r='3.5' fill='%23d2d2d2'/%3E%3Cpath d='M73 65.5H87M69 73H91M70 88H90M75 95.5H85' stroke='%23f7f7f7' stroke-width='2' stroke-linecap='round' opacity='.85'/%3E%3C/svg%3E") center / contain no-repeat;
}

.solution-icon-1::before {
  content: none;
}

.solution-icon-1::after {
  content: none;
}

.solution-icon-2::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4%;
  width: 50%;
  height: 56%;
  border: 10px solid #e6e6e6;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.solution-icon-2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 76%;
  height: 60%;
  background: #e4e4e4;
  transform: translateX(-50%);
}

.solution-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding: clamp(14px, 1.2vw, 22px) 0 clamp(14px, 1.2vw, 22px) 54px;
  border-bottom: 1px solid #eceeed;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.5;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(22px, 1.8vw, 31px);
  width: 9px;
  height: 9px;
  border: 2px solid #9da3a1;
  border-radius: 50%;
}

.product-list-section {
  padding: clamp(68px, 6vw, 104px) var(--page-x) clamp(54px, 4.4vw, 76px);
  background: #fff;
}

.product-list-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding-bottom: 38px;
  border-bottom: 1px solid #d8dcda;
}

.product-list-heading div {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: var(--weight-label);
}

.product-list-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.24fr) minmax(0, 0.76fr);
  gap: clamp(38px, 5vw, 86px);
  align-items: center;
  min-height: clamp(480px, 40vw, 580px);
  padding: clamp(28px, 3vw, 44px) 0;
  scroll-margin-top: 112px;
}

.product-list-row + .product-list-row {
  border-top: 0;
}

.product-list-row > aside,
.product-list-row > .product-list-grid {
  transform: translateY(clamp(22px, 2.2vw, 36px));
}

.product-list-row aside h3 {
  margin: 0;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.12;
}

.product-list-row aside p {
  max-width: 310px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.58;
  white-space: pre-line;
}

.product-list-row aside a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
  color: #202020;
  font-size: var(--type-small);
  font-weight: var(--weight-label);
  line-height: 1;
  text-decoration: none;
}

.product-list-row aside a::before {
  content: none;
}

.product-list-row aside a::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1.4px solid currentColor;
  border-right: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-0.5px);
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.2vw, 42px);
}

.product-list-card {
  position: relative;
  --product-list-image-offset-x: 0px;
  --product-list-image-offset-y: 0px;
  --product-list-image-scale: 1;
  min-height: clamp(330px, 24vw, 420px);
  display: block;
  padding: clamp(20px, 2vw, 32px);
  background: #f5f6f6;
  color: #202020;
  text-align: left;
  overflow: hidden;
}

.product-list-card img {
  position: absolute;
  top: calc(50% + var(--product-list-image-offset-y));
  left: calc(50% + var(--product-list-image-offset-x));
  width: clamp(200px, 14.5vw, 280px);
  height: clamp(200px, 14.5vw, 280px);
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%) scale(var(--product-list-image-scale));
  transform-origin: center;
  pointer-events: none;
}

.product-list-card--symcns {
  --product-list-image-scale: 1.32;
}

.product-list-card--symcns-apex {
  --product-list-image-offset-x: clamp(15px, 1.15vw, 22px);
}

.product-list-card--symcns-cn {
  --product-list-image-offset-x: clamp(9px, 0.7vw, 13px);
}

.product-list-card--symcns-motion {
  --product-list-image-offset-x: clamp(10px, 0.78vw, 15px);
}

.product-list-card--symarm-lite {
  --product-list-image-offset-x: clamp(14px, 1.04vw, 20px);
  --product-list-image-offset-y: clamp(4px, 0.28vw, 5px);
}

.product-list-card--symteach-nexus {
  --product-list-image-offset-x: clamp(13px, 0.94vw, 18px);
  --product-list-image-offset-y: clamp(5px, 0.36vw, 7px);
}

.product-list-card--aion-serve {
  --product-list-image-offset-x: clamp(10px, 0.78vw, 15px);
  --product-list-image-offset-y: clamp(-10px, -0.52vw, -7px);
}

.product-list-card div {
  position: absolute;
  left: clamp(20px, 2vw, 32px);
  right: clamp(20px, 2vw, 32px);
  bottom: clamp(20px, 2vw, 32px);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: end;
  min-width: 0;
}

.product-list-card strong {
  max-width: min(220px, 100%);
  font-size: var(--type-small);
  font-weight: var(--weight-heading);
  line-height: 1.24;
  text-align: left;
}

.product-list-card span {
  position: absolute;
  left: clamp(20px, 2vw, 32px);
  top: clamp(20px, 2vw, 32px);
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  line-height: 1.58;
  text-align: left;
}

.product-list-card small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.58;
  text-align: right;
}

.product-list-card small,
.series-product-card small,
.detail-related-card small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #202020;
  font-weight: var(--weight-label);
  line-height: 1;
}

.product-list-card small::after,
.series-product-card small::after,
.detail-related-card small::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1.4px solid currentColor;
  border-right: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-0.5px);
}

.products-showcase {
  padding: clamp(82px, 9vw, 150px) var(--page-x);
  background: #f4f5f4;
}

.product-detail-heading {
  margin-bottom: clamp(50px, 6vw, 96px);
}

.detail-manual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 42px);
  align-items: start;
}

.product-detail {
  overflow: hidden;
  display: block;
  background: #fff;
  border: 1px solid #e7e9e8;
  border-radius: 0;
  scroll-margin-top: 96px;
}

.product-detail-media {
  min-height: clamp(250px, 22vw, 380px);
  display: grid;
  place-items: center;
  background: #f5f6f6;
}

.product-detail-media img {
  width: 100%;
  height: clamp(210px, 18vw, 310px);
  object-fit: contain;
  padding: clamp(26px, 3.4vw, 58px);
}

.product-detail-copy {
  padding: clamp(24px, 2.3vw, 40px);
}

.product-detail-copy h2 {
  margin: 14px 0 0;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.08;
}

.product-detail-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.7;
  white-space: pre-line;
}

.product-detail-overview {
  display: grid;
  gap: 18px;
  margin-top: clamp(24px, 2.4vw, 38px);
}

.product-detail-overview h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
}

.product-detail-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  margin: clamp(22px, 2.2vw, 34px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e3e6e5;
  border-bottom: 1px solid #e3e6e5;
}

.product-detail-points li {
  position: relative;
  padding: 14px 0 14px 20px;
  color: #565d5a;
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.4;
  border-top: 1px solid #edf0ef;
}

.product-detail-points li:nth-child(-n + 2) {
  border-top: 0;
}

.product-detail-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 6px;
  height: 6px;
  border: 1px solid #9da3a1;
  border-radius: 50%;
}

.product-detail-copy dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(22px, 2.3vw, 36px) 0 0;
  border-top: 1px solid #e3e6e5;
}

.product-detail-copy dl div {
  min-height: 92px;
  padding: 16px 12px 0 0;
  border-right: 0;
}

.product-detail-copy dl div:last-child {
  border-right: 0;
}

.product-detail-copy dt {
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: var(--weight-label);
}

.product-detail-copy dd {
  margin: 12px 0 0;
  color: #252525;
  font-size: var(--type-label);
  font-weight: var(--weight-body);
  line-height: 1.45;
}

.products-contact {
  scroll-margin-top: 64px;
}

.series-page {
  min-height: calc(100vh - 74px);
  padding: clamp(78px, 8vw, 126px) var(--page-x) clamp(82px, 9vw, 140px);
  background: #fff;
}

.series-shell {
  width: 100%;
  max-width: none;
  margin: 0;
}

.series-back,
.detail-back {
  color: var(--muted);
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.4;
  text-decoration: none;
}

.series-back {
  position: relative;
  left: 0;
}

.series-hero {
  padding: 0 0 clamp(16px, 2vw, 32px);
  text-align: left;
}

.series-kicker {
  display: block;
  margin-bottom: clamp(10px, 1vw, 16px);
  color: #6f7774;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.series-hero h1 {
  margin: 0 0 0 4px;
  color: #202020;
  font-size: var(--type-hero);
  font-weight: var(--weight-display);
  line-height: 1.12;
  letter-spacing: 0;
}

.series-feature {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(28px, 3vw, 56px);
  margin: clamp(-140px, -8vw, -80px) auto 0;
}

.series-feature-media {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 48vw, 860px);
  display: grid;
  place-items: center;
  grid-column: 1;
  grid-row: 1;
  transform: none;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
}

.series-feature img {
  position: relative;
  z-index: 1;
  width: min(980px, 150%);
  height: clamp(560px, 50vw, 900px);
  object-fit: contain;
  transform: scale(1.34);
  pointer-events: none;
}

.series-feature--symcns img {
  transform: scale(1.85);
}

.series-feature-copy {
  max-width: 720px;
  margin: 0;
  padding: 0;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  text-align: center;
}

.series-feature p {
  margin: clamp(14px, 1.4vw, 22px) 0 0;
  color: #6b706e;
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.72;
}

.series-feature strong {
  display: block;
  margin-top: 0;
  color: #6b706e;
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.72;
}

.series-product-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.2vw, 42px);
  margin-top: -108px;
}

.series-product-card {
  position: relative;
  min-height: clamp(420px, 31vw, 560px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: clamp(20px, 2vw, 32px);
  background: #f5f6f6;
  border: 0;
  border-radius: 0;
  color: #202020;
  text-decoration: none;
  overflow: hidden;
}

.series-product-card img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - clamp(40px, 4vw, 64px));
  height: clamp(190px, 15vw, 270px);
  object-fit: contain;
  padding: 0;
  transform: translate(-50%, -50%) scale(1.48);
  pointer-events: none;
}

.series-product-card--symcns img {
  transform: translate(-50%, -50%) scale(2.07);
}

.series-product-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.series-product-card span,
.series-product-card small {
  color: var(--muted);
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.58;
}

.series-product-card strong {
  max-width: 220px;
  font-size: var(--type-small);
  font-weight: var(--weight-heading);
  line-height: 1.24;
}

.series-page-empty,
.product-detail-empty {
  display: grid;
  gap: 24px;
  align-content: center;
}

.product-detail-page {
  min-height: 100vh;
  padding: 0 0 clamp(42px, 6vw, 90px);
  background: #fff;
  color: #202020;
  overflow: hidden;
}

.product-detail-shell {
  max-width: none;
  margin: 0 auto;
}

.detail-manual-card {
  background: #fff;
}

.detail-manual-hero {
  position: relative;
  min-height: clamp(460px, 47vw, 660px);
  display: grid;
  place-items: center;
  background: #eef0f0;
}

.detail-hero-kicker {
  position: absolute;
  top: clamp(78px, 6vw, 112px);
  left: calc(var(--page-x) + 8px);
  color: var(--muted);
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.4;
  letter-spacing: 0;
}

.detail-manual-hero img {
  width: min(680px, 78%);
  height: clamp(340px, 39vw, 540px);
  object-fit: contain;
}

.detail-manual-copy {
  position: relative;
  padding: clamp(54px, 5.5vw, 92px) var(--page-x);
  background: #fff;
}

.detail-feature-overview h2 {
  margin: 0;
  padding-bottom: clamp(22px, 2vw, 34px);
  border-bottom: 1px solid #d6dbd9;
  color: #111;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.2;
}

.detail-feature-overview p {
  margin: clamp(24px, 2.4vw, 38px) 0 0;
  color: #5f6468;
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.9;
}

.detail-two-column-info,
.detail-spec-parameters,
.detail-unique-advantages {
  margin-top: clamp(54px, 5vw, 82px);
}

.detail-key-parameters {
  margin-top: clamp(42px, 4vw, 64px);
}

.detail-two-column-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 84px);
}

.detail-two-column-info h2,
.detail-key-parameters h2,
.detail-spec-parameters h2,
.detail-unique-advantages h2 {
  margin: 0;
  padding-bottom: clamp(18px, 1.7vw, 28px);
  border-bottom: 1px solid #d6dbd9;
  color: #111;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.25;
}

.detail-two-column-info p {
  margin: clamp(18px, 1.8vw, 28px) 0 0;
  color: #5f6468;
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.8;
}

.detail-parameter-grid {
  --detail-parameter-icon-size: clamp(54px, 3vw, 58px);
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: clamp(22px, 2.5vw, 42px) clamp(18px, 2.5vw, 46px);
  margin-top: clamp(22px, 2.2vw, 34px);
}

.detail-parameter-grid-9 {
  grid-template-columns: repeat(5, minmax(100px, 1fr));
}

.detail-parameter-item {
  display: grid;
  grid-template-rows: var(--detail-parameter-icon-size) auto auto;
  justify-items: center;
  align-items: start;
  gap: 0;
  color: #5f6468;
  text-align: center;
}

.detail-parameter-icon {
  display: grid;
  place-items: center;
  width: var(--detail-parameter-icon-size);
  height: var(--detail-parameter-icon-size);
  aspect-ratio: 1;
  margin-bottom: 0;
}

.detail-parameter-icon img {
  width: var(--detail-parameter-icon-size);
  height: var(--detail-parameter-icon-size);
  display: block;
  object-fit: contain;
  object-position: center;
}

.detail-parameter-item strong,
.detail-parameter-item small {
  display: block;
  font-weight: var(--weight-body);
  line-height: 1.22;
  min-height: 0;
}

.detail-parameter-item strong {
  margin-top: clamp(14px, 1vw, 18px);
  font-size: var(--type-label);
  white-space: pre;
  word-break: keep-all;
}

.detail-parameter-item small {
  font-size: var(--type-label);
  margin-top: 2px;
}

.detail-parameter-item small {
  color: #6d7471;
}

.detail-manual-card--symteach-station .detail-key-parameters .detail-parameter-item:nth-child(2) small,
.detail-manual-card--symteach-nexus .detail-key-parameters .detail-parameter-item:nth-child(2) small {
  display: none;
}

.detail-manual-copy strong:not(.detail-parameter-item strong) {
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.16;
}

.detail-spec-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 92px);
  margin-top: clamp(20px, 2vw, 32px);
}

.detail-spec-columns dl {
  margin: 0;
}

.detail-spec-columns div {
  display: grid;
  grid-template-columns: minmax(100px, 0.48fr) minmax(0, 0.52fr);
  align-items: center;
  gap: 20px;
  height: 58px;
  padding: 0;
  border-bottom: 1px solid #d6dbd9;
}

.detail-spec-columns dt,
.detail-spec-columns dd {
  margin: 0;
  font-size: var(--type-small);
  line-height: 1.35;
}

.detail-spec-columns dt {
  color: #111;
  font-weight: var(--weight-label);
}

.detail-spec-columns dd {
  color: #6d7471;
  font-weight: var(--weight-body);
  text-align: right;
}

.detail-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 58px) clamp(34px, 5vw, 84px);
  margin-top: clamp(26px, 2.6vw, 42px);
}

.detail-advantages-grid article {
  padding-top: 0;
  border-top: 0;
}

.detail-advantages-grid article:nth-child(n + 4) {
  padding-top: clamp(18px, 1.5vw, 26px);
  border-top: 1px solid #d6dbd9;
}

.detail-advantages-grid h3 {
  margin: 0;
  color: #111;
  font-size: var(--type-small);
  font-weight: var(--weight-heading);
  line-height: 1.45;
}

.detail-advantages-grid p {
  margin: 10px 0 0;
  color: #6d7471;
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.72;
}

.detail-cover-title {
  position: relative;
  z-index: 1;
  min-height: clamp(210px, 19vw, 330px);
  margin-top: calc(clamp(210px, 19vw, 330px) * -0.62);
  padding: clamp(38px, 3.5vw, 64px) var(--page-x) clamp(44px, 4vw, 76px) var(--page-x);
  overflow: hidden;
  background: #fff;
  clip-path: polygon(0 0, 28% 0, 35% 26%, 100% 26%, 100% 100%, 0 100%);
}

.detail-cover-title::before {
  content: none;
}

.detail-cover-title p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #202020;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.4;
}

.detail-cover-title h1 {
  position: relative;
  z-index: 1;
  margin: clamp(58px, 5.4vw, 96px) 0 0;
  color: #000;
  font-size: clamp(56px, 7.2vw, 132px);
  font-weight: var(--weight-display);
  line-height: 0.96;
  white-space: nowrap;
}

.detail-cover-title h1.detail-title-two-line {
  margin-top: clamp(38px, 4.2vw, 72px);
  font-size: clamp(52px, 6.7vw, 118px);
  line-height: 0.98;
}

.detail-copy-columns {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(360px, 0.58fr);
  gap: clamp(42px, 6vw, 104px);
  align-items: start;
}

.detail-copy-main > p:first-child {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.4;
}

.detail-copy-main h2 {
  margin: 0;
  color: #202020;
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
  line-height: 1;
}

.detail-copy-main strong {
  display: block;
  margin-top: 14px;
  color: #202020;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.35;
}

.detail-copy-main > p:last-of-type {
  max-width: 820px;
  margin: 24px 0 0;
  color: #5f6462;
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.8;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.detail-info-grid span,
.detail-specs span {
  display: block;
  margin-bottom: 10px;
  color: #7d8480;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  line-height: 1.4;
}

.detail-info-grid p {
  margin: 0;
  color: #4d5250;
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.7;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.detail-specs div {
  padding: 18px;
  background: #f4f5f5;
}

.detail-specs strong {
  margin: 0;
  font-size: var(--type-small);
  font-weight: var(--weight-heading);
}

.detail-related {
  margin-top: 34px;
  padding: 0 var(--page-x);
  color: #202020;
}

.detail-related h2 {
  margin: 0 0 18px;
  color: #202020;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.2;
}

.detail-related-carousel {
  --detail-related-gap: clamp(22px, 2.2vw, 38px);
  --detail-related-arrow-size: 44px;
  position: relative;
  display: grid;
  grid-template-columns: var(--detail-related-arrow-size) minmax(0, 1fr) var(--detail-related-arrow-size);
  gap: clamp(12px, 1.2vw, 20px);
  align-items: center;
}

.detail-related-track {
  min-width: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--detail-related-gap) * 2)) / 3);
  gap: var(--detail-related-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.detail-related-track::-webkit-scrollbar {
  display: none;
}

.detail-related-card {
  min-height: clamp(360px, 34vw, 500px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(18px, 1.7vw, 28px);
  background: #f4f6f5;
  color: #202020;
  border: 0;
  text-decoration: none;
  scroll-snap-align: start;
  transition: background 180ms ease;
}

.detail-related-card:hover {
  background: #eef1f0;
}

.detail-related-card img {
  align-self: center;
  width: 100%;
  height: clamp(230px, 24vw, 350px);
  object-fit: contain;
  padding: clamp(6px, 1vw, 16px);
}

.detail-related-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  min-width: 0;
}

.detail-related-card span,
.detail-related-card small {
  color: var(--muted);
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.58;
}

.detail-related-card strong {
  min-width: 0;
  max-width: none;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-related-arrow {
  position: static;
  z-index: 2;
  width: var(--detail-related-arrow-size);
  height: var(--detail-related-arrow-size);
  display: grid;
  place-items: center;
  padding: 0;
  background: #fff;
  border: 1px solid #eceeed;
  color: #202020;
  cursor: pointer;
}

.detail-related-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.detail-related-arrow-prev::before {
  transform: rotate(-45deg) translate(1px, 1px);
}

.detail-related-arrow-next::before {
  transform: rotate(135deg) translate(1px, 1px);
}

.detail-related-arrow-prev {
  justify-self: start;
}

.detail-related-arrow-next {
  justify-self: end;
}

.detail-related-arrow:hover {
  background: #f4f5f5;
}

/* Typography hierarchy normalization */
.brand-mark {
  font-size: clamp(24px, 1.8vw, 32px);
  font-weight: var(--weight-brand);
  font-variation-settings: "wght" var(--weight-brand-axis);
  line-height: var(--leading-nav);
}

.site-nav {
  font-size: clamp(14px, 0.82vw, 16px);
  font-weight: var(--weight-label);
  line-height: var(--leading-nav);
}

.nav-panel-intro {
  font-size: var(--type-card-title);
  font-weight: var(--weight-label);
  line-height: var(--leading-small);
}

.nav-panel-main a {
  font-size: clamp(46px, 4vw, 72px);
  font-weight: 400;
  line-height: var(--leading-display);
}

.nav-panel-list-title {
  font-size: var(--type-label);
  font-weight: 800;
  line-height: var(--leading-label);
}

.nav-panel-list a {
  font-size: 13px;
  font-weight: var(--weight-label);
  line-height: var(--leading-nav);
}

.nav-panel-list a span {
  font-size: 11px;
  line-height: var(--leading-label);
}

.hero-copy h1,
.about-hero__inner h1,
.about-hero-copy h1,
.products-hero h1,
.series-hero h1,
.contact-page-copy h1,
.detail-cover-title h1,
.detail-cover-title h1.detail-title-two-line,
.series-page-empty h1,
.product-detail-empty h1 {
  font-size: var(--type-hero);
  font-weight: var(--weight-display);
  line-height: var(--leading-display);
}

section h2,
.statement-copy h2,
.platform-intro h2,
.architecture-section h2,
.feature-card h2,
.applications-section h2,
.team-section h2,
.contact-section h2,
.about-statement h2,
.capability-heading h2,
.about-team h2,
.product-platform-copy h2,
.product-solutions h2,
.product-list-heading h2,
.product-detail-heading h2,
.detail-copy-main h2,
.detail-related h2,
.contact-page-heading h2,
.contact-featured-card h2,
.contact-index-toolbar h2 {
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
  line-height: var(--leading-heading);
}

.about-statement__copy h3,
.capability-content > h3,
.about-team__copy h3 {
  font-size: var(--type-feature);
  font-weight: var(--weight-heading);
  line-height: var(--leading-feature);
}

.technology-feature strong,
.technology-card h3,
.product-card-copy h3,
.product-platform-card-copy h3,
.solution-card h3,
.capability-row h3,
.capability-node h3,
.product-list-row aside h3,
.product-detail-copy h2,
.detail-feature-overview h2,
.detail-two-column-info h2,
.detail-key-parameters h2,
.detail-spec-parameters h2,
.detail-unique-advantages h2,
.detail-cover-title p,
.detail-copy-main strong,
.detail-advantages-grid h3,
.detail-related-card strong,
.contact-page-row h3,
.contact-page-actions a,
.contact-index-item h3,
.contact-grid a {
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: var(--leading-card);
}

.hero-copy p,
.statement-copy p,
.platform-intro > p:not(.section-label),
.feature-card p:last-child,
.team-section > p,
.about-hero__inner > p,
.about-hero-copy > p:last-child,
.about-statement > div > p:last-child,
.about-statement__copy p,
.capability-heading > p:last-child,
.capability-content > p,
.about-team__copy p,
.capability-row p,
.capability-node p,
.products-hero-copy p,
.product-card-copy p,
.product-platform-card-copy p,
.solution-card header p,
.solution-card li,
.product-list-row aside p,
.product-detail-copy p,
.series-feature p,
.series-feature strong,
.detail-feature-overview p,
.detail-two-column-info p,
.detail-advantages-grid p,
.detail-copy-main > p:first-child,
.detail-info-grid p,
.detail-copy-main > p:last-of-type,
.contact-page-copy > p,
.contact-page-copy small,
.contact-page-row p,
.contact-featured-card p,
.contact-featured-actions a,
.contact-index-item p,
.detail-manual-copy > p:last-of-type {
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
}

.product-card-copy small,
.technology-card p,
.technology-feature-copy,
.product-platform-card-copy small,
.product-list-card strong,
.product-list-card small,
.series-back,
.detail-back,
.series-product-card strong,
.series-product-card span,
.series-product-card small,
.detail-related-card span,
.detail-related-card small,
.product-detail-points li,
.product-detail-copy dd,
.detail-spec-columns dt,
.detail-spec-columns dd,
.detail-specs strong,
.contact-index-item small,
.footer-menu a,
.footer-social,
.footer-legal,
.footer-legal a {
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: var(--leading-small);
}

.section-label,
.statement-label,
.platform-intro .section-label,
.technology-feature-label,
.product-platform-copy p,
.product-card-meta span,
.product-platform-card-meta span,
.product-list-heading div,
.product-list-heading span,
.product-list-card span,
.product-detail-copy span,
.capability-row span,
.capability-node span,
.detail-info-grid span,
.detail-specs span,
.product-detail-overview h3,
.product-detail-copy dt,
.series-kicker,
.detail-hero-kicker,
.detail-parameter-item strong,
.detail-parameter-item small,
.contact-page-row span,
.contact-featured-card span,
.contact-index-item span,
.contact-index-toolbar span,
.footer-column strong {
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  line-height: var(--leading-label);
}

.product-card-link,
.product-platform-card-meta a,
.product-list-card small,
.series-product-card small,
.detail-related-card small,
.product-list-row aside a,
.contact-index-item small {
  font-size: var(--type-small);
  font-weight: var(--weight-label);
  line-height: var(--leading-small);
}

.product-list-card small {
  font-size: var(--type-small);
}

.footer-menu .footer-column-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.footer-brand strong {
  font-size: clamp(30px, 2.9vw, 52px);
  font-weight: var(--weight-display);
  line-height: var(--leading-display);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.team-section > *,
.contact-section > * {
  animation: rise 720ms ease both;
  animation-timeline: view();
  animation-range: entry 0% cover 28%;
}

/* Keep the last element stationary so mobile scroll bounds stay stable after refresh. */
.contact-section > .footer-menu {
  animation: none;
}

@media (max-width: 980px) {
  :root {
    --page-x: clamp(24px, 6vw, 52px);
    --mobile-screen-height: 100vh;
    --mobile-header-height: 72px;
    --type-hero: clamp(37px, 5.76vw, 54px);
    --type-section: clamp(30px, 5.12vw, 45px);
    --type-feature: clamp(22px, 3.52vw, 34px);
    --type-card-title: clamp(22px, 3.4vw, 28px);
    --type-body: clamp(16px, 2vw, 18px);
  }

  @supports (height: 100dvh) {
    :root {
      --mobile-screen-height: 100dvh;
    }
  }

  .site-header {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .brand-mark {
    z-index: 34;
  }

  .site-nav {
    display: none;
  }

  .nav-panel {
    display: none;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 34;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    margin-right: -10px;
    padding: 10px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    display: block;
    background: currentColor;
    transform-origin: center;
    transition: transform 220ms ease;
  }

  .mobile-menu-toggle:focus-visible {
    outline: 2px solid #0786d8;
    outline-offset: -5px;
  }

  .site-header-mobile-open .mobile-menu-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .site-header-mobile-open .mobile-menu-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 32;
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: calc(72px + clamp(30px, 6vh, 64px)) var(--page-x) max(42px, env(safe-area-inset-bottom));
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease, transform 260ms ease;
  }

  .site-header-mobile-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav-main {
    border-top: 1px solid var(--soft-line);
  }

  .mobile-nav-main > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    border-bottom: 1px solid var(--soft-line);
    font-size: clamp(27px, 5vw, 38px);
    font-weight: var(--weight-heading);
    line-height: 1.1;
  }

  .mobile-nav-main > a[aria-current="page"] {
    color: #0786d8;
  }

  .mobile-nav-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    margin-top: 34px;
  }

  .mobile-nav-products p {
    grid-column: 1 / -1;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: var(--type-label);
    font-weight: var(--weight-label);
    letter-spacing: .14em;
  }

  .mobile-nav-products a {
    padding: 8px 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  .hero {
    padding-top: 72px;
  }

  .about-hero {
    min-height: 82vh;
    padding-top: 72px;
  }

  .hero-visual {
    inset: 72px 0 0;
  }

  .hero-copy {
    width: min(92vw, 720px);
    clip-path: polygon(0 0, 64% 0, 74% 15%, 100% 15%, 100% 100%, 0 100%);
  }

  .statement-section,
  .about-statement,
  .team-section,
  .about-capabilities {
    grid-template-columns: 1fr;
  }

  .statement-brand {
    justify-content: flex-start;
  }

  .statement-brand img {
    width: min(100%, 620px);
  }

  .about-statement__inner,
  .about-capabilities__inner,
  .about-team__inner,
  .contact-page-section__inner {
    grid-template-columns: 1fr;
  }

  .capability-heading {
    position: relative;
    top: auto;
  }

  .capability-map,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page-section {
    grid-template-columns: 1fr;
  }

  .contact-page-heading {
    position: relative;
    top: auto;
  }

  .contact-page-actions {
    grid-column: 1;
  }

  .contact-featured-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .product-track {
    grid-auto-columns: minmax(280px, 72vw);
  }

  .product-platform .product-carousel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
  }

  .product-platform .product-track {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    touch-action: auto;
  }

  .product-platform .product-carousel-controls {
    position: static;
    display: flex;
    align-self: center;
    justify-content: center;
    width: fit-content;
    gap: 12px;
    margin: 18px auto 0;
    transform: none;
    pointer-events: auto;
  }

  .product-platform .carousel-button {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    pointer-events: auto;
    box-shadow: none;
  }

  .product-card {
    min-height: 500px;
  }

  .capability-core {
    position: relative;
    grid-column: 1 / -1;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
  }

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

  .platform-intro {
    position: relative;
    grid-column: auto;
    top: auto;
  }

  .technology-card-grid {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .technology-card-row {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .technology-card,
  .technology-card-row .technology-card {
    min-height: clamp(132px, 8vw, 158px);
  }

  .technology-feature {
    grid-template-columns: 1fr;
  }

  .footer-menu {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(4, minmax(0, max-content));
    justify-content: start;
    justify-self: stretch;
    width: 100%;
  }

  .footer-social {
    justify-self: start;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }

  .footer-social p {
    text-align: left;
  }

  .product-solutions {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .solution-card-grid-single {
    margin-top: clamp(28px, 2.8vw, 46px);
  }

  .solution-card {
    min-height: auto;
  }

  .solution-card header,
  .solution-card-body {
    min-height: auto;
  }

  .product-platform-visual,
  .solution-card-grid,
  .detail-manual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-platform-card {
    min-height: 560px;
  }

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

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

  .product-list-row,
  .solution-card header,
  .solution-card-body {
    grid-template-columns: 1fr;
  }

  .feature-section {
    grid-template-columns: 1fr;
    min-height: 720px;
  }

  .feature-card {
    width: min(92vw, 760px);
  }

  .feature-section-1 .feature-card {
    width: min(92vw, 720px);
  }

  .feature-section-2 .feature-media,
  .feature-section-2 .feature-card {
    grid-column: 1;
  }

  .feature-section-2 .feature-media {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 360px;
    grid-row: 2;
    padding: 40px;
  }

  .feature-section-2 .feature-media::after {
    display: none;
  }

  .feature-section-2 .feature-card {
    width: 100%;
    min-height: auto;
    margin-top: 0;
  }

  .hero-copy h1,
  section h2 {
    line-height: var(--leading-heading);
  }

  .hero-copy h1 {
    font-size: var(--type-hero);
    line-height: var(--leading-display);
  }

  section h2 {
    font-size: var(--type-section);
  }

  .detail-two-column-info,
  .detail-advantages-grid,
  .detail-spec-columns {
    grid-template-columns: 1fr;
  }

  .detail-advantages-grid article:nth-child(n + 2) {
    padding-top: 18px;
    border-top: 1px solid #d6dbd9;
  }

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

  .detail-related-carousel {
    --detail-related-arrow-size: 40px;
    gap: 10px;
  }
}

@media (max-width: 620px) {
  :root {
    --page-x: 24px;
    /* Follow the visible mobile viewport as browser chrome expands/collapses. */
    --mobile-screen-height: 100vh;
    --mobile-header-height: 64px;
    --mobile-section-space: 95px;
    --mobile-content-gap: 60px;
    --type-hero: 37px;
    --type-section: 30px;
    --type-feature: 24px;
    --type-card-title: 24px;
    --type-body: 16px;
    --type-small: 14px;
    --type-label: 12px;
  }

  .site-header {
    min-height: 64px;
    padding-top: max(10px, env(safe-area-inset-top));
    padding-bottom: 10px;
  }

  @supports (height: 100dvh) {
    :root {
      --mobile-screen-height: 100dvh;
    }
  }

  .brand-mark {
    font-size: 28px;
  }

  .mobile-nav {
    padding-top: calc(64px + max(28px, 5vh));
  }

  .mobile-nav-main > a {
    min-height: 62px;
    font-size: 28px;
  }

  .mobile-nav-products {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 28px;
  }

  .hero {
    width: 100%;
    height: var(--mobile-screen-height);
    min-height: var(--mobile-screen-height);
    display: flex;
    flex-direction: column;
    padding-top: var(--mobile-header-height);
  }

  .about-hero {
    height: var(--mobile-screen-height);
    min-height: var(--mobile-screen-height);
    padding-top: var(--mobile-header-height);
  }

  .about-hero-copy {
    padding: 34px 0;
  }

  .about-hero-copy h1 {
    font-size: var(--type-hero);
  }

  .hero-visual {
    position: relative;
    inset: auto;
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    background-position: 88% center;
  }

  .hero-visual img,
  .hero-visual video {
    object-position: 88% center;
  }

  .hero-copy {
    --mobile-hero-notch: clamp(38px, 5.8vh, 52px);
    --mobile-hero-notch: clamp(38px, 5.8dvh, 52px);
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    flex: 0 0 auto;
    min-height: 0;
    margin-top: calc(0px - var(--mobile-hero-notch));
    padding: clamp(28px, 5.2vh, 42px) var(--page-x) clamp(26px, 4.6vh, 38px);
    padding: clamp(28px, 5.2dvh, 42px) var(--page-x) clamp(26px, 4.6dvh, 38px);
    -webkit-clip-path: polygon(
      0 0,
      68% 0,
      78% var(--mobile-hero-notch),
      100% var(--mobile-hero-notch),
      100% 100%,
      0 100%
    );
    clip-path: polygon(
      0 0,
      68% 0,
      78% var(--mobile-hero-notch),
      100% var(--mobile-hero-notch),
      100% 100%,
      0 100%
    );
  }

  .hero-copy h1,
  section h2 {
    line-height: var(--leading-heading);
  }

  .hero-copy h1 {
    font-size: var(--type-hero);
    line-height: var(--leading-display);
  }

  section h2 {
    font-size: var(--type-section);
  }

  .hero-copy p,
  .about-hero-copy > p:last-child,
  .about-statement > div > p:last-child,
  .statement-copy p,
  .team-section > p {
    font-size: var(--type-body);
    line-height: var(--leading-body);
  }

  .technology-card-icon {
    /* Compensate for the SVG viewBox's built-in left whitespace. */
    margin-left: -8px;
  }

  .capability-map,
  .contact-grid,
  .footer-menu,
  .product-platform-visual,
  .solution-card-grid,
  .product-list-grid,
  .detail-manual-grid,
  .detail-copy-columns,
  .series-product-grid,
  .detail-related-grid,
  .detail-info-grid,
  .detail-specs {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-column {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .footer-column .footer-column-title {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: none;
  }

  .footer-column-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
  }

  .footer-column-chevron {
    width: 10px;
    height: 10px;
    display: block;
    margin-right: 4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }

  .footer-column-toggle[aria-expanded="true"] .footer-column-chevron {
    transform: rotate(225deg);
  }

  .footer-column-panel {
    display: none;
    padding-top: 18px;
    gap: 10px;
  }

  .footer-column--collapsible.is-open .footer-column-panel {
    display: flex;
  }

  .footer-menu a {
    white-space: normal;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .footer-legal > span:first-child {
    margin-right: 0;
  }

  .contact-page-hero {
    height: var(--mobile-screen-height);
    min-height: var(--mobile-screen-height);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: clamp(96px, 15vh, 120px);
    padding-top: clamp(96px, 15dvh, 120px);
    padding-bottom: 0;
    background: #fff;
  }

  .contact-page-hero::after {
    content: "";
    display: block;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    height: auto;
    margin-top: -48px;
    background-color: #eef3f6;
    background-image: var(--asset-brand-hero-product-system-webp);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 200% auto;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0,
      transparent 40px,
      rgba(0, 0, 0, 0.04) 80px,
      rgba(0, 0, 0, 0.14) 120px,
      rgba(0, 0, 0, 0.32) 160px,
      rgba(0, 0, 0, 0.55) 200px,
      rgba(0, 0, 0, 0.78) 240px,
      #000 300px
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0,
      transparent 40px,
      rgba(0, 0, 0, 0.04) 80px,
      rgba(0, 0, 0, 0.14) 120px,
      rgba(0, 0, 0, 0.32) 160px,
      rgba(0, 0, 0, 0.55) 200px,
      rgba(0, 0, 0, 0.78) 240px,
      #000 300px
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  .contact-page-copy {
    width: 100%;
  }

  .contact-page-copy h1 {
    font-size: var(--type-hero);
    line-height: var(--leading-display);
  }

  .contact-page-copy > p {
    font-size: var(--type-body);
    line-height: var(--leading-body);
  }

  .contact-index-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .contact-page-row,
  .contact-page-row-plain,
  .contact-page-actions {
    grid-template-columns: 1fr;
  }

  .about-page .capability-row,
  .contact-page .contact-page-row {
    grid-template-columns: 1fr;
  }

  .about-page .about-statement,
  .about-page .about-capabilities,
  .about-page .about-team,
  .contact-page .contact-page-section {
    padding-top: var(--mobile-section-space);
    padding-bottom: var(--mobile-section-space);
  }

  .about-page .about-contact {
    padding-top: var(--mobile-section-space);
  }

  .about-statement__inner,
  .about-capabilities__inner,
  .about-team__inner,
  .contact-page-section__inner {
    gap: var(--mobile-content-gap);
  }

  .statement-section,
  .architecture-section,
  .lifecycle-section,
  .product-platform,
  .product-list-section,
  .product-solutions,
  .series-page,
  .legal-content {
    padding-top: var(--mobile-section-space);
    padding-bottom: var(--mobile-section-space);
  }

  .architecture-section,
  .product-solutions {
    min-height: auto;
  }

  .contact-section {
    padding-top: var(--mobile-section-space);
  }

  .statement-section,
  .platform-diagram,
  .product-solutions,
  .legal-layout {
    gap: var(--mobile-content-gap);
  }

  .architecture-section .product-carousel,
  .product-platform .product-carousel {
    margin-top: var(--mobile-content-gap);
  }

  .product-list-heading {
    padding-bottom: var(--mobile-content-gap);
  }

  .product-list-row {
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .solution-card-grid-single {
    margin-top: 0;
  }

  .series-feature {
    gap: 48px;
  }

  .series-product-grid,
  .detail-related {
    margin-top: var(--mobile-content-gap);
  }

  .product-detail-page {
    padding-bottom: var(--mobile-section-space);
  }

  .detail-manual-copy {
    padding-top: var(--mobile-section-space);
    padding-bottom: var(--mobile-section-space);
  }

  .about-page .capability-row,
  .contact-page .contact-page-row {
    row-gap: 24px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .about-hero__inner {
    min-height: calc(var(--mobile-screen-height) - var(--mobile-header-height));
  }

  .contact-page-actions a {
    min-height: 84px;
    padding: 22px;
  }

  .contact-index-list {
    grid-template-columns: 1fr;
  }

  .products-hero {
    height: var(--mobile-screen-height);
    min-height: var(--mobile-screen-height);
    align-items: flex-start;
    padding-top: clamp(104px, 17vh, 128px);
    padding-top: clamp(104px, 17dvh, 128px);
    background:
      var(--asset-brand-products-hero-arm-replacement-webp) center calc(100% - 88px) / 104vw auto no-repeat,
      #fff;
  }

  .products-hero img {
    display: none;
  }

  .products-hero h1 {
    max-width: 620px;
    font-size: var(--type-hero);
    line-height: var(--leading-display);
  }

  .products-hero-copy {
    max-width: 620px;
    transform: none;
  }

  .products-hero-copy p {
    max-width: 520px;
    font-size: var(--type-body);
    line-height: var(--leading-body);
  }

  .product-platform {
    min-height: auto;
  }

  .product-platform-visual {
    gap: 24px;
  }

  .product-platform-card {
    min-height: 520px;
    grid-template-rows: 56% 44%;
  }

  .product-platform-copy h2,
  .product-solutions h2,
  .product-list-heading h2,
  .product-detail-heading h2 {
    font-size: var(--type-section);
  }

  .solution-card-icon {
    width: 120px;
  }

  .product-list-heading {
    align-items: start;
    flex-direction: column;
  }

  .product-list-row {
    gap: 30px;
    min-height: auto;
  }

  .product-list-row > aside,
  .product-list-row > .product-list-grid {
    transform: none;
  }

  .product-list-row aside a {
    margin-top: 24px;
  }

  .series-hero {
    padding-bottom: 0;
    text-align: left;
  }

  .series-feature {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 24px;
    margin: 24px auto 0;
  }

  .series-feature-copy,
  .series-feature-media {
    grid-column: auto;
    grid-row: auto;
  }

  .series-feature-media {
    width: 100%;
    min-height: clamp(300px, 78vw, 420px);
    place-items: center;
    transform: none;
  }

  .series-feature img,
  .series-feature--symcns img {
    width: min(420px, 90%);
    height: clamp(280px, 72vw, 380px);
    transform: none;
  }

  .series-product-grid {
    margin-top: 32px;
  }

  .series-product-card,
  .detail-related-card {
    min-height: 360px;
  }

  .product-detail-page {
    padding-top: 36px;
  }

  .detail-manual-copy::before {
    width: 150px;
  }

  .detail-cover-title {
    min-height: 230px;
    padding-top: 68px;
    clip-path: polygon(0 0, 28% 0, 36% 18%, 100% 18%, 100% 100%, 0 100%);
  }

  .detail-cover-title h1,
  .detail-cover-title h1.detail-title-two-line {
    margin-top: 30px;
    white-space: normal;
    text-wrap: balance;
  }

  .product-detail-copy h2 {
    font-size: var(--type-section);
  }

  .product-detail-copy dl {
    grid-template-columns: 1fr;
  }

  .product-detail-copy dl div {
    border-right: 0;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .capability-map {
    background: #fff;
  }

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

  .detail-spec-columns div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .detail-spec-columns dd {
    text-align: left;
  }

  .capability-map::before,
  .capability-map::after {
    display: none;
  }

  .feature-section {
    min-height: 680px;
  }

  .feature-card {
    width: calc(100% - 20px);
    margin-left: 0;
    padding: 32px 24px;
  }

  .feature-section-1 .feature-card {
    width: calc(100% - 20px);
  }

  .hero-copy h1,
  .about-hero__inner h1,
  .about-hero-copy h1,
  .products-hero h1,
  .series-hero h1,
  .contact-page-copy h1,
  .detail-cover-title h1,
  .detail-cover-title h1.detail-title-two-line,
  .series-page-empty h1,
  .product-detail-empty h1 {
    font-size: var(--type-hero);
    font-weight: var(--weight-display);
    line-height: var(--leading-display);
  }

  section h2,
  .statement-copy h2,
  .platform-intro h2,
  .architecture-section h2,
  .feature-card h2,
  .applications-section h2,
  .team-section h2,
  .contact-section h2,
  .about-statement h2,
  .capability-heading h2,
  .about-team h2,
  .product-platform-copy h2,
  .product-solutions h2,
  .product-list-heading h2,
  .product-detail-heading h2,
  .detail-copy-main h2,
  .detail-related h2,
  .contact-page-heading h2,
  .contact-featured-card h2,
  .contact-index-toolbar h2 {
    font-size: var(--type-section);
    font-weight: var(--weight-heading);
    line-height: var(--leading-heading);
  }

  .about-statement__copy h3,
  .capability-content > h3,
  .about-team__copy h3 {
    font-size: var(--type-feature);
    font-weight: var(--weight-heading);
    line-height: var(--leading-feature);
  }

  .technology-feature strong,
  .technology-card h3,
  .product-card-copy h3,
  .product-platform-card-copy h3,
  .solution-card h3,
  .capability-row h3,
  .capability-node h3,
  .product-list-row aside h3,
  .product-detail-copy h2,
  .detail-feature-overview h2,
  .detail-two-column-info h2,
  .detail-key-parameters h2,
  .detail-spec-parameters h2,
  .detail-unique-advantages h2,
  .detail-cover-title p,
  .detail-copy-main strong,
  .detail-advantages-grid h3,
  .detail-related-card strong,
  .contact-page-row h3,
  .contact-page-actions a,
  .contact-index-item h3,
  .contact-grid a {
    font-size: var(--type-card-title);
    font-weight: var(--weight-heading);
    line-height: var(--leading-card);
  }

  .hero-copy p,
  .statement-copy p,
  .platform-intro > p:not(.section-label),
  .feature-card p:last-child,
  .team-section > p,
  .about-hero__inner > p,
  .about-hero-copy > p:last-child,
  .about-statement > div > p:last-child,
  .about-statement__copy p,
  .capability-heading > p:last-child,
  .capability-content > p,
  .about-team__copy p,
  .capability-row p,
  .capability-node p,
  .products-hero-copy p,
  .product-card-copy p,
  .product-platform-card-copy p,
  .solution-card header p,
  .solution-card li,
  .product-list-row aside p,
  .product-detail-copy p,
  .series-feature p,
  .series-feature strong,
  .detail-feature-overview p,
  .detail-two-column-info p,
  .detail-advantages-grid p,
  .detail-copy-main > p:first-child,
  .detail-info-grid p,
  .detail-copy-main > p:last-of-type,
  .contact-page-copy > p,
  .contact-page-copy small,
  .contact-page-row p,
  .contact-featured-card p,
  .contact-featured-actions a,
  .contact-index-item p,
  .detail-manual-copy > p:last-of-type {
    font-size: var(--type-body);
    font-weight: var(--weight-body);
    line-height: var(--leading-body);
  }

  .series-product-card strong {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }
}


#app { min-height: 100vh; }
.static-hidden { display: none !important; }
.nav-panel[data-open="true"] { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }

.detail-feature-overview h2,
.detail-two-column-info h2,
.detail-key-parameters h2,
.detail-spec-parameters h2,
.detail-unique-advantages h2,
.detail-related h2 {
  padding-top: clamp(22px, 2vw, 34px);
  padding-bottom: 0;
  border-top: 1px solid #d6dbd9;
  border-bottom: 0;
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
}

.detail-feature-overview p,
.detail-two-column-info p {
  margin-top: clamp(14px, 1.2vw, 20px);
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.9;
}

.detail-parameter-grid,
.detail-spec-columns,
.detail-advantages-grid {
  margin-top: clamp(14px, 1.2vw, 20px);
}

.detail-two-column-info,
.detail-key-parameters,
.detail-spec-parameters,
.detail-unique-advantages {
  margin-top: clamp(86px, 8vw, 146px);
}

.detail-related {
  margin-top: max(0px, calc(clamp(86px, 8vw, 146px) - clamp(54px, 5.5vw, 92px)));
}

.detail-advantages-grid h3 {
  font-size: var(--type-small);
  font-weight: var(--weight-label);
  line-height: 1.35;
}

.detail-advantages-grid p {
  font-size: var(--type-small);
  font-weight: var(--weight-body);
  line-height: 1.9;
}

/* Legal pages */
.legal-page {
  background: #f3f5f4;
  color: #121715;
}

.legal-hero {
  min-height: 32vh;
  padding: clamp(96px, 9vw, 132px) 0 clamp(30px, 4vw, 52px);
  background:
    radial-gradient(circle at 82% 22%, rgba(104, 196, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #07141d 0%, #0b3756 56%, #087bc6 100%);
  color: #fff;
}

.legal-hero__inner {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  column-gap: clamp(32px, 6vw, 110px);
  align-items: start;
}

.legal-hero .section-label {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: 0.12em;
}

.legal-hero h1 {
  grid-column: 2;
  margin: 0;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.legal-hero__inner > p:not(.section-label) {
  grid-column: 2;
  max-width: 760px;
  margin: clamp(18px, 2vw, 30px) 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.75;
}

.legal-hero time {
  grid-column: 2;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.legal-content {
  padding: clamp(74px, 9vw, 148px) 0 clamp(100px, 12vw, 190px);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 120px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 104px;
  display: grid;
  border-top: 1px solid #bdc6c2;
}

.legal-nav a {
  padding: 18px 4px;
  border-bottom: 1px solid #d5dbd8;
  color: #68716e;
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.legal-nav a:hover,
.legal-nav a.is-active {
  padding-left: 12px;
  color: #0786d8;
}

.legal-nav a.is-active::before {
  content: "— ";
}

.legal-sections {
  border-top: 1px solid #98a39f;
}

.legal-section {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 52px);
  padding: clamp(38px, 5vw, 78px) 0;
  border-bottom: 1px solid #cbd2cf;
}

.legal-section > span {
  padding-top: 8px;
  color: #0786d8;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.legal-section h2 {
  margin: 0 0 clamp(18px, 2vw, 30px);
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.legal-section p,
.legal-note p {
  max-width: 820px;
  margin: 0;
  color: #59625f;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 2;
}

.legal-note {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 52px);
  margin-top: clamp(44px, 6vw, 92px);
  padding: 30px 0;
  border-top: 1px solid #0786d8;
}

.legal-note strong {
  color: #0786d8;
  font-size: 13px;
  font-weight: 500;
}

.legal-page-footer {
  margin-top: 0;
}

@media (max-width: 760px) {
  .legal-hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 36px;
  }

  .legal-hero__inner,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero h1,
  .legal-hero__inner > p:not(.section-label),
  .legal-hero time {
    grid-column: 1;
  }

  .legal-hero h1 {
    margin-top: 20px;
  }

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

  .legal-nav a {
    padding-right: 12px;
  }

  .legal-section,
  .legal-note {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}

/* Shared motion for content pages; legal pages intentionally excluded in JS. */
.motion-reveal {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay, 0ms),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay, 0ms),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay, 0ms);
  will-change: opacity, filter, transform;
}

.motion-reveal.motion-in {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.series-feature.motion-reveal img,
.product-list-row.motion-reveal img,
.detail-manual-hero.motion-reveal img {
  clip-path: inset(0 0 8% 0);
  transition: clip-path 980ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay, 0ms);
}

.series-feature.motion-in img,
.product-list-row.motion-in img,
.detail-manual-hero.motion-in img {
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .motion-reveal,
  .motion-reveal.motion-in,
  .series-feature.motion-reveal img,
  .product-list-row.motion-reveal img,
  .detail-manual-hero.motion-reveal img {
    opacity: 1;
    filter: none;
    transform: none;
    clip-path: none;
    transition: none;
  }
}

@media (max-width: 620px) {
  .product-list-row {
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .series-feature {
    gap: 48px;
  }

  .series-product-grid,
  .detail-related {
    margin-top: var(--mobile-content-gap);
  }
}

/* Keep the four primary mobile and tablet landing heroes to one viewport. */
@media (max-width: 980px) {
  .hero,
  .about-hero,
  .products-hero,
  .contact-page-hero {
    height: var(--mobile-screen-height);
    min-height: var(--mobile-screen-height);
  }
}
