:root {
  --black: #050607;
  --ink: #111418;
  --graphite: #1b1f23;
  --cement: #d7d8d6;
  --mist: #f2f3f1;
  --muted: #697078;
  --silver: #c9d0d6;
  --line: rgba(255,255,255,.16);
  --accent: #aeb8bf;
  --steel: #597383;
  --gold: #b8a36f;
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-height: 64px;
  --header-plate-height: 64px;
  --header-plate-half-height: 32px;
  --header-plate-y: 0px;
  --header-plate-opacity: 1;
  --header-plate-bg: linear-gradient(180deg, rgba(18, 20, 22, .64), rgba(5, 6, 7, .46));
  --header-plate-border: rgba(255,255,255,.11);
  --header-shadow: 0 14px 34px rgba(0,0,0,.18);
  --app-vh: 100dvh;
  --scene-overscan: 18px;
  --font-latin: "Enriqueta Local";
  --font-zh: "HONORSans CN Local";
  --font-default: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-serif: var(--font-latin), var(--font-zh), var(--font-default);
  --font-sans: var(--font-latin), var(--font-zh), var(--font-default);
  --font-display: var(--font-latin), var(--font-zh), var(--font-default);
  --font-display-en: "ZQK Freefont Local", var(--font-latin), var(--font-zh), var(--font-default);
  --font-body-en: var(--font-latin), var(--font-zh), var(--font-default);
  --page-copy-title-size: 56px;
  --page-copy-title-line-height: 1.06;
  --page-copy-title-gap: 18px;
  --page-copy-title-weight: 900;
  --page-copy-title-letter-spacing: 0;
  --page-copy-title-color-light: var(--ink);
  --page-copy-title-color-dark: #fff;
  --page-copy-body-size: 17px;
  --page-copy-body-line-height: 1.82;
  --page-copy-body-letter-spacing: 0;
  --page-copy-body-max-width: min(620px, 100%);
  --page-copy-body-color-light: var(--muted);
  --page-copy-body-color-dark: rgba(255,255,255,.68);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

html[lang="en"] body {
  font-family: var(--font-body-en);
}

html[lang="en"] .header-nav a,
html[lang="en"] .ghost-link,
html[lang="en"] .lang-switch,
html[lang="en"] .btn,
html[lang="en"] .quick-panel b,
html[lang="en"] .filter-btn,
html[lang="en"] .product-card__link,
html[lang="en"] .feature-tabs li,
html[lang="en"] .certs > span {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .02em;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 0 36px;
  color: #fff;
  background: transparent;
  transition: color .22s var(--ease);
}

.site-header::before {
  position: absolute;
  inset: 0 0 auto;
  height: var(--header-plate-height);
  background: var(--header-plate-bg);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
  backdrop-filter: blur(24px) saturate(1.18);
  box-shadow: var(--header-shadow), inset 0 -1px var(--header-plate-border);
  opacity: var(--header-plate-opacity);
  transform: translateY(var(--header-plate-y));
  content: "";
  pointer-events: none;
  transition: background .24s var(--ease), box-shadow .24s var(--ease), opacity .24s var(--ease);
  will-change: transform, opacity;
}

.header-nav,
.header-actions,
.brand,
.menu-toggle {
  position: relative;
  z-index: 1;
}

.header-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-nav {
  min-width: 0;
  gap: 34px;
}

.header-actions { justify-content: flex-end; }

.header-actions {
  gap: 16px;
}

.header-nav a,
.ghost-link,
.lang-switch {
  --nav-enter-delay: 0ms;
  color: rgba(255,255,255,.86);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .22s var(--ease), transform .22s var(--ease), text-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}

.header-nav a,
.ghost-link {
  --nav-wave-scale: 1;
  --nav-wave-y: 0px;
  --nav-wave-glow: 0;
  display: inline-flex;
  transform: translateY(var(--nav-wave-y)) scale(var(--nav-wave-scale));
  transform-origin: center;
  text-shadow: 0 0 calc(18px * var(--nav-wave-glow)) rgba(255,255,255,.52);
  will-change: transform;
}

body.is-loading .header-nav a,
body.is-loading .header-actions > * {
  opacity: 0;
  transform: translateY(-28px) scale(.94);
}

body.header-ready .header-nav a,
body.header-ready .header-actions > * {
  animation: navJellyIn .68s cubic-bezier(.2, .82, .24, 1) both;
  animation-delay: var(--nav-enter-delay);
}

body.is-loading .brand-en,
body.is-loading .brand-divider,
body.is-loading .brand-cn {
  opacity: 0;
}

body.is-loading .brand-en {
  transform: translateY(-14px);
}

body.is-loading .brand-divider {
  transform: none;
}

body.is-loading .brand-cn {
  transform: translateX(-16px);
}

body.header-ready .brand-en {
  animation: brandEnglishSoftIn .72s var(--ease) both;
  animation-delay: 360ms;
}

body.header-ready .brand-divider {
  animation: brandFadeIn .72s var(--ease) both;
  animation-delay: 520ms;
}

body.header-ready .brand-cn {
  animation: brandChineseSoftIn .72s var(--ease) both;
  animation-delay: 650ms;
}

.header-nav a {
  --nav-wave-line: 0;
  position: relative;
}

.header-nav a::after {
  display: none;
  content: none;
}

.header-nav a:hover::after {
  display: none;
}

.header-nav a:hover,
.ghost-link:hover,
.header-nav a.is-wave-active,
.ghost-link.is-wave-active {
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  min-width: 172px;
  overflow: visible;
  white-space: nowrap;
}

.brand-en,
.brand-cn {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-cn {
  color: #fff;
  transition: color .24s var(--ease), text-shadow .24s var(--ease);
}

.brand-svg {
  height: auto;
  display: block;
}

.brand-svg-en {
  width: 92px;
}

.brand-divider,
.action-divider {
  width: 1px;
  height: 16px;
  display: block;
  background: rgba(255,255,255,.42);
  opacity: .9;
  transform-origin: center;
}

.brand-divider {
  height: 27px;
  background: #8f96a3;
  opacity: .76;
}

.brand-svg-cn {
  width: 48px;
}

.brand-svg-cn text {
  fill: currentColor;
}

.lang-switch {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}

.lang-switch:hover {
  color: #fff;
  border-color: transparent;
  background: transparent;
  transform: translateY(-1px);
}

.menu-toggle {
  width: 38px;
  height: 38px;
  display: none;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

body.header-on-light .site-header {
  color: var(--ink);
}

body.header-on-light .site-header::before {
  --header-plate-bg: linear-gradient(180deg, rgba(249, 250, 248, .76), rgba(232, 234, 231, .58));
  --header-plate-border: rgba(17,20,24,.11);
  --header-shadow: 0 12px 30px rgba(20, 24, 28, .09);
}

body.header-on-light .header-nav a,
body.header-on-light .ghost-link,
body.header-on-light .lang-switch {
  color: rgba(17,20,24,.84);
}

body.header-on-light .header-nav a::after {
  display: none;
  content: none;
}

body.header-on-light .header-nav a:hover,
body.header-on-light .ghost-link:hover,
body.header-on-light .header-nav a.is-wave-active,
body.header-on-light .ghost-link.is-wave-active {
  color: var(--ink);
  text-shadow: 0 0 14px rgba(17,20,24,.24);
}

body.header-on-light .brand {
  color: #303746;
}

body.header-on-light .brand-cn {
  color: #303746;
  text-shadow: none;
}

body.header-on-light .action-divider {
  background: rgba(17,20,24,.32);
}

body.header-on-light .brand-divider {
  background: rgba(17,20,24,.34);
}

body.header-on-light .lang-switch {
  border-color: rgba(17,20,24,.22);
  background: rgba(17,20,24,.04);
}

body.header-on-light .lang-switch:hover {
  color: var(--ink);
  border-color: rgba(17,20,24,.5);
  background: rgba(17,20,24,.1);
}

body.menu-open .site-header {
  color: #fff;
}

body.menu-open .site-header::before {
  --header-plate-bg: linear-gradient(180deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .76));
  --header-plate-border: rgba(255,255,255,.12);
  --header-shadow: 0 16px 34px rgba(0,0,0,.32);
}

body.menu-open .header-nav a,
body.menu-open .ghost-link,
body.menu-open .lang-switch {
  color: rgba(255,255,255,.86);
}

body.menu-open .brand {
  color: #fff;
}

body.menu-open .brand-cn {
  color: #f3f6f8;
}

body.menu-open .action-divider {
  background: rgba(255,255,255,.42);
}

body.menu-open .lang-switch {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.05);
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform .25s var(--ease);
}

.menu-toggle span:first-child { transform: translateY(-5px); }
.menu-toggle span:last-child { transform: translateY(5px); }
body.menu-open .menu-toggle span:first-child { transform: rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  z-index: 0;
  inset: var(--header-height) 0 auto;
  display: none;
  gap: 0;
  padding: 28px 24px 36px;
  color: #fff;
  background: rgba(5,6,7,.98);
  transform: translateY(-115%);
  transition: transform .32s var(--ease);
}

body.menu-open .mobile-drawer { transform: translateY(0); }

.mobile-drawer a,
.drawer-lang {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 24px;
  text-align: left;
}

.hero,
.page-hero,
.detail-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero-slide,
.hero-slide img,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide img,
.page-hero img,
.immersive-band img {
  object-fit: cover;
  filter: grayscale(.16) contrast(1.08) brightness(.72);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.45) 38%, rgba(0,0,0,.10) 72%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.18) 24%, rgba(0,0,0,.45) 100%);
}

.hero--home .hero-slide video {
  filter: grayscale(.16) contrast(1.08) brightness(.86);
}

.hero--home .hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.42), rgba(0,0,0,.225) 38%, rgba(0,0,0,.05) 72%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.09) 24%, rgba(0,0,0,.225) 100%);
}

.hero-copy,
.page-hero-copy {
  position: absolute;
  z-index: 2;
  left: 10vw;
  top: auto;
  bottom: clamp(116px, 16vh, 180px);
  width: min(720px, calc(100% - 48px));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.05;
}

html[lang="en"] .hero h1,
html[lang="en"] .page-hero h1,
html[lang="en"] .detail-copy h1 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .98;
}

.hero-copy p:not(.eyebrow),
.page-hero-copy p:not(.eyebrow),
.detail-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255,255,255,.74);
  font-size: 20px;
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  min-width: 148px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 0;
  color: #fff;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.88);
}

.btn--primary {
  color: var(--black);
  border-color: var(--silver);
  background: linear-gradient(135deg, #f2f4f4, #aeb8bf);
}

.btn--quiet {
  background: rgba(255,255,255,.08);
}

.quick-panel {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 116px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.52);
  backdrop-filter: blur(10px);
}

.quick-panel a {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.quick-panel a:last-child { border-bottom: 0; }
.quick-panel span { color: var(--gold); font-size: 13px; }
.quick-panel b { font-size: 12px; font-weight: 500; }

.section {
  min-height: 100svh;
  padding: 96px 6vw;
  display: grid;
  align-content: center;
}

.section--light {
  background: var(--mist);
  color: var(--ink);
}

.section--dark {
  background:
    linear-gradient(145deg, #11161a, #060708 60%),
    var(--black);
  color: #fff;
}

.section-head {
  max-width: 1180px;
  margin: 0 auto 40px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-head h2,
.feature-copy h2,
.immersive-copy h2,
.contact-info h2 {
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.12;
}

html[lang="en"] .section-head h2,
html[lang="en"] .feature-copy h2,
html[lang="en"] .immersive-copy h2,
html[lang="en"] .contact-info h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
}

.section-head p:not(.eyebrow),
.feature-copy p,
.immersive-copy p,
.contact-info p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}

.section--dark .section-head p:not(.eyebrow),
.section--dark .feature-copy p { color: rgba(255,255,255,.66); }

.metric-grid,
.service-grid,
.advantage-grid,
.product-grid,
.media-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.metric-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.metric-card {
  min-height: 180px;
  padding: 26px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(17,20,24,.12);
  background: #fff;
}

.metric-card strong {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
}

.metric-card span {
  color: var(--muted);
  line-height: 1.6;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 54px;
  align-items: center;
}

.machine-viewer {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(174,184,191,.24), transparent 32%),
    linear-gradient(180deg, #20262b, #070808);
}

.machine-viewer canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

.machine-viewer__image-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  transition: opacity .18s ease;
}

.machine-viewer.is-model-loaded .machine-viewer__image-fallback {
  opacity: 0;
}

.machine-viewer.is-image-fallback canvas {
  display: none;
}

.machine-viewer::after {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  content: "Drag to rotate / Scroll to zoom";
  pointer-events: none;
}

.machine-viewer.is-image-fallback::after {
  content: "";
}

.machine-viewer__origin-debug {
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 3;
  display: grid;
  gap: 6px;
  padding: 8px 10px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  line-height: 1.35;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  pointer-events: none;
}

.machine-viewer__origin-debug span {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.machine-viewer__origin-debug-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255,255,255,.26);
}

.machine-viewer__origin-debug-dot--origin { background: #ff3030; }
.machine-viewer__origin-debug-dot--center { background: #00b7ff; }

.machine-viewer__pivot-tuner {
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 4;
  width: min(280px, calc(100% - 36px));
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  color: rgba(255,255,255,.92);
  font-size: 12px;
  line-height: 1.35;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.machine-viewer__pivot-tuner strong {
  font-size: 13px;
}

.machine-viewer__pivot-tuner label {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) 44px;
  gap: 8px;
  align-items: center;
}

.machine-viewer__pivot-tuner input {
  width: 100%;
  accent-color: #2f9b49;
}

.machine-viewer__pivot-tuner output {
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.machine-viewer__pivot-tuner code {
  display: block;
  padding: 7px 8px;
  overflow-wrap: anywhere;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  border-radius: 4px;
}

.machine-viewer__pivot-actions {
  display: flex;
  gap: 8px;
}

.machine-viewer__pivot-actions button {
  flex: 1;
  min-height: 28px;
  color: #101417;
  background: rgba(255,255,255,.9);
  border: 0;
  border-radius: 4px;
  font: inherit;
  cursor: pointer;
}

.machine-viewer--large { min-height: 620px; }

html.is-admin-model-preview,
body.is-admin-model-preview {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #050606;
}

body.is-admin-model-preview {
  min-height: 100svh;
}

body.is-admin-model-preview .site-header {
  display: none !important;
}

body.is-admin-model-preview main[data-product-scenes] {
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.08), transparent 42%),
    linear-gradient(180deg, #101315 0%, #050606 100%);
}

.admin-model-preview {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

.admin-model-preview__viewer {
  width: min(96vw, 1200px);
  height: min(86svh, 760px);
  min-height: min(520px, 86svh);
  transform: none;
}

.admin-model-preview__viewer.product-scene-detail__image-fallback {
  display: grid;
  place-items: center;
}

.admin-model-preview__viewer.product-scene-detail__image-fallback img {
  max-width: min(88vw, 980px);
  max-height: min(78svh, 680px);
  object-fit: contain;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17,20,24,.1);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(17,20,24,.15);
}

.product-card__media {
  height: 250px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(180deg, #e5e7e7, #cdd2d4);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .7s var(--ease);
}

.product-card:hover img { transform: scale(1.045); }

.product-card__body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 900;
}

html[lang="en"] .product-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.product-card p {
  color: var(--muted);
  line-height: 1.7;
}

.product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 20px;
}

.product-card__specs span {
  padding: 6px 10px;
  color: #3c454c;
  background: #edf0f0;
  font-size: 12px;
}

.product-card__link {
  color: var(--steel);
  font-weight: 800;
}

.immersive-band {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.immersive-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.immersive-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.80), rgba(0,0,0,.22) 62%, rgba(0,0,0,.58));
  content: "";
}

.immersive-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 6vw 90px;
}

.immersive-copy p { color: rgba(255,255,255,.72); }

.service-grid,
.advantage-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.service-card,
.advantage-card {
  min-height: 230px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  transition: transform .26s var(--ease), border-color .26s var(--ease);
}

.service-card:hover,
.advantage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.42);
}

.service-card strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
}

.service-card p,
.advantage-card p { color: rgba(255,255,255,.62); line-height: 1.7; }

.hero-slide video,
.media-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(.16) contrast(1.08) brightness(.72);
}

.hero-slide--video {
  position: absolute;
  inset: 0;
}

.model-showcase {
  position: relative;
  overflow: hidden;
}

.model-showcase::before,
.model-showcase::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.model-showcase::before {
  inset: 0;
  opacity: .56;
  background:
    linear-gradient(rgba(17,20,24,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.model-showcase::after {
  left: 12%;
  right: 12%;
  bottom: 10%;
  height: 22%;
  background: radial-gradient(ellipse at center, rgba(89,115,131,.28), transparent 68%);
}

.model-stage {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 18px;
}

.model-stage__viewport {
  min-width: 0;
  overflow: hidden;
}

.model-stage__track {
  display: grid;
}

.model-slide {
  grid-area: 1 / 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(360px, 1.15fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  opacity: 0;
  transform: translateX(26px) scale(.985);
  pointer-events: none;
  transition: opacity .42s var(--ease), transform .42s var(--ease);
}

.model-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.model-slide header {
  align-self: end;
}

.model-slide h3 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 500;
}

html[lang="en"] .model-slide h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
}

.model-slide img {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100%;
  max-height: clamp(280px, 50vh, 460px);
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(17,20,24,.22));
}

.spec-row-list {
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-row-list li {
  min-height: 78px;
  padding: 16px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(17,20,24,.12);
  background: rgba(255,255,255,.72);
}

.spec-row-list b {
  color: #30383f;
  font-size: 13px;
}

html[lang="en"] .spec-row-list b {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .02em;
}

.spec-row-list span {
  color: var(--muted);
  font-size: 15px;
}

.model-stage__arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17,20,24,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.62);
  cursor: pointer;
  position: relative;
}

.model-stage__arrow::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  content: "<";
  font-size: 28px;
}

.model-stage__arrow--next::before {
  content: ">";
}

.cine-band {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--black);
}

.media-layer,
.media-shade {
  position: absolute;
  inset: 0;
}

.media-layer {
  z-index: 0;
  background: var(--black);
}

.media-shade {
  z-index: 1;
  pointer-events: none;
}

.media-shade--left {
  background:
    linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.50) 36%, rgba(0,0,0,.12) 72%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.32));
}

.media-shade--bottom {
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.38) 55%, rgba(0,0,0,.82)),
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.16) 62%);
}

.cine-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 48px));
  margin-left: 10vw;
}

.cine-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 500;
}

html[lang="en"] .cine-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .98;
}

.cine-copy p,
.contact-offer {
  max-width: 620px;
  color: rgba(255,255,255,.74);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.8;
}

.figures,
.crafts {
  position: absolute;
  z-index: 2;
  left: 6vw;
  right: 6vw;
  bottom: clamp(34px, 6vh, 58px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.figures li,
.crafts li {
  min-height: 122px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(10px);
}

.figures b,
.crafts b {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.figures span,
.crafts span {
  color: rgba(255,255,255,.66);
  line-height: 1.5;
}

.certs {
  position: absolute;
  z-index: 2;
  left: 6vw;
  right: 6vw;
  bottom: clamp(34px, 6vh, 56px);
  display: grid;
  gap: 14px;
}

.certs > span {
  color: rgba(255,255,255,.74);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.certs ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.certs li {
  min-height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.certs img {
  max-width: 70%;
  max-height: 52px;
  object-fit: contain;
}

.feature-tabs {
  position: absolute;
  z-index: 2;
  left: 6vw;
  right: 6vw;
  bottom: clamp(30px, 6vh, 54px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-tabs li {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.32);
  cursor: pointer;
  transition: color .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease), transform .24s var(--ease);
}

.feature-tabs li:hover,
.feature-tabs li.is-active {
  color: #fff;
  border-color: rgba(255,255,255,.52);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.contact-offer {
  margin-bottom: 28px;
}

.contact-offer p {
  margin-bottom: 8px;
}

body[data-page="home"] main > section {
  position: sticky;
  top: 0;
  z-index: var(--scene-layer, 1);
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}

body[data-page="home"] main,
body[data-page="products"] main,
body[data-page="cases"] main,
body[data-page="about"] main {
  position: relative;
}

body[data-page="products"] main > section,
body[data-page="cases"] main > section,
body[data-page="about"] main > section {
  position: sticky;
  top: 0;
  z-index: var(--scene-layer, 1);
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}

body[data-page="home"] .section {
  position: sticky;
  isolation: isolate;
}

body[data-page="home"] .section::before {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 78% 24%, rgba(255,255,255,.18), transparent 27%),
    linear-gradient(120deg, rgba(255,255,255,.08), transparent 46%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.02));
}

body[data-page="home"] .section--light::before {
  opacity: .88;
  background:
    radial-gradient(circle at 74% 22%, rgba(33,111,70,.12), transparent 30%),
    linear-gradient(115deg, rgba(255,255,255,.92), rgba(232,237,234,.62) 54%, rgba(194,204,199,.54));
}

body[data-page="home"] .section--dark::before {
  opacity: .52;
  background:
    radial-gradient(circle at 72% 22%, rgba(174,190,184,.28), transparent 31%),
    linear-gradient(120deg, rgba(255,255,255,.14), transparent 48%);
}

body[data-page="home"] .section > * {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .site-footer {
  position: relative;
  z-index: 30;
}

body[data-page="home"] .client-contact {
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  gap: clamp(18px, 3vh, 30px);
  padding: clamp(78px, 9vh, 96px) 6vw 0;
}

body[data-page="home"] .client-contact .home-contact-card {
  align-self: center;
  max-width: min(1168px, 100%);
  min-height: clamp(220px, 28vh, 300px);
  padding: clamp(30px, 3.4vw, 44px);
}

body[data-page="home"] .client-contact .home-contact-card h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 52px);
}

body[data-page="home"] .client-contact .site-footer {
  width: calc(100% + 12vw);
  margin: 0 -6vw;
  align-self: end;
  gap: 18px 34px;
  padding: clamp(24px, 3.6vh, 34px) 6vw clamp(18px, 2.8vh, 26px);
}

body[data-page="home"] .client-contact .site-footer h3 {
  margin: 0 0 10px;
}

body[data-page="home"] .client-contact .site-footer p {
  margin: 0 0 6px;
  line-height: 1.46;
}

body[data-page="home"] .client-contact .site-footer nav {
  align-content: start;
  gap: 10px 18px;
}

body[data-page="home"] .client-contact .copyright {
  margin-top: 6px;
  padding-top: 15px;
}

body[data-page="home"] .section {
  padding-block: clamp(72px, 9vh, 92px) clamp(42px, 7vh, 72px);
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
  gap: clamp(20px, 4vh, 34px);
}

body[data-page="home"] main > section.client-contact {
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vh, 30px);
  padding: clamp(78px, 9vh, 96px) 6vw 0;
}

body[data-page="home"] .section-head {
  margin-bottom: 0;
}

body[data-page="home"] .hero-copy {
  top: auto;
  left: clamp(52px, 5vw, 104px);
  bottom: clamp(12px, 2.2vh, 38px);
  width: max-content;
  max-width: min(720px, calc(100% - 48px));
}

body[data-page="home"] .hero-copy .brand {
  gap: 14px;
  color: #fff;
  transform: scale(2.35);
  transform-origin: left bottom;
}

body[data-page="home"] .hero-copy .brand-divider {
  background: rgba(255,255,255,.5);
}

body[data-page="home"] .hero-copy .brand-cn {
  color: #fff;
}

body[data-page="home"] .hero-copy .brand-svg-en {
  width: 126px;
}

body[data-page="home"] .hero-copy .brand-svg-cn {
  width: 66px;
}

body[data-page="home"] .hero-copy .brand.brand--image {
  display: inline-flex;
  width: min(420px, 42vw);
  max-width: calc(100vw - 48px);
  transform: none;
}

body[data-page="home"] .hero-copy .brand.brand--image .hero-logo-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  object-position: left bottom;
}

body[data-page="home"] .metric-grid,
body[data-page="home"] .product-grid,
body[data-page="home"] .service-grid,
body[data-page="home"] .model-stage {
  align-self: stretch;
  align-content: center;
}

body[data-page="home"] .metric-card {
  min-height: 0;
  height: clamp(150px, 24vh, 205px);
}

body[data-page="home"] .product-feature {
  grid-template-rows: minmax(0, 1fr);
  align-content: center;
}

body[data-page="home"] .machine-viewer {
  min-height: 0;
  height: clamp(360px, 58vh, 500px);
}

body[data-page="home"] .product-card {
  min-height: 0;
  height: clamp(360px, 52vh, 420px);
}

body[data-page="home"] .product-card__media {
  height: clamp(150px, 25vh, 220px);
}

body[data-page="home"] .product-card__body {
  min-height: 0;
  padding: clamp(18px, 2.4vh, 24px);
}

body[data-page="home"] .product-card h3 {
  font-size: clamp(20px, 2vw, 24px);
}

body[data-page="home"] .product-card p {
  margin-bottom: 16px;
  line-height: 1.55;
}

body[data-page="home"] .product-card__specs {
  margin-bottom: 16px;
}

body[data-page="home"] .immersive-band {
  min-height: 620px;
  height: 100svh;
  align-items: end;
  padding-bottom: 24px;
}

body[data-page="home"] .immersive-copy {
  padding-bottom: clamp(40px, 7vh, 72px);
}

body[data-page="home"] .service-card {
  min-height: 0;
  height: clamp(180px, 31vh, 230px);
}

.page-hero {
  min-height: 100svh;
}

.page-hero-copy {
  bottom: clamp(116px, 16vh, 180px);
}

.filter-bar {
  max-width: 1180px;
  margin: 0 auto 28px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.filter-btn {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid rgba(17,20,24,.16);
  border-radius: 0;
  color: #31383e;
  background: transparent;
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: #fff;
  background: var(--ink);
}

.detail-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 42px;
  padding: 110px 10vw clamp(86px, 13vh, 150px);
}

.detail-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 38%, rgba(174,184,191,.22), transparent 28%),
    linear-gradient(120deg, #0c0f11, #1c2226 48%, #050607);
  content: "";
}

.detail-copy,
.detail-media {
  position: relative;
  z-index: 1;
}

.detail-copy {
  align-self: end;
  max-width: 720px;
}

.detail-media {
  align-self: center;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.detail-media img {
  width: min(760px, 100%);
  max-height: 70vh;
  object-fit: contain;
  filter: drop-shadow(0 38px 50px rgba(0,0,0,.44));
}

.detail-three {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 48px;
  align-items: center;
}

.media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #d4d8da;
}

.spec-table {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(17,20,24,.16);
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) 1fr;
  border-bottom: 1px solid rgba(17,20,24,.12);
}

.spec-row b,
.spec-row span {
  padding: 18px 0;
}

.spec-row b { color: #31383e; }
.spec-row span { color: var(--muted); }

html[lang="en"] .spec-row b {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .02em;
}

.split-block,
.contact-section {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
}

.cert-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cert-list span {
  min-height: 120px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17,20,24,.12);
  background: #fff;
  color: #2f373d;
  font-weight: 800;
}

.contact-section {
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(17,20,24,.1);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #3b4248;
  font-weight: 700;
}

.contact-form .full,
.contact-form button { grid-column: 1 / -1; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(17,20,24,.16);
  border-radius: 0;
  padding: 13px 14px;
  background: #f7f8f7;
  color: var(--ink);
}

.contact-form .btn--primary {
  justify-self: start;
}

.contact-landing {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--black);
}

.contact-landing__bg,
.contact-landing__shade {
  position: absolute;
  inset: 0;
}

.contact-landing__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.12) contrast(1.08) brightness(.62);
}

.contact-landing__shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.52) 42%, rgba(0,0,0,.28)),
    linear-gradient(180deg, rgba(0,0,0,.52), rgba(0,0,0,.10) 34%, rgba(0,0,0,.86));
}

.contact-landing__inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px 10vw 42px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  grid-template-rows: 1fr auto;
  gap: 34px 56px;
  align-items: end;
}

.contact-landing__copy {
  align-self: end;
  max-width: 760px;
  padding-bottom: clamp(54px, 8vh, 112px);
}

.contact-landing__copy h1 {
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 900;
  line-height: 1.04;
}

html[lang="en"] .contact-landing__copy h1 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .98;
}

.contact-landing__copy > p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255,255,255,.74);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.75;
}

.contact-promises {
  max-width: 640px;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.contact-promises span {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px 20px 18px 0;
}

.contact-promises b {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.contact-promises em {
  color: rgba(255,255,255,.62);
  font-style: normal;
  line-height: 1.4;
}

.contact-form--industrial {
  align-self: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    rgba(5,6,7,.62);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 80px rgba(0,0,0,.36);
  backdrop-filter: blur(16px);
}

.contact-form__head {
  grid-column: 1 / -1;
  padding-bottom: 6px;
}

.contact-form__head h2 {
  margin: 0;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.12;
}

html[lang="en"] .contact-form__head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
}

.contact-form--industrial label {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
}

.contact-form--industrial input,
.contact-form--industrial textarea,
.contact-form--industrial select {
  border-color: rgba(255,255,255,.18);
  color: #fff;
  background: rgba(255,255,255,.08);
  outline: none;
  transition: border-color .22s var(--ease), background .22s var(--ease);
}

.contact-form--industrial input:focus,
.contact-form--industrial textarea:focus,
.contact-form--industrial select:focus {
  border-color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.12);
}

.contact-form--industrial select option {
  color: var(--ink);
}

.contact-form--industrial .btn--primary {
  min-width: 180px;
  border-color: rgba(255,255,255,.86);
}

.contact-methods {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .72fr .92fr 1.36fr;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(12px);
}

.contact-methods article {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px 26px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.contact-methods article:last-child {
  border-right: 0;
}

.contact-methods span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-methods b {
  color: #fff;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.45;
}

.contact-preview {
  min-height: 100svh;
  background:
    radial-gradient(circle at 18% 22%, rgba(89,115,131,.28), transparent 30%),
    linear-gradient(145deg, #11161a, #050607 66%);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 34px;
  padding: 54px 6vw 32px;
  color: rgba(255,255,255,.72);
  background: #050607;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: #fff;
}

html[lang="en"] .site-footer h3,
html[lang="en"] .service-card h3,
html[lang="en"] .advantage-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.42);
  font-size: 12px;
}

body[data-page="contact"] {
  background: var(--black);
}

body[data-page="contact"] .contact-simple {
  min-height: calc(100svh - 286px);
  padding: clamp(76px, 9vh, 92px) 6vw clamp(18px, 3.4vh, 30px);
  background:
    linear-gradient(rgba(255,255,255,.065) 1px, transparent 1px),
    radial-gradient(circle at 74% 24%, rgba(150,174,184,.24), transparent 34%),
    linear-gradient(145deg, #2a3339, #151a1e 64%),
    #151a1e;
  background-size: 56px 56px, auto, auto, auto;
}

body[data-page="contact"] .contact-simple .home-contact-card {
  min-height: clamp(220px, 30vh, 300px);
  padding: clamp(30px, 3.6vw, 44px);
  border-color: rgba(255,255,255,.26);
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.075));
}

body[data-page="contact"] .home-contact-card h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 52px);
}

body[data-page="contact"] .site-footer {
  grid-template-columns: 1fr;
  gap: 18px 34px;
  padding: clamp(26px, 3.8vh, 34px) 6vw 20px;
  background: #101519;
}

body[data-page="contact"] .site-footer h3 {
  margin: 0 0 10px;
}

body[data-page="contact"] .site-footer p {
  margin: 0 0 6px;
  line-height: 1.48;
}

body[data-page="contact"] .site-footer nav {
  align-content: start;
  gap: 10px 18px;
}

body[data-page="contact"] .copyright {
  margin-top: 6px;
  padding-top: 16px;
}

.social-dock {
  position: fixed;
  z-index: 70;
  left: auto;
  right: clamp(12px, 1.6vw, 24px);
  bottom: clamp(12px, 1.8vw, 26px);
  display: grid;
  gap: 14px;
  color: rgba(255,255,255,.9);
}

.social-dock__link.is-on-light {
  color: rgba(17,20,24,.84);
}

body.menu-open .social-dock__link {
  color: rgba(255,255,255,.9);
}

.social-dock__link {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: inherit;
  background: transparent;
  transform: translateY(0);
  transition: color .22s var(--ease), transform .24s var(--ease), opacity .24s var(--ease);
}

.social-dock__link:hover {
  opacity: .72;
  transform: translateY(-2px);
}

.social-dock svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="home"].bmw-scroll-ready main > section,
body[data-page="products"].bmw-scroll-ready .page-hero,
body[data-page="products"].bmw-scroll-ready .product-scene,
body[data-page="cases"].bmw-scroll-ready main > section,
body[data-page="about"].bmw-scroll-ready main > section {
  --scene-shift: 0px;
  --scene-opacity: 1;
  --scene-content-scale: 1;
  --scene-media-shift: 0px;
  --scene-media-scale: 1;
  --scene-visible-center-shift: 0px;
}

body[data-page="home"].bmw-scroll-ready .hero-slide {
  inset: -5%;
  width: auto;
  height: auto;
}

body[data-page="products"].bmw-scroll-ready .page-hero img,
body[data-page="cases"].bmw-scroll-ready .page-hero img,
body[data-page="about"].bmw-scroll-ready .page-hero img {
  inset: -5%;
  width: auto;
  height: auto;
}

body[data-page="home"].bmw-scroll-ready .hero-slide,
body[data-page="products"].bmw-scroll-ready .page-hero img,
body[data-page="cases"].bmw-scroll-ready .page-hero img,
body[data-page="about"].bmw-scroll-ready .page-hero img,
body[data-page="home"].bmw-scroll-ready .section--dark::before,
body[data-page="home"].bmw-scroll-ready .section--light::before {
  transform: none;
  transform-origin: center;
  transition: transform .28s var(--ease);
  will-change: transform;
}

body[data-page="home"].bmw-scroll-ready .hero-copy,
body[data-page="home"].bmw-scroll-ready .section-head,
body[data-page="home"].bmw-scroll-ready .positioning-grid,
body[data-page="home"].bmw-scroll-ready .home-product-rail,
body[data-page="home"].bmw-scroll-ready .home-product-progress,
body[data-page="home"].bmw-scroll-ready .solution-grid,
body[data-page="home"].bmw-scroll-ready .home-contact-card,
body[data-page="products"].bmw-scroll-ready .page-hero-copy,
body[data-page="cases"].bmw-scroll-ready .page-hero-copy,
body[data-page="about"].bmw-scroll-ready .page-hero-copy,
body[data-page="about"].bmw-scroll-ready .about-kicker,
body[data-page="about"].bmw-scroll-ready .about-copy,
body[data-page="about"].bmw-scroll-ready .about-capability__copy,
body[data-page="about"].bmw-scroll-ready .about-system-art__copy,
body[data-page="about"].bmw-scroll-ready .about-system-art__scope,
body[data-page="about"].bmw-scroll-ready .about-system-art__process,
body[data-page="about"].bmw-scroll-ready .about-vision .immersive-copy {
  opacity: var(--scene-opacity);
  transform: none;
  transform-origin: center;
  transition: opacity .2s linear, transform .28s var(--ease);
  will-change: opacity, transform;
}

body[data-page="home"].bmw-scroll-ready .hero--home .hero-copy {
  opacity: 1;
  transform: none;
  transform-origin: left bottom;
  transition: none;
}

body[data-page="home"].bmw-scroll-ready .home-product-entry .section-scroll-title {
  opacity: 1;
  transform: none;
  transform-origin: left bottom;
  transition: none;
}

body[data-page="home"].bmw-scroll-ready .home-case-production .home-case-production__copy {
  opacity: 1;
  transform: none;
  transform-origin: left bottom;
  transition: none;
  will-change: transform;
}

body[data-page="products"].bmw-scroll-ready .product-scene__copy {
  top: auto;
  bottom: clamp(40px, 6vh, 88px);
  opacity: 1;
  translate: 0 0;
  transform: none;
  transform-origin: left bottom;
  transition: none;
  will-change: transform;
}

body[data-page="products"].bmw-scroll-ready .product-scene-detail__headline,
body[data-page="products"].bmw-scroll-ready .product-scene-detail__actions {
  transform: none;
  transform-origin: left bottom;
  transition: none;
  will-change: transform;
}

body[data-page="products"].bmw-scroll-ready .product-scene__media {
  transform: none;
  transform-origin: center;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"].bmw-scroll-ready .hero-slide,
  body[data-page="home"].bmw-scroll-ready .section--dark::before,
  body[data-page="home"].bmw-scroll-ready .section--light::before,
  body[data-page="products"].bmw-scroll-ready .page-hero img,
  body[data-page="about"].bmw-scroll-ready .page-hero img,
  body[data-page="home"].bmw-scroll-ready .hero-copy,
  body[data-page="home"].bmw-scroll-ready .section-head,
  body[data-page="home"].bmw-scroll-ready .positioning-grid,
  body[data-page="home"].bmw-scroll-ready .home-product-rail,
  body[data-page="home"].bmw-scroll-ready .home-product-progress,
  body[data-page="home"].bmw-scroll-ready .solution-grid,
  body[data-page="home"].bmw-scroll-ready .home-contact-card,
  body[data-page="products"].bmw-scroll-ready .page-hero-copy,
  body[data-page="cases"].bmw-scroll-ready .page-hero-copy,
  body[data-page="about"].bmw-scroll-ready .page-hero-copy,
  body[data-page="about"].bmw-scroll-ready .about-kicker,
  body[data-page="about"].bmw-scroll-ready .about-copy,
  body[data-page="about"].bmw-scroll-ready .about-capability__copy,
  body[data-page="about"].bmw-scroll-ready .about-system-art__copy,
  body[data-page="about"].bmw-scroll-ready .about-system-art__scope,
  body[data-page="about"].bmw-scroll-ready .about-system-art__process,
  body[data-page="about"].bmw-scroll-ready .about-vision .immersive-copy,
  body[data-page="products"].bmw-scroll-ready .product-scene__copy,
  body[data-page="products"].bmw-scroll-ready .product-scene__media {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes navJellyIn {
  0% {
    opacity: 0;
    transform: translate3d(0, -22px, 0) scale(.98);
  }
  68% {
    opacity: 1;
    transform: translate3d(0, 1px, 0) scale(1.01);
  }
  86% {
    transform: translate3d(0, -.5px, 0) scale(.998);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes brandFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes brandEnglishSoftIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandChineseSoftIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes brandEnglishDrop {
  0% {
    opacity: 0;
    transform: translateY(-36px) scale(.9);
  }
  56% {
    opacity: 1;
    transform: translateY(7px) scale(1.08);
  }
  76% {
    transform: translateY(-3px) scale(.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes brandDividerGrow {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  100% {
    opacity: .82;
    transform: scaleY(1);
  }
}

@keyframes brandChineseSlide {
  0% {
    opacity: 0;
    transform: translateX(-34px) scale(.92);
  }
  62% {
    opacity: 1;
    transform: translateX(7px) scale(1.06);
  }
  82% {
    transform: translateX(-2px) scale(.99);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.brand-positioning {
  position: relative;
}

.positioning-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.positioning-grid article {
  min-height: 230px;
  padding: 30px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(17,20,24,.1);
  background: #fff;
}

.positioning-grid strong {
  font-size: 24px;
  font-weight: 700;
}

.positioning-grid p {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

body[data-page="home"] .home-product-entry {
  position: sticky;
  overflow: hidden;
  grid-template-rows: 1fr auto minmax(10px, 2vh);
  align-content: center;
  align-items: center;
  justify-items: center;
  gap: 0;
  padding: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(95,119,124,.34), transparent 34%),
    linear-gradient(135deg, #171d21, #090b0d 66%);
}

.section-scroll-title {
  position: absolute;
  z-index: 3;
  left: clamp(36px, 4vw, 64px);
  bottom: clamp(54px, 7vh, 86px);
  width: min(760px, calc(100% - 48px));
  pointer-events: none;
}

body[data-page="home"] .home-product-entry > .section-scroll-title {
  position: absolute;
  z-index: 3;
  inset: auto auto clamp(54px, 7vh, 86px) clamp(36px, 4vw, 64px);
}

.section-scroll-title h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 900;
  line-height: 1.05;
}

html[lang="en"] .section-scroll-title h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .98;
}

.home-product-rail {
  --product-gap: clamp(18px, 1.4vw, 28px);
  --product-side-pad: clamp(42px, 6vw, 120px);
  width: 100vw;
  max-width: none;
  margin: 0 auto;
  display: flex;
  gap: var(--product-gap);
  overflow-x: auto;
  padding: 0 var(--product-side-pad);
  cursor: grab;
  scroll-snap-type: none;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
  user-select: none;
}

.home-product-rail::-webkit-scrollbar {
  display: none;
}

.home-product-rail.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.home-product-card {
  --product-divider-center: clamp(-14px, -.7vw, -9px);
  --product-divider-width: clamp(4px, .42vw, 6px);
  --product-divider-half: clamp(2px, .21vw, 3px);
  position: relative;
  flex: 0 0 calc((100vw - (var(--product-side-pad) * 2) - (var(--product-gap) * 2)) / 3);
  height: min(62vh, 560px);
  min-height: 430px;
  display: grid;
  grid-template-rows: auto minmax(250px, 50%) minmax(0, 1fr);
  overflow: visible;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 1px;
  background: transparent;
  scroll-snap-align: none;
  transition: transform .24s var(--ease);
}

.home-product-card:hover {
  border-color: transparent;
}

.home-product-card::before,
.home-product-card::after {
  position: absolute;
  top: clamp(8px, 2%, 14px);
  bottom: clamp(8px, 2%, 14px);
  z-index: 4;
  width: var(--product-divider-width);
  content: "";
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 34%, rgba(255,255,255,.96) 50%, rgba(255,255,255,.18) 66%, transparent 100%);
  clip-path: polygon(50% 0, 64% 8%, 78% 50%, 64% 92%, 50% 100%, 36% 92%, 22% 50%, 36% 8%);
  filter:
    drop-shadow(0 0 5px rgba(255,255,255,.5))
    drop-shadow(0 0 14px rgba(146,184,204,.3));
  transform: scaleY(.72);
  transform-origin: center;
  transition: opacity .24s var(--ease), transform .3s var(--ease), filter .3s var(--ease);
}

.home-product-card::before {
  left: calc(var(--product-divider-center) - var(--product-divider-half));
}

.home-product-card::after {
  right: calc(var(--product-divider-center) - var(--product-divider-half));
}

.home-product-card:hover::before,
.home-product-card:hover::after,
.home-product-card:focus-within::before,
.home-product-card:focus-within::after {
  opacity: 1;
  filter:
    drop-shadow(0 0 7px rgba(255,255,255,.68))
    drop-shadow(0 0 18px rgba(156,205,230,.42));
  transform: scaleY(1);
}

.home-product-card a {
  -webkit-user-drag: none;
  user-select: none;
}

.home-product-card__head {
  min-height: clamp(92px, 12vh, 132px);
  padding: clamp(18px, 2.4vh, 28px) 10px 0;
  display: grid;
  align-content: start;
  gap: 10px;
}

.home-product-card__head .eyebrow {
  margin: 0;
}

.home-product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: clamp(10px, 2.2vh, 22px);
  padding: 0;
  background: transparent;
  -webkit-user-drag: none;
  user-select: none;
}

.home-product-card__media img {
  position: absolute;
  inset: clamp(10px, 2vh, 20px) 0 0;
  width: 100%;
  height: calc(100% - clamp(10px, 2vh, 20px));
  display: block;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform .6s var(--ease);
}

.home-product-card--cover .home-product-card__media img {
  object-fit: cover;
}

.home-product-card--render .home-product-card__media {
  background: transparent;
  box-shadow: none;
}

.home-product-card--render .home-product-card__media img {
  inset: 0;
  height: 100%;
  object-fit: contain;
}

.home-product-card--large-machine .home-product-card__media img {
  transform: scale(1.18);
}

.home-product-card:hover img {
  transform: scale(1.025);
}

.home-product-card--large-machine:hover img {
  transform: scale(1.22);
}

.home-product-card__body {
  padding: 16px 10px 14px;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 0;
}

.home-product-card h3 {
  margin: 0;
  font-size: clamp(25px, 2.15vw, 34px);
  line-height: 1.18;
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.home-product-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.85;
}

.home-product-card .product-card__specs {
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.home-product-card .product-card__specs span {
  padding: 0;
  color: rgba(255,255,255,.68);
  background: transparent;
  font-size: 12px;
  line-height: 1.7;
}

body[data-page="home"] .home-product-card {
  height: min(72vh, 620px);
  min-height: 500px;
  grid-template-rows: auto minmax(220px, 42%) minmax(0, 1fr);
}

body[data-page="home"] .home-product-card__head {
  min-height: clamp(104px, 13vh, 146px);
  padding-top: clamp(22px, 3vh, 34px);
}

body[data-page="home"] .home-product-card__body {
  padding: 18px 10px 14px;
  gap: 12px;
}

body[data-page="home"] .home-product-card h3 {
  font-size: clamp(28px, 2.35vw, 38px);
  line-height: 1.16;
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

body[data-page="home"] .home-product-card p {
  line-height: 2;
}

body[data-page="home"] .home-product-card__body > a {
  color: rgba(255,255,255,.72);
}

body[data-page="home"] .home-product-card .product-card__specs {
  margin-top: 6px;
  gap: 10px 14px;
}

body[data-page="home"] .home-product-card .product-card__specs span {
  line-height: 1.85;
}

.home-product-card__body > a {
  width: max-content;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 700;
}

.home-product-progress {
  --progress-left: 0%;
  --progress-size: 18%;
  position: relative;
  width: min(520px, 42vw);
  height: 18px;
  align-self: end;
  justify-self: center;
  cursor: pointer;
  touch-action: none;
  opacity: .74;
  transition: opacity .22s var(--ease);
}

.home-product-progress::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  content: "";
  background: rgba(255,255,255,.22);
  transform: translateY(-50%);
}

.home-product-progress__thumb {
  position: absolute;
  left: var(--progress-left);
  top: 50%;
  width: var(--progress-size);
  height: 3px;
  min-width: 32px;
  background: rgba(255,255,255,.82);
  border-radius: 1px;
  transform: translateY(-50%);
}

.home-product-progress:hover,
.home-product-progress.is-dragging {
  opacity: 1;
}

.home-product-progress.is-static {
  display: none;
}

.products-center {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 90px 0 62px;
  align-content: center;
  background:
    radial-gradient(circle at 70% 22%, rgba(116,140,148,.42), transparent 32%),
    linear-gradient(135deg, #182025, #080a0c 66%);
}

.products-center::before {
  position: absolute;
  inset: 0;
  opacity: .52;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  pointer-events: none;
}

.products-center__head,
.products-center__filters,
.products-center__rail {
  position: relative;
  z-index: 1;
}

.products-center__head {
  max-width: 1180px;
  margin: 0 auto clamp(24px, 4vh, 38px);
  padding: 0 6vw;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: 28px;
  align-items: end;
}

.products-center__head h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 900;
  line-height: 1.08;
}

html[lang="en"] .products-center__head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .98;
}

.products-center__head p:not(.eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}

.products-center__filters {
  max-width: none;
  margin: 0 6vw 30px;
  padding-bottom: 0;
}

.products-center__filters .filter-btn {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.07);
}

.products-center__filters .filter-btn.is-active,
.products-center__filters .filter-btn:hover {
  color: var(--black);
  border-color: rgba(255,255,255,.88);
  background: linear-gradient(135deg, #f2f4f4, #aeb8bf);
}

.products-center__rail {
  min-height: 430px;
}

body[data-page="products"] .home-product-card {
  flex-basis: min(430px, 78vw);
  min-height: 440px;
}

body[data-page="products"] .home-product-card__media {
  min-height: 250px;
}

body[data-page="products"] .home-product-card h3 {
  font-size: clamp(22px, 2vw, 28px);
}

body[data-page="products"] {
  background: var(--black);
}

body[data-page="products"] .site-footer {
  position: relative;
  z-index: 20;
  background: #050607;
}

.products-index {
  position: relative;
  color: #fff;
  background: var(--black);
}

.products-scenes {
  display: block;
}

.product-scene {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 76px 6vw;
  isolation: isolate;
  background:
    linear-gradient(90deg, #0b0f11 0%, #151a1d 46%, #08090a 100%),
    var(--black);
}

body[data-page="products"] .page-hero,
body[data-page="products"] .product-scene {
  position: sticky;
  top: 0;
  z-index: var(--scene-layer, 1);
}

.product-scene:nth-child(even) {
  background:
    linear-gradient(90deg, #0b0f11 0%, #151a1d 46%, #08090a 100%),
    var(--black);
}

.product-scene::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .14;
  background:
    radial-gradient(circle at 24% 60%, rgba(255,255,255,.06), transparent 22%),
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: auto, 6px 6px;
  clip-path: polygon(8vw 45%, 34vw 45%, 34vw 86%, 8vw 86%);
  content: "";
  pointer-events: none;
}

.product-scene__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,8,9,.72) 0%, rgba(11,14,16,.50) 28%, rgba(14,17,19,.12) 54%, rgba(5,6,7,0) 100%),
    linear-gradient(180deg, rgba(5,6,7,0), rgba(5,6,7,.02) 42%, rgba(5,6,7,.34)),
    radial-gradient(circle at 20% 72%, rgba(5,6,7,.24), transparent 38%),
    radial-gradient(circle at 76% 44%, rgba(100,128,144,.08), transparent 35%);
}

.product-scene__copy {
  position: absolute;
  left: clamp(52px, 10vw, 136px);
  bottom: clamp(40px, 6vh, 88px);
  z-index: 3;
  max-width: min(960px, calc(100vw - clamp(52px, 10vw, 136px) - 32px));
  width: min(960px, calc(100vw - clamp(52px, 10vw, 136px) - 32px));
  margin-left: 0;
  display: flex;
  flex-direction: column;
}

.product-scene__copy h2 {
  order: 3;
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.8vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

html[lang="en"] .product-scene__copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .98;
}

.product-scene__copy > p:not(.eyebrow) {
  order: 4;
  max-width: none;
  margin: 0 0 24px;
  color: rgba(255,255,255,.66);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.45;
  white-space: nowrap;
}

.product-scene__specs {
  order: 2;
  margin: 30px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-scene__detail,
.product-card__link,
.home-product-card__body > a {
  border-radius: 0;
}

.product-scene__detail {
  order: 5;
  width: max-content;
  min-width: 168px;
}

.product-scene__specs span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(8px);
  font-size: 13px;
}

.product-scene__media {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  overflow: hidden;
  background: radial-gradient(circle at 68% 48%, rgba(255,255,255,.12), transparent 44%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.42) clamp(16px, 2vw, 30px), #000 clamp(40px, 5vw, 72px), #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.42) clamp(16px, 2vw, 30px), #000 clamp(40px, 5vw, 72px), #000 100%);
}

.product-scene__media img {
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(.84) contrast(1.06) brightness(.90);
  transform: translateZ(0);
  transition: transform .7s var(--ease);
}

.product-scene[data-product-index="0"] .product-scene__media,
.product-scene[data-product-index="1"] .product-scene__media,
.product-scene[data-product-index="2"] .product-scene__media {
  top: clamp(70px, 10vh, 110px);
  right: clamp(0px, 2vw, 34px);
  bottom: clamp(48px, 8vh, 82px);
  left: auto;
  width: min(66vw, 1060px);
  height: auto;
  overflow: visible;
  background: radial-gradient(circle at 68% 50%, rgba(255,255,255,.16), transparent 48%);
  -webkit-mask-image: none;
  mask-image: none;
}

.product-scene[data-product-index="0"] .product-scene__media img,
.product-scene[data-product-index="1"] .product-scene__media img,
.product-scene[data-product-index="2"] .product-scene__media img {
  object-fit: contain;
  object-position: right top;
  filter: saturate(.86) contrast(1.04) brightness(.90);
  mix-blend-mode: lighten;
  -webkit-mask-image: radial-gradient(ellipse 105% 84% at 58% 53%, #000 0 70%, rgba(0,0,0,.84) 82%, transparent 100%);
  mask-image: radial-gradient(ellipse 105% 84% at 58% 53%, #000 0 70%, rgba(0,0,0,.84) 82%, transparent 100%);
}

@media (min-width: 761px) {
  body[data-page="products"] .product-scene[data-product-index="0"] .product-scene__media,
  body[data-page="products"] .product-scene[data-product-index="1"] .product-scene__media,
  body[data-page="products"] .product-scene[data-product-index="2"] .product-scene__media {
    top: 0;
    bottom: 0;
    width: min(70vw, 1100px);
  }

  body[data-page="products"] .product-scene[data-product-index="0"] .product-scene__media img,
  body[data-page="products"] .product-scene[data-product-index="1"] .product-scene__media img,
  body[data-page="products"] .product-scene[data-product-index="2"] .product-scene__media img {
    transform: translate3d(0, clamp(-64px, -7.5vh, -50px), 0);
  }
}

.product-scene__detail-panel {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: center;
  gap: clamp(34px, 5.2vw, 78px);
  padding: calc(var(--header-height) + clamp(24px, 4.5vh, 58px)) clamp(28px, 5.8vw, 96px) clamp(58px, 9vh, 104px);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: opacity .32s var(--ease), visibility .32s var(--ease);
}

.product-scene.is-detail-open .product-scene__copy,
.product-scene.is-detail-open .product-scene__media {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.product-scene.is-detail-open .product-scene__detail-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-scene-detail__stage,
.product-scene-detail__info {
  min-width: 0;
}

.product-scene-detail__stage {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center;
  padding-bottom: clamp(104px, 14vh, 150px);
}

.product-scene-detail__machine {
  justify-self: center;
  width: min(100%, 62vw);
  height: min(74svh, 780px);
  min-height: 560px;
  overflow: visible;
  background: transparent;
  transform: translate3d(0, clamp(-30px, -3vh, -14px), 0);
}

.product-scene-detail__image-fallback {
  justify-self: center;
  align-self: center;
  width: min(100%, 62vw);
  height: min(74svh, 780px);
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: visible;
  transform: translate3d(0, clamp(-30px, -3vh, -14px), 0);
}

.product-scene-detail__image-fallback img {
  width: 100%;
  height: 100%;
  max-width: min(58vw, 860px);
  max-height: min(70svh, 720px);
  object-fit: contain;
  object-position: center;
  filter: saturate(.94) contrast(1.04) brightness(.98);
}

.product-scene-detail__image-fallback--viewer {
  width: auto;
  height: auto;
  min-height: 0;
  transform: none;
}

.product-scene-detail__headline {
  position: absolute;
  left: clamp(18px, 3vw, 52px);
  bottom: clamp(26px, 4.6vh, 54px);
  z-index: 2;
  max-width: calc(100vw - clamp(56px, 11.6vw, 192px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.product-scene-detail__name {
  margin: 0;
  max-width: calc(100vw - clamp(56px, 11.6vw, 192px));
  color: #fff;
  font-family: var(--font-serif);
  font-size: calc(clamp(42px, 4.75vw, 78px) * var(--product-detail-name-scale, 1));
  font-weight: 900;
  line-height: .95;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: visible;
  text-shadow: 0 18px 42px rgba(0,0,0,.45);
}

.product-scene-detail__actions {
  position: absolute;
  left: var(--product-scene-action-left);
  bottom: var(--product-scene-action-bottom);
  z-index: 3;
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-scene-detail__back {
  min-width: 0;
  min-height: 42px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 0;
  color: #fff;
  background: rgba(255,255,255,.06);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}

.product-scene-detail__back:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.12);
}

.product-scene-detail__machine::after {
  display: none;
}

.product-scene-detail__machine canvas {
  background: transparent;
  cursor: default;
}

.product-scene-detail__machine.is-model-hot canvas {
  cursor: grab;
}

.product-scene-detail__machine.is-dragging canvas {
  cursor: grabbing;
}

.product-scene-detail__info {
  align-self: center;
  transform: translate3d(0, -24px, 0);
  max-width: 34em;
}

.product-scene-detail__info h2 {
  margin: 0 0 18px;
  max-width: 10em;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 900;
  line-height: 1.04;
}

.product-scene-detail__info > p:not(.eyebrow) {
  max-width: 30em;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(18px, 1.42vw, 23px);
  line-height: 1.9;
}

.product-scene-detail__specs {
  margin: clamp(24px, 3.4vh, 38px) 0 0;
  max-width: none;
  border-top-color: rgba(255,255,255,.18);
}

.product-scene-detail__specs .spec-row {
  grid-template-columns: minmax(214px, .48fr) minmax(0, 1fr);
  border-bottom-color: rgba(255,255,255,.13);
}

.product-scene-detail__specs .spec-row b,
.product-scene-detail__specs .spec-row span {
  padding: 8px 0;
  font-size: clamp(12px, .92vw, 14px);
  line-height: 1.45;
}

.product-scene-detail__specs .spec-row b {
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}

.product-scene-detail__specs .spec-row span {
  color: rgba(255,255,255,.62);
}

@media (max-width: 980px) {
  .product-scene__detail-panel {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 18px;
    padding: calc(var(--header-height) + 18px) 24px max(58px, calc(46px + env(safe-area-inset-bottom)));
  }

  .product-scene-detail__info {
    transform: none;
    justify-self: center;
    text-align: left;
  }

  .product-scene-detail__stage {
    min-height: 34svh;
    padding-bottom: 92px;
  }

  .product-scene-detail__machine,
  .product-scene-detail__image-fallback {
    height: 34svh;
    min-height: 260px;
    transform: translate3d(0, -26px, 0);
  }

  .product-scene-detail__image-fallback img {
    max-width: 100%;
    max-height: 34svh;
  }

  .product-scene-detail__headline {
    left: clamp(18px, 3vw, 52px);
    bottom: max(22px, calc(18px + env(safe-area-inset-bottom)));
    max-width: calc(100vw - 52px);
    gap: 10px;
  }

  .product-scene-detail__name {
    max-width: calc(100vw - 52px);
    font-size: calc(clamp(30px, 7.4vw, 52px) * var(--product-detail-name-scale, 1));
  }

  .product-scene-detail__back {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .product-scene-detail__info h2 {
    max-width: 10em;
    font-size: clamp(32px, 8vw, 48px);
  }

  .product-scene-detail__info > p:not(.eyebrow) {
    max-width: 27em;
    font-size: 15px;
    line-height: 1.65;
  }

  .product-scene-detail__specs {
    margin-top: 18px;
  }

  .product-scene-detail__specs .spec-row {
    grid-template-columns: minmax(154px, .48fr) minmax(0, 1fr);
  }

  .product-scene-detail__specs .spec-row b,
  .product-scene-detail__specs .spec-row span {
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.38;
  }

  .product-scene-detail__specs .spec-row b {
    white-space: normal;
  }

  .product-scene-detail__actions {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .product-scene__detail-panel {
    align-content: start;
    overflow: hidden;
    padding-inline: 20px;
  }

  .product-scene-detail__info {
    transform: none;
  }

  .product-scene-detail__stage {
    min-height: 29svh;
    padding-bottom: 74px;
  }

  .product-scene-detail__machine,
  .product-scene-detail__image-fallback {
    min-height: 210px;
    height: 29svh;
    transform: translate3d(0, -18px, 0);
  }

  .product-scene-detail__image-fallback img {
    max-width: 100%;
    max-height: 29svh;
  }

  .product-scene-detail__headline {
    left: 16px;
    bottom: max(18px, calc(14px + env(safe-area-inset-bottom)));
    max-width: calc(100vw - 32px);
    gap: 8px;
  }

  .product-scene-detail__name {
    max-width: calc(100vw - 32px);
    font-size: calc(clamp(25px, 7.2vw, 34px) * var(--product-detail-name-scale, 1));
  }

  .product-scene-detail__info h2 {
    font-size: clamp(28px, 8.2vw, 38px);
  }

  .product-scene-detail__specs .spec-row {
    grid-template-columns: minmax(82px, .38fr) minmax(0, 1fr);
  }

  .product-scene-detail__actions {
    width: 100%;
  }

  .product-scene-detail__back {
    width: fit-content;
  }
}

.product-page-index {
  --product-index-progress: 0%;
  --index-line-x: 34px;
  position: fixed;
  z-index: 49;
  left: clamp(-6px, -0.4vw, -2px);
  top: calc(50svh + var(--header-plate-half-height, 32px));
  width: clamp(156px, 13vw, 220px);
  height: min(66svh, 560px);
  color: #fff;
  pointer-events: none;
  transform: translateY(-50%);
}

.product-page-index[hidden] {
  display: none;
}

.product-page-index__line,
.product-page-index__fill {
  position: absolute;
  left: var(--index-line-x);
  top: 0;
  width: 1px;
  transform: translateX(-50%);
  content: "";
}

.product-page-index__line {
  bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(210,218,222,.32) 9%, rgba(210,218,222,.28) 91%, transparent);
}

.product-page-index__fill {
  height: var(--product-index-progress);
  min-height: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(164,178,186,.72));
  box-shadow: 0 0 14px rgba(210,224,230,.22);
  transition: height .16s linear;
}

.product-page-index__nodes {
  position: absolute;
  inset: 0;
}

.product-page-index__node {
  --node-progress: 0;
  --label-scale: .72;
  --label-opacity: 0;
  --label-shift: 0px;
  --label-glow: 0;
  position: absolute;
  left: var(--index-line-x);
  top: var(--node-pos);
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255,255,255,.62);
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.product-page-index__node::before,
.product-page-index__node::after {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.product-page-index__node::before {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(232,238,240,.54);
  background: rgba(19,22,24,.82);
  box-shadow: 0 0 0 5px rgba(5,6,7,.36);
  transition: width .22s var(--ease), height .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}

.product-page-index__node::after {
  width: 21px;
  height: 21px;
  border: 1px solid rgba(232,238,240,.72);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.62);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}

.product-page-index__node span {
  position: absolute;
  left: 34px;
  top: 50%;
  color: rgba(255,255,255, calc(.54 + (var(--label-glow) * .42)));
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 0 calc(2px + (var(--label-glow) * 12px)) rgba(220,232,238, calc(var(--label-glow) * .42));
  transform: translate(calc(-12px + var(--label-shift)), -50%) scale(var(--label-scale));
  transform-origin: left center;
  transition: opacity .14s linear, transform .14s var(--ease), color .14s linear, text-shadow .14s linear;
}

.product-page-index__node.is-complete::before {
  border-color: rgba(232,238,240,.84);
  background: rgba(232,238,240,.82);
}

.product-page-index__node.is-active::before,
.product-page-index__node:hover::before {
  width: 10px;
  height: 10px;
  border-color: rgba(255,255,255,.96);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255,255,255,.08), 0 0 18px rgba(210,224,230,.36);
}

.product-page-index__node.is-active::after,
.product-page-index__node:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-page-index.is-labels-visible .product-page-index__node span,
.product-page-index__node:focus-visible span {
  opacity: var(--label-opacity);
}

.solutions-overview {
  position: relative;
}

.solution-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-grid article {
  min-height: 260px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17,20,24,.1);
  background: #fff;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}

.solution-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(17,20,24,.12);
}

.solution-grid span {
  color: var(--gold);
  font-size: 36px;
  font-weight: 300;
}

.solution-grid h3 {
  margin: 24px 0 12px;
  font-size: 22px;
}

.solution-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.client-countries {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(89,115,131,.26), transparent 34%),
    linear-gradient(145deg, #11161a, #050607 66%);
}

.flags-page {
  gap: clamp(28px, 5vh, 52px);
  padding-block: clamp(96px, 12vh, 132px) clamp(48px, 8vh, 78px);
}

.flags-page .section-head {
  width: 100%;
  margin-bottom: 0;
}

.flags-page .section-head h1 {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
}

html[lang="en"] .flags-page .section-head h1 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .98;
}

body[data-page="home"] .client-countries.flags-page,
body[data-page="flags"] .client-countries.flags-page {
  display: block;
  height: 100svh;
  min-height: 620px;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(5,6,7,.38), rgba(5,6,7,.08) 24%, rgba(5,6,7,.08) 76%, rgba(5,6,7,.48)),
    linear-gradient(180deg, rgba(5,6,7,.22), rgba(5,6,7,.08) 42%, rgba(5,6,7,.68)),
    url("../assets/flags/canada.png") 0% center / 20% 100% no-repeat,
    url("../assets/flags/vietnam.png") 25% center / 20% 100% no-repeat,
    url("../assets/flags/brazil.png") 50% center / 20% 100% no-repeat,
    url("../assets/flags/malaysia.png") 75% center / 20% 100% no-repeat,
    url("../assets/flags/indonesia.png") 100% center / 20% 100% no-repeat,
    #050607;
}

body[data-page="home"] .client-countries.flags-page::before,
body[data-page="flags"] .client-countries.flags-page::before {
  display: none;
}

body[data-page="home"] .client-countries.flags-page > .flag-wall,
body[data-page="flags"] .client-countries.flags-page > .flag-wall {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  transform: none;
  transition: none;
  will-change: auto;
}

body[data-page="home"].bmw-scroll-ready .client-countries.flags-page > .flag-wall,
body[data-page="flags"].bmw-scroll-ready .client-countries.flags-page > .flag-wall {
  transform: none;
  transition: none;
  will-change: auto;
}

body[data-page="home"] .client-countries.flags-page > .flag-wall::after,
body[data-page="flags"] .client-countries.flags-page > .flag-wall::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,6,7,.38), rgba(5,6,7,.08) 24%, rgba(5,6,7,.08) 76%, rgba(5,6,7,.48)),
    linear-gradient(180deg, rgba(5,6,7,.22), rgba(5,6,7,.08) 42%, rgba(5,6,7,.68));
}

body[data-page="home"] .client-countries.flags-page .flag-bg,
body[data-page="flags"] .client-countries.flags-page .flag-bg {
  position: relative;
  display: block;
  min-width: 0;
  height: 100%;
  background-position: center calc(50% + var(--scene-bg-shift, 0px));
  background-size: auto calc(100% + 220px);
  background-repeat: no-repeat;
  filter: saturate(.98) contrast(1.05) brightness(.78);
  transition: background-position .28s var(--ease);
  will-change: background-position;
}

body[data-page="home"] .client-countries.flags-page .flag-bg::before,
body[data-page="flags"] .client-countries.flags-page .flag-bg::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,6,7,.42), transparent 18%, transparent 82%, rgba(5,6,7,.42)),
    linear-gradient(180deg, transparent 0%, rgba(5,6,7,.28) 100%);
  mix-blend-mode: multiply;
}

body[data-page="home"] .client-countries.flags-page .flag-bg--canada,
body[data-page="flags"] .client-countries.flags-page .flag-bg--canada {
  background-image: url("../assets/flags/canada.png");
}

body[data-page="home"] .client-countries.flags-page .flag-bg--vietnam,
body[data-page="flags"] .client-countries.flags-page .flag-bg--vietnam {
  background-image: url("../assets/flags/vietnam.png");
}

body[data-page="home"] .client-countries.flags-page .flag-bg--brazil,
body[data-page="flags"] .client-countries.flags-page .flag-bg--brazil {
  background-image: url("../assets/flags/brazil.png");
}

body[data-page="home"] .client-countries.flags-page .flag-bg--malaysia,
body[data-page="flags"] .client-countries.flags-page .flag-bg--malaysia {
  background-image: url("../assets/flags/malaysia.png");
}

body[data-page="home"] .client-countries.flags-page .flag-bg--indonesia,
body[data-page="flags"] .client-countries.flags-page .flag-bg--indonesia {
  background-image: url("../assets/flags/indonesia.png");
}

body[data-page="home"] .client-countries.flags-page .section-head,
body[data-page="flags"] .client-countries.flags-page .section-head {
  position: absolute;
  z-index: 2;
  left: clamp(36px, 4vw, 64px);
  right: auto;
  top: auto;
  bottom: clamp(34px, 5vh, 68px);
  width: min(1180px, calc(100% - 48px));
  margin: 0;
  display: flex;
  flex-direction: column-reverse;
  gap: clamp(10px, 1.6vh, 18px);
  align-items: flex-start;
  transform: none;
  transform-origin: left bottom;
}

body[data-page="home"] .client-countries.flags-page .section-head h1,
body[data-page="flags"] .client-countries.flags-page .section-head h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1.05;
  white-space: nowrap;
}
body[data-page="home"] .client-countries.flags-page .section-head p:not(.eyebrow),
body[data-page="flags"] .client-countries.flags-page .section-head p:not(.eyebrow) {
  max-width: min(34em, calc(100vw - 120px));
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(14px, 1.35vw, 19px);
  line-height: 1.35;
  white-space: normal;
}
.client-contact {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
}

.contact-simple {
  min-height: auto;
  padding: clamp(104px, 12vh, 132px) 6vw clamp(42px, 7vh, 68px);
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(145deg, #11161a, #060708 64%),
    var(--black);
  background-size: 56px 56px, auto, auto;
}

.contact-simple .home-contact-card {
  max-width: min(1480px, 100%);
  min-height: clamp(320px, 34vh, 410px);
  display: grid;
  align-content: center;
}

.home-contact-card {
  max-width: 1180px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.home-contact-card h2 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.12;
}

.home-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-contact-actions .btn {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}

@media (max-width: 980px) {
  :root {
    --header-height: 54px;
    --header-plate-height: 54px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 0 18px;
  }

  .menu-toggle { display: grid; }
  .header-nav,
  .ghost-link { display: none; }
  .mobile-drawer { display: grid; }
  .brand {
    min-width: 70px;
    justify-self: start;
  }

  .brand-svg-en { width: 70px; }
  .action-divider { display: none; }

  .hero-copy,
  .page-hero-copy {
    left: 24px;
    width: calc(100% - 48px);
  }

  .contact-landing__inner {
    padding: 104px 22px 30px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-content: end;
    gap: 24px;
  }

  .contact-landing__copy h1 {
    font-size: clamp(42px, 8vw, 66px);
  }

  .contact-promises {
    margin-top: 30px;
  }

  .contact-form--industrial {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-methods article {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .contact-methods article:last-child {
    border-bottom: 0;
  }

  .hero h1,
  .page-hero h1,
  .detail-copy h1 { font-size: 44px; }

  .quick-panel {
    right: 16px;
    bottom: 18px;
    width: auto;
    grid-auto-flow: column;
  }

  .quick-panel a { min-height: 64px; width: 88px; }

  .section { padding: 68px 20px; }
  .section-head { display: block; }

  .metric-grid,
  .product-grid,
  .service-grid,
  .advantage-grid,
  .media-grid,
  .positioning-grid,
  .solution-grid,
  .product-feature,
  .detail-three,
  .split-block,
  .contact-section,
  .detail-hero,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .machine-viewer,
  .machine-viewer--large { min-height: 420px; }
  .detail-hero { padding-top: 92px; }
  .detail-media { min-height: 360px; }
  .cert-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-product-rail {
    width: 100vw;
    margin: 0 auto;
    padding: 0;
  }

  .products-center {
    padding: 72px 0 42px;
  }

  .products-center__head {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .products-center__filters {
    margin: 0 20px 24px;
  }

  body[data-page="products"] .home-product-card {
    flex-basis: min(360px, 82vw);
    min-height: 400px;
  }

  .product-scene {
    padding: 68px 22px;
  }

  .product-scene__copy {
    left: 24px;
    bottom: clamp(76px, 11vh, 112px);
    width: min(680px, calc(100% - 48px));
    max-width: min(680px, calc(100% - 48px));
    margin-left: 0;
  }

  .product-scene__media {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .product-scene__media img {
    max-height: none;
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .product-scene[data-product-index="0"] .product-scene__media,
  .product-scene[data-product-index="1"] .product-scene__media,
  .product-scene[data-product-index="2"] .product-scene__media {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 70vw;
    height: auto;
  }

  .product-page-index {
    --index-line-x: 15px;
    left: 2px;
    top: calc(var(--header-height) + 22px);
    width: 30px;
    height: 54svh;
  }

  .product-page-index__node {
    width: 26px;
    height: 26px;
  }

  .product-page-index__node span {
    display: none;
  }

  body[data-page="home"] main > section {
    min-height: 620px;
  }

  body[data-page="home"] .section {
    padding: 64px 20px 38px;
    gap: 18px;
  }

  body[data-page="home"] .home-product-entry {
    padding: 0;
    grid-template-rows: 1fr auto minmax(10px, 2vh);
  }

  body[data-page="home"] .section-head h2,
  body[data-page="home"] .feature-copy h2,
  body[data-page="home"] .immersive-copy h2 {
    font-size: clamp(30px, 7vw, 42px);
  }

  body[data-page="home"] .section-head p:not(.eyebrow),
  body[data-page="home"] .feature-copy p,
  body[data-page="home"] .immersive-copy p {
    line-height: 1.55;
  }

  body[data-page="home"] .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body[data-page="home"] .metric-card {
    height: clamp(112px, 18vh, 150px);
    padding: 18px;
  }

  body[data-page="home"] .metric-card strong {
    font-size: clamp(34px, 9vw, 48px);
  }

  body[data-page="home"] .model-stage {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 10px;
  }

  body[data-page="home"] .model-stage__arrow {
    width: 34px;
    height: 34px;
  }

  body[data-page="home"] .model-slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  body[data-page="home"] .model-slide h3 {
    font-size: clamp(26px, 6vw, 36px);
  }

  body[data-page="home"] .model-slide img {
    grid-column: auto;
    grid-row: auto;
    max-height: clamp(190px, 34vh, 300px);
  }

  body[data-page="home"] .spec-row-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body[data-page="home"] .spec-row-list li {
    min-height: 58px;
    padding: 10px;
  }

  body[data-page="home"] .spec-row-list b,
  body[data-page="home"] .spec-row-list span {
    font-size: 12px;
  }

  .cine-copy {
    margin-left: 24px;
    width: calc(100% - 48px);
  }

  .cine-copy h2 {
    font-size: clamp(32px, 8vw, 46px);
  }

  .figures,
  .crafts,
  .feature-tabs,
  .certs {
    left: 20px;
    right: 20px;
  }

  .figures,
  .crafts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .figures li,
  .crafts li {
    min-height: 92px;
    padding: 16px;
  }

  .figures b,
  .crafts b {
    font-size: clamp(28px, 8vw, 42px);
  }

  .certs ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .certs li {
    min-height: 58px;
  }

  .feature-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .feature-tabs li {
    min-height: 44px;
    font-size: 12px;
  }

  body[data-page="home"] .product-feature {
    gap: 20px;
  }

  body[data-page="home"] .machine-viewer {
    height: clamp(250px, 38vh, 330px);
  }

  body[data-page="home"] .product-grid--three {
    gap: 12px;
  }

  body[data-page="home"] .product-card {
    height: clamp(118px, 17vh, 148px);
    flex-direction: row;
  }

  body[data-page="home"] .product-card__media {
    flex: 0 0 38%;
    height: 100%;
  }

  body[data-page="home"] .product-card__body {
    padding: 14px;
  }

  body[data-page="home"] .product-card .eyebrow,
  body[data-page="home"] .product-card p,
  body[data-page="home"] .product-card .product-card__specs {
    display: none;
  }

  body[data-page="home"] .product-card h3 {
    margin-bottom: auto;
    font-size: 18px;
  }

  body[data-page="home"] .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body[data-page="home"] .service-card {
    height: clamp(126px, 20vh, 160px);
    padding: 18px;
  }

  body[data-page="home"] .service-card strong {
    font-size: 30px;
  }

body[data-page="home"] .service-card p {
  display: none;
}
}

@media (max-width: 560px) {
  .hero-copy,
  .page-hero-copy {
    left: 20px;
    top: auto;
    bottom: 84px;
    width: calc(100% - 40px);
  }

  .contact-landing {
    min-height: auto;
  }

  .contact-landing__inner {
    min-height: auto;
    padding: 92px 18px 24px;
  }

  .contact-landing__copy h1 {
    font-size: 40px;
  }

  .contact-landing__copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }

  .contact-promises {
    grid-template-columns: 1fr;
  }

  .contact-promises span {
    min-height: 74px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .contact-promises span:last-child {
    border-bottom: 0;
  }

  .contact-form--industrial {
    padding: 20px;
  }

  .products-center {
    padding-top: 62px;
  }

  .products-center__head h2 {
    font-size: 34px;
  }

  .products-center__filters {
    gap: 8px;
  }

  .products-center__filters .filter-btn {
    min-height: 36px;
    padding: 7px 13px;
    font-size: 12px;
  }

  body[data-page="products"] .home-product-card {
    flex-basis: 82vw;
    min-height: 370px;
  }

  body[data-page="products"] .home-product-card__media {
    min-height: 210px;
  }

  .product-scene {
    min-height: 100svh;
    padding: 64px 18px;
  }

  .product-scene__copy {
    left: 18px;
    bottom: clamp(58px, 9vh, 86px);
    width: calc(100% - 36px);
    max-width: calc(100% - 36px);
  }

  .product-scene__media {
    inset: 0;
    height: 100%;
    width: 100%;
    opacity: .68;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.5) 16px, #000 42px, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.5) 16px, #000 42px, #000 100%);
  }

  .product-scene__media img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-position: center;
  }

  .product-scene[data-product-index="0"] .product-scene__media,
  .product-scene[data-product-index="1"] .product-scene__media,
  .product-scene[data-product-index="2"] .product-scene__media {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .74;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .product-scene[data-product-index="0"] .product-scene__media img,
  .product-scene[data-product-index="1"] .product-scene__media img,
  .product-scene[data-product-index="2"] .product-scene__media img {
    width: calc(100% - 22px);
    height: calc(100% - 72px);
    margin: 36px 11px;
    object-fit: contain;
    object-position: center;
  }

  .product-scene__copy h2 {
    font-size: 34px;
  }

  .product-scene__copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.58;
  }

  .product-scene__specs {
    margin: 22px 0;
    gap: 8px;
  }

  .product-scene__specs span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .hero h1,
  .page-hero h1,
  .detail-copy h1 { font-size: 38px; }

  .hero-copy p:not(.eyebrow),
  .page-hero-copy p:not(.eyebrow),
  .detail-copy p:not(.eyebrow) { font-size: 17px; }

  .btn { width: 100%; }
  .quick-panel { display: none; }
  .product-card__media { height: 210px; }
  .machine-viewer,
  .machine-viewer--large { min-height: 340px; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
  .site-footer nav { grid-template-columns: 1fr; }
  .positioning-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .positioning-grid article,
  .solution-grid article {
    min-height: 190px;
    padding: 22px;
  }
  .home-product-card {
    flex-basis: 82vw;
    height: 430px;
    min-height: 0;
    grid-template-rows: auto 190px minmax(0, 1fr);
  }

  body[data-page="home"] .home-product-card {
    height: min(74vh, 520px);
    min-height: 460px;
    grid-template-rows: auto 180px minmax(0, 1fr);
  }

  .home-product-card__head,
  body[data-page="home"] .home-product-card__head {
    min-height: 86px;
    padding: 18px 10px 0;
  }

  .home-product-card h3,
  body[data-page="home"] .home-product-card h3 {
    font-size: 25px;
    line-height: 1.16;
  }

  .home-product-progress {
    width: min(320px, 62vw);
  }
  .home-contact-card {
    padding: 26px 22px;
  }

  .social-dock__link {
    width: 32px;
    height: 32px;
    transform: none;
  }

  .social-dock svg {
    width: 22px;
    height: 22px;
  }

  body[data-page="home"] main > section {
    min-height: 600px;
  }

  body[data-page="home"] .hero-copy {
    left: 20px;
    bottom: 48px;
  }

  body[data-page="home"] .section-scroll-title {
    left: 20px;
    bottom: 48px;
    width: calc(100% - 40px);
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(34px, 11vw, 42px);
  }

  body[data-page="home"] .section-scroll-title h2 {
    font-size: clamp(34px, 11vw, 42px);
  }

  body[data-page="home"] .hero-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.55;
  }

  body[data-page="home"] .button-row {
    gap: 10px;
    margin-top: 22px;
  }

  body[data-page="home"] .btn {
    min-height: 44px;
  }

  body[data-page="home"] .section {
    padding: 58px 18px 32px;
  }

  body[data-page="home"] .metric-card span {
    font-size: 13px;
  }

  body[data-page="home"] .machine-viewer {
    height: clamp(220px, 34vh, 285px);
  }

  body[data-page="home"] .machine-viewer::after {
    display: none;
  }

  body[data-page="home"] .immersive-copy {
    padding: 0 20px 54px;
  }

  body[data-page="home"] .service-card h3 {
    font-size: 17px;
  }

  body[data-page="home"] .cine-copy p,
  body[data-page="home"] .contact-offer {
    font-size: 16px;
    line-height: 1.55;
  }

  body[data-page="home"] .model-slide h3 {
    font-size: 24px;
  }

  body[data-page="home"] .model-slide img {
    max-height: clamp(160px, 28vh, 230px);
  }

  body[data-page="home"] .spec-row-list li {
    min-height: 50px;
    padding: 8px;
  }

  body[data-page="home"] .figures,
  body[data-page="home"] .crafts {
    bottom: 26px;
  }

  body[data-page="home"] .figures li,
  body[data-page="home"] .crafts li {
    min-height: 78px;
    padding: 12px;
  }

  body[data-page="home"] .figures span,
  body[data-page="home"] .crafts span {
    font-size: 12px;
  }

  body[data-page="home"] .certs {
    bottom: 28px;
  }

  body[data-page="home"] .feature-tabs {
    bottom: 24px;
  }

  body[data-page="home"] .feature-tabs li {
    min-height: 38px;
  }
}

@media (max-width: 560px) {
  body[data-page="contact"] .contact-simple {
    min-height: auto;
    padding: 70px 20px 16px;
  }

  body[data-page="contact"] .contact-simple .home-contact-card {
    min-height: auto;
    padding: 24px 20px;
  }

  body[data-page="contact"] .home-contact-card h2 {
    margin-bottom: 16px;
    font-size: clamp(26px, 8vw, 34px);
  }

  body[data-page="contact"] .home-contact-actions {
    gap: 10px;
  }

  body[data-page="contact"] .home-contact-actions .btn {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 13px;
  }

  body[data-page="contact"] .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 20px 16px;
  }

  body[data-page="contact"] .site-footer h3 {
    margin-bottom: 8px;
  }

  body[data-page="contact"] .site-footer p {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1.4;
  }

  body[data-page="contact"] .site-footer nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    font-size: 13px;
  }

  body[data-page="contact"] .copyright {
    margin-top: 4px;
    padding-top: 12px;
  }
}

body[data-page="home"] main > section.client-contact {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  gap: clamp(18px, 3vh, 30px);
  padding: clamp(78px, 9vh, 96px) 6vw 0;
  background:
    linear-gradient(90deg, rgba(5,6,7,.76) 0%, rgba(5,6,7,.48) 42%, rgba(5,6,7,.16) 76%),
    linear-gradient(180deg, rgba(5,6,7,.14), rgba(5,6,7,.30) 72%, rgba(5,6,7,.42)),
    url("../assets/amg-kerry/sec-smart.webp?v=20260720-speed-3") center 58% / cover no-repeat;
}

body[data-page="home"] main > section.client-contact .home-contact-card {
  align-self: center;
  max-width: min(1168px, 100%);
  min-height: clamp(220px, 28vh, 300px);
  padding: clamp(30px, 3.4vw, 44px);
}

body[data-page="home"] main > section.client-contact .home-contact-card h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 52px);
}

body[data-page="home"] main > section.client-contact .site-footer {
  width: calc(100% + 12vw);
  margin: 0 -6vw;
  align-self: end;
  gap: 18px 34px;
  padding: clamp(24px, 3.6vh, 34px) 6vw clamp(18px, 2.8vh, 26px);
  background:
    linear-gradient(180deg, rgba(5,6,7,0), rgba(5,6,7,.12) 55%, rgba(5,6,7,.20));
  backdrop-filter: none;
}

body[data-page="home"] main > section.client-contact .site-footer h3 {
  margin: 0 0 10px;
}

body[data-page="home"] main > section.client-contact .site-footer p {
  margin: 0 0 6px;
  line-height: 1.46;
}

body[data-page="home"] main > section.client-contact .site-footer nav {
  align-content: start;
  gap: 10px 18px;
}

body[data-page="home"] main > section.client-contact .copyright {
  margin-top: 6px;
  padding-top: 15px;
}

@media (max-width: 980px) {
  body[data-page="home"] main > section.client-contact {
    grid-template-rows: minmax(0, 1fr) auto;
    padding: 68px 20px 0;
  }

  body[data-page="home"] main > section.client-contact .site-footer {
    width: calc(100% + 40px);
    margin: 0 -20px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 20px 18px;
  }
}

@media (max-width: 560px) {
  body[data-page="home"] main > section.client-contact {
    min-height: 620px;
    padding: 64px 20px 0;
    gap: 12px;
  }

  body[data-page="home"] main > section.client-contact .home-contact-card {
    min-height: auto;
    padding: 22px 20px;
  }

  body[data-page="home"] main > section.client-contact .home-contact-card h2 {
    margin-bottom: 16px;
    font-size: clamp(26px, 8vw, 34px);
  }

  body[data-page="home"] main > section.client-contact .home-contact-actions {
    gap: 10px;
  }

  body[data-page="home"] main > section.client-contact .home-contact-actions .btn {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 16px;
  }

  body[data-page="home"] main > section.client-contact .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 20px 14px;
  }

  body[data-page="home"] main > section.client-contact .site-footer p {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1.38;
  }

  body[data-page="home"] main > section.client-contact .site-footer nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    font-size: 13px;
  }
}

body[data-page="home"] main > section.client-contact::before {
  display: none;
}

body[data-page="home"] main > section.client-contact .home-contact-card {
  justify-self: start;
  align-self: center;
  width: min(760px, 100%);
  max-width: 760px;
  min-height: 0;
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

body[data-page="home"] main > section.client-contact .home-contact-actions {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin: 18px 0 clamp(34px, 8vh, 72px);
}

body[data-page="home"] main > section.client-contact .home-contact-actions .btn {
  width: auto;
  min-width: 0;
  min-height: 0;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255,255,255,.88);
  background: transparent;
  text-align: left;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 600;
  line-height: 1.22;
}

body[data-page="home"] main > section.client-contact .home-contact-actions .btn:hover {
  color: #fff;
  transform: translateX(4px);
}

body[data-page="home"] main > section.client-contact .home-contact-card h2 {
  max-width: 720px;
  margin: 0;
  text-align: left;
  white-space: nowrap;
}

body[data-page="home"] main > section.client-contact .site-footer {
  justify-items: start;
}

body[data-page="home"] main > section.client-contact .site-footer > div {
  max-width: 760px;
  text-align: left;
}

body[data-page="home"] main > section.client-contact .site-footer nav {
  justify-self: start;
}

@media (max-width: 560px) {
  body[data-page="home"] main > section.client-contact .home-contact-card {
    width: 100%;
    margin-top: 6px;
  }

  body[data-page="home"] main > section.client-contact .home-contact-card h2 {
    font-size: clamp(18px, 5.2vw, 30px);
    line-height: 1.08;
  }

  body[data-page="home"] main > section.client-contact .home-contact-actions {
    margin-bottom: 28px;
  }

  body[data-page="home"] main > section.client-contact .home-contact-actions .btn {
    max-width: 100%;
    font-size: 15px;
  }
}

body[data-page="about"] {
  background: var(--black);
  --scene-overscan: 0px;
  --about-copy-left: clamp(36px, 4vw, 64px);
  --about-copy-right: clamp(24px, 4vw, 64px);
  --about-copy-bottom: clamp(40px, 6vh, 88px);
  --about-copy-width: min(66vw, calc(100vw - var(--about-copy-left) - var(--about-copy-right)));
}

body[data-page="about"] .about-hero {
  isolation: isolate;
  background: #050607;
}

body[data-page="about"] .about-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,.06)),
    url("../assets/amg-kerry/sec-factory.webp?v=20260720-speed-3") center center / cover no-repeat;
  content: "";
  filter: blur(18px) brightness(.42) saturate(.9);
  transform: scale(1.06);
}

body[data-page="about"] .about-hero img {
  z-index: 1;
  object-fit: cover !important;
  object-position: center center !important;
  filter: grayscale(.12) contrast(1.04) brightness(.82);
}

body[data-page="about"] .about-hero .hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.44) 40%, rgba(0,0,0,.14) 76%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.56));
}

body[data-page="about"] .about-hero .page-hero-copy {
  z-index: 3;
}

body[data-page="about"].bmw-scroll-ready .about-hero img {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}

body[data-page="about"] .about-intro {
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
  background:
    linear-gradient(115deg, rgba(255,255,255,.94), rgba(231,235,234,.78) 56%, rgba(191,199,197,.58)),
    var(--mist);
}

body[data-page="about"] .about-kicker h2,
body[data-page="about"] .about-capability__copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.8vw, 66px);
  font-weight: 900;
  line-height: 1.08;
}

html[lang="en"] body[data-page="about"] .about-kicker h2,
html[lang="en"] body[data-page="about"] .about-capability__copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
}

body[data-page="about"] .about-copy {
  display: grid;
  gap: 22px;
  padding-top: 6px;
}

body[data-page="about"] .about-copy p {
  margin: 0;
  color: #3d454b;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 2;
}

body[data-page="about"] .about-capability {
  position: relative;
  grid-template-columns: minmax(320px, .64fr) minmax(0, .36fr);
  gap: 0;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2,5,7,.82), rgba(2,5,7,.58) 38%, rgba(2,5,7,.14) 68%, rgba(2,5,7,.34)),
    linear-gradient(180deg, rgba(2,5,7,.10), rgba(2,5,7,.70)),
    var(--about-capability-bg, none) center center / cover no-repeat,
    #0b0f12;
}

@media (min-width: 761px) {
  body[data-page="about"] .about-capability {
    background:
      linear-gradient(90deg, rgba(2,5,7,.82), rgba(2,5,7,.58) 38%, rgba(2,5,7,.14) 68%, rgba(2,5,7,.34)),
      linear-gradient(180deg, rgba(2,5,7,.10), rgba(2,5,7,.70)),
      var(--about-capability-bg, url("../assets/amg-kerry/about-capability-factory.png")) center center / cover no-repeat,
      #0b0f12;
  }
}

body[data-page="about"] .about-capability::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 76%, rgba(0,0,0,.38), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,.36), transparent 52%);
  content: "";
  pointer-events: none;
}

body[data-page="about"] .about-capability__copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  align-self: end;
  max-width: min(760px, 100%);
  padding-bottom: clamp(36px, 5vh, 72px);
}

body[data-page="about"] .about-capability__media {
  min-height: clamp(420px, 62vh, 650px);
  overflow: hidden;
  background: #0b0f12;
}

body[data-page="about"] .about-capability__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(.12) contrast(1.08) brightness(.82);
  transition: transform .8s var(--ease);
}

body[data-page="about"] .about-capability__media:hover img {
  transform: scale(1.035);
}

body[data-page="about"] .about-capability__copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.9;
  text-shadow: 0 10px 28px rgba(0,0,0,.38);
}

body[data-page="about"] .about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(30px, 5vh, 54px);
}

body[data-page="about"] .about-metrics span {
  min-height: 138px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255,255,255,.20);
  background: linear-gradient(180deg, rgba(4,7,9,.48), rgba(4,7,9,.22));
  backdrop-filter: blur(10px);
}

body[data-page="about"] .about-metrics b {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 400;
  line-height: 1;
}

body[data-page="about"] .about-metrics em {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

body[data-page="about"] .about-scope {
  background:
    linear-gradient(rgba(17,20,24,.045) 1px, transparent 1px),
    linear-gradient(120deg, #f5f6f4, #dfe4e2 66%, #c8d0cd);
  background-size: 54px 54px, auto;
}

body[data-page="about"] .about-scope-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="about"] .about-scope-grid article {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17,20,24,.12);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  transition: transform .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}

body[data-page="about"] .about-scope-grid article:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.9);
  box-shadow: 0 28px 60px rgba(17,20,24,.13);
}

body[data-page="about"] .about-scope-grid span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 34px;
}

body[data-page="about"] .about-scope-grid h3 {
  margin: auto 0 14px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
}

body[data-page="about"] .about-scope-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

body[data-page="about"] .about-process {
  background:
    radial-gradient(circle at 20% 22%, rgba(89,115,131,.26), transparent 28%),
    linear-gradient(145deg, #12181d, #050607 68%);
}

body[data-page="about"] .about-process-line {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.2);
}

body[data-page="about"] .about-process-line article {
  min-height: 220px;
  padding: 28px 18px;
  display: grid;
  align-content: space-between;
  border-right: 1px solid rgba(255,255,255,.14);
}

body[data-page="about"] .about-process-line article:last-child {
  border-right: 0;
}

body[data-page="about"] .about-process-line b {
  color: rgba(255,255,255,.32);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 58px);
  font-weight: 400;
  line-height: 1;
}

body[data-page="about"] .about-process-line span {
  color: #fff;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
}

body[data-page="about"] .about-vision img {
  object-position: center 58%;
}

body[data-page="about"] .about-vision::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.28) 58%, rgba(0,0,0,.68)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.64));
}

body[data-page="about"] .about-vision .immersive-copy {
  max-width: 820px;
}

body[data-page="about"] .about-vision .immersive-copy p:not(.eyebrow) {
  max-width: 720px;
}

@media (max-width: 980px) {
  body[data-page="about"] .about-intro,
  body[data-page="about"] .about-capability {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .about-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="about"] .about-process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="about"] .about-process-line article:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  body[data-page="about"] .about-copy p {
    font-size: 15px;
    line-height: 1.85;
  }

  body[data-page="about"] .about-capability__media {
    min-height: 320px;
  }

  body[data-page="about"] .about-metrics,
  body[data-page="about"] .about-scope-grid,
  body[data-page="about"] .about-process-line {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .about-process-line article,
  body[data-page="about"] .about-process-line article:nth-child(3n) {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  body[data-page="about"] .about-process-line article:last-child {
    border-bottom: 0;
  }
}

body[data-page="about"] .about-hero .page-hero-copy {
  left: var(--about-copy-left);
  right: var(--about-copy-right);
  bottom: var(--about-copy-bottom);
  width: var(--about-copy-width);
  max-width: none;
}

body[data-page="about"] .about-hero .page-hero-copy p:not(.eyebrow) {
  width: var(--about-copy-width);
  max-width: var(--about-copy-width);
}

body[data-page="about"] .about-hero h1 {
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(38px, 4.25vw, 58px);
}

@media (max-width: 760px) {
  body[data-page="about"] .about-hero h1 {
    width: auto;
    white-space: normal;
  }
}

@media (min-width: 761px) {
  body[data-page="about"] .about-scope,
  body[data-page="about"] .about-process {
    position: relative;
    align-content: start;
    padding: clamp(84px, 10vh, 112px) var(--about-copy-right) clamp(190px, 24vh, 250px) var(--about-copy-left);
  }

  body[data-page="about"] .about-scope .section-head,
  body[data-page="about"] .about-process .section-head {
    position: absolute;
    left: var(--about-copy-left);
    right: var(--about-copy-right);
    bottom: var(--about-copy-bottom);
    width: var(--about-copy-width);
    max-width: none;
    margin: 0;
    display: grid;
    align-items: start;
    justify-content: start;
    gap: var(--page-copy-title-gap);
    z-index: 2;
  }

  body[data-page="about"] .about-scope-grid,
  body[data-page="about"] .about-process-line {
    margin-inline: 0;
    max-width: none;
  }

  body[data-page="about"] .about-scope .section-head > div,
  body[data-page="about"] .about-process .section-head > div {
    width: 100%;
  }

  body[data-page="about"] .about-scope .section-head h2,
  body[data-page="about"] .about-scope .section-head p:not(.eyebrow),
  body[data-page="about"] .about-process .section-head h2,
  body[data-page="about"] .about-process .section-head p:not(.eyebrow) {
    margin: 0;
    width: var(--about-copy-width);
    max-width: var(--about-copy-width);
  }
}

@media (max-width: 760px) {
  body[data-page="about"] {
    --about-copy-left: 20px;
    --about-copy-right: 20px;
    --about-copy-bottom: max(42px, calc(30px + env(safe-area-inset-bottom)));
    --about-copy-width: calc(100vw - var(--about-copy-left) - var(--about-copy-right));
  }

  body[data-page="about"] .about-hero .page-hero-copy {
    width: auto;
    max-width: none;
  }
}

body[data-page="products"] .product-scene[data-product-index="7"] .product-scene__media {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: radial-gradient(circle at 72% 48%, rgba(214,229,234,.16), transparent 48%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.1) 22%, rgba(0,0,0,.72) 46%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.1) 22%, rgba(0,0,0,.72) 46%, #000 100%);
}

body[data-page="products"] .product-scene[data-product-index="7"] .product-scene__media img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center right;
  filter: saturate(.92) contrast(1.03) brightness(1.07);
}

body[data-page="products"] .product-scene[data-product-index="7"] .product-scene__shade {
  background:
    linear-gradient(90deg, rgba(7,9,10,.78) 0%, rgba(10,12,14,.56) 25%, rgba(10,12,14,.22) 48%, rgba(5,6,7,.04) 100%),
    linear-gradient(180deg, rgba(5,6,7,0), rgba(5,6,7,.02) 42%, rgba(5,6,7,.34)),
    radial-gradient(circle at 74% 45%, rgba(155,176,184,.12), transparent 36%);
}

body[data-page="products"] .product-scene[data-product-index="7"]::before {
  opacity: .12;
}

/* Legacy AMG-Kerry Chinese typography sync */
@font-face {
  font-family: "Enriqueta Local";
  src: url("../assets/fonts/perf/enriqueta-regular.perf.woff2?v=20260727-perf-6") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-002F, U+003A-007E, U+00A0-00FF, U+0100-024F, U+1E00-1EFF;
}

@font-face {
  font-family: "Enriqueta Local";
  src: url("../assets/fonts/perf/enriqueta-medium.perf.woff2?v=20260727-perf-6") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-002F, U+003A-007E, U+00A0-00FF, U+0100-024F, U+1E00-1EFF;
}

@font-face {
  font-family: "Enriqueta Local";
  src: url("../assets/fonts/perf/enriqueta-semibold.perf.woff2?v=20260727-perf-6") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-002F, U+003A-007E, U+00A0-00FF, U+0100-024F, U+1E00-1EFF;
}

@font-face {
  font-family: "Enriqueta Local";
  src: url("../assets/fonts/perf/enriqueta-bold.perf.woff2?v=20260727-perf-6") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-002F, U+003A-007E, U+00A0-00FF, U+0100-024F, U+1E00-1EFF;
}

@font-face {
  font-family: "HONORSans CN Local";
  src: url("../assets/fonts/perf/honorsanscn-regular.perf.woff2?v=20260727-perf-6") format("woff2");
  font-weight: 100 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-007E, U+00A0-00FF, U+0100-024F, U+1E00-1EFF, U+2E80-2EFF, U+3000-303F, U+3400-4DBF, U+4E00-9FFF, U+F900-FAFF, U+FE10-FE1F, U+FE30-FE4F, U+FF00-FF0F, U+FF1A-FFEF;
}

@font-face {
  font-family: "HONORSans CN Local";
  src: url("../assets/fonts/perf/honorsanscn-bold.perf.woff2?v=20260727-perf-6") format("woff2");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-007E, U+00A0-00FF, U+0100-024F, U+1E00-1EFF, U+2E80-2EFF, U+3000-303F, U+3400-4DBF, U+4E00-9FFF, U+F900-FAFF, U+FE10-FE1F, U+FE30-FE4F, U+FF00-FF0F, U+FF1A-FFEF;
}

@font-face {
  font-family: "ZQK Freefont Local";
  src: url("../assets/fonts/perf/zqkfreefont-2.perf.woff2?v=20260727-perf-6") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-007E, U+00A0-00FF;
}

:root {
  --font-display: var(--font-latin), var(--font-zh), var(--font-default);
}

html[lang="zh-CN"] {
  --font-latin: "HONORSans CN Local";
}

html[lang="zh-CN"] body {
  font-family: var(--font-serif);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

html[lang="zh-CN"] .header-nav a,
html[lang="zh-CN"] .ghost-link,
html[lang="zh-CN"] .lang-switch,
html[lang="zh-CN"] .eyebrow,
html[lang="zh-CN"] .btn,
html[lang="zh-CN"] .product-card__specs span,
html[lang="zh-CN"] .product-scene__specs span,
html[lang="zh-CN"] .spec-row b,
html[lang="zh-CN"] .spec-row span,
html[lang="zh-CN"] .site-footer nav {
  font-family: var(--font-sans);
}

html[lang="zh-CN"] .header-nav a,
html[lang="zh-CN"] .ghost-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .04em;
}

html[lang="zh-CN"] .lang-switch,
html[lang="zh-CN"] .eyebrow,
html[lang="zh-CN"] .product-card__specs span,
html[lang="zh-CN"] .product-scene__specs span {
  font-size: 12px;
  letter-spacing: .12em;
}

html[lang="zh-CN"] .btn {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
}

html[lang="zh-CN"] .hero h1,
html[lang="zh-CN"] .page-hero h1,
html[lang="zh-CN"] .detail-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.8vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .04em;
}

html[lang="zh-CN"] body[data-page="about"] .about-hero h1 {
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(36px, 4.6vw, 68px);
}

html[lang="zh-CN"] .section-head h2,
html[lang="zh-CN"] .feature-copy h2,
html[lang="zh-CN"] .immersive-copy h2,
html[lang="zh-CN"] .contact-info h2,
html[lang="zh-CN"] .home-contact-card h2,
html[lang="zh-CN"] .product-scene__copy h2,
html[lang="zh-CN"] .section-scroll-title h2,
html[lang="zh-CN"] .about-kicker h2,
html[lang="zh-CN"] .about-capability__copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 56px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: .04em;
}

html[lang="zh-CN"] .hero-copy p:not(.eyebrow),
html[lang="zh-CN"] .page-hero-copy p:not(.eyebrow),
html[lang="zh-CN"] .detail-copy p:not(.eyebrow),
html[lang="zh-CN"] .section-head p:not(.eyebrow),
html[lang="zh-CN"] .feature-copy p,
html[lang="zh-CN"] .immersive-copy p,
html[lang="zh-CN"] .contact-info p,
html[lang="zh-CN"] .about-copy p,
html[lang="zh-CN"] .about-capability__copy > p:not(.eyebrow),
html[lang="zh-CN"] .about-scope-grid p,
html[lang="zh-CN"] .product-card p,
html[lang="zh-CN"] .home-product-card p,
html[lang="zh-CN"] .product-scene__copy p:not(.eyebrow),
html[lang="zh-CN"] .advantage-card p,
html[lang="zh-CN"] .service-card p {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: .02em;
}

html[lang="zh-CN"] .product-card h3,
html[lang="zh-CN"] .home-product-card h3,
html[lang="zh-CN"] .advantage-card h3,
html[lang="zh-CN"] .service-card h3,
html[lang="zh-CN"] .about-scope-grid h3 {
  font-family: var(--font-serif);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: .04em;
}

html[lang="zh-CN"] .product-card h3,
html[lang="zh-CN"] .home-product-card h3 {
  font-size: clamp(22px, 2.4vw, 34px);
}

html[lang="zh-CN"] .about-scope-grid h3,
html[lang="zh-CN"] .advantage-card h3,
html[lang="zh-CN"] .service-card h3 {
  font-size: clamp(18px, 1.8vw, 26px);
}

html[lang="zh-CN"] .about-metrics b,
html[lang="zh-CN"] .metric-card strong,
html[lang="zh-CN"] .service-card strong,
html[lang="zh-CN"] .about-process-line b {
  font-family: var(--font-serif);
  font-weight: 900;
  letter-spacing: .01em;
}

html[lang="zh-CN"] .about-metrics em,
html[lang="zh-CN"] .metric-card span,
html[lang="zh-CN"] .about-process-line span,
html[lang="zh-CN"] .site-footer,
html[lang="zh-CN"] .copyright {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: .02em;
}

html[lang="zh-CN"] .site-footer p,
html[lang="zh-CN"] .site-footer a,
html[lang="zh-CN"] .copyright {
  font-size: 12px;
  line-height: 1.9;
}

@media (max-width: 900px) {
  html[lang="zh-CN"] .hero h1,
  html[lang="zh-CN"] .page-hero h1,
  html[lang="zh-CN"] .detail-copy h1,
  html[lang="zh-CN"] body[data-page="about"] .about-hero h1 {
    width: auto;
    white-space: normal;
    font-size: clamp(26px, 7vw, 40px);
    letter-spacing: .02em;
  }

  html[lang="zh-CN"] .section-head h2,
  html[lang="zh-CN"] .feature-copy h2,
  html[lang="zh-CN"] .immersive-copy h2,
  html[lang="zh-CN"] .contact-info h2,
  html[lang="zh-CN"] .home-contact-card h2,
  html[lang="zh-CN"] .product-scene__copy h2,
  html[lang="zh-CN"] .section-scroll-title h2,
  html[lang="zh-CN"] .about-kicker h2,
  html[lang="zh-CN"] .about-capability__copy h2 {
    font-size: clamp(26px, 7vw, 38px);
    letter-spacing: .02em;
  }

  html[lang="zh-CN"] .hero-copy p:not(.eyebrow),
  html[lang="zh-CN"] .page-hero-copy p:not(.eyebrow),
  html[lang="zh-CN"] .detail-copy p:not(.eyebrow),
  html[lang="zh-CN"] .section-head p:not(.eyebrow),
  html[lang="zh-CN"] .feature-copy p,
  html[lang="zh-CN"] .immersive-copy p,
  html[lang="zh-CN"] .contact-info p,
  html[lang="zh-CN"] .about-copy p,
  html[lang="zh-CN"] .about-capability__copy > p:not(.eyebrow),
  html[lang="zh-CN"] .about-scope-grid p,
  html[lang="zh-CN"] .product-card p,
  html[lang="zh-CN"] .home-product-card p,
  html[lang="zh-CN"] .product-scene__copy p:not(.eyebrow),
  html[lang="zh-CN"] .advantage-card p,
  html[lang="zh-CN"] .service-card p {
    font-size: 14px;
    line-height: 1.85;
  }
}

/* Solutions and cases pages */
body[data-page="solutions"],
body[data-page="cases"] {
  background: var(--black);
}

.solution-actions {
  max-width: 1180px;
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.solution-hero img,
.cases-hero img {
  object-position: center center;
  filter: grayscale(.12) contrast(1.08) brightness(.70);
}

.solution-hero img {
  object-fit: cover;
  background: #f5f5f3;
}

.cases-hero {
  background: #f4f5f3;
}

.cases-hero img {
  object-fit: cover;
  object-position: center center;
  padding: 0;
  background:
    radial-gradient(circle at 50% 47%, rgba(255,255,255,.98), rgba(238,240,238,.92) 68%, rgba(224,227,225,.86));
  filter: contrast(1.02) saturate(.98);
  transform: none;
}

.solution-hero .hero-shade,
.cases-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.46) 42%, rgba(0,0,0,.16) 76%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.62));
}

.cases-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.34) 34%, rgba(0,0,0,.06) 64%, rgba(0,0,0,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,0) 42%, rgba(0,0,0,.48) 100%);
}

.solution-architecture {
  background:
    linear-gradient(rgba(17,20,24,.045) 1px, transparent 1px),
    linear-gradient(120deg, #f5f6f4, #dfe4e2 66%, #c8d0cd);
  background-size: 54px 54px, auto;
}

.solution-flow,
.about-process-line {
  max-width: 1180px;
  width: 100%;
}

.solution-flow {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(17,20,24,.18);
}

.solution-flow article {
  min-height: 190px;
  padding: 26px 16px;
  display: grid;
  align-content: space-between;
  border-right: 1px solid rgba(17,20,24,.12);
}

.solution-flow article:last-child {
  border-right: 0;
}

.solution-flow b,
.case-card-grid span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
  line-height: 1;
}

.solution-flow span {
  color: #111418;
  font-weight: 700;
  line-height: 1.45;
}

.solution-map,
.cases-production {
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  background:
    radial-gradient(circle at 75% 20%, rgba(174,184,191,.20), transparent 31%),
    linear-gradient(145deg, #14191d, #060708 68%);
}

.solution-map__media,
.cases-production__media {
  min-height: clamp(410px, 64vh, 690px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.12), transparent 58%),
    #0a0d10;
}

.solution-map__media img,
.cases-production__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(18px, 2.2vw, 34px);
  filter: grayscale(.12) contrast(1.05) brightness(.88);
}

.solution-map__copy h2,
.cases-production__copy h2 {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.8vw, 66px);
  font-weight: 900;
  line-height: 1.08;
}

.solution-map__copy p:not(.eyebrow),
.cases-production__copy p:not(.eyebrow) {
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.9;
}

.solution-map__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(30px, 5vh, 54px);
}

.solution-map__stats span {
  min-height: 128px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}

.solution-map__stats b {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 400;
  line-height: 1;
}

.solution-map__stats em {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.solution-module-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-module-grid article {
  min-height: 252px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17,20,24,.12);
  background: rgba(255,255,255,.72);
  transition: transform .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}

.solution-module-grid article:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.92);
  box-shadow: 0 28px 60px rgba(17,20,24,.13);
}

.solution-module-grid h3,
.case-card-grid h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
}

.solution-module-grid p,
.case-card-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.solution-service img,
.cases-contact img {
  object-position: center center;
}

.cases-trust {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-content: end;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 204, 255, .14), transparent 31%),
    radial-gradient(circle at 82% 74%, rgba(255,255,255,.09), transparent 28%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(145deg, #11171b 0%, #050607 70%);
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
}

.cases-trust::before,
.cases-trust::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.cases-trust::before {
  background:
    linear-gradient(90deg, rgba(5,6,7,.48), rgba(5,6,7,.08) 32%, rgba(5,6,7,.10) 68%, rgba(5,6,7,.52));
}

.cases-trust::after {
  background:
    radial-gradient(circle at 22% 82%, rgba(0,0,0,.18), transparent 34%),
    radial-gradient(circle at 74% 30%, rgba(190,214,226,.16), transparent 34%);
}

.cases-trust .section-head,
.cases-trust .case-logo-wall {
  position: relative;
  z-index: 2;
}

.cases-trust .section-head {
  width: auto;
  margin: 0;
}

.cases-trust .cases-trust-copy {
  position: absolute;
  left: var(--cases-copy-left);
  right: var(--cases-copy-right);
  bottom: var(--cases-copy-bottom);
  max-width: none;
  display: block;
}

.cases-trust-copy__inner {
  max-width: min(1180px, 100%);
  display: grid;
  gap: 14px;
  justify-items: start;
}

.cases-trust-copy__inner .eyebrow {
  margin: 0 0 2px;
}

.cases-trust .section-head h2 {
  max-width: 100%;
  margin: 0;
  color: #fff;
  white-space: nowrap;
  font-size: clamp(36px, 4.7vw, 68px);
  line-height: 1;
  text-shadow: 0 18px 42px rgba(0,0,0,.42);
}

.cases-trust .section-head p:not(.eyebrow) {
  max-width: min(980px, 100%);
  margin: 0;
  color: rgba(255,255,255,.70);
  line-height: 1.9;
  text-shadow: 0 10px 26px rgba(0,0,0,.34);
}

.cases-trust-marquee {
  position: absolute;
  inset: -78vh -96vw;
  z-index: 0;
  overflow: hidden;
  opacity: .98;
  pointer-events: none;
  contain: layout paint style;
  background:
    radial-gradient(circle at 54% 38%, rgba(255,255,255,.96), rgba(232,232,230,.94) 58%, rgba(206,207,205,.92)),
    #e6e6e3;
}

.cases-trust-marquee__lanes {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 430vw;
  min-width: 5200px;
  display: flex;
  flex-direction: column;
  transform: translate(-50%, -50%) rotate(-29deg) scale(1.08);
  transform-origin: center;
  gap: 0;
  overflow: visible;
}

.cases-trust-marquee__lanes::before {
  position: absolute;
  inset: -6px -4vw;
  z-index: 0;
  background: rgba(255,255,255,.92);
  content: "";
  filter: saturate(.9);
}

.cases-trust-marquee__lane {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(72px, 7.6vh, 104px);
  flex: 0 0 clamp(72px, 7.6vh, 104px);
  overflow: visible;
  transform: translateX(var(--trust-shift, 0));
}

.cases-trust-marquee__lane::after {
  display: none;
  content: none;
}

.cases-trust-marquee__track {
  position: relative;
  z-index: 3;
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  animation: none !important;
  animation-play-state: paused !important;
  will-change: auto;
}

.cases-trust.is-scroll-current .cases-trust-marquee__track {
  animation-play-state: paused !important;
  will-change: auto;
}

body.is-scene-scrolling .cases-trust-marquee__track,
body.menu-open .cases-trust-marquee__track {
  animation-play-state: paused !important;
  will-change: auto;
}

.cases-trust-marquee__lane.is-reverse .cases-trust-marquee__track {
  animation-direction: reverse;
}

.cases-trust-marquee__group {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(0px, .18vw, 4px);
  padding-inline: clamp(0px, .12vw, 3px);
  flex: 0 0 auto;
}

.cases-trust-marquee__logo {
  position: relative;
  width: clamp(126px, 9.8vw, 190px);
  height: 100%;
  flex: 0 0 auto;
  overflow: visible;
}

.cases-trust-marquee__logo.is-wide {
  width: clamp(176px, 13.4vw, 270px);
}

.cases-trust-marquee__logo.is-compact {
  width: clamp(98px, 7.6vw, 150px);
}

.cases-trust-marquee__logo img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 96%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.34));
  transform: translate(-50%, -50%);
}

@media (max-width: 760px) {
  .cases-trust-marquee {
    inset: -92vh -148vw;
  }

  .cases-trust-marquee__lanes {
    width: 620vw;
    min-width: 4300px;
    transform: translate(-50%, -50%) rotate(-29deg) scale(1.16);
  }

  .cases-trust-marquee__track {
    animation: none !important;
    animation-play-state: paused !important;
  }

  .cases-trust .cases-trust-copy {
    left: var(--cases-copy-left);
    right: var(--cases-copy-right);
    bottom: var(--cases-copy-bottom);
    width: auto;
  }

  .cases-trust-copy__inner {
    gap: 10px;
  }

  .cases-trust .section-head h2 {
    font-size: clamp(20px, 5.2vw, 34px);
    line-height: 1.05;
    white-space: nowrap;
  }

  .cases-trust .section-head p:not(.eyebrow) {
    max-width: min(100%, 33em);
    font-size: 13px;
    line-height: 1.65;
  }
}

@keyframes casesTrustMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.case-logo-wall {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.case-logo-wall img {
  width: 100%;
  height: clamp(92px, 11vw, 136px);
  object-fit: contain;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
  filter: saturate(.86) contrast(1.02) brightness(.92);
  transition: transform .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}

.case-logo-wall img:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.18);
  box-shadow: 0 24px 48px rgba(0,0,0,.28);
}

.cases-production {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: clamp(102px, 12vh, 142px) clamp(32px, 6vw, 96px) clamp(66px, 8.2vh, 102px);
  display: flex;
  align-items: flex-end;
  background-image:
    url("../assets/cases/end-of-line-production-hero.webp?v=20260720-speed-3"),
    linear-gradient(180deg, #f5f7f5 0%, #eef1ee 62%, #e4e8e4 100%);
  background-position:
    center center,
    center center;
  background-size:
    cover,
    auto;
  background-repeat:
    no-repeat,
    no-repeat;
  overflow: hidden;
}

.cases-production::before {
  display: none;
}

.cases-production::after {
  display: none;
}

body[data-page="cases"].bmw-scroll-ready .cases-production::before {
  display: none;
}

.cases-production__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(1320px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
}

.cases-production__media img {
  object-fit: cover;
  padding: 0;
  filter: grayscale(.12) contrast(1.08) brightness(.82);
}

.cases-production__copy .eyebrow {
  margin: 0;
  color: rgba(120, 22, 31, .82);
  text-shadow: 0 1px 0 rgba(255,255,255,.86);
}

.cases-production__copy h2 {
  max-width: 100%;
  margin: 0;
  color: #111418;
  white-space: nowrap;
  font-size: clamp(34px, 4.3vw, 62px);
  line-height: 1.02;
  text-shadow: 0 2px 0 rgba(255,255,255,.78), 0 14px 34px rgba(255,255,255,.58);
}

.cases-production__copy p:not(.eyebrow) {
  max-width: min(860px, 100%);
  margin: 0;
  color: rgba(17,20,24,.72);
  text-shadow: 0 1px 0 rgba(255,255,255,.92);
}

.case-card-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-card-grid article {
  min-height: 520px;
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto;
  border: 1px solid rgba(17,20,24,.12);
  background: rgba(255,255,255,.76);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.case-card-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(17,20,24,.14);
}

.case-card-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  filter: grayscale(.08) contrast(1.05) brightness(.92);
}

.case-card-grid div {
  padding: 26px;
}

.case-card-grid h3 {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .solution-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-flow article:nth-child(3n) {
    border-right: 0;
  }

  .solution-map,
  .cases-production {
    grid-template-columns: 1fr;
    padding: 92px 28px max(48px, calc(36px + env(safe-area-inset-bottom)));
    background-position: center;
  }

  .solution-map__copy,
  .cases-production__copy {
    order: -1;
  }

  .cases-production__copy {
    gap: 12px;
  }

  .cases-production__copy h2 {
    white-space: nowrap;
    font-size: clamp(24px, 4.4vw, 42px);
  }

  .solution-module-grid,
  .case-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .solution-actions,
  .solution-actions .btn {
    width: 100%;
  }

  .solution-flow,
  .solution-module-grid,
  .case-logo-wall,
  .case-card-grid,
  .solution-map__stats {
    grid-template-columns: 1fr;
  }

  .solution-flow article,
  .solution-flow article:nth-child(3n) {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid rgba(17,20,24,.12);
  }

  .solution-flow article:last-child {
    border-bottom: 0;
  }

  .solution-map__media,
  .cases-production__media {
    min-height: 330px;
  }

  .solution-map__copy h2,
  .cases-production__copy h2 {
    font-size: clamp(16px, 4vw, 24px);
    white-space: nowrap;
  }

  .case-card-grid article {
    min-height: auto;
  }
}

body[data-page="solutions"] .solution-modules {
  padding-top: clamp(128px, 14vh, 156px);
}

body[data-page="cases"] .cases-grid-section {
  position: sticky;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  isolation: isolate;
  gap: clamp(18px, 3vh, 30px);
  overflow: hidden;
  background: var(--mist);
}

body[data-page="cases"] .cases-grid-section::before {
  position: absolute;
  inset: -30px 0 0;
  z-index: 0;
  background: var(--mist);
  content: "";
  pointer-events: none;
  display: none;
}

body[data-page="cases"] .cases-grid-section > * {
  position: relative;
  z-index: 1;
}

body[data-page="cases"] .cases-grid-section .section-head {
  width: 100%;
  max-width: none;
  margin: clamp(84px, 10vh, 128px) 0 0;
}

body[data-page="cases"] .cases-grid-section .section-head h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 56px);
}

body[data-page="cases"] .case-card-grid {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  align-self: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
}

body[data-page="cases"] .case-card-grid article {
  min-height: 0;
  height: 100%;
  grid-template-rows: clamp(168px, 24vh, 260px) auto;
}

body[data-page="cases"] .case-card-grid img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

body[data-page="cases"] .case-card-grid div {
  padding: clamp(16px, 1.8vw, 22px);
}

body[data-page="cases"] .case-card-grid h3 {
  margin: 16px 0 10px;
  font-size: clamp(19px, 1.55vw, 26px);
}

body[data-page="cases"] .case-card-grid p {
  line-height: 1.58;
}

body[data-page="cases"].bmw-scroll-ready .cases-hero .page-hero-copy,
body[data-page="cases"].bmw-scroll-ready .cases-production__copy,
body[data-page="cases"].bmw-scroll-ready .cases-trust-copy,
body[data-page="cases"].bmw-scroll-ready .cases-grid-section .section-head,
body[data-page="cases"].bmw-scroll-ready .cases-contact .immersive-copy {
  opacity: 1;
  transform: none;
  transform-origin: left bottom;
  transition: none;
  will-change: transform;
}

body[data-page="cases"].bmw-scroll-ready .case-card-grid {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

body[data-page="cases"].bmw-scroll-ready .cases-contact img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  transform-origin: center;
  transition: none;
  will-change: auto;
}

body[data-page="cases"].bmw-scroll-ready .cases-hero img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

/* Homepage solution pages */
body[data-page="home"] .brand-positioning,
body[data-page="home"] .solutions-overview {
  gap: clamp(18px, 3vh, 30px);
  padding-block: clamp(82px, 10vh, 108px) clamp(46px, 7vh, 72px);
}

body[data-page="home"] .brand-positioning {
  background:
    linear-gradient(rgba(17,20,24,.045) 1px, transparent 1px),
    linear-gradient(118deg, #f6f7f5, #e4e9e7 58%, #cbd4d1);
  background-size: 54px 54px, auto;
}

.home-line-showcase {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, .84fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

.home-line-showcase__media {
  min-height: clamp(300px, 42vh, 430px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17,20,24,.10);
  background:
    radial-gradient(circle at 50% 52%, rgba(255,255,255,.92), rgba(235,239,238,.76) 56%, rgba(198,207,204,.48));
}

.home-line-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(10px, 1.4vw, 22px);
  filter: grayscale(.06) contrast(1.04) brightness(.96);
  transition: transform .8s var(--ease);
}

.home-line-showcase__media:hover img {
  transform: scale(1.025);
}

.home-line-showcase__copy h3,
.home-pallet-showcase__copy h3 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 56px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: .02em;
}

.home-line-showcase__copy > p:not(.eyebrow),
.home-pallet-showcase__copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.9;
}

.home-line-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 24px;
}

.home-line-points span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-left: 2px solid var(--gold);
  color: #30383f;
  background: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 700;
}

body[data-page="home"] .brand-positioning .positioning-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="home"] .brand-positioning .positioning-grid article {
  min-height: 174px;
  padding: 22px;
  background: rgba(255,255,255,.66);
  backdrop-filter: blur(8px);
}

body[data-page="home"] .brand-positioning .positioning-grid strong {
  font-size: clamp(18px, 1.5vw, 22px);
}

body[data-page="home"] .brand-positioning .positioning-grid p {
  margin-top: 16px;
  line-height: 1.72;
}

body[data-page="home"] .solutions-overview {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(174,184,191,.20), transparent 32%),
    linear-gradient(145deg, #14191d, #050607 68%);
}

.home-pallet-showcase {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, .86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 4.4vw, 60px);
  align-items: center;
}

.home-pallet-showcase__copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.68);
}

.home-pallet-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.home-pallet-steps span {
  min-height: 104px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}

.home-pallet-steps b {
  color: rgba(255,255,255,.36);
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.home-pallet-steps em {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.home-pallet-showcase__media {
  min-height: clamp(300px, 45vh, 470px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #090b0d;
}

.home-pallet-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(.10) contrast(1.08) brightness(.82);
  transition: transform .8s var(--ease);
}

.home-pallet-showcase__media:hover img {
  transform: scale(1.035);
}

body[data-page="home"] .solutions-overview .solution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="home"] .solutions-overview .solution-grid article {
  min-height: 178px;
  padding: 20px;
  border-color: rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: none;
}

body[data-page="home"] .solutions-overview .solution-grid article:hover {
  border-color: rgba(255,255,255,.34);
  box-shadow: none;
}

body[data-page="home"] .solutions-overview .solution-grid span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 28px;
}

body[data-page="home"] .solutions-overview .solution-grid h3 {
  color: #fff;
  font-size: clamp(18px, 1.55vw, 22px);
}

body[data-page="home"] .solutions-overview .solution-grid p {
  color: rgba(255,255,255,.62);
  line-height: 1.65;
}

body[data-page="home"] .solutions-overview .solution-actions {
  margin-top: 8px;
}

body[data-page="home"].bmw-scroll-ready .home-line-showcase,
body[data-page="home"].bmw-scroll-ready .home-pallet-showcase,
body[data-page="home"].bmw-scroll-ready .solution-actions {
  opacity: var(--scene-opacity);
  transform: none;
  transform-origin: center;
  transition: opacity .2s linear, transform .28s var(--ease);
  will-change: opacity, transform;
}

@media (max-width: 1080px) {
  .home-line-showcase,
  .home-pallet-showcase {
    grid-template-columns: 1fr;
  }

  .home-pallet-showcase__copy {
    order: 2;
  }

  .home-pallet-showcase__media {
    order: 1;
  }

  .home-pallet-steps,
  body[data-page="home"] .solutions-overview .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .brand-positioning,
  body[data-page="home"] .solutions-overview {
    padding-block: 82px 40px;
  }

  .home-line-showcase__media,
  .home-pallet-showcase__media {
    min-height: 260px;
  }

  .home-line-points,
  .home-pallet-steps,
  body[data-page="home"] .brand-positioning .positioning-grid,
  body[data-page="home"] .solutions-overview .solution-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .brand-positioning .positioning-grid article,
  body[data-page="home"] .solutions-overview .solution-grid article {
    min-height: auto;
  }

  .home-line-showcase__copy .btn,
  body[data-page="home"] .solutions-overview .solution-actions,
  body[data-page="home"] .solutions-overview .solution-actions .btn {
    width: 100%;
  }
}

/* Homepage compact industrial solution redesign */
body[data-page="home"] .brand-positioning,
body[data-page="home"] .solutions-overview {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
  align-items: end;
  gap: clamp(32px, 5vw, 76px);
  padding: clamp(88px, 10vh, 112px) 6vw clamp(48px, 7vh, 74px);
  overflow: hidden;
  color: #fff;
}

body[data-page="home"] .brand-positioning {
  background:
    radial-gradient(circle at 76% 26%, rgba(142,160,168,.18), transparent 34%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(135deg, #161b1f 0%, #0a0d0f 58%, #050607 100%);
  background-size: auto, 56px 56px, auto;
}

body[data-page="home"] .solutions-overview {
  background:
    radial-gradient(circle at 78% 30%, rgba(168,182,188,.18), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(145deg, #101519 0%, #060708 68%);
  background-size: auto, 64px 64px, auto;
}

body[data-page="home"] .brand-positioning::after,
body[data-page="home"] .solutions-overview::after {
  position: absolute;
  inset: auto 5vw 9vh auto;
  width: min(360px, 28vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,221,222,.44), transparent);
  content: "";
  opacity: .72;
}

body[data-page="home"] .brand-positioning .home-industrial-head,
body[data-page="home"] .solutions-overview .home-industrial-head {
  max-width: min(560px, 100%);
  margin: 0;
  display: block;
  align-self: end;
}

body[data-page="home"] .home-industrial-head h2 {
  max-width: 8.8em;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(36px, 4.3vw, 64px);
  line-height: 1.06;
}

body[data-page="home"] .home-industrial-head p:not(.eyebrow) {
  max-width: 28em;
  color: rgba(255,255,255,.68);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.82;
}

.home-line-showcase.home-system-board,
.home-pallet-showcase.home-eol-board {
  width: 100%;
  max-width: none;
  height: min(66vh, 560px);
  min-height: 420px;
  margin: 0;
  align-self: center;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(14px, 2vh, 22px);
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(10,13,15,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 34px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}

.home-line-showcase.home-system-board {
  grid-template-columns: minmax(240px, .92fr) minmax(360px, 1.08fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
}

.home-system-core {
  grid-column: 1;
  grid-row: 1;
}

.home-process-chain {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.home-system-metrics {
  grid-column: 1 / -1;
  grid-row: 2;
}

.home-line-showcase.home-system-board::before,
.home-pallet-showcase.home-eol-board::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  opacity: .72;
  pointer-events: none;
}

.home-system-core,
.home-process-chain,
.home-system-metrics,
.home-eol-lane,
.home-eol-modules,
.home-eol-stack {
  position: relative;
  z-index: 1;
}

.home-system-core {
  min-height: 156px;
  display: grid;
  align-content: center;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(90deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
}

.home-system-core__label {
  color: rgba(255,255,255,.42);
  font-family: var(--font-display);
  font-size: clamp(26px, 4.4vw, 58px);
  line-height: .9;
}

.home-system-core__machine {
  width: min(620px, 86%);
  height: 54px;
  margin-top: 22px;
  display: block;
  background:
    linear-gradient(90deg, rgba(214,221,222,.30), rgba(255,255,255,.78) 34%, rgba(116,132,140,.34) 72%),
    linear-gradient(180deg, #6f7d82, #232a2f);
  clip-path: polygon(0 36%, 8% 36%, 8% 18%, 28% 18%, 28% 36%, 100% 36%, 100% 76%, 0 76%);
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.34));
}

.home-system-core__rail {
  width: 100%;
  height: 2px;
  margin-top: 12px;
  display: block;
  background: linear-gradient(90deg, rgba(198,168,92,.18), rgba(198,168,92,.88), rgba(198,168,92,.18));
}

.home-process-chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.home-process-chain span,
.home-eol-lane span {
  min-height: 82px;
  padding: 14px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.045);
}

.home-process-chain b,
.home-eol-lane em {
  color: rgba(198,168,92,.88);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 400;
  line-height: 1;
  font-style: normal;
}

.home-process-chain em,
.home-eol-lane b {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.home-system-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-system-metrics span {
  min-height: 92px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  border-left: 2px solid rgba(198,168,92,.74);
  background: rgba(255,255,255,.05);
}

.home-system-metrics b {
  color: #fff;
  font-size: 15px;
}

.home-system-metrics em {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.home-pallet-showcase.home-eol-board {
  grid-template-columns: minmax(0, 1fr) minmax(170px, 240px);
  grid-template-rows: auto minmax(0, 1fr);
}

.home-eol-lane {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.home-eol-lane span {
  min-height: 76px;
}

.home-eol-stack {
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2, minmax(48px, 1fr));
  grid-auto-rows: 1fr;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(198,168,92,.14), rgba(255,255,255,.025)),
    rgba(255,255,255,.035);
}

.home-eol-stack span {
  min-height: 44px;
  background:
    linear-gradient(135deg, rgba(235,239,240,.88), rgba(103,116,124,.58)),
    #8d9aa0;
  box-shadow: inset 0 -10px 16px rgba(0,0,0,.18), 0 12px 20px rgba(0,0,0,.22);
}

.home-eol-modules {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-eol-modules article {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}

.home-eol-modules span {
  display: block;
  margin-bottom: 14px;
  color: rgba(198,168,92,.86);
  font-family: var(--font-display);
  font-size: 22px;
}

.home-eol-modules h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.25;
}

.home-eol-modules p {
  margin: 0;
  color: rgba(255,255,255,.60);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  body[data-page="home"] .brand-positioning,
  body[data-page="home"] .solutions-overview {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 22px;
  }

  body[data-page="home"] .brand-positioning .home-industrial-head,
  body[data-page="home"] .solutions-overview .home-industrial-head {
    align-self: end;
  }

  .home-line-showcase.home-system-board,
  .home-pallet-showcase.home-eol-board {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .brand-positioning,
  body[data-page="home"] .solutions-overview {
    min-height: auto;
    padding: calc(var(--header-height) + 28px) 24px 54px;
    align-content: start;
  }

  body[data-page="home"] .home-industrial-head h2 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 44px);
  }

  .home-process-chain,
  .home-eol-lane,
  .home-system-metrics,
  .home-eol-modules,
  .home-line-showcase.home-system-board,
  .home-pallet-showcase.home-eol-board {
    grid-template-columns: 1fr;
  }

  .home-system-core,
  .home-process-chain,
  .home-system-metrics,
  .home-eol-lane,
  .home-eol-stack,
  .home-eol-modules {
    grid-column: auto;
    grid-row: auto;
  }

  .home-eol-stack {
    min-height: 156px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body[data-page="home"] .brand-positioning .section-head:not(.home-industrial-head),
body[data-page="home"] .solutions-overview .section-head:not(.home-industrial-head) {
  margin-bottom: clamp(22px, 3.5vh, 34px);
}

body[data-page="home"] .brand-positioning .positioning-grid,
body[data-page="home"] .solutions-overview .solution-grid {
  margin-top: clamp(18px, 3vh, 28px);
}

body[data-page="home"] .brand-positioning .positioning-grid {
  position: relative;
  z-index: 2;
}

body[data-page="home"] .brand-positioning .home-line-showcase,
body[data-page="home"] .solutions-overview .home-pallet-showcase {
  position: relative;
  z-index: 1;
}

/* Source-backed homepage section treatment */
.home-line-showcase.home-system-board {
  grid-template-columns: minmax(360px, 1.05fr) minmax(320px, .95fr);
  grid-template-rows: 1fr;
  align-items: stretch;
  gap: clamp(16px, 2.2vw, 28px);
}

.home-machine-visual,
.home-eol-blueprint {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #090c0e;
}

.home-machine-visual::after,
.home-eol-blueprint::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.52)),
    linear-gradient(90deg, rgba(0,0,0,.18), transparent 48%, rgba(0,0,0,.16));
}

.home-machine-visual img,
.home-eol-blueprint img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(.08) contrast(1.05) brightness(.82);
}

.home-machine-visual figcaption,
.home-eol-blueprint figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  gap: 6px;
  color: #fff;
}

.home-machine-visual figcaption span {
  color: rgba(198,168,92,.92);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: .95;
}

.home-machine-visual figcaption b,
.home-eol-blueprint figcaption {
  font-size: 16px;
  line-height: 1.45;
}

.home-machine-panel {
  min-width: 0;
  display: grid;
  align-content: stretch;
  gap: 8px;
  overflow: hidden;
}

.home-machine-panel > .eyebrow {
  align-self: start;
  margin: 0;
}

.home-machine-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.home-machine-stack span,
.home-machine-proof span {
  min-height: 72px;
  padding: 12px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.045);
}

.home-machine-stack b {
  color: rgba(198,168,92,.9);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 400;
  line-height: 1;
}

.home-machine-stack em,
.home-machine-proof b {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.home-machine-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.home-machine-proof span {
  min-height: 58px;
  border-left: 2px solid rgba(198,168,92,.78);
}

.home-machine-proof em {
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-style: normal;
  line-height: 1.42;
}

.home-pallet-showcase.home-eol-board {
  grid-template-columns: minmax(0, 1fr) minmax(270px, .42fr);
  grid-template-rows: minmax(0, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

.home-eol-blueprint {
  min-height: 0;
  height: 100%;
}

.home-eol-blueprint img {
  object-fit: cover;
  object-position: center;
  filter: grayscale(.04) contrast(1.03) brightness(.76);
}

.home-eol-lane {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 2.4vw, 34px);
  right: calc(min(270px, 32vw) + clamp(42px, 4vw, 58px));
  bottom: clamp(22px, 2.4vw, 34px);
  grid-column: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.home-eol-lane span {
  min-height: 68px;
  padding: 12px;
  background: rgba(7,10,12,.72);
  backdrop-filter: blur(8px);
}

.home-eol-modules {
  grid-column: auto;
  grid-row: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.home-eol-modules article {
  min-height: 0;
  padding: 12px 14px;
}

.home-eol-modules span {
  margin-bottom: 5px;
  font-size: 18px;
}

.home-eol-modules h3 {
  margin-bottom: 4px;
  font-size: clamp(15px, 1.15vw, 18px);
}

@media (max-width: 1120px) {
  .home-line-showcase.home-system-board,
  .home-pallet-showcase.home-eol-board {
    grid-template-columns: 1fr;
  }

  .home-machine-visual,
  .home-eol-blueprint {
    min-height: 260px;
  }

  .home-eol-lane {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-machine-stack,
  .home-eol-lane,
  .home-eol-modules {
    grid-template-columns: 1fr;
  }

  .home-machine-visual,
  .home-eol-blueprint {
    min-height: 230px;
  }
}

/* Mobile refinement layer */
@media (max-width: 980px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  :root {
    --header-height: 58px;
    --header-plate-height: 58px;
  }

  .site-header {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    height: var(--header-height);
    gap: 10px;
    padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: -8px;
  }

  .brand {
    min-width: 0;
    max-width: 160px;
    gap: 7px;
    justify-self: start;
  }

  .brand-svg-en {
    width: clamp(72px, 22vw, 92px);
  }

  .brand-svg-cn {
    width: clamp(38px, 12vw, 48px);
  }

  .brand-divider {
    height: 22px;
  }

  .header-actions {
    min-width: 38px;
    justify-content: end;
  }

  .lang-switch {
    font-size: 13px;
  }

  .mobile-drawer {
    z-index: 48;
    inset: var(--header-height) 0 0;
    min-height: calc(100svh - var(--header-height));
    padding: 24px 24px max(32px, env(safe-area-inset-bottom));
    align-content: start;
    overflow-y: auto;
    background:
      linear-gradient(180deg, rgba(5,6,7,.98), rgba(11,14,16,.98)),
      var(--black);
    box-shadow: 0 28px 80px rgba(0,0,0,.45);
  }

  .mobile-drawer a,
  .drawer-lang {
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 14px 0;
    font-size: clamp(21px, 6vw, 30px);
    line-height: 1.1;
  }

  .hero,
  .page-hero,
  .detail-hero,
  .immersive-band {
    min-height: 100svh;
  }

  .hero-copy,
  .page-hero-copy,
  .detail-copy,
  .immersive-copy {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }

  .hero-copy,
  .page-hero-copy {
    left: 20px;
    bottom: max(58px, calc(44px + env(safe-area-inset-bottom)));
  }

  .button-row,
  .solution-actions,
  .home-contact-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn,
  .product-scene__detail {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    justify-content: center;
    padding-inline: 16px;
    white-space: normal;
  }

  .section {
    padding: 76px 20px;
  }

  .section-head {
    width: 100%;
    gap: 16px;
  }

  .section-head h2,
  .home-line-showcase__copy h3,
  .home-pallet-showcase__copy h3,
  .solution-map__copy h2,
  .cases-production__copy h2 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.15;
  }

  .cases-production__copy h2 {
    font-size: clamp(24px, 4.4vw, 42px);
    line-height: 1.04;
    white-space: nowrap;
  }

  .section-head p:not(.eyebrow),
  .home-line-showcase__copy > p:not(.eyebrow),
  .home-pallet-showcase__copy > p:not(.eyebrow),
  .solution-map__copy p:not(.eyebrow),
  .cases-production__copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.75;
  }

  .home-line-showcase,
  .home-pallet-showcase,
  .solution-map,
  .cases-production,
  body[data-page="about"] .about-intro,
  body[data-page="about"] .about-capability {
    grid-template-columns: 1fr;
  }

  .home-line-showcase__media,
  .home-pallet-showcase__media,
  .solution-map__media,
  .cases-production__media,
  body[data-page="about"] .about-capability__media {
    min-height: clamp(240px, 42svh, 360px);
  }

  .positioning-grid,
  .solution-grid,
  .solution-module-grid,
  .case-card-grid,
  .about-scope-grid,
  body[data-page="about"] .about-scope-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .positioning-grid article,
  .solution-grid article,
  .solution-module-grid article,
  .about-scope-grid article {
    min-height: auto;
    padding: 20px;
  }

  .solution-flow,
  body[data-page="about"] .about-process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-flow article,
  body[data-page="about"] .about-process-line article {
    min-height: 132px;
    padding: 20px 16px;
  }

  .case-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .case-logo-wall img {
    height: 96px;
    padding: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 20px max(24px, env(safe-area-inset-bottom));
  }

  .site-footer nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .social-dock {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    gap: 10px;
  }

  .social-dock__link {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] main > section,
  body[data-page="products"] main > section,
  body[data-page="products"] .page-hero,
  body[data-page="products"] .product-scene {
    position: relative;
    top: auto;
    height: auto;
    min-height: 100svh;
    overflow: hidden;
  }

  body[data-page="home"] .brand-positioning,
  body[data-page="home"] .solutions-overview {
    min-height: auto;
    overflow: visible;
    padding: 76px 20px 70px;
  }

  body[data-page="home"] .brand-positioning,
  body[data-page="home"] .solutions-overview,
  body[data-page="home"] .client-contact {
    display: grid;
  }

  body[data-page="home"].bmw-scroll-ready .hero-slide,
  body[data-page="home"].bmw-scroll-ready .section--dark::before,
  body[data-page="home"].bmw-scroll-ready .section--light::before,
  body[data-page="home"].bmw-scroll-ready .hero-copy,
  body[data-page="home"].bmw-scroll-ready .section-head,
  body[data-page="home"].bmw-scroll-ready .positioning-grid,
  body[data-page="home"].bmw-scroll-ready .home-line-showcase,
  body[data-page="home"].bmw-scroll-ready .home-pallet-showcase,
  body[data-page="home"].bmw-scroll-ready .home-product-rail,
  body[data-page="home"].bmw-scroll-ready .home-product-progress,
  body[data-page="home"].bmw-scroll-ready .solution-grid,
  body[data-page="home"].bmw-scroll-ready .home-contact-card,
  body[data-page="products"].bmw-scroll-ready .product-scene__copy,
  body[data-page="products"].bmw-scroll-ready .product-scene__media {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body[data-page="home"] .hero,
  body[data-page="home"] .home-product-entry,
  body[data-page="home"] .client-countries.flags-page,
  body[data-page="flags"] .client-countries.flags-page {
    min-height: 100svh;
  }

  body[data-page="home"] .hero-copy,
  body[data-page="home"] .section-scroll-title,
  body[data-page="home"] .client-countries.flags-page .section-head,
  body[data-page="flags"] .client-countries.flags-page .section-head {
    left: 20px;
    right: 20px;
    bottom: max(48px, calc(36px + env(safe-area-inset-bottom)));
    width: auto;
    max-width: none;
  }

  body[data-page="home"] .hero h1,
  body[data-page="home"] .section-scroll-title h2,
  .flags-page .section-head h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.05;
  }

  body[data-page="home"] .home-product-entry {
    display: grid;
    grid-template-rows: minmax(78px, 16svh) minmax(0, 1fr) 42px;
    padding: 0;
  }

  body[data-page="home"] .home-product-entry > .section-scroll-title {
    top: 74px;
    bottom: auto;
    left: 20px;
    width: calc(100% - 40px);
  }

  .home-product-rail {
    align-self: center;
    width: 100%;
    padding: 0 20px;
    gap: 16px;
    scroll-snap-type: x proximity;
    touch-action: pan-x pan-y;
  }

  .home-product-card,
  body[data-page="home"] .home-product-card,
  body[data-page="products"] .home-product-card {
    flex-basis: min(84vw, 360px);
    height: auto;
    min-height: min(70svh, 520px);
    grid-template-rows: auto minmax(180px, 34svh) auto;
    scroll-snap-align: start;
  }

  .home-product-card::before,
  .home-product-card::after {
    display: none;
  }

  .home-product-card__head,
  body[data-page="home"] .home-product-card__head {
    min-height: 84px;
    padding: 18px 4px 0;
  }

  .home-product-card h3,
  body[data-page="home"] .home-product-card h3 {
    font-size: clamp(23px, 7vw, 30px);
  }

  .home-product-card__body,
  body[data-page="home"] .home-product-card__body {
    padding: 14px 4px 18px;
  }

  .home-product-card p,
  body[data-page="home"] .home-product-card p {
    display: block;
    font-size: 13px;
    line-height: 1.65;
  }

  .home-product-progress {
    width: calc(100% - 40px);
    align-self: center;
  }

  body[data-page="products"] .site-footer,
  .product-page-index {
    display: none;
  }

  .product-scene {
    min-height: 100svh;
    padding: 72px 20px max(44px, env(safe-area-inset-bottom));
  }

  .product-scene__copy {
    left: 20px;
    right: 20px;
    bottom: max(42px, calc(30px + env(safe-area-inset-bottom)));
    width: auto;
    max-width: none;
  }

  .product-scene__copy h2 {
    max-width: 100%;
    white-space: normal;
    font-size: clamp(30px, 9vw, 42px);
  }

  .product-scene__copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.65;
    white-space: normal;
  }

  .product-scene__specs {
    margin: 18px 0;
    gap: 8px;
  }

  .product-scene__specs span {
    min-height: 32px;
    padding: 6px 9px;
    font-size: 12px;
  }

  .product-scene__media,
  .product-scene[data-product-index="0"] .product-scene__media,
  .product-scene[data-product-index="1"] .product-scene__media,
  .product-scene[data-product-index="2"] .product-scene__media {
    inset: 58px 0 auto;
    width: 100%;
    height: 52svh;
    opacity: .72;
    overflow: hidden;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .product-scene__media img,
  .product-scene[data-product-index="0"] .product-scene__media img,
  .product-scene[data-product-index="1"] .product-scene__media img,
  .product-scene[data-product-index="2"] .product-scene__media img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: contain;
    object-position: center;
  }

  .detail-hero {
    min-height: auto;
    padding: 92px 20px 52px;
    gap: 28px;
  }

  .detail-copy {
    align-self: start;
    max-width: none;
  }

  .detail-media {
    min-height: clamp(260px, 42svh, 380px);
  }

  .detail-media img {
    max-height: 42svh;
  }

  .detail-three {
    gap: 26px;
  }

  .machine-viewer,
  .machine-viewer--large {
    min-height: 300px;
    height: 42svh;
    touch-action: none;
  }

  .media-grid,
  .cert-list,
  .solution-map__stats,
  body[data-page="about"] .about-metrics {
    grid-template-columns: 1fr;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }

  .spec-row b,
  .spec-row span {
    padding: 0;
  }

  .cert-list span {
    min-height: 72px;
  }

  .flag-wall {
    grid-template-columns: repeat(5, minmax(72px, 1fr));
  }

  body[data-page="home"] main > section.client-contact {
    min-height: 100svh;
    padding: 76px 20px 0;
  }

  body[data-page="home"] main > section.client-contact .home-contact-card {
    align-self: center;
  }

  body[data-page="home"] main > section.client-contact .home-contact-actions {
    width: 100%;
  }

  body[data-page="home"] main > section.client-contact .home-contact-actions .btn,
  body[data-page="contact"] .home-contact-actions .btn {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    max-width: 132px;
  }

  .brand-svg-en {
    width: 70px;
  }

  .brand-svg-cn {
    width: 38px;
  }

  .brand-divider {
    height: 19px;
  }

  .hero h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .hero-copy p:not(.eyebrow),
  .page-hero-copy p:not(.eyebrow),
  .detail-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.65;
  }

  .section {
    padding: 68px 18px;
  }

  .positioning-grid,
  .solution-grid,
  .solution-module-grid,
  .case-card-grid,
  .about-scope-grid,
  body[data-page="about"] .about-scope-grid,
  .solution-flow,
  body[data-page="about"] .about-process-line,
  .case-logo-wall {
    grid-template-columns: 1fr;
  }

  .home-line-points,
  .home-pallet-steps,
  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .home-line-showcase__media,
  .home-pallet-showcase__media {
    min-height: 230px;
  }

  .case-card-grid article {
    min-height: auto;
    grid-template-rows: 220px auto;
  }

  .case-card-grid img {
    min-height: 220px;
  }

  .social-dock {
    gap: 8px;
  }

  .social-dock__link {
    width: 30px;
    height: 30px;
  }

  .social-dock svg {
    width: 20px;
    height: 20px;
  }
}

body[data-page="home"].bmw-scroll-ready .client-countries.flags-page .section-head,
body[data-page="flags"].bmw-scroll-ready .client-countries.flags-page .section-head {
  opacity: 1;
  transform: none;
  transform-origin: left bottom;
  transition: none;
  will-change: transform;
}

@media (max-width: 760px) {
  body[data-page="home"] main > section.section,
  body[data-page="products"] main > section {
    position: relative;
    top: auto;
    z-index: auto;
    height: auto;
    min-height: 100svh;
    overflow: hidden;
  }

  body[data-page="home"] .client-countries.flags-page .section-head,
  body[data-page="flags"] .client-countries.flags-page .section-head {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  body[data-page="home"] .client-countries.flags-page .section-head h1,
  body[data-page="flags"] .client-countries.flags-page .section-head h1,
  body[data-page="home"] .client-countries.flags-page .section-head p:not(.eyebrow),
  body[data-page="flags"] .client-countries.flags-page .section-head p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  body[data-page="home"] .client-countries.flags-page .section-head h1,
  body[data-page="flags"] .client-countries.flags-page .section-head h1 {
    font-size: clamp(28px, 7.4vw, 32px);
    letter-spacing: 0;
  }

  body[data-page="home"] .client-countries.flags-page .section-head p:not(.eyebrow),
  body[data-page="flags"] .client-countries.flags-page .section-head p:not(.eyebrow) {
    max-width: 17em;
  }

  body[data-page="home"] .hero h1 {
    max-width: 10em;
    font-size: clamp(30px, 8.5vw, 36px);
    letter-spacing: 0;
    text-wrap: balance;
  }

  body[data-page="home"] .hero-copy p:not(.eyebrow) {
    max-width: 18em;
  }

}

/* Mobile pass inspired by the reference AMG/Kerry page */
@media (max-width: 980px) {
  :root {
    --header-height: 64px;
    --header-plate-height: 64px;
  }

  .site-header {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    height: var(--header-height);
    gap: 0;
    padding: 0 max(24px, env(safe-area-inset-left)) 0 max(24px, env(safe-area-inset-right));
    color: #fff;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .site-header::before {
    display: block;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin: 0;
    justify-self: start;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
  }

  .brand,
  body.menu-open .brand {
    justify-self: center;
    justify-content: center;
    min-width: 0;
    max-width: min(52vw, 190px);
    gap: 8px;
    color: #fff;
  }

  .brand-svg-en {
    width: clamp(88px, 26vw, 112px);
  }

  .brand-svg-cn {
    width: clamp(42px, 12vw, 52px);
  }

  .brand-divider,
  body.menu-open .brand-divider {
    height: 24px;
    background: rgba(255,255,255,.52);
  }

  .brand-cn,
  body.menu-open .brand-cn {
    color: #fff;
  }

  body.header-on-light .brand {
    color: #303746;
  }

  body.header-on-light .brand-divider {
    height: 24px;
    background: rgba(17,20,24,.34);
  }

  body.header-on-light .brand-cn {
    color: #303746;
  }

  .header-actions {
    min-width: 44px;
    justify-self: end;
    justify-content: flex-end;
  }

  .lang-switch,
  body.menu-open .lang-switch {
    min-width: 44px;
    height: 34px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 0;
    background: rgba(255,255,255,.06);
    font-size: 13px;
    line-height: 1;
  }

  body.header-on-light .lang-switch {
    min-width: 44px;
    height: 34px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(17,20,24,.88);
    border: 1px solid rgba(17,20,24,.24);
    border-radius: 0;
    background: rgba(17,20,24,.04);
    font-size: 13px;
    line-height: 1;
  }

  body.menu-open .brand {
    color: #fff;
  }

  body.menu-open .brand-divider {
    background: rgba(255,255,255,.52);
  }

  body.menu-open .brand-cn {
    color: #fff;
  }

  body.menu-open .lang-switch {
    color: rgba(255,255,255,.92);
    border-color: rgba(255,255,255,.24);
    background: rgba(255,255,255,.06);
  }

  body.header-on-light .site-header {
    color: var(--ink);
    background: transparent;
  }

  body.menu-open .site-header {
    color: #fff;
    background: transparent;
  }

  body.menu-open .social-dock {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-drawer {
    z-index: 49;
    inset: var(--header-height) 0 0;
    min-height: calc(100svh - var(--header-height));
    padding: 18px 28px max(32px, env(safe-area-inset-bottom));
    background:
      linear-gradient(180deg, rgba(0,0,0,.98), rgba(8,10,12,.98)),
      #000;
    border-top: 1px solid rgba(255,255,255,.10);
    transform: translateY(-106%);
    transition: transform .34s cubic-bezier(.2,.72,.18,1);
  }

  .mobile-drawer a,
  .drawer-lang {
    min-height: 64px;
    padding: 18px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: clamp(26px, 8.6vw, 38px);
    line-height: 1.04;
  }

  .drawer-lang {
    width: 100%;
    justify-content: flex-start;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
    background: transparent;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-copy,
  body[data-page="home"] .section-scroll-title,
  body[data-page="home"] .client-countries.flags-page .section-head,
  body[data-page="flags"] .client-countries.flags-page .section-head {
    left: 24px;
    right: 24px;
    bottom: max(54px, calc(42px + env(safe-area-inset-bottom)));
  }

  body[data-page="home"] .hero.hero--home .hero-copy {
    bottom: max(22px, calc(16px + env(safe-area-inset-bottom)));
  }

  body[data-page="home"] .hero h1 {
    max-width: 9.5em;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.02;
  }

  body[data-page="home"] .hero-copy p:not(.eyebrow) {
    max-width: 17em;
    font-size: 16px;
    line-height: 1.78;
  }

  body[data-page="home"] .hero-copy .brand {
    gap: 10px;
    transform: scale(1.28);
  }

  body[data-page="home"] .hero-copy .brand-svg-en {
    width: 100px;
  }

  body[data-page="home"] .hero-copy .brand-svg-cn {
    width: 52px;
  }

  body[data-page="home"] .brand-positioning,
  body[data-page="home"] .solutions-overview {
    min-height: 100svh;
    padding: calc(var(--header-height) + 34px) 24px 58px;
    align-content: start;
  }

  body[data-page="home"] .home-product-entry {
    grid-template-rows: minmax(104px, 15svh) minmax(0, 1fr) 56px;
    min-height: 100svh;
    padding: 0;
  }

  body[data-page="home"] .home-product-entry > .section-scroll-title {
    top: calc(var(--header-height) + 22px);
    left: 24px;
    width: calc(100% - 48px);
  }

  .home-product-rail {
    align-self: center;
    padding: 0 24px;
    gap: 18px;
    scroll-snap-type: none;
    touch-action: pan-x pan-y;
  }

  .home-product-card,
  body[data-page="home"] .home-product-card,
  body[data-page="products"] .home-product-card {
    flex-basis: min(calc(100vw - 48px), 360px);
    min-height: min(66svh, 510px);
    grid-template-rows: auto minmax(210px, 35svh) auto;
    overflow: hidden;
  }

  .home-product-card__head,
  body[data-page="home"] .home-product-card__head {
    min-height: 82px;
    padding: 16px 4px 0;
  }

  .home-product-card__body,
  body[data-page="home"] .home-product-card__body {
    padding: 16px 4px 18px;
    gap: 13px;
  }

  .home-product-card p,
  body[data-page="home"] .home-product-card p {
    line-height: 1.85;
  }

  .home-product-progress {
    width: calc(100% - 48px);
    align-self: end;
    margin-bottom: max(16px, env(safe-area-inset-bottom));
  }

  .product-scene {
    min-height: 100svh;
    padding: calc(var(--header-height) + 18px) 24px max(44px, env(safe-area-inset-bottom));
    color: #fff;
  }

  .product-scene__shade {
    background:
      linear-gradient(180deg, rgba(5,6,7,.18), rgba(5,6,7,.06) 36%, rgba(5,6,7,.82) 78%, rgba(5,6,7,.94)),
      linear-gradient(90deg, rgba(5,6,7,.60), rgba(5,6,7,.12) 54%, rgba(5,6,7,.28));
  }

  .product-scene__copy {
    left: 24px;
    right: 24px;
    bottom: max(42px, calc(32px + env(safe-area-inset-bottom)));
    width: auto;
    max-width: none;
    color: #fff;
  }

  .product-scene__copy h2 {
    max-width: calc(100% - 52px);
    color: #fff;
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.04;
  }

  .product-scene__copy > p:not(.eyebrow) {
    max-width: 19em;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.85;
  }

  .product-scene__specs {
    margin: 20px 0 20px;
    gap: 10px;
  }

  .product-scene__specs span {
    min-height: 36px;
    padding: 7px 11px;
    color: rgba(255,255,255,.72);
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.055);
  }

  .product-scene__detail {
    width: calc(100% - 52px);
    min-height: 54px;
  }

  .product-scene__media,
  .product-scene[data-product-index="0"] .product-scene__media,
  .product-scene[data-product-index="1"] .product-scene__media,
  .product-scene[data-product-index="2"] .product-scene__media {
    inset: var(--header-height) 0 auto;
    width: 100%;
    height: 51svh;
    opacity: .90;
    overflow: hidden;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .product-scene__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .product-scene[data-product-index="0"] .product-scene__media img,
  .product-scene[data-product-index="1"] .product-scene__media img,
  .product-scene[data-product-index="2"] .product-scene__media img {
    object-fit: contain;
    object-position: center;
    mix-blend-mode: normal;
  }

  body[data-page="contact"] .contact-simple {
    min-height: 100svh;
    padding: calc(var(--header-height) + 42px) 24px max(64px, calc(48px + env(safe-area-inset-bottom)));
    align-content: center;
    background:
      linear-gradient(180deg, rgba(255,255,255,.075) 1px, transparent 1px),
      radial-gradient(circle at 76% 22%, rgba(162,184,192,.24), transparent 34%),
      linear-gradient(145deg, #303a40, #11171b 68%),
      #11171b;
    background-size: 56px 56px, auto, auto, auto;
  }

  body[data-page="contact"] .contact-simple .home-contact-card {
    min-height: 0;
    padding: 0;
    display: grid;
    gap: 22px;
    border: 0;
    background: transparent;
  }

  body[data-page="contact"] .home-contact-card h2 {
    margin: 0;
    max-width: 8.8em;
    font-size: clamp(40px, 11.4vw, 54px);
    line-height: 1.07;
  }

  body[data-page="contact"] .home-contact-actions {
    margin-top: 4px;
    gap: 14px;
  }

  body[data-page="contact"] .home-contact-actions .btn {
    min-height: 58px;
    justify-content: center;
    font-size: 15px;
    line-height: 1.2;
  }

  body[data-page="contact"] .site-footer {
    padding: 44px 24px max(32px, env(safe-area-inset-bottom));
  }

  .social-dock {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .site-header {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    padding-inline: 20px;
  }

  .brand-svg-en {
    width: clamp(82px, 24vw, 96px);
  }

  .brand-svg-cn {
    width: 42px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .home-product-entry {
    grid-template-rows: minmax(0, 1fr) 46px;
    min-height: 100svh;
    padding: var(--header-height) 0 0;
    align-content: stretch;
    align-items: stretch;
  }

  body[data-page="home"] .home-product-entry > .section-scroll-title {
    display: none;
  }

  body[data-page="home"] .home-product-rail {
    align-self: stretch;
    height: calc(100svh - var(--header-height) - 46px);
    padding: 0;
    align-items: center;
    overflow-y: hidden;
  }

  body[data-page="home"] .home-product-card {
    flex-basis: 100vw;
    height: min(100%, 670px);
    min-height: 0;
    grid-template-rows: minmax(250px, 45%) auto minmax(0, 1fr);
    align-self: center;
    padding: 0 24px;
    overflow: hidden;
  }

  body[data-page="home"] .home-product-card__media {
    grid-row: 1;
    min-height: 0;
    margin: 0;
  }

  body[data-page="home"] .home-product-card__media img {
    inset: 0;
    height: 100%;
    object-position: center;
  }

  body[data-page="home"] .home-product-card--large-machine .home-product-card__media img,
  body[data-page="home"] .home-product-card--large-machine:hover .home-product-card__media img {
    transform: none;
  }

  body[data-page="home"] .home-product-card__head {
    grid-row: 2;
    min-height: 0;
    padding: 18px 0 0;
    gap: 8px;
    min-width: 0;
  }

  body[data-page="home"] .home-product-card h3 {
    max-width: 100%;
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  body[data-page="home"] .home-product-card__body {
    grid-row: 3;
    padding: 14px 0 0;
    gap: 12px;
    align-content: start;
    min-width: 0;
  }

  body[data-page="home"] .home-product-card p {
    max-width: 21em;
    color: rgba(255,255,255,.70);
    font-size: 14px;
    line-height: 1.85;
  }

  body[data-page="home"] .home-product-card .product-card__specs {
    margin-top: 0;
    gap: 8px 13px;
  }

  body[data-page="home"] .home-product-card .product-card__specs span {
    font-size: 12px;
    line-height: 1.55;
  }

  body[data-page="home"] .home-product-card__body > a {
    margin-top: 2px;
    font-size: 14px;
  }

  body[data-page="home"] .home-product-progress {
    align-self: start;
    width: calc(100% - 48px);
    height: 18px;
    margin: 4px auto max(14px, env(safe-area-inset-bottom));
  }
}

body[data-page="products"] .product-scene.is-detail-open .product-scene__copy,
body[data-page="products"] .product-scene.is-detail-open .product-scene__media {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

body[data-page="products"] .product-scene.is-detail-open .product-scene__detail-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.btn,
.filter-btn,
.lang-switch {
  border-radius: 0 !important;
}

body[data-page="products"] .product-scene__copy {
  left: var(--product-scene-title-left);
  top: auto;
  bottom: clamp(40px, 6vh, 88px);
  width: min(960px, calc(100vw - var(--product-scene-title-left) - 32px));
  max-width: min(960px, calc(100vw - var(--product-scene-title-left) - 32px));
  translate: 0 0;
}

body[data-page="products"] .product-page-index {
  display: none !important;
}

@media (max-width: 760px) {
  body[data-page="products"] .product-scene__copy {
    top: auto;
    bottom: max(56px, calc(38px + env(safe-area-inset-bottom)));
    translate: 0 0;
    transform: none;
  }
}

/* Homepage source-led section rebuild */
body[data-page="home"] .brand-positioning,
body[data-page="home"] .solutions-overview {
  height: 100svh;
  min-height: 620px;
  grid-template-columns: minmax(300px, .66fr) minmax(620px, 1.34fr);
  gap: clamp(28px, 4vw, 62px);
  padding: clamp(78px, 9vh, 102px) 6vw clamp(42px, 6vh, 64px);
}

body[data-page="home"] .brand-positioning .home-industrial-head,
body[data-page="home"] .solutions-overview .home-industrial-head {
  align-self: end;
  max-width: min(500px, 100%);
}

body[data-page="home"] .home-industrial-head h2 {
  max-width: 8.2em;
  margin-bottom: clamp(12px, 2vh, 18px);
  font-size: clamp(35px, 4.05vw, 60px);
}

body[data-page="home"] .home-industrial-head p:not(.eyebrow) {
  max-width: 27em;
  line-height: 1.72;
}

body[data-page="home"] .home-line-showcase.home-system-board.home-system-page,
body[data-page="home"] .home-pallet-showcase.home-eol-board.home-eol-page {
  width: 100%;
  height: min(60svh, 500px);
  max-height: calc(100svh - 166px);
  min-height: 388px;
  align-self: end;
  display: grid;
  gap: clamp(14px, 1.8vw, 24px);
  padding: clamp(14px, 1.7vw, 22px);
  overflow: hidden;
  border-color: rgba(224,229,231,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.024)),
    linear-gradient(135deg, rgba(92,103,109,.22), rgba(8,11,13,.86)),
    rgba(8,10,12,.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 30px 72px rgba(0,0,0,.34);
}

body[data-page="home"] .home-system-page::before,
body[data-page="home"] .home-eol-page::before {
  z-index: 1;
  opacity: .34;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 42px 42px;
}

body[data-page="home"] .home-system-page > *,
body[data-page="home"] .home-eol-page > * {
  position: relative;
  z-index: 2;
}

body[data-page="home"] .home-line-showcase.home-system-board.home-system-page {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  grid-template-rows: minmax(0, 1fr);
}

.system-page__photo {
  grid-column: 1;
  grid-row: 1;
}

.system-page__panel {
  grid-column: 2;
  grid-row: 1;
}

.system-page__photo,
.eol-page__blueprint {
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: #080b0d;
}

.system-page__photo::after,
.eol-page__blueprint::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(2,4,5,.04), rgba(2,4,5,.62)),
    linear-gradient(90deg, rgba(0,0,0,.20), transparent 52%, rgba(0,0,0,.18));
}

.system-page__photo img,
.eol-page__blueprint img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(.06) contrast(1.08) brightness(.84);
}

.system-page__photo img {
  object-position: 55% center;
}

.system-page__photo figcaption,
.eol-page__blueprint figcaption {
  position: absolute;
  z-index: 3;
  left: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
  bottom: clamp(16px, 2vw, 24px);
  display: grid;
  gap: 6px;
  color: #fff;
}

.system-page__photo figcaption span {
  color: rgba(205,174,98,.95);
  font-family: var(--font-display);
  font-size: clamp(26px, 3.1vw, 44px);
  line-height: .95;
}

.system-page__photo figcaption b,
.eol-page__blueprint figcaption b {
  max-width: 24em;
  font-size: 15px;
  line-height: 1.42;
}

.eol-page__blueprint figcaption span,
.system-page__panel > .eyebrow {
  color: rgba(205,174,98,.86);
}

.system-page__panel {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 10px;
}

.system-page__panel > .eyebrow {
  margin: 0;
}

.system-page__line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.system-page__line span,
.system-page__proof article,
.eol-page__flow span,
.eol-page__side article,
.eol-page__palletizer {
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.026));
}

.system-page__line span {
  min-height: 70px;
  padding: 12px;
  display: grid;
  align-content: space-between;
}

.system-page__line em,
.eol-page__flow em,
.eol-page__side article > span {
  color: rgba(205,174,98,.92);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 31px);
  font-style: normal;
  line-height: 1;
}

.system-page__line b,
.eol-page__flow b {
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}

.system-page__proof {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.system-page__proof article {
  min-height: 0;
  padding: 11px 14px;
  border-left: 2px solid rgba(205,174,98,.72);
}

.system-page__proof span {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
}

.system-page__proof p,
.eol-page__side p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.48;
}

body[data-page="home"] .home-pallet-showcase.home-eol-board.home-eol-page {
  grid-template-columns: minmax(0, 1fr) minmax(218px, 260px);
  grid-template-rows: minmax(0, 1fr);
}

.eol-page__blueprint {
  grid-column: 1;
  grid-row: 1;
}

.eol-page__blueprint img {
  object-position: center;
  filter: grayscale(.02) contrast(1.06) brightness(.78);
}

body[data-page="home"] .home-eol-page > .eol-page__flow {
  position: absolute;
  z-index: 4;
  left: clamp(24px, 2.6vw, 34px);
  right: calc(clamp(218px, 22vw, 260px) + clamp(38px, 3.8vw, 54px));
  bottom: clamp(22px, 2.4vw, 30px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.eol-page__flow span {
  min-height: 64px;
  padding: 10px 9px;
  display: grid;
  align-content: space-between;
  background: rgba(8,11,13,.76);
  backdrop-filter: blur(8px);
}

.eol-page__flow em {
  font-size: clamp(20px, 1.7vw, 28px);
}

.eol-page__flow b {
  font-size: 12px;
}

.eol-page__side {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(58px, 72px) repeat(4, minmax(0, 1fr));
  gap: 7px;
  overflow: hidden;
}

.eol-page__palletizer,
.eol-page__side article {
  min-height: 0;
  overflow: hidden;
  padding: 9px 11px;
}

.eol-page__palletizer {
  background:
    linear-gradient(135deg, rgba(205,174,98,.18), rgba(255,255,255,.035)),
    rgba(255,255,255,.04);
}

.eol-page__palletizer span {
  display: block;
  margin-bottom: 3px;
  color: rgba(205,174,98,.92);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1;
}

.eol-page__palletizer p {
  display: none;
}

.eol-page__palletizer b,
.eol-page__side h3 {
  display: block;
  margin: 0 0 3px;
  color: #fff;
  font-size: clamp(13px, .95vw, 15px);
  line-height: 1.28;
}

.eol-page__side article > span {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}

@media (max-height: 760px) and (min-width: 1121px) {
  body[data-page="home"] .home-industrial-head h2 {
    font-size: clamp(34px, 3.85vw, 56px);
  }

  body[data-page="home"] .home-industrial-head p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.62;
  }

  body[data-page="home"] .home-line-showcase.home-system-board.home-system-page,
  body[data-page="home"] .home-pallet-showcase.home-eol-board.home-eol-page {
    height: min(58svh, 470px);
    min-height: 372px;
  }
}

@media (max-width: 1120px) {
  body[data-page="home"] .brand-positioning,
  body[data-page="home"] .solutions-overview {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 18px;
    padding: clamp(74px, 9vh, 92px) 5vw clamp(34px, 5vh, 48px);
  }

  body[data-page="home"] .brand-positioning .home-industrial-head,
  body[data-page="home"] .solutions-overview .home-industrial-head {
    max-width: min(760px, 100%);
  }

  body[data-page="home"] .home-industrial-head h2 {
    max-width: 12em;
    font-size: clamp(32px, 5vw, 48px);
  }

  body[data-page="home"] .home-line-showcase.home-system-board.home-system-page,
  body[data-page="home"] .home-pallet-showcase.home-eol-board.home-eol-page {
    height: min(48svh, 390px);
    min-height: 306px;
  }

  body[data-page="home"] .home-line-showcase.home-system-board.home-system-page {
    grid-template-columns: minmax(0, 1fr) minmax(246px, .7fr);
  }

  body[data-page="home"] .home-pallet-showcase.home-eol-board.home-eol-page {
    grid-template-columns: minmax(0, 1fr) minmax(205px, 235px);
  }

  .system-page__proof p,
  .eol-page__side p {
    display: none;
  }

  .eol-page__flow {
    right: calc(235px + 44px);
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .brand-positioning,
  body[data-page="home"] .solutions-overview {
    height: auto;
    min-height: 100svh;
    overflow: visible;
    padding: 76px 20px 62px;
    align-content: start;
  }

  body[data-page="home"] .home-industrial-head h2 {
    max-width: 100%;
    font-size: clamp(31px, 9vw, 42px);
  }

  body[data-page="home"] .home-line-showcase.home-system-board.home-system-page,
  body[data-page="home"] .home-pallet-showcase.home-eol-board.home-eol-page {
    height: auto;
    max-height: none;
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 14px;
    overflow: visible;
  }

  body[data-page="home"] .home-system-page > .system-page__photo,
  body[data-page="home"] .home-system-page > .system-page__panel,
  body[data-page="home"] .home-eol-page > .eol-page__blueprint,
  body[data-page="home"] .home-eol-page > .eol-page__side,
  body[data-page="home"] .home-eol-page > .eol-page__flow {
    grid-column: 1;
    grid-row: auto;
  }

  .system-page__photo,
  .eol-page__blueprint {
    height: min(38svh, 290px);
    min-height: 220px;
  }

  .system-page__panel,
  .eol-page__side {
    gap: 8px;
  }

  .system-page__line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-page__line span {
    min-height: 66px;
  }

  .system-page__proof p,
  .eol-page__side p {
    display: block;
  }

  body[data-page="home"] .home-eol-page > .eol-page__flow {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eol-page__flow span {
    min-height: 58px;
  }

  .eol-page__side {
    height: auto;
    grid-template-rows: auto;
    overflow: visible;
  }

  .eol-page__palletizer,
  .eol-page__side article {
    overflow: visible;
  }
}

@media (max-width: 430px) {
  .system-page__line,
  .eol-page__flow {
    grid-template-columns: 1fr;
  }

  .system-page__photo figcaption span {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .cases-production {
    padding: 68px 18px max(118px, calc(92px + env(safe-area-inset-bottom)));
  }

  .cases-production__copy {
    gap: 8px;
  }

  .cases-production__copy .eyebrow {
    font-size: 11px;
  }

  .cases-production__copy p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.58;
  }

  .cases-production__copy h2 {
    font-size: clamp(16px, 4vw, 24px);
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .home-line-showcase.home-system-board.home-system-page,
  body[data-page="home"] .home-pallet-showcase.home-eol-board.home-eol-page {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body[data-page="home"] .home-system-page > .system-page__photo,
  body[data-page="home"] .home-system-page > .system-page__panel,
  body[data-page="home"] .home-eol-page > .eol-page__blueprint,
  body[data-page="home"] .home-eol-page > .eol-page__side,
  body[data-page="home"] .home-eol-page > .eol-page__flow {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  body[data-page="home"] .home-eol-page > .eol-page__flow {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-page="home"] .home-eol-page > .eol-page__side {
    height: auto !important;
    grid-template-rows: auto !important;
    overflow: visible !important;
  }
}

/* Homepage end-of-line case screen mirrors the success-case production page */
body[data-page="home"] .solutions-overview.home-case-production {
  position: sticky;
  isolation: isolate;
  height: 100svh;
  min-height: 620px;
  padding: clamp(102px, 12vh, 142px) 6vw clamp(34px, 5vh, 52px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5,6,7,.02) 0%, rgba(5,6,7,.08) 42%, rgba(5,6,7,.72) 100%),
    linear-gradient(90deg, rgba(5,6,7,.38) 0%, transparent 38%, rgba(5,6,7,.10) 100%),
    var(--home-solutions-bg, url("../assets/cases/end-of-line-production-hero.webp?v=20260720-speed-3")) center top / 100% 100% no-repeat,
    #eef0ee;
  background-position:
    center,
    center,
    center top;
  background-size:
    auto,
    auto,
    100% 100%;
  overflow: hidden;
}

body[data-page="home"] .solutions-overview.home-case-production::before {
  display: none;
}

body[data-page="home"] .solutions-overview.home-case-production::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 22% 82%, rgba(0,0,0,.28), transparent 36%),
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.24), transparent 30%);
  content: "";
  pointer-events: none;
  opacity: 1;
}

body[data-page="home"] .home-case-production__copy {
  position: absolute;
  z-index: 2;
  left: clamp(36px, 4vw, 64px);
  bottom: clamp(16px, 2.6vh, 28px);
  width: min(620px, 88vw);
  max-width: min(620px, 88vw);
  margin: 0;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
}

body[data-page="home"] .home-case-production__copy .eyebrow {
  margin: 0;
  color: rgba(255,255,255,.66);
  text-shadow: 0 8px 22px rgba(0,0,0,.34);
}

body[data-page="home"] .home-case-production__copy h2 {
  max-width: 100%;
  margin: 0;
  color: #fff;
  white-space: nowrap;
  font-size: clamp(34px, 4.3vw, 62px);
  line-height: 1.02;
  text-shadow: 0 18px 42px rgba(0,0,0,.52);
}

body[data-page="home"] .home-case-production__copy p:not(.eyebrow) {
  max-width: min(910px, 100%);
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.9;
  text-shadow: 0 10px 28px rgba(0,0,0,.42);
}

body[data-page="home"] .solutions-overview.home-case-production .home-case-production__copy {
  max-width: min(620px, 88vw);
  width: min(620px, 88vw);
}

@media (max-width: 980px) {
  body[data-page="home"] .solutions-overview.home-case-production {
    padding: 92px 28px max(28px, env(safe-area-inset-bottom));
    background-position: center;
  }

  body[data-page="home"] .home-case-production__copy {
    gap: 12px;
  }

  body[data-page="home"] .home-case-production__copy h2 {
    white-space: nowrap;
    font-size: clamp(24px, 4.4vw, 42px);
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .solutions-overview.home-case-production {
    min-height: 100svh;
    padding: 68px 18px max(118px, calc(92px + env(safe-area-inset-bottom)));
  }

  body[data-page="home"] .home-case-production__copy {
    left: clamp(36px, 4vw, 64px);
    bottom: max(46px, calc(30px + env(safe-area-inset-bottom)));
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    gap: 8px;
  }

  body[data-page="home"] .home-case-production__copy .eyebrow {
    font-size: 11px;
  }

  body[data-page="home"] .home-case-production__copy p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.58;
  }

  body[data-page="home"] .home-case-production__copy h2 {
    font-size: clamp(16px, 4vw, 24px);
    white-space: nowrap;
  }
}

body[data-page="home"] .home-product-card__media img {
  object-fit: cover !important;
  object-position: center center !important;
}

body[data-page="home"] .home-product-card--large-machine .home-product-card__media img,
body[data-page="home"] .home-product-card--large-machine:hover .home-product-card__media img {
  transform: none !important;
}

body[data-page="products"] .product-scene__media {
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

body[data-page="products"] .product-scene__media img,
body[data-page="products"] .product-scene[data-product-index="0"] .product-scene__media img,
body[data-page="products"] .product-scene[data-product-index="1"] .product-scene__media img,
body[data-page="products"] .product-scene[data-product-index="2"] .product-scene__media img {
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  mix-blend-mode: normal !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* Make full-screen scenes slightly taller than the real viewport to hide bottom edge gaps. */
.hero,
.page-hero,
.detail-hero,
.section,
.cases-production,
.contact-simple {
  min-height: calc(var(--app-vh, 100dvh) + var(--scene-overscan));
}

body[data-page="home"] main > section,
body[data-page="home"] .brand-positioning,
body[data-page="home"] .solutions-overview,
body[data-page="home"] .solutions-overview.home-case-production,
body[data-page="home"] .client-countries.flags-page,
body[data-page="flags"] .client-countries.flags-page,
body[data-page="products"] main > section,
body[data-page="products"] .page-hero,
body[data-page="products"] .product-scene,
body[data-page="cases"] main > section,
body[data-page="about"] main > section {
  height: calc(var(--app-vh, 100dvh) + var(--scene-overscan));
  min-height: max(620px, calc(var(--app-vh, 100dvh) + var(--scene-overscan)));
}

@media (max-width: 760px) {
  body[data-page="home"] main > section,
  body[data-page="home"] .brand-positioning,
  body[data-page="home"] .solutions-overview,
  body[data-page="home"] .solutions-overview.home-case-production,
  body[data-page="home"] .client-countries.flags-page,
  body[data-page="flags"] .client-countries.flags-page,
  body[data-page="products"] main > section,
  body[data-page="products"] .page-hero,
  body[data-page="products"] .product-scene,
  body[data-page="cases"] main > section,
  body[data-page="about"] main > section {
    height: auto;
    min-height: calc(var(--app-vh, 100dvh) + var(--scene-overscan));
  }
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] .product-scene-detail__name {
  font-family: var(--font-display-en) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

body[data-page="home"] .home-product-card--palletizer .home-product-card__media img {
  object-fit: contain !important;
  object-position: center center !important;
  transform: scale(.9) !important;
}

body[data-page="home"] .home-product-card--palletizer:hover .home-product-card__media img {
  transform: scale(.93) !important;
}

body[data-page="products"] .product-scene--palletizer .product-scene__media {
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), transparent 58%) !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

body[data-page="products"] .product-scene--palletizer .product-scene__media img {
  object-fit: contain !important;
  object-position: center center !important;
  transform: scale(.9) !important;
  filter: saturate(.9) contrast(1.04) brightness(.92) !important;
  mix-blend-mode: normal !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* Home positioning screen: text-only, anchored like the full-page scroll titles. */
body[data-page="home"] .brand-positioning {
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  justify-items: start;
  padding: clamp(82px, 10vh, 112px) 6vw clamp(34px, 5vh, 52px);
}

body[data-page="home"] .brand-positioning .home-line-showcase {
  display: none !important;
}

body[data-page="home"] .brand-positioning .home-industrial-head {
  position: absolute;
  z-index: 3;
  left: clamp(36px, 4vw, 64px);
  bottom: clamp(34px, 5vh, 52px);
  width: min(620px, 88vw);
  max-width: min(620px, 88vw);
  margin: 0;
  align-self: end;
  justify-self: start;
}

body[data-page="home"] .brand-positioning .home-industrial-head h2 {
  max-width: 8.4em;
  margin: 0 0 clamp(14px, 2vh, 20px);
}

body[data-page="home"] .brand-positioning .home-industrial-head p:not(.eyebrow) {
  max-width: min(620px, 100%);
}

body[data-page="home"].bmw-scroll-ready .brand-positioning .home-industrial-head {
  opacity: 1;
  transform: none;
  transform-origin: left bottom;
  transition: none;
  will-change: transform;
}

@media (max-width: 760px) {
  body[data-page="home"] .brand-positioning {
    padding: 92px 20px max(46px, calc(30px + env(safe-area-inset-bottom)));
  }

  body[data-page="home"] .brand-positioning .home-industrial-head {
    left: clamp(36px, 4vw, 64px);
    bottom: max(46px, calc(30px + env(safe-area-inset-bottom)));
    width: 100%;
    max-width: calc(100% - 40px);
  }
}

/* Page-scoped full-page copy standard. Change one body[data-page] variable set to update that page. */
.section,
.page-hero,
.hero,
.immersive-band,
.contact-simple,
.product-scene {
  --page-copy-title-color: var(--page-copy-title-color-light);
  --page-copy-body-color: var(--page-copy-body-color-light);
}

.section--dark,
.page-hero,
.hero,
.immersive-band,
.contact-simple,
.product-scene,
.cases-trust,
body[data-page="home"] .brand-positioning,
body[data-page="home"] .solutions-overview,
body[data-page="home"] .client-contact,
body[data-page="home"] .client-countries.flags-page,
body[data-page="flags"] .client-countries.flags-page {
  --page-copy-title-color: var(--page-copy-title-color-dark);
  --page-copy-body-color: var(--page-copy-body-color-dark);
}

.section--light,
.cases-production {
  --page-copy-title-color: var(--page-copy-title-color-light);
  --page-copy-body-color: rgba(17,20,24,.72);
}

.cases-trust-copy__inner,
.cases-production__copy,
body[data-page="home"] .home-case-production__copy {
  --page-copy-body-max-width: min(980px, 100%);
}

body[data-page="home"] {
  --page-copy-title-size: 56px;
  --page-copy-title-line-height: 1.06;
  --page-copy-title-gap: 18px;
  --page-copy-body-size: 17px;
  --page-copy-body-line-height: 1.82;
  --page-copy-body-max-width: min(66vw, calc(100vw - 12vw));
}

body[data-page="products"] {
  --page-copy-title-size: 60px;
  --page-copy-title-line-height: 1.03;
  --page-copy-title-gap: 14px;
  --page-copy-body-size: 15px;
  --page-copy-body-line-height: 1.54;
  --page-copy-body-max-width: min(760px, 100%);
}

body[data-page="cases"] {
  --page-copy-title-size: clamp(34px, 3.45vw, 52px);
  --page-copy-title-line-height: 1.06;
  --page-copy-title-gap: 14px;
  --page-copy-body-size: 17px;
  --page-copy-body-line-height: 1.9;
  --page-copy-body-max-width: min(980px, 100%);
  --cases-copy-left: clamp(36px, 4vw, 64px);
  --cases-copy-right: clamp(24px, 4vw, 64px);
  --cases-copy-bottom: clamp(40px, 6vh, 88px);
}

body[data-page="about"] {
  --page-copy-title-size: 54px;
  --page-copy-title-line-height: 1.08;
  --page-copy-title-gap: 20px;
  --page-copy-body-size: 17px;
  --page-copy-body-line-height: 1.9;
  --page-copy-body-max-width: min(680px, 100%);
}

.hero-copy :is(h1, h2),
.page-hero-copy :is(h1, h2),
.section-head :is(h1, h2),
.immersive-copy :is(h1, h2),
.contact-info :is(h1, h2),
.home-contact-card :is(h1, h2),
.product-scene__copy :is(h1, h2),
.solution-map__copy :is(h1, h2),
.cases-production__copy :is(h1, h2),
.cases-trust-copy__inner :is(h1, h2),
.about-kicker :is(h1, h2),
.about-capability__copy :is(h1, h2),
body[data-page="home"] .home-industrial-head :is(h1, h2),
body[data-page="home"] .home-case-production__copy :is(h1, h2) {
  color: var(--page-copy-title-color, currentColor) !important;
  font-family: var(--font-serif);
  font-size: var(--page-copy-title-size) !important;
  font-weight: var(--page-copy-title-weight);
  line-height: var(--page-copy-title-line-height) !important;
  letter-spacing: var(--page-copy-title-letter-spacing) !important;
}

.hero-copy > :is(h1, h2),
.page-hero-copy > :is(h1, h2),
.immersive-copy > :is(h1, h2),
.contact-info > :is(h1, h2),
.home-contact-card > :is(h1, h2),
.product-scene__copy > :is(h1, h2),
.solution-map__copy > :is(h1, h2),
.about-kicker > :is(h1, h2),
.about-capability__copy > :is(h1, h2),
body[data-page="home"] .home-industrial-head > :is(h1, h2) {
  margin-bottom: var(--page-copy-title-gap);
}

.hero-copy p:not(.eyebrow),
.page-hero-copy p:not(.eyebrow),
.section-head p:not(.eyebrow),
.immersive-copy p:not(.eyebrow),
.contact-info p:not(.eyebrow),
.product-scene__copy > p:not(.eyebrow),
.solution-map__copy > p:not(.eyebrow),
.cases-production__copy > p:not(.eyebrow),
.cases-trust-copy__inner > p:not(.eyebrow),
.about-copy p,
.about-capability__copy > p:not(.eyebrow),
body[data-page="home"] .home-industrial-head p:not(.eyebrow),
body[data-page="home"] .home-case-production__copy p:not(.eyebrow) {
  max-width: var(--page-copy-body-max-width);
  color: var(--page-copy-body-color, var(--page-copy-body-color-light)) !important;
  font-family: var(--font-serif);
  font-size: var(--page-copy-body-size) !important;
  font-weight: 400;
  line-height: var(--page-copy-body-line-height) !important;
  letter-spacing: var(--page-copy-body-letter-spacing) !important;
}

body[data-page="home"] .client-countries.flags-page .section-head {
  flex-direction: column;
}

body[data-page="home"] .home-industrial-head p:not(.eyebrow),
body[data-page="home"] .home-case-production__copy p:not(.eyebrow),
body[data-page="home"] .client-countries.flags-page .section-head p:not(.eyebrow) {
  width: var(--page-copy-body-max-width);
  max-width: var(--page-copy-body-max-width);
}

@media (max-width: 980px) {
  :root {
    --page-copy-title-size: 42px;
    --page-copy-title-gap: 14px;
    --page-copy-body-size: 15px;
    --page-copy-body-line-height: 1.72;
  }

  body[data-page="home"] {
    --page-copy-title-size: 42px;
    --page-copy-title-gap: 14px;
    --page-copy-body-size: 15px;
    --page-copy-body-line-height: 1.72;
  }

  body[data-page="products"] {
    --page-copy-title-size: 44px;
    --page-copy-title-gap: 12px;
    --page-copy-body-size: 14px;
    --page-copy-body-line-height: 1.58;
  }

  body[data-page="cases"] {
    --page-copy-title-size: 44px;
    --page-copy-title-gap: 14px;
    --page-copy-body-size: 15px;
    --page-copy-body-line-height: 1.76;
  }

  body[data-page="about"] {
    --page-copy-title-size: 40px;
    --page-copy-title-gap: 14px;
    --page-copy-body-size: 15px;
    --page-copy-body-line-height: 1.76;
  }
}

@media (max-width: 760px) {
  :root {
    --page-copy-title-size: 30px;
    --page-copy-title-gap: 12px;
    --page-copy-body-size: 14px;
    --page-copy-body-line-height: 1.66;
    --page-copy-body-max-width: 100%;
  }

  body[data-page="home"] {
    --page-copy-title-size: 30px;
    --page-copy-title-gap: 12px;
    --page-copy-body-size: 14px;
    --page-copy-body-line-height: 1.66;
    --page-copy-body-max-width: 100%;
  }

  body[data-page="products"] {
    --page-copy-title-size: 32px;
    --page-copy-title-gap: 10px;
    --page-copy-body-size: 13px;
    --page-copy-body-line-height: 1.54;
    --page-copy-body-max-width: 100%;
  }

  body[data-page="cases"] {
    --page-copy-title-size: clamp(14px, 4.2vw, 22px);
    --page-copy-title-gap: 10px;
    --page-copy-body-size: 14px;
    --page-copy-body-line-height: 1.68;
    --page-copy-body-max-width: 100%;
  }

  body[data-page="about"] {
    --page-copy-title-size: 29px;
    --page-copy-title-gap: 12px;
    --page-copy-body-size: 14px;
    --page-copy-body-line-height: 1.68;
    --page-copy-body-max-width: 100%;
  }
}

@media (max-width: 420px) {
  :root {
    --page-copy-title-size: 26px;
  }

  body[data-page="home"] { --page-copy-title-size: 26px; }
  body[data-page="products"] { --page-copy-title-size: 28px; }
  body[data-page="cases"] { --page-copy-title-size: clamp(14px, 4.2vw, 22px); }
  body[data-page="about"] { --page-copy-title-size: 26px; }
}

/* Homepage gray introductions sit under the main title and wrap around two-thirds of the viewport. */
body[data-page="home"] .hero-copy p:not(.eyebrow),
body[data-page="home"] .brand-positioning .home-industrial-head p:not(.eyebrow),
body[data-page="home"] .solutions-overview.home-case-production .home-case-production__copy p:not(.eyebrow),
body[data-page="home"] .client-countries.flags-page .section-head p:not(.eyebrow) {
  width: min(66vw, calc(100vw - 12vw)) !important;
  max-width: min(66vw, calc(100vw - 12vw)) !important;
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-copy p:not(.eyebrow),
  body[data-page="home"] .brand-positioning .home-industrial-head p:not(.eyebrow),
  body[data-page="home"] .solutions-overview.home-case-production .home-case-production__copy p:not(.eyebrow),
  body[data-page="home"] .client-countries.flags-page .section-head p:not(.eyebrow) {
    width: 100% !important;
    max-width: 100% !important;
  }
}

body[data-page="products"] {
  --product-scene-title-size: clamp(34px, 3.45vw, 52px);
  --product-scene-title-line-height: 1.06;
  --product-scene-title-left: clamp(36px, 4vw, 64px);
  --product-scene-title-bottom: clamp(40px, 6vh, 88px);
  --product-scene-action-left: var(--product-scene-title-left);
  --product-scene-action-bottom: clamp(40px, 6vh, 88px);
  --product-scene-detail-panel-bottom: clamp(58px, 9vh, 104px);
  --page-copy-title-size: var(--product-scene-title-size);
  --page-copy-title-line-height: var(--product-scene-title-line-height);
}

@media (min-width: 761px) {
  .section-scroll-title {
    width: min(66vw, calc(100vw - clamp(36px, 4vw, 64px) - 32px));
    max-width: min(66vw, calc(100vw - clamp(36px, 4vw, 64px) - 32px));
  }

  body[data-page="products"] .product-scene__copy {
    width: min(66vw, calc(100vw - var(--product-scene-title-left) - 32px)) !important;
    max-width: min(66vw, calc(100vw - var(--product-scene-title-left) - 32px)) !important;
  }

  body[data-page="products"] .product-scene__copy h2 {
    white-space: normal !important;
    overflow-wrap: normal;
  }
}

html[lang="zh-CN"] body[data-page="products"] .product-scene__copy h2,
body[data-page="products"] .product-scene__copy h2 {
  font-size: var(--product-scene-title-size) !important;
  line-height: var(--product-scene-title-line-height) !important;
  letter-spacing: .035em !important;
}

body[data-page="products"] .product-scene-detail__headline {
  left: 0;
  bottom: clamp(94px, 10.5vh, 110px);
  gap: 12px;
}

body[data-page="products"] .product-scene__detail-panel {
  padding-inline-start: var(--product-scene-title-left);
}

body[data-page="products"] .product-scene-detail__name {
  font-size: calc(var(--product-scene-title-size) * var(--product-detail-name-scale, 1)) !important;
  line-height: var(--product-scene-title-line-height) !important;
  letter-spacing: .035em !important;
}

body[data-page="products"] .product-scene-detail__info > p:not(.eyebrow) {
  max-width: 100%;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.72;
}

body[data-page="products"] .product-scene__detail,
body[data-page="products"] .product-scene-detail__back {
  min-width: 168px;
  min-height: 48px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--silver);
  border-radius: 0;
  color: var(--black);
  background: linear-gradient(135deg, #f2f4f4, #aeb8bf);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-decoration: none;
}

body[data-page="products"] .product-scene-detail__back span {
  font: inherit;
  letter-spacing: inherit;
}

body[data-page="products"] .product-scene__detail:hover,
body[data-page="products"] .product-scene-detail__back:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.88);
  background: linear-gradient(135deg, #fff, #c2ccd2);
}

@media (max-width: 980px) {
  body[data-page="products"] {
    --product-scene-title-size: clamp(30px, 6.1vw, 44px);
    --product-scene-title-bottom: max(42px, calc(32px + env(safe-area-inset-bottom)));
    --product-scene-action-left: var(--product-scene-title-left);
    --product-scene-action-bottom: max(42px, calc(32px + env(safe-area-inset-bottom)));
    --product-scene-detail-panel-bottom: max(58px, calc(46px + env(safe-area-inset-bottom)));
  }

  body[data-page="products"] .product-scene-detail__headline {
    left: 0;
    bottom: max(74px, calc(56px + env(safe-area-inset-bottom)));
  }
}

@media (max-width: 760px) {
  body[data-page="products"] {
    --product-scene-title-size: clamp(27px, 7vw, 34px);
    --product-scene-title-bottom: max(56px, calc(38px + env(safe-area-inset-bottom)));
    --product-scene-action-left: var(--product-scene-title-left);
    --product-scene-action-bottom: max(56px, calc(38px + env(safe-area-inset-bottom)));
    --product-scene-detail-panel-bottom: max(58px, calc(46px + env(safe-area-inset-bottom)));
  }

  body[data-page="products"] .product-scene__detail,
  body[data-page="products"] .product-scene-detail__back {
    width: calc(100% - 52px);
    min-width: 0;
    min-height: 50px;
  }

  body[data-page="products"] .product-scene-detail__headline {
    left: 0;
    bottom: max(64px, calc(46px + env(safe-area-inset-bottom)));
    max-width: calc(100vw - 32px);
  }

  body[data-page="products"] .product-scene-detail__name {
    max-width: calc(100vw - 32px);
  }
}

@media (max-width: 420px) {
  body[data-page="products"] {
    --product-scene-title-size: clamp(24px, 6.8vw, 29px);
  }
}

/* Cases page copy alignment */
body[data-page="cases"] {
  --cases-copy-left: clamp(36px, 4vw, 64px);
  --cases-copy-right: clamp(24px, 4vw, 64px);
  --cases-copy-bottom: clamp(40px, 6vh, 88px);
  --cases-copy-width: min(66vw, calc(100vw - var(--cases-copy-left) - var(--cases-copy-right)));
  --page-copy-body-max-width: var(--cases-copy-width);
}

body[data-page="cases"] .cases-trust {
  --page-copy-title-color: #fff;
  --page-copy-body-color: rgba(255,255,255,.74);
}

body[data-page="cases"] .cases-trust .section-head h2 {
  color: #fff !important;
}

body[data-page="cases"] .cases-trust .section-head p:not(.eyebrow) {
  color: rgba(255,255,255,.74) !important;
}

body[data-page="cases"] .cases-hero .page-hero-copy {
  left: var(--cases-copy-left);
  right: var(--cases-copy-right);
  bottom: var(--cases-copy-bottom);
  width: var(--cases-copy-width);
  max-width: none;
}

body[data-page="cases"] .cases-contact .immersive-copy {
  width: 100%;
  min-height: 100%;
  max-width: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 var(--cases-copy-right) var(--cases-copy-bottom) var(--cases-copy-left);
}

body[data-page="cases"] .cases-contact__actions {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: clamp(20px, 3vh, 30px);
}

body[data-page="cases"] .cases-contact__link {
  min-width: 168px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--silver);
  color: var(--black);
  background: linear-gradient(135deg, #f2f4f4, #aeb8bf);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-decoration: none;
}

body[data-page="cases"] .cases-contact__link:hover {
  border-color: rgba(255,255,255,.88);
  background: linear-gradient(135deg, #fff, #c2ccd2);
}

body[data-page="cases"] .cases-trust-copy__inner {
  width: var(--cases-copy-width);
  max-width: none;
}

body[data-page="cases"] .cases-grid-section {
  padding: clamp(92px, 11vh, 126px) var(--cases-copy-right) clamp(38px, 6vh, 64px) var(--cases-copy-left);
}

body[data-page="cases"] .cases-grid-section {
  --page-copy-title-color: #fff;
  --page-copy-body-color: rgba(255,255,255,.74);
}

body[data-page="cases"] .cases-grid-section .section-head {
  width: var(--cases-copy-width);
  max-width: none;
  margin: 0 0 clamp(22px, 3vh, 34px);
  display: grid;
  align-items: start;
  justify-content: start;
  gap: var(--page-copy-title-gap);
}

body[data-page="cases"] .cases-grid-section .section-head > div {
  width: 100%;
}

body[data-page="cases"] .cases-grid-section .section-head h2,
body[data-page="cases"] .cases-grid-section .section-head p:not(.eyebrow) {
  margin: 0;
}

body[data-page="cases"] .cases-grid-section .section-head h2 {
  color: #fff !important;
  text-shadow: 0 16px 40px rgba(0,0,0,.46);
}

body[data-page="cases"] .cases-grid-section .section-head p:not(.eyebrow) {
  color: rgba(255,255,255,.74) !important;
  text-shadow: 0 10px 28px rgba(0,0,0,.38);
}

body[data-page="cases"] .cases-grid-section .section-head h2 {
  color: #050607 !important;
  text-shadow: none;
}

body[data-page="cases"] .cases-grid-section .section-head p:not(.eyebrow) {
  color: rgba(17,20,24,.78) !important;
  text-shadow: none;
}

body[data-page="cases"] .cases-hero .page-hero-copy h1,
body[data-page="cases"] .cases-trust .section-head h2,
body[data-page="cases"] .cases-grid-section .section-head h2,
body[data-page="cases"] .cases-contact .immersive-copy h2 {
  white-space: nowrap;
  overflow-wrap: normal;
}

body[data-page="cases"] .cases-grid-section .section-head p:not(.eyebrow),
body[data-page="cases"] .cases-trust-copy__inner p:not(.eyebrow),
body[data-page="cases"] .cases-hero .page-hero-copy p:not(.eyebrow),
body[data-page="cases"] .cases-contact .immersive-copy p:not(.eyebrow) {
  width: var(--cases-copy-width);
  max-width: var(--page-copy-body-max-width);
}

@media (min-width: 761px) {
  body[data-page="cases"] .cases-grid-section {
    justify-content: flex-start;
  }

  body[data-page="cases"] .cases-grid-section .section-head {
    position: absolute;
    left: var(--cases-copy-left);
    right: var(--cases-copy-right);
    bottom: var(--cases-copy-bottom);
    width: var(--cases-copy-width);
    max-width: none;
    margin: 0;
    z-index: 2;
  }
}

@media (max-width: 760px) {
  body[data-page="cases"] {
    --cases-copy-left: 20px;
    --cases-copy-right: 20px;
    --cases-copy-bottom: max(30px, calc(22px + env(safe-area-inset-bottom)));
    --cases-copy-width: calc(100vw - var(--cases-copy-left) - var(--cases-copy-right));
    --page-copy-body-max-width: 100%;
    --page-copy-title-size: clamp(14px, 4.2vw, 22px);
    --page-copy-title-gap: 10px;
  }

  body[data-page="cases"] .cases-hero .page-hero-copy {
    width: auto;
    max-width: none;
  }

  body[data-page="cases"] .cases-hero .page-hero-copy h1,
  body[data-page="cases"] .cases-trust .section-head h2,
  body[data-page="cases"] .cases-grid-section .section-head h2,
  body[data-page="cases"] .cases-contact .immersive-copy h2 {
    white-space: nowrap;
  }

  body[data-page="cases"] .cases-grid-section {
    padding: 92px var(--cases-copy-right) max(42px, calc(30px + env(safe-area-inset-bottom))) var(--cases-copy-left);
  }

  body[data-page="cases"] .cases-grid-section .section-head {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    gap: 10px;
    margin-bottom: 18px;
  }
}

/* Product detail model alignment */
body[data-page="products"] .product-scene__detail-panel {
  --product-detail-info-width: clamp(360px, 31vw, 520px);
  --product-detail-gap: clamp(28px, 4vw, 64px);
  top: var(--header-height);
  bottom: auto;
  height: calc(var(--app-vh) - var(--header-height));
  grid-template-columns: minmax(0, 1fr) var(--product-detail-info-width);
  gap: var(--product-detail-gap);
  align-items: center;
  padding-top: clamp(18px, 3vh, 34px);
  padding-bottom: clamp(24px, 4vh, 48px);
  padding-inline-start: 0;
  padding-inline-end: clamp(36px, 5vw, 76px);
}

body[data-page="products"] .product-scene-detail__stage {
  min-width: 0;
  justify-items: center;
  align-items: center;
  padding-bottom: clamp(116px, 16vh, 168px);
}

body[data-page="products"] .product-scene-detail__machine,
body[data-page="products"] .product-scene-detail__image-fallback {
  width: min(100%, 58vw);
  max-width: 100%;
  justify-self: center;
  transform: translate3d(0, clamp(-30px, -3vh, -14px), 0);
}

body[data-page="products"] .product-scene-detail__rotate-hint {
  position: absolute;
  top: 45%;
  z-index: 3;
  width: clamp(86px, 7.2vw, 124px);
  height: clamp(86px, 7.2vw, 124px);
  display: grid;
  place-items: center;
  gap: 2px;
  pointer-events: none;
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  background:
    radial-gradient(circle at 35% 24%, rgba(255,255,255,.18), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow:
    0 26px 70px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.16),
    -2px 0 0 rgba(52,196,255,.28),
    2px 0 0 rgba(255,62,92,.26);
  transform-style: preserve-3d;
  opacity: .82;
  animation: rotateHintFloat 3.8s ease-in-out infinite;
}

body[data-page="products"] .product-scene-detail__rotate-hint::before,
body[data-page="products"] .product-scene-detail__rotate-hint::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.16);
  content: "";
  transform: translateZ(-10px) rotate(45deg);
}

body[data-page="products"] .product-scene-detail__rotate-hint::after {
  inset: 22px;
  border-color: rgba(180,219,232,.18);
  transform: translateZ(14px) rotate(45deg);
}

body[data-page="products"] .product-scene-detail__rotate-hint span,
body[data-page="products"] .product-scene-detail__rotate-hint b {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1;
  text-align: center;
  text-shadow: -2px 0 rgba(52,196,255,.42), 2px 0 rgba(255,62,92,.38), 0 12px 28px rgba(0,0,0,.46);
}

body[data-page="products"] .product-scene-detail__rotate-hint span {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 900;
  letter-spacing: .06em;
}

body[data-page="products"] .product-scene-detail__rotate-hint b {
  margin-top: 4px;
  font-size: clamp(11px, .84vw, 13px);
  font-weight: 700;
  letter-spacing: .2em;
}

body[data-page="products"] .product-scene-detail__rotate-hint--left {
  left: clamp(24px, 4vw, 64px);
  transform: translate3d(0, -50%, 0) perspective(420px) rotateY(18deg);
}

body[data-page="products"] .product-scene-detail__rotate-hint--left::before {
  border-left-color: rgba(255,255,255,.42);
}

body[data-page="products"] .product-scene-detail__rotate-hint--right {
  right: clamp(18px, 3vw, 48px);
  transform: translate3d(0, -50%, 0) perspective(420px) rotateY(-18deg);
  animation-delay: -1.9s;
}

body[data-page="products"] .product-scene-detail__rotate-hint--right::before {
  border-right-color: rgba(255,255,255,.42);
}

@keyframes rotateHintFloat {
  0%, 100% { translate: 0 0; filter: brightness(1); }
  50% { translate: 0 -8px; filter: brightness(1.14); }
}

body[data-page="products"] .product-scene-detail__headline {
  position: fixed;
  left: var(--product-scene-title-left);
  bottom: calc(var(--product-scene-title-bottom) + clamp(96px, 11vh, 132px));
  z-index: 6;
}

body[data-page="products"] .product-scene-detail__actions {
  position: fixed;
  left: var(--product-scene-title-left);
  bottom: var(--product-scene-title-bottom);
  z-index: 7;
}

@media (max-width: 980px) {
  body[data-page="products"] .product-scene__detail-panel {
    grid-template-columns: 1fr;
    top: var(--header-height);
    height: calc(var(--app-vh) - var(--header-height));
    padding-inline: 24px;
  }

  body[data-page="products"] .product-scene-detail__machine,
  body[data-page="products"] .product-scene-detail__image-fallback {
    width: 100%;
  }

  body[data-page="products"] .product-scene-detail__headline {
    position: fixed;
    left: clamp(18px, 3vw, 52px);
    bottom: calc(var(--product-scene-title-bottom) + clamp(74px, 10vh, 100px));
  }

  body[data-page="products"] .product-scene-detail__rotate-hint {
    width: 70px;
    height: 70px;
    top: 42%;
    opacity: .72;
  }

  body[data-page="products"] .product-scene-detail__rotate-hint span {
    font-size: 22px;
  }

body[data-page="products"] .product-scene-detail__rotate-hint b {
    font-size: 10px;
    letter-spacing: .12em;
  }
}

@media (max-width: 760px) {
  body[data-page="products"] .product-scene__detail-panel {
    top: var(--header-height);
    height: calc(var(--app-vh) - var(--header-height));
  }

  body[data-page="products"] .product-scene-detail__headline {
    position: fixed;
    left: 20px;
    bottom: calc(var(--product-scene-title-bottom) + 68px);
    max-width: calc(100vw - 40px);
  }

  body[data-page="products"] .product-scene-detail__actions {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: var(--product-scene-title-bottom);
    width: auto;
  }

  body[data-page="products"] .product-scene-detail__back {
    width: 100%;
  }

  body[data-page="products"] .product-scene-detail__image-fallback {
    min-height: 210px;
    height: 29svh;
    transform: translate3d(0, -18px, 0);
  }

  body[data-page="products"] .product-scene-detail__image-fallback img {
    max-width: 100%;
    max-height: 29svh;
  }
}

body[data-page="products"] .product-scene-detail__rotate-hint {
  top: 43%;
  width: auto;
  height: auto;
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  border: 0;
  background: none;
  box-shadow: none;
  color: rgba(255,255,255,.86);
  opacity: .78;
  animation: none;
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

body[data-page="products"] .product-scene-detail__rotate-hint::before,
body[data-page="products"] .product-scene-detail__rotate-hint::after {
  display: none;
}

body[data-page="products"] .product-scene-detail__rotate-hint span,
body[data-page="products"] .product-scene-detail__rotate-hint b {
  display: inline-block;
  text-shadow:
    -1px 0 rgba(52,196,255,.38),
    1px 0 rgba(255,62,92,.34),
    0 10px 26px rgba(0,0,0,.34);
}

body[data-page="products"] .product-scene-detail__rotate-hint span {
  font-size: clamp(18px, 1.5vw, 26px);
  letter-spacing: .04em;
}

body[data-page="products"] .product-scene-detail__rotate-hint b {
  margin-top: 0;
  font-size: clamp(11px, .8vw, 13px);
  letter-spacing: .12em;
}

body[data-page="products"] .product-scene-detail__rotate-hint--left {
  left: clamp(24px, 4vw, 64px);
  transform: translate3d(0, -50%, 0);
}

body[data-page="products"] .product-scene-detail__rotate-hint--right {
  display: none;
}

body[data-page="products"] .product-scene-detail__stage.is-model-rotating .product-scene-detail__rotate-hint {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, -50%, 0) scale(.96);
}

/* Home second screen background */
body[data-page="home"] .brand-positioning {
  background:
    linear-gradient(90deg, rgba(5,7,9,.84) 0%, rgba(6,8,10,.62) 34%, rgba(6,8,10,.24) 70%, rgba(6,8,10,.42) 100%),
    linear-gradient(180deg, rgba(5,7,9,.18) 0%, rgba(5,7,9,.22) 48%, rgba(5,7,9,.76) 100%),
    var(--home-positioning-bg, url("../assets/amg-kerry/home-positioning-kerry-facade.webp")) center center / cover no-repeat,
    #050607;
}

body[data-page="home"] .brand-positioning::before {
  inset: 0;
  opacity: .78;
  background:
    radial-gradient(circle at 26% 72%, rgba(47,155,73,.2), transparent 32%),
    linear-gradient(120deg, rgba(255,255,255,.08), transparent 42%);
}

body[data-page="home"] .brand-positioning .home-industrial-head {
  text-shadow: 0 18px 44px rgba(0,0,0,.56);
}

@media (max-width: 760px) {
  body[data-page="home"] .brand-positioning {
    background-position: 58% center;
  }
}

/* About merged art page */
body[data-page="about"] .about-scope,
body[data-page="about"] .about-process {
  display: none !important;
}

body[data-page="about"] .about-system-art {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(520px, 1.12fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(24px, 3.4vw, 58px);
  padding: clamp(84px, 10vh, 118px) clamp(36px, 5vw, 82px) clamp(38px, 6vh, 72px);
  background:
    linear-gradient(90deg, rgba(4,6,7,.94), rgba(5,8,9,.70) 42%, rgba(5,7,8,.82)),
    url("../assets/amg-kerry/sec-smart.webp?v=20260720-speed-3") center center / cover no-repeat,
    #050607;
}

body[data-page="about"] .about-system-art::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255,255,255,.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.038) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(47,155,73,.22), transparent 32%),
    radial-gradient(circle at 28% 78%, rgba(184,163,111,.16), transparent 30%);
  background-size: 54px 54px, 54px 54px, auto, auto;
  mix-blend-mode: screen;
  opacity: .72;
}

body[data-page="about"] .about-system-art::after {
  position: absolute;
  inset: auto clamp(24px, 4vw, 70px) clamp(32px, 5vh, 70px) auto;
  width: min(46vw, 640px);
  aspect-ratio: 1;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
  box-shadow:
    inset 0 0 0 1px rgba(47,155,73,.18),
    inset 0 0 90px rgba(47,155,73,.10),
    0 0 120px rgba(47,155,73,.12);
}

body[data-page="about"] .about-system-art__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(255,255,255,.08) 44.2% 44.5%, transparent 44.8%),
    linear-gradient(120deg, transparent 0 62%, rgba(184,163,111,.20) 62.1% 62.4%, transparent 62.7%);
  opacity: .9;
}

body[data-page="about"] .about-system-art__copy {
  align-self: end;
  max-width: 680px;
  color: #fff;
}

body[data-page="about"] .about-system-art__copy .eyebrow {
  color: rgba(184,163,111,.92);
}

body[data-page="about"] .about-system-art__copy h2 {
  max-width: 9em;
  margin: 0 0 clamp(18px, 2.6vh, 30px);
  color: #fff;
  font-size: clamp(38px, 5.4vw, 84px);
  font-weight: 900;
  line-height: .98;
  text-wrap: balance;
  text-shadow: 0 24px 70px rgba(0,0,0,.62);
}

body[data-page="about"] .about-system-art__copy > p:not(.eyebrow) {
  max-width: 40em;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.76;
}

body[data-page="about"] .about-system-art__note {
  margin-top: clamp(22px, 3vh, 34px);
  padding-left: clamp(16px, 1.7vw, 24px);
  border-left: 2px solid rgba(47,155,73,.86);
  display: grid;
  gap: 9px;
}

body[data-page="about"] .about-system-art__note b {
  color: #fff;
  font-size: 13px;
  letter-spacing: .18em;
}

body[data-page="about"] .about-system-art__note strong {
  max-width: 18em;
  color: #fff;
  font-size: clamp(19px, 1.65vw, 30px);
  line-height: 1.16;
}

body[data-page="about"] .about-system-art__note span {
  max-width: 44em;
  color: rgba(255,255,255,.66);
  font-size: clamp(13px, .92vw, 15px);
  line-height: 1.7;
}

body[data-page="about"] .about-system-art__scope {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
}

body[data-page="about"] .about-system-art__scope article {
  min-height: clamp(156px, 19vh, 214px);
  padding: clamp(18px, 2vw, 28px);
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.026)),
    rgba(6,8,9,.48);
  backdrop-filter: blur(10px);
}

body[data-page="about"] .about-system-art__scope article:nth-child(2),
body[data-page="about"] .about-system-art__scope article:nth-child(3) {
  transform: translateY(clamp(18px, 3vh, 34px));
}

body[data-page="about"] .about-system-art__scope span {
  color: rgba(184,163,111,.84);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 52px);
  line-height: 1;
}

body[data-page="about"] .about-system-art__scope h3 {
  margin: clamp(20px, 3vh, 34px) 0 8px;
  color: #fff;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.12;
}

body[data-page="about"] .about-system-art__scope p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: clamp(12px, .84vw, 14px);
  line-height: 1.6;
}

body[data-page="about"] .about-system-art__process {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(5,7,8,.42);
  backdrop-filter: blur(8px);
}

body[data-page="about"] .about-system-art__process article {
  min-height: clamp(72px, 9vh, 104px);
  padding: clamp(12px, 1.3vw, 18px);
  display: grid;
  align-content: space-between;
  border-right: 1px solid rgba(255,255,255,.12);
}

body[data-page="about"] .about-system-art__process article:last-child {
  border-right: 0;
}

body[data-page="about"] .about-system-art__process b {
  color: rgba(255,255,255,.28);
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 36px);
  font-weight: 400;
  line-height: 1;
}

body[data-page="about"] .about-system-art__process span {
  color: rgba(255,255,255,.9);
  font-size: clamp(12px, .85vw, 14px);
  font-weight: 800;
  line-height: 1.35;
}

body[data-page="about"] .about-system-art__watermark {
  position: absolute;
  right: clamp(-18px, -1.2vw, -8px);
  top: 50%;
  margin: 0;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  color: rgba(255,255,255,.055);
  font-family: var(--font-display);
  font-size: clamp(86px, 12vw, 190px);
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1;
  pointer-events: none;
}

@media (max-width: 980px) {
  body[data-page="about"] .about-system-art {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 92px 24px 34px;
  }

  body[data-page="about"] .about-system-art__copy {
    align-self: start;
  }

  body[data-page="about"] .about-system-art__copy h2 {
    max-width: 10em;
    font-size: clamp(34px, 8vw, 58px);
  }

  body[data-page="about"] .about-system-art__scope {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="about"] .about-system-art__scope article:nth-child(2),
  body[data-page="about"] .about-system-art__scope article:nth-child(3) {
    transform: none;
  }

  body[data-page="about"] .about-system-art__process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body[data-page="about"] .about-system-art {
    padding: 86px 20px 28px;
  }

  body[data-page="about"] .about-system-art__scope,
  body[data-page="about"] .about-system-art__process {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .about-system-art__scope article {
    min-height: 136px;
  }

  body[data-page="about"] .about-system-art__process article {
    min-height: 64px;
    grid-template-columns: 64px 1fr;
    align-items: center;
    align-content: center;
  }

  body[data-page="about"] .about-system-art__watermark {
    display: none;
  }
}

/* About page refinements */
body[data-page="about"] .about-intro {
  --page-copy-title-color: #fff;
  --page-copy-body-color: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,7,9,.84) 0%, rgba(6,8,10,.62) 34%, rgba(6,8,10,.24) 70%, rgba(6,8,10,.42) 100%),
    linear-gradient(180deg, rgba(5,7,9,.18) 0%, rgba(5,7,9,.22) 48%, rgba(5,7,9,.76) 100%),
    url("../assets/amg-kerry/home-positioning-kerry-facade.webp") center center / cover no-repeat,
    #050607;
}

body[data-page="about"] .about-intro::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .78;
  background:
    radial-gradient(circle at 26% 72%, rgba(47,155,73,.2), transparent 32%),
    linear-gradient(120deg, rgba(255,255,255,.08), transparent 42%);
  content: "";
  pointer-events: none;
}

body[data-page="about"] .about-intro .about-kicker h2,
body[data-page="about"] .about-intro .about-kicker .eyebrow,
body[data-page="about"] .about-intro .about-copy p,
body[data-page="about"] .about-intro [data-i18n] {
  color: #fff !important;
  text-shadow: 0 18px 44px rgba(0,0,0,.56);
}

body[data-page="about"] .about-system-art {
  grid-template-columns: minmax(0, .92fr) minmax(460px, 620px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(24px, 3vw, 54px);
}

body[data-page="about"] .about-system-art__copy {
  grid-column: 1 / -1;
  align-self: start;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 620px);
  column-gap: clamp(24px, 3vw, 54px);
}

body[data-page="about"] .about-system-art__copy .eyebrow,
body[data-page="about"] .about-system-art__note b {
  display: none;
}

body[data-page="about"] .about-system-art__copy h2 {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
  font-size: 46px;
  line-height: 1.04;
  white-space: nowrap;
  text-wrap: nowrap;
}

body[data-page="about"] .about-system-art__copy > p:not(.eyebrow),
body[data-page="about"] .about-system-art__note {
  grid-column: 1;
  max-width: 620px;
}

body[data-page="about"] .about-system-art__copy > p:not(.eyebrow) {
  margin-top: clamp(22px, 3vh, 34px);
}

body[data-page="about"] .about-system-art__note {
  margin-top: 18px;
}

body[data-page="about"] .about-system-art__scope {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin-top: clamp(40px, 7vh, 78px);
  grid-auto-rows: 1fr;
}

body[data-page="about"] .about-system-art__scope article,
body[data-page="about"] .about-system-art__scope article:nth-child(2),
body[data-page="about"] .about-system-art__scope article:nth-child(3) {
  transform: none;
}

body[data-page="about"] .about-system-art__scope article {
  min-height: 178px;
}

body[data-page="about"] .about-system-art__scope span {
  color: rgba(255,255,255,.28);
}

@media (min-width: 1281px) {
  body[data-page="about"] .about-system-art__copy h2 {
    font-size: 52px;
  }
}

@media (max-width: 1180px) {
  body[data-page="about"] .about-system-art {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-page="about"] .about-system-art__copy {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .about-system-art__copy h2 {
    font-size: 36px;
  }

  body[data-page="about"] .about-system-art__scope {
    grid-column: 1;
    grid-row: auto;
    margin-top: 10px;
  }
}

@media (max-width: 760px) {
  body[data-page="about"] .about-intro {
    background-position: 58% center;
  }

  body[data-page="about"] .about-system-art__copy h2 {
    white-space: normal;
    text-wrap: balance;
  }
}

/* Keep the merged about screen within one viewport */
@media (min-width: 981px) {
  body[data-page="about"] .about-system-art {
    height: 100svh;
    min-height: 100svh;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: clamp(8px, 1.3vh, 14px);
    padding: clamp(92px, 12vh, 110px) clamp(36px, 5vw, 76px) clamp(18px, 3vh, 28px);
  }

  body[data-page="about"] .about-system-art__copy h2 {
    font-size: clamp(36px, 3.15vw, 44px);
    line-height: 1.02;
  }

  body[data-page="about"] .about-system-art__copy > p:not(.eyebrow) {
    margin-top: clamp(10px, 1.4vh, 14px);
    font-size: clamp(13px, .86vw, 15px);
    line-height: 1.48;
  }

  body[data-page="about"] .about-system-art__note {
    margin-top: 8px;
    gap: 5px;
  }

  body[data-page="about"] .about-system-art__note strong {
    font-size: clamp(17px, 1.18vw, 22px);
  }

  body[data-page="about"] .about-system-art__note span {
    font-size: clamp(12px, .78vw, 13px);
    line-height: 1.44;
  }

  body[data-page="about"] .about-system-art__scope {
    align-self: start;
    margin-top: clamp(-56px, -7vh, -36px);
    gap: 10px;
  }

  body[data-page="about"] .about-system-art__scope article {
    min-height: clamp(116px, 15vh, 136px);
    padding: clamp(12px, 1.25vw, 16px);
  }

  body[data-page="about"] .about-system-art__scope h3 {
    margin: clamp(8px, 1.2vh, 12px) 0 5px;
    font-size: clamp(16px, 1.06vw, 19px);
  }

  body[data-page="about"] .about-system-art__scope p {
    font-size: clamp(12px, .78vw, 13px);
    line-height: 1.38;
  }

  body[data-page="about"] .about-system-art__process article {
    min-height: clamp(46px, 6vh, 58px);
    padding: clamp(7px, .8vw, 10px);
  }

  body[data-page="about"] .about-system-art__process b {
    font-size: clamp(18px, 1.5vw, 28px);
  }
}

/* Clean readable about system screen */
body[data-page="about"] .about-system-art {
  background:
    linear-gradient(115deg, rgba(5,7,8,.98), rgba(12,17,20,.96) 52%, rgba(5,7,8,.99)),
    #050607;
}

body[data-page="about"] .about-system-art::before,
body[data-page="about"] .about-system-art::after,
body[data-page="about"] .about-system-art__backdrop,
body[data-page="about"] .about-system-art__watermark {
  display: none;
}

body[data-page="about"].bmw-scroll-ready .about-system-art .about-system-art__copy,
body[data-page="about"].bmw-scroll-ready .about-system-art .about-system-art__scope,
body[data-page="about"].bmw-scroll-ready .about-system-art .about-system-art__process {
  opacity: 1 !important;
  transform: none !important;
  transition: none;
}

body[data-page="about"] .about-system-art__copy h2,
body[data-page="about"] .about-system-art__note strong,
body[data-page="about"] .about-system-art__scope h3,
body[data-page="about"] .about-system-art__process span {
  color: #fff;
  text-shadow: none;
}

body[data-page="about"] .about-system-art__copy > p:not(.eyebrow),
body[data-page="about"] .about-system-art__note span,
body[data-page="about"] .about-system-art__scope p {
  color: rgba(255,255,255,.82);
}

body[data-page="about"] .about-system-art__scope article {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.075);
  backdrop-filter: none;
}

body[data-page="about"] .about-system-art__scope span,
body[data-page="about"] .about-system-art__process b {
  color: rgba(255,255,255,.42);
}

body[data-page="about"] .about-system-art__process {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.055);
  backdrop-filter: none;
}

/* Fill the left side of the merged about screen */
@media (min-width: 981px) {
  body[data-page="about"] .about-system-art {
    grid-template-columns: minmax(520px, 1fr) minmax(430px, 560px);
    grid-template-rows: auto minmax(0, 1fr);
    column-gap: clamp(30px, 4vw, 58px);
    row-gap: clamp(8px, 1.2vh, 14px);
  }

  body[data-page="about"] .about-system-art__copy {
    grid-template-columns: minmax(520px, 1fr) minmax(430px, 560px);
  }

  body[data-page="about"] .about-system-art__copy > p:not(.eyebrow),
  body[data-page="about"] .about-system-art__note {
    max-width: 760px;
  }

  body[data-page="about"] .about-system-art__note {
    padding-left: 18px;
  }

  body[data-page="about"] .about-system-art__scope {
    grid-column: 2;
    grid-row: 2;
    margin-top: clamp(-42px, -5.4vh, -26px);
  }

  body[data-page="about"] .about-system-art__process {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    width: min(100%, 760px);
    margin-top: clamp(10px, 1.6vh, 18px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgba(255,255,255,.18);
    border-bottom: 0;
  }

  body[data-page="about"] .about-system-art__process article {
    min-height: clamp(48px, 6.2vh, 60px);
    padding: clamp(8px, .95vw, 12px) clamp(10px, 1.1vw, 14px);
    grid-template-columns: 46px 1fr;
    align-items: center;
    align-content: center;
    gap: 10px;
    border-right: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  body[data-page="about"] .about-system-art__process article:nth-child(2n) {
    border-right: 0;
  }

  body[data-page="about"] .about-system-art__process b {
    font-size: clamp(18px, 1.45vw, 25px);
  }

  body[data-page="about"] .about-system-art__process span {
    font-size: clamp(12px, .82vw, 14px);
  }
}

/* Keep the full-page cover scroll, but remove scroll-driven centering/parallax. */
body[data-page="home"].bmw-scroll-ready main > section,
body[data-page="products"].bmw-scroll-ready main > section,
body[data-page="cases"].bmw-scroll-ready main > section,
body[data-page="about"].bmw-scroll-ready main > section {
  --scene-progress: 0 !important;
  --scene-shift: 0px !important;
  --scene-opacity: 1 !important;
  --scene-content-scale: 1 !important;
  --scene-media-shift: 0px !important;
  --scene-media-scale: 1 !important;
  --scene-bg-shift: 0px !important;
  --hero-copy-track: 0px !important;
  --section-copy-track: 0px !important;
  --product-copy-track: 0px !important;
  --scene-visible-center-shift: 0px !important;
}

body[data-page="home"].bmw-scroll-ready .hero-slide,
body[data-page="home"].bmw-scroll-ready .section--dark::before,
body[data-page="home"].bmw-scroll-ready .section--light::before,
body[data-page="products"].bmw-scroll-ready .page-hero img,
body[data-page="cases"].bmw-scroll-ready .page-hero img,
body[data-page="cases"].bmw-scroll-ready .cases-hero img,
body[data-page="cases"].bmw-scroll-ready .cases-contact img,
body[data-page="about"].bmw-scroll-ready .page-hero img,
body[data-page="about"].bmw-scroll-ready .about-vision img {
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

body[data-page="home"].bmw-scroll-ready .hero-copy,
body[data-page="home"].bmw-scroll-ready .section-head,
body[data-page="home"].bmw-scroll-ready .positioning-grid,
body[data-page="home"].bmw-scroll-ready .home-product-rail,
body[data-page="home"].bmw-scroll-ready .home-product-progress,
body[data-page="home"].bmw-scroll-ready .solution-grid,
body[data-page="home"].bmw-scroll-ready .home-contact-card,
body[data-page="home"].bmw-scroll-ready .section-scroll-title,
body[data-page="home"].bmw-scroll-ready .home-case-production__copy,
body[data-page="home"].bmw-scroll-ready .home-industrial-head,
body[data-page="products"].bmw-scroll-ready .page-hero-copy,
body[data-page="products"].bmw-scroll-ready .product-scene__copy,
body[data-page="products"].bmw-scroll-ready .product-scene-detail__headline,
body[data-page="products"].bmw-scroll-ready .product-scene-detail__actions,
body[data-page="cases"].bmw-scroll-ready .page-hero-copy,
body[data-page="cases"].bmw-scroll-ready .cases-trust-copy__inner,
body[data-page="cases"].bmw-scroll-ready .cases-grid-section .section-head,
body[data-page="cases"].bmw-scroll-ready .cases-contact .immersive-copy,
body[data-page="about"].bmw-scroll-ready .page-hero-copy,
body[data-page="about"].bmw-scroll-ready .about-kicker,
body[data-page="about"].bmw-scroll-ready .about-copy,
body[data-page="about"].bmw-scroll-ready .about-capability__copy,
body[data-page="about"].bmw-scroll-ready .about-system-art__copy,
body[data-page="about"].bmw-scroll-ready .about-system-art__scope,
body[data-page="about"].bmw-scroll-ready .about-system-art__process,
body[data-page="about"].bmw-scroll-ready .about-vision .immersive-copy {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

/* About page company-intro screen: title on the left, body copy below in three columns. */
body[data-page="about"] .about-intro {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  align-content: end !important;
  gap: clamp(28px, 5vh, 54px) !important;
  padding: clamp(92px, 12vh, 122px) var(--about-copy-right) clamp(64px, 9vh, 104px) var(--about-copy-left) !important;
}

body[data-page="about"] .about-intro .about-kicker,
body[data-page="about"] .about-intro .about-copy {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: none !important;
}

body[data-page="about"] .about-intro .about-kicker {
  justify-self: start !important;
  align-self: end !important;
}

body[data-page="about"] .about-intro .about-kicker h2 {
  width: max-content !important;
  max-width: none !important;
  margin: 0 !important;
  white-space: nowrap !important;
  text-wrap: nowrap !important;
  font-size: clamp(34px, 4.15vw, 58px) !important;
  line-height: 1.04 !important;
}

body[data-page="about"] .about-intro .about-copy {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(22px, 3vw, 46px) !important;
  padding-top: 0 !important;
  align-items: start !important;
}

body[data-page="about"] .about-intro .about-copy p {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  font-size: clamp(13px, .95vw, 16px) !important;
  line-height: 1.74 !important;
}

html[lang="en"] body[data-page="about"] .about-intro .about-kicker h2 {
  width: min(1040px, 100%) !important;
  white-space: normal !important;
}

@media (max-width: 980px) {
  body[data-page="about"] .about-intro {
    align-content: center !important;
    gap: 24px !important;
  }

  body[data-page="about"] .about-intro .about-kicker h2 {
    width: min(100%, 920px) !important;
    white-space: normal !important;
    text-wrap: balance;
  }

body[data-page="about"] .about-intro .about-copy {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* About page vision screen: keep the intro copy from wrapping too early. */
body[data-page="about"] .about-vision .immersive-copy {
  width: min(1120px, calc(100vw - 12vw)) !important;
  max-width: min(1120px, calc(100vw - 12vw)) !important;
}

body[data-page="about"] .about-vision .immersive-copy p:not(.eyebrow) {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 760px) {
  body[data-page="about"] .about-vision .immersive-copy {
    width: auto !important;
    max-width: calc(100vw - 40px) !important;
  }
}

/* About page 4: heavy-industry information board reset. */
body[data-page="about"] .about-system-art {
  position: relative !important;
  min-height: 100svh !important;
  height: 100svh !important;
  display: grid !important;
  grid-template-columns: minmax(360px, .86fr) minmax(520px, 1.14fr) !important;
  grid-template-rows: minmax(0, 1fr) auto !important;
  align-items: end !important;
  column-gap: clamp(36px, 5vw, 82px) !important;
  row-gap: clamp(22px, 3vh, 34px) !important;
  padding: calc(var(--header-height) + clamp(44px, 6vh, 72px)) clamp(44px, 5vw, 86px) clamp(36px, 5vh, 62px) !important;
  overflow: hidden !important;
  color: #111418 !important;
  background:
    linear-gradient(rgba(17,20,24,.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,20,24,.042) 1px, transparent 1px),
    linear-gradient(115deg, #f7f8f7 0%, #eef1ef 54%, #d7ddda 100%) !important;
  background-size: 54px 54px, 54px 54px, auto !important;
}

body[data-page="about"] .about-system-art::before {
  position: absolute !important;
  inset: auto clamp(38px, 5vw, 88px) clamp(34px, 5vh, 68px) auto !important;
  width: min(34vw, 520px) !important;
  height: min(34vw, 520px) !important;
  display: block !important;
  border: 1px solid rgba(17,20,24,.10) !important;
  border-radius: 0 !important;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(17,20,24,.12) 49.7% 50.3%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(17,20,24,.12) 49.7% 50.3%, transparent 50.3%) !important;
  opacity: .42 !important;
  mix-blend-mode: normal !important;
  transform: rotate(45deg) !important;
  content: "" !important;
  pointer-events: none !important;
}

body[data-page="about"] .about-system-art::after,
body[data-page="about"] .about-system-art__backdrop,
body[data-page="about"] .about-system-art__watermark {
  display: none !important;
}

body[data-page="about"] .about-system-art__copy {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: end !important;
  max-width: 700px !important;
  display: block !important;
  color: #111418 !important;
}

body[data-page="about"] .about-system-art__copy .eyebrow,
body[data-page="about"] .about-system-art__note b {
  display: none !important;
}

body[data-page="about"] .about-system-art__copy h2 {
  max-width: 10.5em !important;
  margin: 0 0 clamp(18px, 2.4vh, 28px) !important;
  color: #111418 !important;
  font-family: var(--font-serif) !important;
  font-size: clamp(36px, 4.15vw, 62px) !important;
  font-weight: 900 !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
  white-space: normal !important;
  text-wrap: balance !important;
  text-shadow: none !important;
}

body[data-page="about"] .about-system-art__copy > p:not(.eyebrow) {
  max-width: 42em !important;
  margin: 0 !important;
  color: #465058 !important;
  font-size: clamp(15px, 1vw, 17px) !important;
  line-height: 1.82 !important;
  text-shadow: none !important;
}

body[data-page="about"] .about-system-art__note {
  max-width: 48em !important;
  margin-top: clamp(22px, 3.2vh, 34px) !important;
  padding: 0 0 0 clamp(18px, 1.6vw, 24px) !important;
  display: grid !important;
  gap: 10px !important;
  border-left: 4px solid #2f9b49 !important;
  background: transparent !important;
}

body[data-page="about"] .about-system-art__note strong {
  max-width: 22em !important;
  color: #111418 !important;
  font-size: clamp(20px, 1.6vw, 28px) !important;
  line-height: 1.18 !important;
  text-shadow: none !important;
}

body[data-page="about"] .about-system-art__note span {
  max-width: 46em !important;
  color: #59636b !important;
  font-size: clamp(13px, .9vw, 15px) !important;
  line-height: 1.72 !important;
}

body[data-page="about"] .about-system-art__scope {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: end !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-auto-rows: 1fr !important;
  gap: 0 !important;
  border-top: 1px solid rgba(17,20,24,.16) !important;
  border-left: 1px solid rgba(17,20,24,.16) !important;
  background: rgba(255,255,255,.38) !important;
  backdrop-filter: none !important;
}

body[data-page="about"] .about-system-art__scope article,
body[data-page="about"] .about-system-art__scope article:nth-child(2),
body[data-page="about"] .about-system-art__scope article:nth-child(3) {
  min-height: clamp(142px, 18vh, 196px) !important;
  padding: clamp(18px, 1.8vw, 26px) !important;
  display: grid !important;
  align-content: space-between !important;
  gap: clamp(12px, 1.6vh, 18px) !important;
  border: 0 !important;
  border-right: 1px solid rgba(17,20,24,.16) !important;
  border-bottom: 1px solid rgba(17,20,24,.16) !important;
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}

body[data-page="about"] .about-system-art__scope span {
  color: rgba(17,20,24,.28) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(30px, 3vw, 54px) !important;
  line-height: 1 !important;
}

body[data-page="about"] .about-system-art__scope h3 {
  margin: 0 0 8px !important;
  color: #111418 !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  text-shadow: none !important;
}

body[data-page="about"] .about-system-art__scope p {
  margin: 0 !important;
  color: #5a646c !important;
  font-size: clamp(12px, .82vw, 14px) !important;
  line-height: 1.62 !important;
}

body[data-page="about"] .about-system-art__process {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  align-self: end !important;
  width: 100% !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  border: 1px solid rgba(17,20,24,.18) !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  background: rgba(255,255,255,.56) !important;
  backdrop-filter: none !important;
}

body[data-page="about"] .about-system-art__process article {
  min-height: clamp(72px, 9vh, 96px) !important;
  padding: clamp(13px, 1.2vw, 18px) !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center !important;
  align-content: center !important;
  gap: clamp(10px, 1vw, 16px) !important;
  border: 0 !important;
  border-right: 1px solid rgba(17,20,24,.18) !important;
  border-bottom: 1px solid rgba(17,20,24,.18) !important;
  background: transparent !important;
}

body[data-page="about"] .about-system-art__process b {
  color: #2f9b49 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(20px, 1.8vw, 34px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

body[data-page="about"] .about-system-art__process span {
  color: #111418 !important;
  font-size: clamp(12px, .88vw, 15px) !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  text-shadow: none !important;
}

@media (max-width: 980px) {
  body[data-page="about"] .about-system-art {
    height: auto !important;
    min-height: 100svh !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    align-items: start !important;
    padding: calc(var(--header-height) + 34px) 24px 34px !important;
  }

  body[data-page="about"] .about-system-art__copy,
  body[data-page="about"] .about-system-art__scope,
  body[data-page="about"] .about-system-art__process {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  body[data-page="about"] .about-system-art__scope {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-page="about"] .about-system-art__process {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body[data-page="about"] .about-system-art {
    padding-inline: 20px !important;
  }

  body[data-page="about"] .about-system-art__scope,
  body[data-page="about"] .about-system-art__process {
    grid-template-columns: 1fr !important;
  }

  body[data-page="about"] .about-system-art__scope article,
  body[data-page="about"] .about-system-art__process article {
    min-height: auto !important;
  }
}

/* About page 4: industrial board balance pass. */
body[data-page="about"] .about-system-art {
  grid-template-columns: minmax(420px, .9fr) minmax(560px, 1.1fr) !important;
  grid-template-rows: minmax(0, 1fr) auto !important;
  align-items: center !important;
  column-gap: clamp(48px, 5.2vw, 88px) !important;
  row-gap: clamp(26px, 3.4vh, 42px) !important;
  padding: calc(var(--header-height) + clamp(34px, 5vh, 58px)) clamp(56px, 5.3vw, 88px) clamp(34px, 4.4vh, 54px) !important;
  background:
    linear-gradient(rgba(17,20,24,.046) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,20,24,.038) 1px, transparent 1px),
    linear-gradient(115deg, #f8f9f8 0%, #eef1ef 58%, #dce2df 100%) !important;
  background-size: 64px 64px, 64px 64px, auto !important;
}

body[data-page="about"] .about-system-art__copy {
  align-self: center !important;
  max-width: 620px !important;
}

body[data-page="about"] .about-system-art__copy h2 {
  max-width: 9.8em !important;
  margin-bottom: clamp(18px, 2.4vh, 26px) !important;
  font-size: clamp(38px, 3.55vw, 56px) !important;
  line-height: 1.08 !important;
}

body[data-page="about"] .about-system-art__copy > p:not(.eyebrow) {
  max-width: 39em !important;
  font-size: clamp(14px, .96vw, 16px) !important;
  line-height: 1.78 !important;
}

body[data-page="about"] .about-system-art__note {
  margin-top: clamp(22px, 3vh, 30px) !important;
  gap: 9px !important;
}

body[data-page="about"] .about-system-art__note strong {
  max-width: 21em !important;
  font-size: clamp(19px, 1.45vw, 25px) !important;
  line-height: 1.2 !important;
}

body[data-page="about"] .about-system-art__note span {
  max-width: 43em !important;
  font-size: clamp(12px, .86vw, 14px) !important;
  line-height: 1.68 !important;
}

body[data-page="about"] .about-system-art__scope {
  align-self: center !important;
  min-width: 0 !important;
  background: rgba(255,255,255,.48) !important;
}

body[data-page="about"] .about-system-art__scope article,
body[data-page="about"] .about-system-art__scope article:nth-child(2),
body[data-page="about"] .about-system-art__scope article:nth-child(3) {
  min-height: clamp(138px, 16.5vh, 174px) !important;
  padding: clamp(18px, 1.65vw, 24px) !important;
  align-content: start !important;
  gap: clamp(12px, 1.4vh, 16px) !important;
  overflow: hidden !important;
}

body[data-page="about"] .about-system-art__scope span {
  font-size: clamp(30px, 2.75vw, 48px) !important;
}

body[data-page="about"] .about-system-art__scope h3 {
  margin: 0 !important;
  font-size: clamp(17px, 1.24vw, 22px) !important;
  line-height: 1.2 !important;
}

body[data-page="about"] .about-system-art__scope p {
  font-size: clamp(12px, .8vw, 13px) !important;
  line-height: 1.56 !important;
}

body[data-page="about"] .about-system-art__process article {
  min-height: clamp(68px, 8vh, 84px) !important;
}

@media (max-width: 980px) {
  body[data-page="about"] .about-system-art {
    grid-template-columns: 1fr !important;
    row-gap: 22px !important;
    padding: calc(var(--header-height) + 30px) 24px 32px !important;
  }

  body[data-page="about"] .about-system-art__copy {
    max-width: 760px !important;
  }

  body[data-page="about"] .about-system-art__scope {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body[data-page="about"] .about-system-art__copy h2 {
    font-size: clamp(32px, 9vw, 42px) !important;
  }

  body[data-page="about"] .about-system-art__scope,
  body[data-page="about"] .about-system-art__process {
    grid-template-columns: 1fr !important;
  }
}

/* English copy and layout pass: keep longer Latin text inside the viewport. */
html[lang="en"] body {
  --page-copy-title-line-height: 1.08;
  --page-copy-body-line-height: 1.62;
}

html[lang="en"] .hero h1,
html[lang="en"] .page-hero h1,
html[lang="en"] .detail-copy h1,
html[lang="en"] .section-head h2,
html[lang="en"] .feature-copy h2,
html[lang="en"] .immersive-copy h2,
html[lang="en"] .contact-info h2,
html[lang="en"] .product-scene__copy h2,
html[lang="en"] .product-scene-detail__name {
  text-wrap: balance;
  overflow-wrap: normal;
}

html[lang="en"] body[data-page="home"] .brand-positioning .home-industrial-head,
html[lang="en"] body[data-page="home"] .solutions-overview .home-case-production__copy {
  max-width: min(640px, 100%) !important;
  margin-bottom: clamp(36px, 6vh, 58px);
}

html[lang="en"] body[data-page="home"] .home-industrial-head h2,
html[lang="en"] body[data-page="home"] .home-case-production__copy h2 {
  max-width: 11em;
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 1.06;
}

html[lang="en"] body[data-page="home"] .home-industrial-head p:not(.eyebrow),
html[lang="en"] body[data-page="home"] .home-case-production__copy p:not(.eyebrow) {
  max-width: 34em;
  font-size: clamp(14px, .98vw, 16px);
  line-height: 1.58;
}

html[lang="en"] body[data-page="home"] .home-product-card {
  height: min(74vh, 620px);
  min-height: 520px;
  grid-template-rows: minmax(104px, auto) minmax(188px, 36%) minmax(176px, 1fr);
}

html[lang="en"] body[data-page="home"] .home-product-card__head {
  min-height: 0;
  padding-top: clamp(18px, 2.4vh, 28px);
}

html[lang="en"] body[data-page="home"] .home-product-card h3 {
  font-size: clamp(23px, 1.9vw, 31px);
  line-height: 1.1;
}

html[lang="en"] body[data-page="home"] .home-product-card__body {
  gap: 10px;
  padding-top: 12px;
  overflow: hidden;
}

html[lang="en"] body[data-page="home"] .home-product-card__body > p {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
  line-height: 1.48;
}

html[lang="en"] body[data-page="home"] .home-product-card .product-card__specs {
  gap: 6px 12px;
}

html[lang="en"] body[data-page="home"] .home-product-card .product-card__specs span {
  font-size: 11px;
  line-height: 1.38;
}

html[lang="en"] body[data-page="products"] .product-scene__copy {
  width: min(66vw, calc(100vw - var(--product-scene-title-left) - 40px)) !important;
  max-width: min(66vw, calc(100vw - var(--product-scene-title-left) - 40px)) !important;
}

html[lang="en"] body[data-page="products"] .product-scene__copy h2 {
  white-space: normal !important;
  font-size: clamp(34px, 3.25vw, 48px) !important;
  line-height: 1.08 !important;
}

html[lang="en"] body[data-page="products"] .product-scene__copy > p:not(.eyebrow) {
  max-width: 42em !important;
  white-space: normal !important;
  font-size: clamp(14px, .96vw, 16px) !important;
  line-height: 1.5 !important;
}

html[lang="en"] body[data-page="products"] .product-scene-detail__name {
  white-space: normal !important;
  line-height: 1.06 !important;
}

html[lang="en"] body[data-page="products"] .product-scene-detail__info > p:not(.eyebrow) {
  font-size: clamp(14px, .92vw, 16px) !important;
  line-height: 1.55 !important;
}

html[lang="en"] body[data-page="products"] .product-scene-detail__specs .spec-row {
  grid-template-columns: minmax(146px, .42fr) minmax(0, 1fr);
}

html[lang="en"] body[data-page="products"] .product-scene-detail__specs .spec-row b,
html[lang="en"] body[data-page="products"] .product-scene-detail__specs .spec-row span {
  font-size: clamp(11px, .8vw, 13px);
  line-height: 1.32;
}

html[lang="en"] body[data-page="cases"] .cases-hero .page-hero-copy h1,
html[lang="en"] body[data-page="cases"] .cases-trust .section-head h2,
html[lang="en"] body[data-page="cases"] .cases-grid-section .section-head h2,
html[lang="en"] body[data-page="cases"] .cases-contact .immersive-copy h2 {
  white-space: normal !important;
}

html[lang="en"] body[data-page="cases"] .cases-grid-section .section-head h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}

html[lang="en"] body[data-page="cases"] .case-card-grid h3 {
  font-size: clamp(17px, 1.22vw, 22px);
  line-height: 1.18;
}

html[lang="en"] body[data-page="cases"] .case-card-grid p {
  font-size: clamp(12px, .82vw, 14px);
  line-height: 1.42;
}

html[lang="en"] body[data-page="about"] .about-intro .about-kicker h2 {
  width: max-content !important;
  max-width: min(100%, 980px) !important;
  white-space: nowrap !important;
  font-size: clamp(32px, 3.65vw, 50px) !important;
  line-height: 1.06 !important;
}

html[lang="en"] body[data-page="about"] .about-intro .about-copy {
  gap: clamp(20px, 2.4vw, 36px) !important;
}

html[lang="en"] body[data-page="about"] .about-intro .about-copy p {
  font-size: clamp(12px, .84vw, 14px) !important;
  line-height: 1.58 !important;
}

html[lang="en"] body[data-page="about"] .about-system-art__copy h2 {
  max-width: 12em !important;
  font-size: clamp(34px, 3.15vw, 48px) !important;
}

html[lang="en"] body[data-page="about"] .about-system-art__copy > p:not(.eyebrow),
html[lang="en"] body[data-page="about"] .about-system-art__note span {
  font-size: clamp(12px, .78vw, 14px) !important;
  line-height: 1.52 !important;
}

html[lang="en"] body[data-page="about"] .about-system-art__note strong {
  font-size: clamp(17px, 1.2vw, 22px) !important;
  line-height: 1.18 !important;
}

html[lang="en"] body[data-page="about"] .about-system-art__scope article {
  min-height: clamp(126px, 15vh, 160px) !important;
}

html[lang="en"] body[data-page="about"] .about-system-art__scope h3 {
  font-size: clamp(15px, 1.04vw, 19px) !important;
}

html[lang="en"] body[data-page="about"] .about-system-art__scope p {
  font-size: clamp(11px, .72vw, 12px) !important;
  line-height: 1.38 !important;
}

html[lang="en"] body[data-page="contact"] .home-contact-card h2 {
  max-width: min(920px, 100%);
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.08;
}

@media (max-width: 760px) {
  html[lang="en"] body[data-page="home"] .brand-positioning,
  html[lang="en"] body[data-page="home"] .solutions-overview {
    padding: calc(var(--header-height) + 30px) 20px 54px !important;
    align-content: end;
  }

  html[lang="en"] body[data-page="home"] .brand-positioning .home-industrial-head,
  html[lang="en"] body[data-page="home"] .solutions-overview .home-case-production__copy {
    margin-bottom: 0;
  }

  html[lang="en"] body[data-page="home"] .home-industrial-head h2,
  html[lang="en"] body[data-page="home"] .home-case-production__copy h2 {
    max-width: 10.5em;
    font-size: clamp(28px, 8.2vw, 38px);
  }

  html[lang="en"] body[data-page="home"] .home-industrial-head p:not(.eyebrow),
  html[lang="en"] body[data-page="home"] .home-case-production__copy p:not(.eyebrow) {
    max-width: 22em;
    font-size: 13px;
    line-height: 1.48;
  }

  html[lang="en"] body[data-page="home"] .home-product-card {
    height: min(100%, 650px);
    grid-template-rows: minmax(230px, 40%) auto minmax(0, 1fr);
  }

  html[lang="en"] body[data-page="home"] .home-product-card h3 {
    font-size: clamp(24px, 7.2vw, 31px);
    line-height: 1.08;
  }

  html[lang="en"] body[data-page="home"] .home-product-card__body > p {
    -webkit-line-clamp: 2;
    font-size: 13px;
    line-height: 1.44;
  }

  html[lang="en"] body[data-page="products"] .product-scene__media,
  html[lang="en"] body[data-page="products"] .product-scene[data-product-index="0"] .product-scene__media,
  html[lang="en"] body[data-page="products"] .product-scene[data-product-index="1"] .product-scene__media,
  html[lang="en"] body[data-page="products"] .product-scene[data-product-index="2"] .product-scene__media {
    height: 43svh !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene__copy {
    left: 20px !important;
    right: 20px !important;
    bottom: max(40px, calc(30px + env(safe-area-inset-bottom))) !important;
    width: auto !important;
    max-width: calc(100vw - 40px) !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene__copy h2 {
    max-width: 100% !important;
    font-size: clamp(26px, 7.2vw, 34px) !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene__copy > p:not(.eyebrow) {
    display: -webkit-box;
    max-width: 100% !important;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px !important;
    line-height: 1.42 !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene__specs {
    margin: 14px 0 16px !important;
    gap: 8px !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene__specs span {
    min-height: 30px;
    padding: 5px 9px;
    font-size: 11px;
  }

  html[lang="en"] body[data-page="products"] .product-scene__detail-panel {
    align-content: start !important;
    overflow-y: auto !important;
    padding: calc(var(--header-height) + 12px) 20px max(112px, calc(92px + env(safe-area-inset-bottom))) !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene-detail__stage {
    min-height: 27svh !important;
    padding-bottom: 70px !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene-detail__machine,
  html[lang="en"] body[data-page="products"] .product-scene-detail__image-fallback {
    min-height: 190px !important;
    height: 27svh !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene-detail__headline {
    left: 20px !important;
    bottom: calc(var(--product-scene-title-bottom) + 62px) !important;
    max-width: calc(100vw - 40px) !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene-detail__name {
    max-width: calc(100vw - 40px) !important;
    font-size: clamp(24px, 6.4vw, 30px) !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene-detail__info {
    width: 100%;
    max-width: none !important;
    padding-bottom: 18px;
  }

  html[lang="en"] body[data-page="products"] .product-scene-detail__info > p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px !important;
    line-height: 1.42 !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene-detail__specs {
    margin-top: 12px !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene-detail__specs .spec-row {
    grid-template-columns: minmax(92px, .36fr) minmax(0, 1fr) !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene-detail__specs .spec-row b,
  html[lang="en"] body[data-page="products"] .product-scene-detail__specs .spec-row span {
    padding: 5px 0 !important;
    font-size: 11px !important;
    line-height: 1.24 !important;
  }

  html[lang="en"] body[data-page="cases"] {
    --page-copy-title-size: clamp(26px, 8.2vw, 38px);
  }

  html[lang="en"] body[data-page="cases"] .cases-hero .page-hero-copy h1,
  html[lang="en"] body[data-page="cases"] .cases-trust .section-head h2,
  html[lang="en"] body[data-page="cases"] .cases-grid-section .section-head h2,
  html[lang="en"] body[data-page="cases"] .cases-contact .immersive-copy h2 {
    font-size: var(--page-copy-title-size) !important;
    line-height: 1.08 !important;
  }

  html[lang="en"] body[data-page="cases"] .cases-grid-section {
    padding: calc(var(--header-height) + 24px) 18px max(34px, calc(24px + env(safe-area-inset-bottom))) !important;
    gap: 12px !important;
  }

  html[lang="en"] body[data-page="cases"] .cases-grid-section .section-head {
    margin-bottom: 10px !important;
  }

  html[lang="en"] body[data-page="cases"] .case-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  html[lang="en"] body[data-page="cases"] .case-card-grid article {
    grid-template-rows: 88px minmax(0, 1fr) !important;
    min-height: 0 !important;
  }

  html[lang="en"] body[data-page="cases"] .case-card-grid div {
    padding: 10px !important;
  }

  html[lang="en"] body[data-page="cases"] .case-card-grid span {
    font-size: 18px !important;
  }

  html[lang="en"] body[data-page="cases"] .case-card-grid h3 {
    margin: 8px 0 5px !important;
    font-size: clamp(13px, 3.5vw, 16px) !important;
    line-height: 1.08 !important;
  }

  html[lang="en"] body[data-page="cases"] .case-card-grid p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 11px !important;
    line-height: 1.28 !important;
  }

  html[lang="en"] body[data-page="about"] .about-intro {
    gap: 18px !important;
    padding: calc(var(--header-height) + 28px) 20px max(38px, calc(28px + env(safe-area-inset-bottom))) !important;
    align-content: center !important;
  }

  html[lang="en"] body[data-page="about"] .about-intro .about-kicker h2 {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    font-size: clamp(27px, 7.4vw, 35px) !important;
  }

  html[lang="en"] body[data-page="about"] .about-intro .about-copy {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  html[lang="en"] body[data-page="about"] .about-intro .about-copy p {
    font-size: 12px !important;
    line-height: 1.46 !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art {
    row-gap: 14px !important;
    padding: calc(var(--header-height) + 20px) 18px max(28px, calc(20px + env(safe-area-inset-bottom))) !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__copy h2 {
    font-size: clamp(25px, 6.6vw, 32px) !important;
    line-height: 1.08 !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__note {
    margin-top: 12px !important;
    gap: 6px !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__scope {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__scope article {
    padding: 10px !important;
    gap: 7px !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__scope span {
    font-size: 22px !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__scope h3 {
    font-size: 13px !important;
    line-height: 1.08 !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__scope p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 10.5px !important;
    line-height: 1.2 !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__process {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__process article {
    min-height: 44px !important;
    padding: 7px 9px !important;
    gap: 7px !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__process b {
    font-size: 18px !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__process span {
    font-size: 10.5px !important;
    line-height: 1.12 !important;
  }

  html[lang="en"] body[data-page="about"] .about-vision .immersive-copy {
    padding: 0 20px max(40px, calc(28px + env(safe-area-inset-bottom))) !important;
  }

  html[lang="en"] body[data-page="about"] .about-vision .immersive-copy h2 {
    font-size: clamp(26px, 7.4vw, 36px) !important;
    line-height: 1.08 !important;
  }

  html[lang="en"] body[data-page="about"] .about-vision .immersive-copy p:not(.eyebrow) {
    font-size: 12px !important;
    line-height: 1.48 !important;
  }

  html[lang="en"] body[data-page="contact"] .home-contact-card h2 {
    max-width: 10.5em;
    font-size: clamp(31px, 8vw, 42px);
    line-height: 1.08;
  }
}

/* About page: force every screen to use the same upward cover-scroll behavior. */
body[data-page="about"] main {
  position: relative !important;
}

body[data-page="about"] main > section {
  position: sticky !important;
  top: 0 !important;
  z-index: var(--scene-layer, 1) !important;
  height: calc(var(--app-vh, 100dvh) + var(--scene-overscan)) !important;
  min-height: max(620px, calc(var(--app-vh, 100dvh) + var(--scene-overscan))) !important;
  overflow: hidden !important;
}

body[data-page="about"] main > section.about-system-art {
  position: sticky !important;
  height: calc(var(--app-vh, 100dvh) + var(--scene-overscan)) !important;
  min-height: max(620px, calc(var(--app-vh, 100dvh) + var(--scene-overscan))) !important;
  overflow: hidden !important;
}

@media (max-width: 760px) {
  body[data-page="about"] main > section {
    height: calc(var(--app-vh, 100dvh) + var(--scene-overscan)) !important;
    min-height: calc(var(--app-vh, 100dvh) + var(--scene-overscan)) !important;
  }

  body[data-page="about"] main > section.about-system-art {
    position: sticky !important;
    height: calc(var(--app-vh, 100dvh) + var(--scene-overscan)) !important;
    min-height: calc(var(--app-vh, 100dvh) + var(--scene-overscan)) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto minmax(0, 1fr) auto !important;
    align-content: start !important;
    row-gap: 12px !important;
    padding: calc(var(--header-height) + 22px) 18px max(22px, calc(18px + env(safe-area-inset-bottom))) !important;
  }

  body[data-page="about"] .about-system-art__copy h2 {
    font-size: clamp(28px, 8vw, 38px) !important;
    line-height: 1.08 !important;
    margin-bottom: 10px !important;
  }

  body[data-page="about"] .about-system-art__copy > p:not(.eyebrow) {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  body[data-page="about"] .about-system-art__note {
    margin-top: 10px !important;
    gap: 5px !important;
  }

  body[data-page="about"] .about-system-art__note strong {
    font-size: 16px !important;
    line-height: 1.16 !important;
  }

  body[data-page="about"] .about-system-art__note span {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  body[data-page="about"] .about-system-art__scope {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-self: stretch !important;
  }

  body[data-page="about"] .about-system-art__scope article,
  body[data-page="about"] .about-system-art__scope article:nth-child(2),
  body[data-page="about"] .about-system-art__scope article:nth-child(3) {
    min-height: 0 !important;
    padding: 10px !important;
    gap: 6px !important;
  }

  body[data-page="about"] .about-system-art__scope span {
    font-size: 22px !important;
  }

  body[data-page="about"] .about-system-art__scope h3 {
    font-size: 14px !important;
    line-height: 1.1 !important;
  }

  body[data-page="about"] .about-system-art__scope p {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    font-size: 10.5px !important;
    line-height: 1.25 !important;
  }

  body[data-page="about"] .about-system-art__process {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body[data-page="about"] .about-system-art__process article {
    min-height: 42px !important;
    padding: 7px 8px !important;
    gap: 6px !important;
  }

  body[data-page="about"] .about-system-art__process b {
    font-size: 18px !important;
  }

body[data-page="about"] .about-system-art__process span {
    font-size: 10.5px !important;
    line-height: 1.12 !important;
  }
}

/* About scope cards: photographic industry backgrounds */
body[data-page="about"] .about-scope-grid article:nth-child(1),
body[data-page="about"] .about-system-art__scope article:nth-child(1) {
  --about-scope-card-bg: url("../assets/amg-kerry/industry-backgrounds/scope-granules-powder.webp");
}

body[data-page="about"] .about-scope-grid article:nth-child(2),
body[data-page="about"] .about-system-art__scope article:nth-child(2) {
  --about-scope-card-bg: url("../assets/amg-kerry/industry-backgrounds/scope-liquid-sauce.webp");
}

body[data-page="about"] .about-scope-grid article:nth-child(3),
body[data-page="about"] .about-system-art__scope article:nth-child(3) {
  --about-scope-card-bg: url("../assets/amg-kerry/industry-backgrounds/scope-mixed-materials.webp");
}

body[data-page="about"] .about-scope-grid article:nth-child(4),
body[data-page="about"] .about-system-art__scope article:nth-child(4) {
  --about-scope-card-bg: url("../assets/amg-kerry/industry-backgrounds/scope-end-automation.webp");
}

body[data-page="about"] .about-scope-grid article,
body[data-page="about"] .about-system-art__scope article,
body[data-page="about"] .about-system-art__scope article:nth-child(2),
body[data-page="about"] .about-system-art__scope article:nth-child(3) {
  position: relative !important;
  isolation: isolate;
  overflow: hidden !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  background: #101418 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 24px 70px rgba(0,0,0,.26);
}

body[data-page="about"] .about-scope-grid article::before,
body[data-page="about"] .about-system-art__scope article::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--about-scope-card-bg) center center / cover no-repeat;
  content: "";
  filter: saturate(.98) contrast(1.02) brightness(1.02);
  transform: scale(1.018);
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

body[data-page="about"] .about-scope-grid article::after,
body[data-page="about"] .about-system-art__scope article::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4,7,9,.02), rgba(4,7,9,.38)),
    linear-gradient(90deg, rgba(4,7,9,.30), rgba(4,7,9,.08) 58%, rgba(4,7,9,.24)),
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.28), transparent 34%);
  content: "";
  pointer-events: none;
}

body[data-page="about"] .about-scope-grid article > *,
body[data-page="about"] .about-system-art__scope article > * {
  position: relative;
  z-index: 1;
}

body[data-page="about"] .about-scope-grid article:hover::before,
body[data-page="about"] .about-system-art__scope article:hover::before {
  filter: saturate(1.05) contrast(1.06) brightness(1.1);
  transform: scale(1.055);
}

body[data-page="about"] .about-scope-grid span,
body[data-page="about"] .about-system-art__scope span {
  color: rgba(255,255,255,.54) !important;
  text-shadow: 0 16px 34px rgba(0,0,0,.48);
}

body[data-page="about"] .about-scope-grid h3,
body[data-page="about"] .about-system-art__scope h3 {
  color: #fff !important;
  text-shadow: 0 14px 32px rgba(0,0,0,.62);
}

body[data-page="about"] .about-scope-grid p,
body[data-page="about"] .about-system-art__scope p {
  color: rgba(255,255,255,.78) !important;
  text-shadow: 0 10px 26px rgba(0,0,0,.64);
}

/* English layout tightening pass: keep long translated copy from covering product data. */
html[lang="en"] body[data-page="products"] .product-scene__detail-panel {
  overflow-y: auto !important;
  overscroll-behavior: contain;
}

@media (max-width: 760px) {
  html[lang="en"] .social-dock {
    top: calc(var(--header-height) + 12px) !important;
    right: 12px !important;
    bottom: auto !important;
    gap: 8px !important;
    transform: none !important;
  }

  html[lang="en"] .social-dock__link {
    width: 30px !important;
    height: 30px !important;
  }

  html[lang="en"] body.header-on-light .social-dock__link,
  html[lang="en"] .social-dock__link.is-on-light {
    color: rgba(17,20,24,.78) !important;
  }

  html[lang="en"] .social-dock svg {
    width: 20px !important;
    height: 20px !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene__detail-panel {
    display: block !important;
    padding: calc(var(--header-height) + 14px) 20px max(28px, calc(22px + env(safe-area-inset-bottom))) !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__stage {
    display: grid !important;
    min-height: 0 !important;
    gap: 12px !important;
    align-content: start !important;
    justify-items: stretch !important;
    padding-bottom: 0 !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__machine,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__image-fallback {
    width: 100% !important;
    min-height: 176px !important;
    height: min(28svh, 228px) !important;
    transform: none !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__headline {
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    max-width: 100% !important;
    gap: 0 !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__name {
    max-width: 100% !important;
    font-size: clamp(24px, 6.4vw, 30px) !important;
    line-height: 1.06 !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__actions {
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    margin: 0 0 14px !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__back {
    width: 100% !important;
    min-height: 46px !important;
    justify-content: center !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__info {
    margin-top: 4px !important;
    padding-bottom: 0 !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__info > p:not(.eyebrow) {
    -webkit-line-clamp: 3 !important;
  }

  html[lang="en"] body[data-page="about"] .about-vision .immersive-copy {
    bottom: auto !important;
    padding-bottom: max(58px, calc(46px + env(safe-area-inset-bottom))) !important;
  }
}

/* Mobile-only layout stabilization: keep detail content readable without changing desktop. */
@media (max-width: 760px) {
  body[data-page="products"] .product-scene.is-detail-open .product-scene__detail-panel,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene__detail-panel {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: calc(var(--header-height) + 14px) 20px max(102px, calc(86px + env(safe-area-inset-bottom))) !important;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__stage,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__stage {
    display: grid !important;
    align-content: start !important;
    justify-items: stretch !important;
    width: 100% !important;
    min-height: calc(min(34svh, 282px) + 94px) !important;
    height: calc(min(34svh, 282px) + 94px) !important;
    padding-bottom: 0 !important;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__machine,
  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__image-fallback,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__machine,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__image-fallback {
    width: 100% !important;
    min-height: 218px !important;
    height: min(34svh, 282px) !important;
    transform: none !important;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__headline,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__headline {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 0 !important;
    order: 2;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__name,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__name {
    max-width: 100% !important;
    white-space: normal !important;
    font-size: clamp(25px, 7vw, 34px) !important;
    line-height: 1.06 !important;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__actions,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__actions {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin: 0 !important;
    order: 3;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__back,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__back {
    width: 100% !important;
    min-height: 46px !important;
    justify-content: center !important;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__info,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__info {
    width: 100% !important;
    max-width: none !important;
    margin: 4px 0 0 !important;
    padding-bottom: 0 !important;
    transform: none !important;
    order: 4;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__info > p:not(.eyebrow),
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__info > p:not(.eyebrow) {
    display: block !important;
    overflow: visible !important;
    max-width: 100% !important;
    font-size: 13px !important;
    line-height: 1.56 !important;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__specs,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__specs {
    margin-top: 14px !important;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__specs .spec-row,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__specs .spec-row {
    grid-template-columns: minmax(86px, .38fr) minmax(0, 1fr) !important;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__specs .spec-row b,
  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__specs .spec-row span,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__specs .spec-row b,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__specs .spec-row span {
    padding: 6px 0 !important;
    font-size: 11px !important;
    line-height: 1.34 !important;
  }

  body[data-page="products"] .product-scene-detail__rotate-hint,
  html[lang="en"] body[data-page="products"] .product-scene-detail__rotate-hint {
    display: none !important;
  }

  body[data-page="products"].product-detail-open .social-dock,
  html[lang="en"] body[data-page="products"].product-detail-open .social-dock {
    display: none !important;
  }

  body[data-page="cases"] .cases-trust,
  html[lang="en"] body[data-page="cases"] .cases-trust {
    overflow-y: auto !important;
    overscroll-behavior: contain;
  }
}

/* Mobile cover-scroll parity: keep phone page transitions matching desktop. */
@media (max-width: 760px) {
  body[data-page="home"] main > section,
  body[data-page="products"] main > section,
  body[data-page="products"] .product-scene,
  body[data-page="cases"] main > section,
  body[data-page="about"] main > section {
    position: sticky !important;
    top: 0 !important;
    z-index: var(--scene-layer, 1) !important;
    min-height: calc(var(--app-vh, 100dvh) + var(--scene-overscan)) !important;
  }

  body[data-page="home"].bmw-scroll-ready main > section,
  body[data-page="products"].bmw-scroll-ready main > section,
  body[data-page="cases"].bmw-scroll-ready main > section,
  body[data-page="about"].bmw-scroll-ready main > section {
    --scene-shift: 0px !important;
    --scene-opacity: 1 !important;
    --scene-content-scale: 1 !important;
    --scene-media-shift: 0px !important;
    --scene-media-scale: 1 !important;
    --scene-bg-shift: 0px !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  body.mobile-cover-scroll main {
    min-height: var(--mobile-cover-height, 100svh);
  }

  body.mobile-cover-scroll main > section,
  body.mobile-cover-scroll[data-page="home"] main > section,
  body.mobile-cover-scroll[data-page="products"] main > section,
  body.mobile-cover-scroll[data-page="products"] .page-hero,
  body.mobile-cover-scroll[data-page="products"] .product-scene,
  body.mobile-cover-scroll[data-page="cases"] main > section,
  body.mobile-cover-scroll[data-page="about"] main > section,
  body.mobile-cover-scroll[data-page="about"] .immersive-band,
  body.mobile-cover-scroll[data-page="about"] .about-vision,
  body.mobile-cover-scroll[data-page="contact"] main > section {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: var(--app-vh, 100svh) !important;
    min-height: var(--app-vh, 100svh) !important;
    z-index: var(--mobile-cover-layer, var(--scene-layer, 1)) !important;
    transform: translate3d(0, var(--mobile-cover-y, 0px), 0) !important;
    transition: none !important;
    backface-visibility: hidden;
    will-change: auto;
  }

  body.mobile-cover-scroll[data-page="about"] .about-intro,
  body.mobile-cover-scroll[data-page="about"] .about-capability,
  body.mobile-cover-scroll[data-page="about"] .about-system-art,
  body.mobile-cover-scroll[data-page="about"] .about-vision {
    backface-visibility: hidden;
    contain: layout paint;
    transform: translate3d(0, var(--mobile-cover-y, 0px), 0);
    will-change: auto;
  }

  body.mobile-cover-scroll[data-page="about"] main > section.is-scroll-current,
  body.mobile-cover-scroll[data-page="about"] main > section.is-scroll-incoming,
  body.mobile-cover-scroll[data-page="about"] .is-scroll-current.about-intro,
  body.mobile-cover-scroll[data-page="about"] .is-scroll-incoming.about-intro,
  body.mobile-cover-scroll[data-page="about"] .is-scroll-current.about-capability,
  body.mobile-cover-scroll[data-page="about"] .is-scroll-incoming.about-capability,
  body.mobile-cover-scroll[data-page="about"] .is-scroll-current.about-system-art,
  body.mobile-cover-scroll[data-page="about"] .is-scroll-incoming.about-system-art,
  body.mobile-cover-scroll[data-page="about"] .is-scroll-current.about-vision,
  body.mobile-cover-scroll[data-page="about"] .is-scroll-incoming.about-vision {
    will-change: transform;
  }

  body.mobile-cover-scroll[data-page="about"] main > section:not(.is-scroll-current):not(.is-scroll-incoming) {
    content-visibility: hidden;
    contain-intrinsic-size: 100vw var(--app-vh, 100svh);
  }

  body.mobile-cover-scroll[data-page="about"] .about-intro .about-kicker,
  body.mobile-cover-scroll[data-page="about"] .about-intro .about-copy,
  body.mobile-cover-scroll[data-page="about"] .about-capability__copy,
  body.mobile-cover-scroll[data-page="about"] .about-metrics span {
    backface-visibility: hidden;
    contain: paint;
    transform: none;
    will-change: auto;
  }

  body.mobile-cover-scroll .site-header,
  body.mobile-cover-scroll .social-dock,
  body.mobile-cover-scroll .mobile-drawer {
    z-index: 80;
  }

  body.mobile-cover-scroll[data-page="cases"] .cases-trust {
    overflow: hidden !important;
    overflow-y: hidden !important;
    overscroll-behavior: auto !important;
    touch-action: pan-y !important;
  }

  body.mobile-cover-scroll[data-page="cases"] .cases-grid-section {
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: calc(var(--header-height) + 16px) 18px max(20px, calc(16px + env(safe-area-inset-bottom))) !important;
    overflow: hidden !important;
  }

  body.mobile-cover-scroll[data-page="cases"] .cases-grid-section .section-head {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    gap: 8px !important;
  }

  body.mobile-cover-scroll[data-page="cases"] .cases-grid-section .section-head h2 {
    white-space: normal !important;
    font-size: clamp(22px, 6vw, 28px) !important;
    line-height: 1.12 !important;
  }

  body.mobile-cover-scroll[data-page="cases"] .cases-grid-section .section-head p:not(.eyebrow) {
    width: 100% !important;
    max-width: none !important;
    font-size: 12.5px !important;
    line-height: 1.46 !important;
  }

  body.mobile-cover-scroll[data-page="cases"] .case-card-grid {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    margin: 0 !important;
    min-height: 0 !important;
  }

  body.mobile-cover-scroll[data-page="cases"] .case-card-grid article {
    height: auto !important;
    min-height: 0 !important;
    grid-template-rows: 88px auto !important;
  }

  body.mobile-cover-scroll[data-page="cases"] .case-card-grid img {
    width: 100% !important;
    min-height: 0 !important;
    height: 88px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }

  body.mobile-cover-scroll[data-page="cases"] .case-card-grid div {
    min-width: 0 !important;
    padding: 8px 10px 10px !important;
  }

  body.mobile-cover-scroll[data-page="cases"] .case-card-grid span {
    display: block !important;
    font-size: 20px !important;
    line-height: 1 !important;
  }

  body.mobile-cover-scroll[data-page="cases"] .case-card-grid h3 {
    margin: 5px 0 4px !important;
    font-size: 14px !important;
    line-height: 1.18 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
  }

  body.mobile-cover-scroll[data-page="cases"] .case-card-grid p {
    display: block !important;
    margin: 0 !important;
    overflow: visible !important;
    color: rgba(17,20,24,.68) !important;
    font-size: 10.5px !important;
    line-height: 1.35 !important;
    -webkit-line-clamp: unset !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art {
    padding: calc(var(--header-height) + 10px) 18px max(12px, calc(10px + env(safe-area-inset-bottom))) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto 1fr auto !important;
    align-content: start !important;
    gap: 9px !important;
    background: #f3f6f3 !important;
    background-size: auto !important;
    color: #111418 !important;
    contain: layout paint;
  }

  body.mobile-cover-scroll[data-page="about"] .about-capability {
    background:
      linear-gradient(90deg, rgba(2,5,7,.82), rgba(2,5,7,.58) 38%, rgba(2,5,7,.14) 68%, rgba(2,5,7,.34)),
      linear-gradient(180deg, rgba(2,5,7,.10), rgba(2,5,7,.70)),
      url("../assets/amg-kerry/about-capability-factory-mobile.webp") center center / cover no-repeat,
      #0b0f12 !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art::before,
  body.mobile-cover-scroll[data-page="about"] .about-system-art::after,
  body.mobile-cover-scroll[data-page="about"] .about-system-art__backdrop,
  body.mobile-cover-scroll[data-page="about"] .about-system-art__watermark {
    display: none !important;
    content: none !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__copy,
  body.mobile-cover-scroll[data-page="about"] .about-system-art__scope,
  body.mobile-cover-scroll[data-page="about"] .about-system-art__process {
    grid-column: 1 !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    backdrop-filter: none !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__copy h2 {
    max-width: 100% !important;
    margin: 0 0 5px !important;
    font-size: clamp(23px, 6.4vw, 31px) !important;
    line-height: 1.04 !important;
    text-wrap: balance !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__copy > p:not(.eyebrow) {
    max-width: 100% !important;
    margin: 0 !important;
    font-size: 11.5px !important;
    line-height: 1.42 !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__note {
    margin-top: 6px !important;
    padding-left: 10px !important;
    gap: 3px !important;
    border-left-width: 3px !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__note strong {
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.14 !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__note span {
    max-width: 100% !important;
    font-size: 10.5px !important;
    line-height: 1.3 !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__scope {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-self: stretch !important;
    gap: 9px !important;
    border: 0 !important;
    background: transparent !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__scope article,
  body.mobile-cover-scroll[data-page="about"] .about-system-art__scope article:nth-child(2),
  body.mobile-cover-scroll[data-page="about"] .about-system-art__scope article:nth-child(3) {
    min-height: clamp(136px, 18vh, 158px) !important;
    padding: 12px !important;
    display: grid !important;
    align-content: end !important;
    gap: 6px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255,255,255,.24) !important;
    background: #111418 !important;
    box-shadow: none !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__scope article::before,
  body.mobile-cover-scroll[data-page="about"] .about-system-art__scope article::after {
    display: block !important;
    content: "" !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__scope article::before {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background: var(--about-scope-card-bg) center center / cover no-repeat !important;
    opacity: 1 !important;
    transform: none !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__scope article::after {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
      linear-gradient(180deg, rgba(0,0,0,0) 5%, rgba(0,0,0,.18) 46%, rgba(0,0,0,.74) 100%),
      linear-gradient(90deg, rgba(0,0,0,.24), rgba(0,0,0,.06)) !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__scope span {
    font-size: 25px !important;
    line-height: 1 !important;
    color: rgba(255,255,255,.78) !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__scope h3 {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.14 !important;
    color: #fff !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__scope p {
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.34 !important;
    color: rgba(255,255,255,.9) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,.42) !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__process {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-self: end !important;
    gap: 5px !important;
    border: 0 !important;
    background: transparent !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__process article {
    min-height: 30px !important;
    padding: 5px 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    border: 1px solid rgba(47,155,73,.20) !important;
    background: rgba(255,255,255,.72) !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__process b {
    font-size: 15px !important;
    line-height: 1 !important;
  }

  body.mobile-cover-scroll[data-page="about"] .about-system-art__process span {
    font-size: 10.5px !important;
    line-height: 1.18 !important;
    white-space: nowrap !important;
  }
}

/* Mobile header cleanup: remove the dark top strip and keep logo text aligned. */
@media (max-width: 760px) {
  :root {
    --header-height: 64px;
    --header-plate-height: 64px;
  }

  .site-header {
    grid-template-columns: 48px minmax(0, 1fr) 48px !important;
    height: var(--header-height) !important;
    padding: 0 max(16px, env(safe-area-inset-left)) !important;
    gap: 0 !important;
    align-items: center !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-header::before {
    display: block !important;
    height: var(--header-height) !important;
    background: rgba(5, 6, 7, .42) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.12) !important;
    backdrop-filter: blur(18px) saturate(1.12) !important;
    box-shadow: inset 0 -1px rgba(255,255,255,.08), 0 10px 28px rgba(0,0,0,.10) !important;
    opacity: 1 !important;
    transform: none !important;
  }

  body.header-on-light .site-header::before {
    background: rgba(246, 248, 245, .68) !important;
    box-shadow: inset 0 -1px rgba(17,20,24,.10), 0 10px 28px rgba(17,20,24,.08) !important;
  }

  .menu-toggle {
    justify-self: start !important;
    margin-left: 0 !important;
  }

  .site-header > .brand {
    justify-self: center !important;
    justify-content: center !important;
    max-width: min(52vw, 190px) !important;
    gap: 8px !important;
  }

  .site-header > .brand .brand-svg-en {
    width: clamp(88px, 26vw, 112px) !important;
  }

  .site-header > .brand .brand-svg-cn {
    width: clamp(42px, 12vw, 52px) !important;
  }

  .site-header > .brand .brand-divider {
    height: 24px !important;
  }

  body.header-on-light .site-header,
  body.header-on-light .site-header > .brand,
  body.header-on-light .site-header > .brand .brand-cn,
  body.header-on-light .menu-toggle {
    color: #111418 !important;
  }

  body.header-on-light .site-header > .brand .brand-divider {
    background: rgba(17,20,24,.42) !important;
  }

  .header-actions {
    justify-self: end !important;
    min-width: 48px !important;
  }

  .mobile-drawer {
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(calc(-100% - var(--header-height))) !important;
  }

  body.menu-open .mobile-drawer {
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
}

/* Mobile side navigation: compact layered panel with staggered entry. */
@media (max-width: 760px) {
  .mobile-drawer {
    display: grid !important;
    position: fixed !important;
    inset: calc(var(--header-height) + 10px) auto auto max(12px, env(safe-area-inset-left)) !important;
    width: min(70vw, 252px) !important;
    min-height: 0 !important;
    max-height: calc(100svh - var(--header-height) - 24px) !important;
    align-content: start !important;
    gap: 3px !important;
    padding: 8px !important;
    overflow: visible !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 0;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate3d(calc(-100% - 26px), 0, 0) scale(.97) !important;
    transform-origin: left top;
    transition:
      transform .34s cubic-bezier(.2,.78,.22,1),
      opacity .24s ease,
      visibility 0s linear .34s;
  }

  .mobile-drawer::before,
  .mobile-drawer::after {
    display: none !important;
    content: none !important;
  }

  body.menu-open .mobile-drawer {
    opacity: 1;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
    transition:
      transform .34s cubic-bezier(.2,.78,.22,1),
      opacity .2s ease,
      visibility 0s;
  }

  .mobile-drawer a,
  .mobile-drawer .drawer-lang {
    min-height: 38px !important;
    padding: 8px 11px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255,255,255,.92) !important;
    font-size: clamp(15px, 4vw, 17px) !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    text-align: left !important;
    opacity: 0;
    transform: translate3d(-18px, 0, 0);
    transition:
      transform .34s cubic-bezier(.2,.78,.22,1),
      opacity .24s ease,
      background .2s ease,
      border-color .2s ease;
  }

  body.header-on-light .mobile-drawer a,
  body.header-on-light .mobile-drawer .drawer-lang {
    color: rgba(17,20,24,.86) !important;
    text-shadow: none !important;
  }

  .mobile-drawer .drawer-lang {
    width: 100% !important;
    height: auto !important;
    margin-top: 4px !important;
    color: rgba(255,255,255,.78) !important;
    font-size: 13px !important;
  }

  body.header-on-light .mobile-drawer .drawer-lang {
    color: rgba(17,20,24,.66) !important;
  }

  body.menu-open .mobile-drawer a,
  body.menu-open .mobile-drawer .drawer-lang {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  body.menu-open .mobile-drawer a:nth-child(1) { transition-delay: 45ms; }
  body.menu-open .mobile-drawer a:nth-child(2) { transition-delay: 85ms; }
  body.menu-open .mobile-drawer a:nth-child(3) { transition-delay: 125ms; }
  body.menu-open .mobile-drawer a:nth-child(4) { transition-delay: 165ms; }
  body.menu-open .mobile-drawer a:nth-child(5) { transition-delay: 205ms; }
  body.menu-open .mobile-drawer .drawer-lang { transition-delay: 245ms; }

  body.header-on-light .social-dock__link.is-on-light,
  body.header-on-light.menu-open .social-dock__link.is-on-light {
    color: rgba(17,20,24,.84) !important;
  }

  .social-dock,
  body[data-page="products"].product-detail-open .social-dock,
  html[lang="en"] body[data-page="products"].product-detail-open .social-dock {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* Mobile English readability pass: show complete copy without changing desktop flow. */
@media (max-width: 760px) {
  html[lang="en"] body {
    --mobile-en-gutter: 20px;
  }

  html[lang="en"] body[data-page="home"] .brand-positioning,
  html[lang="en"] body[data-page="home"] .solutions-overview {
    padding-right: var(--mobile-en-gutter) !important;
    padding-left: var(--mobile-en-gutter) !important;
    align-content: end !important;
  }

  html[lang="en"] body[data-page="home"] .brand-positioning .home-industrial-head,
  html[lang="en"] body[data-page="home"] .solutions-overview .home-case-production__copy {
    width: calc(100vw - (var(--mobile-en-gutter) * 2)) !important;
    max-width: calc(100vw - (var(--mobile-en-gutter) * 2)) !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    box-sizing: border-box !important;
  }

  html[lang="en"] body[data-page="home"] .home-industrial-head h2,
  html[lang="en"] body[data-page="home"] .home-case-production__copy h2 {
    max-width: 12em !important;
    font-size: 26px !important;
    line-height: 1.08 !important;
  }

  html[lang="en"] body[data-page="home"] .home-industrial-head p:not(.eyebrow),
  html[lang="en"] body[data-page="home"] .home-case-production__copy p:not(.eyebrow) {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 13px !important;
    line-height: 1.46 !important;
  }

  html[lang="en"] body[data-page="home"] .home-product-card__body {
    overflow: visible !important;
  }

  html[lang="en"] body[data-page="home"] .home-product-card__body > p {
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    font-size: 12.5px !important;
    line-height: 1.36 !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene__media,
  html[lang="en"] body[data-page="products"] .product-scene[data-product-index="0"] .product-scene__media,
  html[lang="en"] body[data-page="products"] .product-scene[data-product-index="1"] .product-scene__media,
  html[lang="en"] body[data-page="products"] .product-scene[data-product-index="2"] .product-scene__media {
    height: min(37svh, 290px) !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene__copy {
    left: var(--mobile-en-gutter) !important;
    right: var(--mobile-en-gutter) !important;
    bottom: max(34px, calc(28px + env(safe-area-inset-bottom))) !important;
    width: auto !important;
    max-width: calc(100vw - (var(--mobile-en-gutter) * 2)) !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene__copy h2 {
    margin-bottom: 10px !important;
    font-size: 26px !important;
    line-height: 1.08 !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene__copy > p:not(.eyebrow) {
    display: block !important;
    max-width: 100% !important;
    margin-bottom: 14px !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    font-size: 12.5px !important;
    line-height: 1.42 !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene__specs {
    margin: 10px 0 12px !important;
    gap: 7px !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene__specs span {
    min-height: 28px !important;
    padding: 5px 8px !important;
    font-size: 10.5px !important;
    line-height: 1.2 !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene__detail {
    min-height: 44px !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__info > p:not(.eyebrow) {
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    font-size: 12.5px !important;
    line-height: 1.5 !important;
  }

  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__specs .spec-row {
    grid-template-columns: minmax(112px, .44fr) minmax(0, 1fr) !important;
  }

  html[lang="en"] body[data-page="cases"] .cases-grid-section {
    align-content: start !important;
    gap: 10px !important;
    padding: calc(var(--header-height) + 18px) 18px max(22px, calc(18px + env(safe-area-inset-bottom))) !important;
  }

  html[lang="en"] body[data-page="cases"] .cases-grid-section .section-head {
    margin: 0 !important;
  }

  html[lang="en"] body[data-page="cases"] .cases-grid-section .section-head h2 {
    font-size: 25px !important;
    line-height: 1.08 !important;
  }

  html[lang="en"] body[data-page="cases"] .cases-grid-section .section-head p:not(.eyebrow) {
    font-size: 12px !important;
    line-height: 1.42 !important;
  }

  html[lang="en"] body[data-page="cases"] .case-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  html[lang="en"] body[data-page="cases"] .case-card-grid article {
    height: auto !important;
    grid-template-rows: 72px auto !important;
  }

  html[lang="en"] body[data-page="cases"] .case-card-grid div {
    padding: 8px 9px !important;
  }

  html[lang="en"] body[data-page="cases"] .case-card-grid span {
    font-size: 16px !important;
    line-height: 1 !important;
  }

  html[lang="en"] body[data-page="cases"] .case-card-grid h3 {
    margin: 5px 0 3px !important;
    font-size: 12px !important;
    line-height: 1.08 !important;
  }

  html[lang="en"] body[data-page="cases"] .case-card-grid p {
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    font-size: 9.8px !important;
    line-height: 1.22 !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art {
    grid-template-rows: auto auto auto !important;
    align-content: start !important;
    row-gap: 10px !important;
    padding: calc(var(--header-height) + 18px) 18px max(18px, calc(14px + env(safe-area-inset-bottom))) !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__copy h2 {
    margin-bottom: 8px !important;
    font-size: 24px !important;
    line-height: 1.08 !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__copy > p:not(.eyebrow) {
    font-size: 11.2px !important;
    line-height: 1.38 !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__note {
    margin-top: 8px !important;
    gap: 4px !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__note strong {
    font-size: 14px !important;
    line-height: 1.12 !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__note span {
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    font-size: 10.3px !important;
    line-height: 1.28 !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__scope {
    align-self: auto !important;
    gap: 8px !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__scope article,
  html[lang="en"] body[data-page="about"] .about-system-art__scope article:nth-child(2),
  html[lang="en"] body[data-page="about"] .about-system-art__scope article:nth-child(3) {
    min-height: 100px !important;
    height: auto !important;
    align-content: start !important;
    padding: 8px 9px !important;
    gap: 4px !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__scope span {
    font-size: 17px !important;
    line-height: 1 !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__scope h3 {
    font-size: 11.5px !important;
    line-height: 1.08 !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__scope p {
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    font-size: 9.6px !important;
    line-height: 1.2 !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__process {
    gap: 6px !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__process article {
    min-height: 36px !important;
    padding: 6px 7px !important;
    gap: 5px !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__process b {
    font-size: 15px !important;
  }

  html[lang="en"] body[data-page="about"] .about-system-art__process span {
    font-size: 9.6px !important;
    line-height: 1.08 !important;
  }
}

/* Product detail desktop stage: center the model between the page top and title block. */
@media (min-width: 761px) {
  body[data-page="products"] .product-scene.is-detail-open .product-scene__detail-panel,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene__detail-panel {
    --product-detail-stage-top: clamp(18px, 3vh, 34px);
    --product-detail-title-reserve: clamp(172px, 21vh, 228px);
    align-items: stretch !important;
    overflow: hidden !important;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__stage,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__stage {
    position: relative !important;
    align-self: stretch !important;
    height: 100% !important;
    min-height: 0 !important;
    display: block !important;
    padding: 0 !important;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__machine,
  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__image-fallback,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__machine,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__image-fallback {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: var(--product-detail-stage-top) !important;
    bottom: var(--product-detail-title-reserve) !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__image-fallback img,
  html[lang="en"] body[data-page="products"] .product-scene.is-detail-open .product-scene-detail__image-fallback img {
    max-width: min(58vw, 860px) !important;
    max-height: 100% !important;
  }
}
