:root {
  color-scheme: light;
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-muted: #eef2f6;
  --surface-strong: #e2e8f0;
  --ink: #111820;
  --ink-soft: #56616f;
  --ink-muted: #7b8795;
  --line: #d8dee7;
  --accent: #1f66d1;
  --accent-strong: #174ca1;
  --dark: #0f1720;
  --dark-raised: #162131;
  --dark-line: #2b3a4d;
  --dark-text: #f3f6f9;
  --dark-soft: #a9b7c7;
  --radius: 6px;
  --container: min(1240px, calc(100vw - 48px));
  font-family:
    "IBM Plex Sans", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(31, 102, 209, 0.35);
  outline-offset: 2px;
}

code {
  border: 1px solid var(--line);
  background: var(--surface-muted);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(40px, 4.8vw, 60px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.14;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.1vw, 40px);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.2;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 62px;
  padding: 0 calc((100vw - var(--container)) / 2);
  border-bottom: 1px solid rgba(216, 222, 231, 0.88);
  background: rgba(245, 247, 250, 0.94);
  backdrop-filter: blur(16px);
}

.utility-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 22;
  min-height: 48px;
  background: linear-gradient(180deg, rgba(8, 13, 19, 0.86), rgba(8, 13, 19, 0.52));
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.utility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1280px, calc(100vw - 64px));
  min-height: 48px;
  margin: 0 auto;
}

.utility-bar-inner p {
  min-width: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.utility-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.utility-actions {
  gap: 16px;
  flex: 0 0 auto;
  min-width: 0;
}

.quick-inquiry-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 900;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.quick-inquiry-pill:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.language-switch {
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 4px;
}

.language-switch button {
  min-width: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.is-active {
  background: #ffffff;
  color: var(--ink);
}

.site-header-overlay {
  position: fixed;
  right: 0;
  left: 0;
  top: 16px;
  width: min(1280px, calc(100vw - 64px));
  min-height: 76px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  grid-template-columns: minmax(250px, 0.8fr) minmax(360px, auto) minmax(220px, 0.8fr);
  padding: 0 30px;
  box-shadow: 0 14px 38px rgba(7, 14, 24, 0.15);
}

.has-utility .site-header-overlay {
  top: 58px;
}

.brand,
.main-nav,
.hero-actions,
.trust-band,
.spec-strip {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 0;
  min-width: 0;
}

.brand-logo {
  display: grid;
  width: clamp(188px, 18vw, 236px);
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
}

.brand-logo img {
  display: block;
  width: 100%;
  max-height: 46px;
  height: auto;
  object-fit: contain;
}

.brand > span:not(.brand-logo) {
  display: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.15;
}

.brand small {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 10px;
}

.main-nav {
  grid-column: 2;
  justify-self: center;
  gap: clamp(28px, 3vw, 46px);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 21px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 13px;
  left: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.header-search {
  display: grid;
  grid-column: 3;
  grid-template-columns: minmax(120px, 1fr) auto;
  justify-self: end;
  width: min(260px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.header-search input,
.header-search button {
  min-width: 0;
  border: 0;
  background: transparent;
}

.header-search input {
  padding: 10px 0 10px 15px;
  color: var(--ink);
  font-size: 13px;
  outline: 0;
}

.header-search input::placeholder {
  color: var(--ink-muted);
}

.header-search button {
  padding: 0 14px;
  background: var(--accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: background 180ms ease;
}

.header-search button:hover {
  background: var(--accent-strong);
}

.button:active,
.floating-action:active {
  transform: translateY(1px);
}

.section,
.hero {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-muted {
  width: 100%;
  background: var(--surface-muted);
}

.section.section-muted {
  box-sizing: border-box;
  padding-right: calc((100vw - var(--container)) / 2);
  padding-left: calc((100vw - var(--container)) / 2);
}

.section-dark {
  background:
    linear-gradient(110deg, rgba(31, 102, 209, 0.2), transparent 34%),
    var(--dark);
  color: var(--dark-text);
}

.eyebrow,
.status,
.catalog-code,
.process-grid span,
.proof-list span {
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
  color: #9fc0ef;
}

.hero-text,
.section-heading p,
.capability-copy > p,
.contact-copy > p,
.product-detail p,
.catalog-card-body p:not(.catalog-code),
.process-grid p,
.product-card p,
.case-card p,
.evidence-card p,
.feedback-grid p,
.proof-list p,
.gap-card p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.section-dark .hero-text,
.section-dark .section-heading p {
  color: var(--dark-soft);
}

.home-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100dvh;
  align-content: center;
  overflow: hidden;
  background: var(--dark);
  color: var(--dark-text);
  padding: 184px calc((100vw - var(--container)) / 2) 150px;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #283646, #111b26 56%, #0a1017);
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 900ms ease,
    transform 4200ms ease;
  will-change: opacity, transform;
}

.home-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-hero-media::before,
.home-hero-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: skewX(-8deg);
}

.home-hero-media::before {
  right: 6vw;
  bottom: 10vh;
  width: min(52vw, 830px);
  height: min(40vw, 560px);
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(255, 255, 255, 0.1) 22% 24%, transparent 24% 46%, rgba(255, 255, 255, 0.08) 46% 48%, transparent 48%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 28%),
    rgba(255, 255, 255, 0.035);
}

.home-hero-media::after {
  right: 14vw;
  top: 24vh;
  width: min(30vw, 430px);
  height: min(20vw, 280px);
  border-color: rgba(31, 102, 209, 0.34);
  background: rgba(31, 102, 209, 0.07);
}

.home-hero-media {
  --hero-scrim-left: rgba(8, 13, 19, 0.92);
  --hero-scrim-mid: rgba(8, 13, 19, 0.58);
  --hero-scrim-right: rgba(8, 13, 19, 0.76);
}

.home-hero-media > .home-hero-slide::before,
.home-hero-media > .home-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero-media > .home-hero-slide::before {
  background:
    linear-gradient(90deg, var(--hero-scrim-left), var(--hero-scrim-mid) 48%, var(--hero-scrim-right)),
    linear-gradient(0deg, rgba(8, 13, 19, 0.5), rgba(8, 13, 19, 0.08) 52%, rgba(8, 13, 19, 0.36));
}

.home-hero-media > .home-hero-slide::after {
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 0,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px,
    transparent 88px
  );
  mix-blend-mode: screen;
  opacity: 0.64;
}

.home-hero-content {
  max-width: 820px;
}

.home-hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.8vw, 86px);
  font-weight: 900;
  line-height: 1.05;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.42);
}

.home-hero .hero-text {
  max-width: 690px;
  color: rgba(242, 245, 248, 0.8);
}

.home-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.home-hero-proof span {
  border: 1px solid rgba(242, 245, 248, 0.26);
  background: rgba(15, 23, 32, 0.38);
  padding: 8px 11px;
  color: rgba(243, 246, 249, 0.82);
  font-size: 13px;
  font-weight: 760;
  backdrop-filter: blur(10px);
}

.home-hero-mobile-actions {
  display: none;
}

.home-hero-carousel {
  position: absolute;
  right: 50%;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(50%);
}

.home-hero-carousel button {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(242, 245, 248, 0.62);
  border-radius: 999px;
  background: rgba(243, 246, 249, 0.24);
  padding: 0;
  cursor: pointer;
  transition:
    width 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.home-hero-carousel button:hover,
.home-hero-carousel button:focus-visible,
.home-hero-carousel button.is-active {
  border-color: rgba(159, 192, 239, 0.72);
  background: #9fc0ef;
}

.home-hero-carousel button.is-active {
  width: 28px;
}

.home-hero-carousel button:active {
  transform: scale(0.92);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: rgba(242, 245, 248, 0.36);
  color: var(--dark-text);
}

.button-secondary:hover {
  border-color: rgba(242, 245, 248, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.home-hero-strip {
  position: absolute;
  right: calc((100vw - var(--container)) / 2);
  bottom: 42px;
  left: calc((100vw - var(--container)) / 2);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 32, 0.76);
  backdrop-filter: blur(12px);
}

.home-hero-strip a {
  display: grid;
  gap: 8px;
  min-height: 118px;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 20px 24px;
  color: var(--dark-text);
  font-size: 18px;
  font-weight: 780;
  transition: background 180ms ease;
}

.home-hero-strip a:last-child {
  border-right: 0;
}

.home-hero-strip a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.home-hero-strip span {
  color: #9fc0ef;
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 13px;
}

.home-hero-strip strong,
.home-hero-strip small {
  display: block;
}

.home-hero-strip small {
  color: rgba(243, 246, 249, 0.66);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

/* Short desktop screens use natural flow: full-size copy, then actions, then carousel controls. */
@media (min-width: 1101px) and (max-height: 780px) {
  .home-hero {
    min-height: auto;
    align-content: start;
    padding-top: 204px;
    padding-bottom: 32px;
  }

  .home-hero-content {
    order: 1;
  }

  .home-hero-strip {
    position: static;
    order: 2;
    margin-top: 40px;
  }

  .home-hero-carousel {
    position: static;
    order: 3;
    justify-self: center;
    margin-top: 18px;
    transform: none;
  }
}

.trust-band {
  width: var(--container);
  margin: 0 auto;
  padding: 26px 0 0;
  gap: 1px;
}

.trust-band div {
  flex: 1;
  min-width: 0;
  min-height: 116px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 22px;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  transition: grid-template-columns 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.advantage-grid article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: var(--surface);
  padding: 26px;
  cursor: default;
  outline: none;
  transition:
    background-color 320ms ease,
    box-shadow 320ms ease,
    color 320ms ease,
    opacity 320ms ease,
    transform 320ms ease;
}

.advantage-grid article::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 42px;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.advantage-grid article:hover,
.advantage-grid article:focus-visible {
  background: #f8fbff;
}

.advantage-grid article:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(42, 114, 222, 0.42);
}

.advantage-ui {
  position: relative;
  width: 118px;
  height: 74px;
  margin: 0 0 24px;
  border: 1px solid rgba(31, 102, 209, 0.18);
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.11), rgba(255, 255, 255, 0) 64%),
    #f7faff;
  overflow: hidden;
}

.advantage-ui::before,
.advantage-ui::after,
.advantage-ui i,
.advantage-ui b {
  position: absolute;
  display: block;
  content: "";
}

.advantage-ui-network::before {
  left: 22px;
  right: 22px;
  top: 36px;
  height: 1px;
  background: rgba(31, 102, 209, 0.35);
}

.advantage-ui-network i {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(31, 102, 209, 0.72);
  background: #ffffff;
}

.advantage-ui-network i:nth-child(1) { left: 15px; top: 16px; }
.advantage-ui-network i:nth-child(2) { left: 50px; top: 8px; }
.advantage-ui-network i:nth-child(3) { left: 83px; top: 18px; }
.advantage-ui-network i:nth-child(4) { left: 49px; top: 46px; }

.advantage-ui-network b {
  left: 52px;
  top: 32px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(31, 102, 209, 0.14);
}

.advantage-ui-inspection i {
  left: 16px;
  right: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(31, 102, 209, 0.12);
}

.advantage-ui-inspection i:nth-child(1) { top: 16px; }
.advantage-ui-inspection i:nth-child(2) { top: 33px; }
.advantage-ui-inspection i:nth-child(3) { top: 50px; }

.advantage-ui-inspection i::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  content: "";
}

.advantage-ui-inspection b {
  right: 14px;
  top: 24px;
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 14px;
}

.advantage-ui-delivery i {
  width: 28px;
  height: 22px;
  border: 2px solid rgba(31, 102, 209, 0.72);
  background: #ffffff;
}

.advantage-ui-delivery i:nth-child(1) { left: 16px; top: 28px; }
.advantage-ui-delivery i:nth-child(2) { left: 45px; top: 20px; }
.advantage-ui-delivery i:nth-child(3) { left: 74px; top: 30px; }

.advantage-ui-delivery b {
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(31, 102, 209, 0));
}

.advantage-ui-cert {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.advantage-ui-cert i {
  position: static;
  display: grid;
  width: 47px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(31, 102, 209, 0.38);
  background: #ffffff;
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.advantage-ui {
  border-color: #bcc8d7;
  background: #fbfcfe;
  color: #203348;
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
}

.advantage-ui-head {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 17px;
  border-bottom: 1px solid #d7e0ea;
  background: #edf3fa;
  padding: 0 6px;
  color: #4e6276;
  font-size: 7px;
  font-weight: 800;
  line-height: 1;
}

.advantage-ui-head b {
  position: static;
  display: block;
  width: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
  color: var(--accent);
  font-size: 8px;
  font-weight: 900;
}

.advantage-ui em {
  position: absolute;
  bottom: 6px;
  left: 7px;
  color: #587089;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.advantage-network-plot {
  position: absolute;
  top: 27px;
  left: 9px;
  width: 72px;
  height: 26px;
}

.advantage-network-plot::before,
.advantage-network-plot::after {
  position: absolute;
  top: 11px;
  width: 45px;
  height: 1px;
  background: #9fb3ca;
  content: "";
}

.advantage-network-plot::before {
  left: 2px;
  transform: rotate(18deg);
}

.advantage-network-plot::after {
  left: 25px;
  transform: rotate(-22deg);
}

.advantage-network-plot i {
  position: absolute;
  z-index: 1;
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid #7e9cbd;
  background: #ffffff;
}

.advantage-network-plot i:nth-child(1) { left: 1px; top: 8px; }
.advantage-network-plot i:nth-child(2) { left: 28px; top: 1px; }
.advantage-network-plot i:nth-child(3) { left: 53px; top: 12px; }
.advantage-network-plot i:nth-child(4) { left: 30px; top: 19px; border-color: var(--accent); background: var(--accent); }

.advantage-check-list {
  display: grid;
  gap: 5px;
  margin: 9px 18px 0 9px;
}

.advantage-check-list i {
  position: relative;
  display: block;
  width: auto;
  height: 4px;
  border: 0;
  border-radius: 0;
  background: #dce5ef;
}

.advantage-check-list i::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 4px;
  background: var(--accent);
  content: "";
}

.advantage-check-list i::after {
  position: absolute;
  top: -2px;
  right: -10px;
  width: 5px;
  height: 3px;
  border-bottom: 1px solid #2667b7;
  border-left: 1px solid #2667b7;
  background: transparent;
  content: "";
  transform: rotate(-45deg);
}

.advantage-order-flow {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 11px 8px 0;
}

.advantage-order-flow i {
  position: relative;
  display: grid;
  width: 24px;
  height: 17px;
  place-items: center;
  border: 1px solid #aebed0;
  background: #ffffff;
  color: #436079;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}

.advantage-order-flow i:not(:last-child)::after {
  position: absolute;
  right: -5px;
  top: 7px;
  width: 4px;
  height: 1px;
  background: #7f9ebe;
  content: "";
}

.advantage-cert-marks {
  display: flex;
  gap: 6px;
  margin: 8px 8px 0;
}

.advantage-cert-marks i {
  position: static;
  display: grid;
  width: 42px;
  height: 25px;
  place-items: center;
  border: 1px solid #89a7c8;
  background: #ffffff;
  color: var(--accent);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}

.advantage-grid article:hover .advantage-ui,
.advantage-grid article:focus-visible .advantage-ui,
.advantage-grid article.is-active .advantage-ui {
  border-color: #7199c6;
  background: #fbfcfe;
  box-shadow: 3px 3px 0 rgba(31, 102, 209, 0.12);
}

/* Compact industrial symbols stay fixed while their parent card expands. */
.advantage-ui {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
}

.advantage-ui > img {
  display: block;
  width: 96px;
  height: 64px;
  object-fit: contain;
}

.advantage-ui > span,
.advantage-ui span i {
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.advantage-ui-network,
.advantage-ui-inspection,
.advantage-ui-delivery,
.advantage-ui-cert {
  color: #326db7;
}

.advantage-factory-body {
  left: 23px;
  top: 34px;
  width: 66px;
  height: 25px;
  border: 2px solid currentColor;
  border-top: 0;
}

.advantage-factory-body i {
  bottom: 6px;
  width: 7px;
  height: 7px;
  background: currentColor;
}

.advantage-factory-body i:nth-child(1) { left: 11px; }
.advantage-factory-body i:nth-child(2) { left: 29px; }
.advantage-factory-body i:nth-child(3) { left: 47px; }

.advantage-factory-roof {
  left: 22px;
  top: 25px;
  width: 68px;
  height: 17px;
  overflow: hidden;
}

.advantage-factory-roof i {
  bottom: -10px;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.advantage-factory-roof i:nth-child(1) { left: -1px; }
.advantage-factory-roof i:nth-child(2) { left: 21px; }
.advantage-factory-roof i:nth-child(3) { left: 43px; }

.advantage-factory-stack {
  left: 76px;
  top: 18px;
  width: 9px;
  height: 18px;
  border: 2px solid currentColor;
  background: #fbfcfe;
}

.advantage-inspection-unit {
  left: 22px;
  top: 23px;
  width: 38px;
  height: 24px;
  border: 2px solid currentColor;
}

.advantage-inspection-unit i {
  top: 6px;
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
}

.advantage-inspection-unit i:nth-child(1) { left: 7px; }
.advantage-inspection-unit i:nth-child(2) { left: 16px; }
.advantage-inspection-unit i:nth-child(3) { left: 25px; }

.advantage-inspection-rail {
  left: 18px;
  top: 52px;
  width: 78px;
  height: 2px;
  background: currentColor;
}

.advantage-inspection-rail i {
  top: 3px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fbfcfe;
}

.advantage-inspection-rail i:nth-child(1) { left: 7px; }
.advantage-inspection-rail i:nth-child(2) { left: 34px; }
.advantage-inspection-rail i:nth-child(3) { left: 61px; }

.advantage-inspection-check {
  left: 73px;
  top: 24px;
  width: 17px;
  height: 10px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(-45deg);
}

.advantage-package {
  left: 32px;
  top: 21px;
  width: 47px;
  height: 38px;
  border: 2px solid currentColor;
}

.advantage-package::before,
.advantage-package::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.advantage-package::before {
  top: 10px;
  left: -2px;
  width: 47px;
  height: 2px;
}

.advantage-package::after {
  top: -2px;
  left: 21px;
  width: 2px;
  height: 14px;
}

.advantage-package i {
  right: 8px;
  bottom: 7px;
  width: 12px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.advantage-package-arrow {
  left: 84px;
  top: 35px;
  width: 14px;
  height: 2px;
  background: currentColor;
}

.advantage-package-arrow::after {
  position: absolute;
  right: -1px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.advantage-certificate {
  left: 34px;
  top: 18px;
  width: 42px;
  height: 43px;
  border: 2px solid currentColor;
  background: #fbfcfe;
}

.advantage-certificate i {
  left: 8px;
  width: 19px;
  height: 2px;
  background: currentColor;
}

.advantage-certificate i:nth-child(1) { top: 10px; }
.advantage-certificate i:nth-child(2) { top: 17px; width: 15px; }
.advantage-certificate i:nth-child(3) { top: 24px; width: 17px; }

.advantage-certificate-seal {
  left: 65px;
  top: 46px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fbfcfe;
}

.advantage-certificate-seal::after {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 5px;
  height: 3px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg);
}

.advantage-grid article:hover .advantage-ui,
.advantage-grid article:focus-visible .advantage-ui,
.advantage-grid article.is-active .advantage-ui {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.advantage-grid[data-active-index="0"] {
  grid-template-columns: minmax(340px, 1.54fr) repeat(3, minmax(0, 0.82fr));
}

.advantage-grid[data-active-index="1"] {
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.54fr) repeat(2, minmax(0, 0.82fr));
}

.advantage-grid[data-active-index="2"] {
  grid-template-columns: repeat(2, minmax(0, 0.82fr)) minmax(340px, 1.54fr) minmax(0, 0.82fr);
}

.advantage-grid[data-active-index="3"] {
  grid-template-columns: repeat(3, minmax(0, 0.82fr)) minmax(340px, 1.54fr);
}

.advantage-grid.is-expanded article:not(.is-active) {
  opacity: 0.72;
}

.advantage-grid.is-expanded article:not(.is-active):hover,
.advantage-grid.is-expanded article:not(.is-active):focus-visible {
  opacity: 1;
}

.advantage-grid article.is-active {
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(42, 114, 222, 0.075), rgba(255, 255, 255, 0) 58%),
    var(--surface);
  box-shadow: 0 18px 44px rgba(14, 31, 53, 0.11);
  transform: translateY(-6px);
}

.advantage-grid article.is-active::after {
  opacity: 1;
  transform: translateX(0);
}

.advantage-grid span {
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 900;
  transition: color 260ms ease;
}

.advantage-grid h3 {
  margin-top: 24px;
  transition:
    color 260ms ease,
    transform 260ms ease;
}

.advantage-grid p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  transition:
    color 260ms ease,
    opacity 260ms ease,
    transform 260ms ease;
}

.advantage-grid.is-expanded article:not(.is-active) p {
  opacity: 0.68;
}

.advantage-grid article.is-active h3 {
  color: var(--ink);
  transform: translateY(-4px);
}

.advantage-grid article.is-active p {
  color: var(--ink);
  transform: translateY(-4px);
}

.factory-strength,
.applications {
  width: 100%;
  padding: 96px calc((100vw - var(--container)) / 2);
}

.factory-metrics,
.category-grid,
.application-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.factory-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.factory-metrics article,
.application-grid article {
  min-width: 0;
  background: var(--surface);
  padding: 24px;
}

.factory-metrics span,
.category-head span,
.category-grid span,
.application-grid span {
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.factory-metrics strong {
  display: block;
  margin-top: 20px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.factory-metrics p,
.application-grid p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.factory-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: 1px;
  min-height: 620px;
  border: 1px solid var(--line);
  background: var(--line);
}

.factory-photo {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 300px;
  align-content: end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  padding: 28px;
  color: var(--dark-text);
}

.factory-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 16, 23, 0.05), rgba(10, 16, 23, 0.78));
}

.factory-photo-large {
  grid-row: span 2;
  background-image:
    linear-gradient(135deg, rgba(31, 102, 209, 0.16), transparent 42%),
    url("./assets/factory/warehouse-packaging.jpg");
}

.factory-photo-packaging {
  background-image: url("./assets/products/packaging/box-1.jpg");
}

.factory-photo-pallets {
  background-image: url("./assets/factory/warehouse-pallets.jpg");
}

.factory-photo span {
  color: #9fc0ef;
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.factory-photo strong {
  margin-top: 10px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
}

.factory-strength {
  overflow: hidden;
}

.factory-strength-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 500px;
  align-items: end;
  margin: -96px calc((var(--container) - 100vw) / 2) 72px;
  padding: 92px max(24px, calc((100vw - var(--container)) / 2));
  background-image: url("./assets/factory/partners/guangming-aerial-desensitized.jpg?v=20260806-redacted1");
  background-position: center;
  background-size: cover;
  color: var(--dark-text);
}

.factory-strength-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 18, 29, 0.86) 0%, rgba(8, 18, 29, 0.55) 48%, rgba(8, 18, 29, 0.2) 100%);
  content: "";
}

.factory-strength-hero-copy {
  max-width: 690px;
}

.factory-strength-hero .eyebrow {
  color: #9fc0ef;
}

.factory-strength-hero h2 {
  max-width: 12em;
  margin: 18px 0 22px;
  color: #ffffff;
  font-size: clamp(38px, 4.3vw, 66px);
  line-height: 1.12;
}

.factory-strength-hero p:not(.eyebrow) {
  max-width: 38em;
  margin: 0;
  color: rgba(243, 246, 249, 0.84);
  font-size: 17px;
  line-height: 1.75;
}

.factory-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.factory-feature-grid + .factory-feature-grid {
  margin-top: 88px;
}

.factory-feature-grid-reversed {
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
}

.factory-feature-copy {
  max-width: 470px;
}

.factory-feature-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.factory-feature-grid-reversed .factory-feature-copy {
  justify-self: end;
}

.factory-feature-grid-reversed .factory-feature-copy h3 {
  max-width: 12em;
  font-size: clamp(28px, 2.7vw, 42px);
  text-wrap: balance;
}

.factory-feature-copy h3 {
  max-width: 11em;
  margin: 18px 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.2;
}

.factory-feature-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.78;
}

.factory-carousel {
  position: relative;
}

.factory-carousel-media {
  position: relative;
  min-height: 420px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid #cbd7e4;
  background: #dce5ef;
  box-shadow: 10px 10px 0 rgba(31, 102, 209, 0.08);
}

.factory-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 520ms ease, transform 900ms ease;
}

.factory-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.factory-carousel-dots {
  display: flex;
  width: max-content;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  margin: 14px auto 0;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.factory-carousel-dots button {
  display: block;
  box-sizing: border-box;
  width: 8px;
  min-width: 8px;
  max-width: 8px;
  height: 8px;
  min-height: 8px;
  max-height: 8px;
  flex: 0 0 8px;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border: 1px solid #8ca2ba;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.factory-carousel-dots button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(31, 102, 209, 0.14);
}

.factory-carousel-dots button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.product-pathways {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
}

.home-catalog {
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.home-catalog-apps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.home-catalog-apps a {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: end;
  justify-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--surface-muted);
  color: var(--ink);
  padding: 28px;
  text-align: center;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.home-catalog-apps a::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.02), rgba(245, 247, 250, 0.92) 72%),
    linear-gradient(90deg, rgba(31, 102, 209, 0.12), transparent 36%);
  content: "";
}

.home-catalog-apps img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
  transform: scale(1.01);
  transition:
    filter 180ms ease,
    transform 220ms ease;
}

.home-catalog-apps a:hover,
.home-catalog-apps a:focus-visible,
.home-catalog-apps a.is-active {
  background: var(--dark);
  color: var(--dark-text);
  box-shadow: inset 0 -4px 0 var(--accent);
}

.home-catalog-apps a:hover::after,
.home-catalog-apps a:focus-visible::after,
.home-catalog-apps a.is-active::after {
  background:
    linear-gradient(180deg, rgba(15, 23, 32, 0.12), rgba(15, 23, 32, 0.88) 75%),
    linear-gradient(90deg, rgba(31, 102, 209, 0.32), transparent 42%);
}

.home-catalog-apps a:hover img,
.home-catalog-apps a:focus-visible img,
.home-catalog-apps a.is-active img {
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.045);
}

.home-catalog-apps span {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 850;
  line-height: 1.1;
}

.home-catalog-apps strong {
  margin-top: 8px;
  color: var(--accent);
  font-size: 14px;
}

.home-catalog-apps a:hover strong,
.home-catalog-apps a:focus-visible strong,
.home-catalog-apps a.is-active strong {
  color: #9fc0ef;
}

.home-catalog-divider {
  height: 1px;
  margin: 28px 32px;
  background: var(--line-strong, var(--line));
}

.home-catalog-panels {
  position: relative;
}

.home-catalog-panel {
  display: none;
}

.home-catalog-panel.is-active {
  display: block;
  animation: catalogPanelIn 180ms ease both;
}

.home-catalog-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px 22px;
}

.home-catalog-panel-head span {
  color: var(--accent);
  font-size: 15px;
  font-weight: 850;
}

.home-catalog-panel-head p {
  max-width: 34em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.6;
}

.home-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-catalog-grid a {
  position: relative;
  display: grid;
  min-height: 340px;
  align-content: space-between;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.06), transparent 46%),
    var(--surface);
  color: var(--ink);
  padding: 24px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.home-catalog-grid a::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.96) 70%),
    linear-gradient(135deg, rgba(31, 102, 209, 0.1), transparent 42%);
  content: "";
}

.home-catalog-grid img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 40%;
  mix-blend-mode: multiply;
  padding: 18px 18px 104px;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1);
  transition:
    filter 180ms ease,
    transform 220ms ease;
}

.home-catalog-grid a:hover,
.home-catalog-grid a:focus-visible {
  background: var(--dark);
  color: var(--dark-text);
  transform: translateY(-2px);
}

.home-catalog-grid a.is-featured {
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.18), transparent 48%),
    var(--surface);
}

.home-catalog-grid a.is-featured:hover,
.home-catalog-grid a.is-featured:focus-visible {
  background: var(--accent);
}

.home-catalog-grid a:hover::after,
.home-catalog-grid a:focus-visible::after {
  background:
    linear-gradient(180deg, rgba(15, 23, 32, 0.08), rgba(15, 23, 32, 0.9) 70%),
    linear-gradient(135deg, rgba(31, 102, 209, 0.42), transparent 48%);
}

.home-catalog-grid a:hover img,
.home-catalog-grid a:focus-visible img {
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.035);
}

.home-catalog-grid span {
  width: fit-content;
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-catalog-grid strong {
  margin-top: 120px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
}

.home-catalog-grid small {
  max-width: 16em;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.home-catalog-grid a:hover span,
.home-catalog-grid a:focus-visible span,
.home-catalog-grid a:hover small,
.home-catalog-grid a:focus-visible small {
  color: rgba(255, 255, 255, 0.78);
}

.home-catalog-more {
  display: flex;
  justify-content: center;
  padding: 28px 32px 32px;
}

@keyframes catalogPanelIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

.category-block-core {
  grid-column: 1 / 2;
}

.category-block + .category-block {
  margin-top: 0;
}

.category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--surface-muted);
  padding: 18px 22px;
}

.category-head h3 {
  margin: 0;
}

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

.category-grid a {
  display: grid;
  gap: 14px;
  min-height: 190px;
  align-content: space-between;
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.08), transparent 44%),
    var(--surface);
  padding: 22px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.category-grid-featured a {
  min-height: 254px;
}

.category-grid strong,
.category-grid small {
  display: block;
}

.category-grid small {
  max-width: 28em;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.category-grid a:hover {
  background: var(--dark);
  color: var(--dark-text);
  transform: translateY(-2px);
}

.category-grid a:hover small {
  color: var(--dark-soft);
}

.category-grid a.is-primary {
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.16), transparent 46%),
    var(--surface);
}

.category-grid a.is-primary:hover {
  background: var(--accent);
}

.category-grid a.is-primary:hover small {
  color: rgba(255, 255, 255, 0.78);
}

.procurement-panel {
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.16), transparent 38%),
    var(--dark);
  color: var(--dark-text);
  padding: 28px;
}

.procurement-panel > span,
.procurement-tags a {
  color: #9fc0ef;
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.procurement-panel h3 {
  margin-top: 26px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.procurement-tags {
  display: grid;
  gap: 1px;
  margin: 22px 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.procurement-tags a {
  background: rgba(255, 255, 255, 0.06);
  padding: 15px 16px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.procurement-tags a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.procurement-panel .button {
  margin-top: auto;
}

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

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

.application-grid article {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(26px, 2.25vw, 42px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.application-grid article::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 3px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.application-grid article:hover {
  z-index: 1;
  background: linear-gradient(135deg, rgba(42, 114, 222, 0.07), rgba(255, 255, 255, 0) 58%), var(--surface);
  box-shadow: 0 16px 32px rgba(14, 31, 53, 0.1);
  transform: translateY(-4px);
}

.application-grid article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.application-icon {
  display: grid;
  width: min(220px, 100%);
  aspect-ratio: 16 / 9;
  place-items: center start;
}

.application-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.application-icon-air {
  width: min(220px, 100%);
}

/* The source files have different internal whitespace; these offsets align the visible marks. */
.application-icon-auto img {
  transform: translateY(18px) scale(1.08);
}

.application-icon-motorcycle img {
  transform: translateY(6px) scale(1.06);
}

.application-icon-marine img {
  transform: translateY(4px) scale(1.04);
}

.application-icon-air img {
  transform: translateY(5px) scale(1.08);
}

.application-index {
  display: block;
  margin-top: 30px;
}

.application-grid h3 {
  margin-top: 24px;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.2;
}

.application-grid p {
  max-width: 18em;
  font-size: 16px;
  line-height: 1.7;
}

.application-grid.has-reveal article {
  opacity: 0;
  transform: translateY(18px);
}

.application-grid.has-reveal article.is-revealed {
  animation: application-card-reveal 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--application-delay, 0ms);
}

@keyframes application-card-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.case-preview-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.global-network {
  overflow: hidden;
}

.global-network .section-heading {
  max-width: 900px;
}

.global-network .section-heading > p:not(.eyebrow) {
  max-width: 860px;
}

.global-map-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  scrollbar-color: rgba(31, 102, 209, 0.4) transparent;
  scrollbar-width: thin;
}

.global-map-canvas {
  position: relative;
  width: 100%;
  min-width: 860px;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #f4f7fb;
}

.global-map-base,
.global-map-routes,
.global-market-points {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.global-map-base {
  display: block;
  object-fit: cover;
}

.global-map-routes {
  overflow: visible;
  pointer-events: none;
}

.global-route {
  fill: none;
  stroke: rgba(31, 102, 209, 0.64);
  stroke-linecap: round;
  stroke-width: 2.2;
  stroke-dasharray: var(--route-length, 2000);
  stroke-dashoffset: var(--route-length, 2000);
  opacity: 0;
  transition:
    stroke 180ms ease,
    stroke-width 180ms ease,
    opacity 180ms ease,
    stroke-dashoffset 920ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--route-delay, 0ms);
}

.global-map-canvas.is-revealed .global-route {
  opacity: 0.68;
  stroke-dashoffset: 0;
}

.global-route.is-active {
  stroke: var(--accent-strong);
  stroke-width: 3.4;
  opacity: 1 !important;
}

.global-route.is-muted {
  opacity: 0.12 !important;
}

.global-market-points {
  z-index: 3;
  pointer-events: none;
}

.global-market {
  position: absolute;
  top: var(--y);
  left: var(--x);
  display: block;
  width: 44px;
  aspect-ratio: 4 / 3;
  cursor: default;
  opacity: 0;
  outline: none;
  pointer-events: auto;
  transform: translate(calc(-50% + var(--offset-x)), calc(-50% + var(--offset-y))) scale(0.86);
  transition:
    opacity 360ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 180ms ease;
  transition-delay: var(--market-delay, 0ms);
}

.global-map-canvas.is-revealed .global-market {
  opacity: 1;
  transform: translate(calc(-50% + var(--offset-x)), calc(-50% + var(--offset-y))) scale(1);
}

.global-market img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(17, 24, 32, 0.15);
  background: var(--surface);
  box-shadow: 0 5px 12px rgba(15, 23, 32, 0.18);
  object-fit: cover;
}

.global-market-label {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  z-index: 2;
  display: block;
  width: max-content;
  max-width: 132px;
  background: var(--dark);
  color: var(--dark-text);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.global-market:hover .global-market-label,
.global-market:focus .global-market-label {
  opacity: 1;
  transform: translate(-50%, 0);
}

.global-market:focus-visible img {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(31, 102, 209, 0.22), 0 8px 18px rgba(31, 102, 209, 0.3);
}

.global-market.is-active {
  z-index: 4;
  filter: saturate(1.1);
}

.global-market.is-active img {
  border-color: rgba(31, 102, 209, 0.72);
  box-shadow: 0 8px 18px rgba(31, 102, 209, 0.3);
  transform: scale(1.12);
}

.global-market.is-muted {
  opacity: 0.52 !important;
}

.global-brand-node {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(31, 102, 209, 0.52);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(31, 102, 209, 0.2);
  transform: translate(-50%, -50%);
}

.global-brand-node img {
  position: relative;
  width: 23px;
  height: 27px;
  object-fit: contain;
}

.global-brand-pulse {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(31, 102, 209, 0.32);
  border-radius: inherit;
  animation: global-brand-pulse 2.8s ease-out infinite;
}

.global-network-cta {
  width: fit-content;
  margin: 28px auto 0;
}

@keyframes global-brand-pulse {
  0% { opacity: 0.8; transform: scale(0.75); }
  70%,
  100% { opacity: 0; transform: scale(1.2); }
}

.home-news {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.home-news-copy h2 {
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.02;
}

html[lang="zh-CN"] .home-news-copy h2 {
  font-size: clamp(36px, 3.8vw, 54px);
  white-space: nowrap;
  word-break: keep-all;
}

.home-news-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.home-news-copy .button {
  width: fit-content;
  margin-top: 26px;
}

.home-news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  min-height: 430px;
  border: 1px solid var(--line);
  background: var(--line);
}

.home-news-card {
  position: relative;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  min-height: 430px;
  flex-direction: column;
  justify-content: end;
  gap: 16px;
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.12), transparent 46%),
    var(--surface-muted);
  color: var(--dark-text);
  padding: clamp(24px, 3vw, 40px);
  transition:
    transform 180ms ease;
}

.home-news-card:hover,
.home-news-card:focus-visible {
  transform: translateY(-2px);
  text-decoration: none;
}

.home-news-media,
.home-news-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-news-media {
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.18), transparent 52%),
    var(--dark);
}

.home-news-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.home-news-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 13, 18, 0.16), rgba(8, 13, 18, 0.78)),
    linear-gradient(135deg, rgba(31, 102, 209, 0.18), transparent 54%);
  transition: background 220ms ease;
}

.home-news-card:hover .home-news-media img,
.home-news-card:focus-visible .home-news-media img {
  filter: blur(5px) brightness(0.7);
  transform: scale(1.08);
}

.home-news-card:hover .home-news-overlay,
.home-news-card:focus-visible .home-news-overlay {
  background:
    linear-gradient(180deg, rgba(8, 13, 18, 0.28), rgba(8, 13, 18, 0.86)),
    linear-gradient(135deg, rgba(31, 102, 209, 0.22), transparent 54%);
}

.home-news-content {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.home-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.home-news-meta span,
.home-news-meta time {
  color: #b8d2f7;
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}

.home-news-card strong {
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.18;
  text-wrap: balance;
}

.home-news-summary {
  display: block;
  max-width: 34em;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    max-height 220ms ease,
    opacity 180ms ease,
    transform 220ms ease;
}

.home-news-read-pill {
  margin-top: 8px;
  border-color: rgba(255, 255, 255, 0.2);
  background: #ffffff;
  color: var(--accent);
  min-height: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    max-height 220ms ease,
    min-height 220ms ease,
    opacity 180ms ease,
    padding 220ms ease,
    transform 220ms ease;
}

.home-news-card:hover .home-news-summary,
.home-news-card:focus-visible .home-news-summary {
  max-height: 9rem;
  opacity: 1;
  transform: translateY(0);
}

.home-news-card:hover .home-news-read-pill,
.home-news-card:focus-visible .home-news-read-pill {
  min-height: 40px;
  max-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 1;
  transform: translateY(0);
}

.news-page-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 112px 0 34px;
}

.news-page-hero .eyebrow {
  color: var(--accent);
}

.news-page-hero h1 {
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 520;
  line-height: 1;
}

.news-page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.news-list-section {
  padding-top: 0;
}

.news-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.news-list-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: 0;
  min-height: 260px;
  background: var(--surface);
}

.news-list-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.news-list-card img,
.news-list-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.news-list-card img {
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.news-list-image-link:hover img {
  transform: scale(1.025);
}

.news-list-placeholder {
  display: grid;
  align-content: end;
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.14), transparent 44%),
    repeating-linear-gradient(
      -45deg,
      rgba(17, 24, 32, 0.06) 0,
      rgba(17, 24, 32, 0.06) 1px,
      transparent 1px,
      transparent 18px
    ),
    var(--surface-muted);
  padding: 22px;
}

.news-list-placeholder span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.news-list-copy {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(28px, 4vw, 52px);
}

.news-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news-list-meta time,
.news-list-meta span,
.news-list-meta em {
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.news-list-copy h2 {
  max-width: 32em;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  text-wrap: balance;
}

.news-list-copy h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.news-list-copy h2 a:hover {
  color: var(--accent);
}

.news-list-copy p {
  max-width: 56em;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.news-read-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 102, 209, 0.22);
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.news-read-pill:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #ffffff;
  transform: translateY(-1px);
  text-decoration: none;
}

.news-loading {
  background: var(--surface);
  color: var(--ink-soft);
  padding: 34px;
}

.news-article {
  background: var(--surface);
}

.news-back-link {
  display: inline-flex;
  width: fit-content;
  margin: 34px 32px 28px;
  color: var(--accent);
  font-weight: 850;
}

.news-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 0;
  align-items: start;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.news-article-main {
  min-width: 0;
  background: var(--surface);
}

.news-article-cover {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.news-article-body {
  display: grid;
  gap: 22px;
  max-width: 920px;
  padding: clamp(30px, 5vw, 64px);
}

.news-article-body h2 {
  max-width: 15em;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 540;
  line-height: 1.08;
  text-wrap: balance;
}

.news-article-summary {
  max-width: 48em;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.7;
}

.news-article-content {
  display: grid;
  gap: 18px;
  max-width: 56em;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.82;
}

.news-recommendations {
  position: sticky;
  top: 138px;
  display: grid;
  gap: 0;
  max-height: calc(100vh - 160px);
  overflow: auto;
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.news-recommendations-head {
  display: grid;
  gap: 6px;
  padding: 26px 24px 22px;
  border-bottom: 1px solid var(--line);
}

.news-recommendations-head span {
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-recommendations-head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.news-recommendations-list {
  display: grid;
}

.news-recommendation-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 124px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 16px;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.news-recommendation-item:hover {
  background: var(--surface-muted);
  text-decoration: none;
}

.news-recommendation-item img,
.news-recommendation-thumb {
  display: block;
  width: 96px;
  height: 76px;
  object-fit: cover;
}

.news-recommendation-thumb {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.12), transparent 52%),
    var(--surface-muted);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.news-recommendation-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.news-recommendation-meta {
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.news-recommendation-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 680px;
}

.product-grid,
.gap-grid,
.process-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.case-grid,
.evidence-grid,
.feedback-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.case-product-band {
  margin: 0 auto;
  padding: 48px 0 0;
}

.case-product-band img {
  display: block;
  width: 100%;
  aspect-ratio: 3.2 / 1;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: center;
}

.collaboration-archive {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(238, 242, 246, 0.7)),
    var(--surface-muted);
}

.archive-heading {
  max-width: 800px;
}

.archive-title-break {
  display: none;
}

.collaboration-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  min-width: 0;
}

.collaboration-route {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px;
  min-height: 430px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(17, 24, 32, 0.055);
}

.collaboration-route::after {
  position: absolute;
  right: -94px;
  bottom: -132px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(31, 102, 209, 0.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.collaboration-route-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 0 30px 30px;
}

.collaboration-route-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.collaboration-route-topline span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.collaboration-route-topline strong {
  font-family: inherit;
  font-weight: 900;
}

.collaboration-route h3 {
  max-width: 11.5em;
  margin: 30px 0 16px;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.3;
}

.collaboration-route-copy > p {
  max-width: 23em;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.74;
}

.evidence-field-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
  list-style: none;
}

.evidence-field-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.evidence-field-list li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.collaboration-route-visual {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 24px 24px 0;
}

.collaboration-route-visual img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.collaboration-route-customer .collaboration-route-visual img {
  transform: scale(0.9);
  transform-origin: right bottom;
}

.collaboration-route-factory .collaboration-route-visual {
  background: linear-gradient(135deg, transparent 42%, rgba(31, 102, 209, 0.06));
}

.collaboration-route-customer .collaboration-route-visual {
  background: linear-gradient(135deg, transparent 42%, rgba(17, 24, 32, 0.035));
}

.case-type-grid,
.factory-case-grid,
.supply-network-grid,
.quality-proof-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.case-type-grid article {
  min-height: 260px;
  background: var(--surface);
  padding: 28px;
}

.case-type-grid span,
.supply-network-card span,
.quality-proof-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.case-type-grid h3 {
  margin-top: 48px;
}

.factory-case-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.86fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: clamp(440px, 33vw, 590px);
  gap: 14px;
  border: 0;
  background: transparent;
}

.factory-collaboration-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  background: var(--dark);
}

.factory-collaboration-card-primary {
  grid-row: span 2;
  min-height: 0;
}

.factory-collaboration-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.factory-collaboration-card-primary img {
  object-position: center;
}

.factory-collaboration-card-secondary img {
  object-position: center 42%;
}

.factory-collaboration-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 50px 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(8, 14, 21, 0.9));
  color: #ffffff;
}

.factory-collaboration-card figcaption strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.factory-collaboration-card figcaption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

.customer-feedback-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 172px;
  gap: 14px;
}

.customer-feedback-card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0;
  color: var(--ink);
  cursor: zoom-in;
}

.customer-feedback-card-primary {
  grid-column: span 7;
  grid-row: span 2;
}

.customer-feedback-card-secondary {
  grid-column: span 5;
}

.customer-feedback-card-compact {
  grid-column: span 4;
}

.customer-feedback-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 240ms ease;
}

.customer-feedback-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 5px;
  padding: 56px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(8, 14, 21, 0.9));
  color: #ffffff;
  text-align: left;
}

.customer-feedback-card-copy strong {
  font-size: 15px;
  font-weight: 850;
  line-height: 1.3;
}

.customer-feedback-card-copy span {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.customer-feedback-card-primary .customer-feedback-card-copy {
  padding: 74px 26px 24px;
}

.customer-feedback-card-primary .customer-feedback-card-copy strong {
  font-size: 18px;
}

.customer-feedback-card:focus-visible {
  z-index: 1;
  outline: 3px solid rgba(31, 102, 209, 0.65);
  outline-offset: 3px;
}

.customer-feedback-lightbox {
  width: min(1120px, calc(100vw - 40px));
  max-width: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.customer-feedback-lightbox::backdrop {
  background: rgba(6, 11, 17, 0.74);
  backdrop-filter: blur(4px);
}

.customer-feedback-lightbox-dialog {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(5, 12, 18, 0.36);
}

.customer-feedback-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(8, 14, 21, 0.76);
  color: #ffffff;
  cursor: pointer;
}

.customer-feedback-lightbox-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: stretch;
}

.customer-feedback-lightbox-content > img {
  display: block;
  width: 100%;
  max-height: min(760px, calc(100vh - 48px));
  background: var(--surface-muted);
  object-fit: contain;
}

.customer-feedback-lightbox-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  padding: 30px;
}

.customer-feedback-lightbox-copy > p:first-child {
  margin-bottom: 16px;
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.customer-feedback-lightbox-copy h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

.customer-feedback-lightbox-copy > p:not(:first-child) {
  margin-bottom: 24px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.customer-feedback-lightbox-copy small {
  color: var(--ink-muted);
  line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
  .factory-collaboration-card:hover img {
    transform: scale(1.025);
  }

  .customer-feedback-card:hover img {
    transform: scale(1.025);
  }
}

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

.case-card {
  display: grid;
  min-height: 390px;
  align-content: start;
  gap: 18px;
  overflow: hidden;
  background: var(--surface);
  padding: 26px;
}

.case-card.is-featured {
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.1), transparent 44%),
    var(--surface);
}

.case-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.case-card-head span,
.case-card-head strong,
.case-meta,
.evidence-card > span,
.feedback-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.case-card-head span {
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
}

.case-card h3 {
  max-width: 18em;
}

.supply-network-card h3,
.quality-proof-card h3 {
  max-width: 18em;
}

.case-card dl {
  display: grid;
  gap: 1px;
  margin: auto 0 0;
  background: var(--line);
}

.case-card dl div {
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
}

.case-card dt {
  margin-bottom: 6px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 800;
}

.case-card dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.product-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  background: var(--surface);
  padding: 24px;
  transition: background 180ms ease;
}

.product-card:hover {
  background: #f9fbfe;
}

.product-card-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 501px;
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.14), transparent 48%),
    var(--surface);
}

.product-card .status {
  margin-bottom: 30px;
}

.product-card a,
.catalog-card a {
  display: inline-flex;
  margin-top: auto;
  color: var(--accent);
  font-size: 15px;
  font-weight: 850;
}

.image-slot,
.asset-slot {
  display: grid;
  align-content: end;
  min-height: 420px;
  border: 1px solid rgba(169, 183, 199, 0.36);
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.18), transparent 38%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.065) 0,
      rgba(255, 255, 255, 0.065) 1px,
      transparent 1px,
      transparent 70px
    ),
    var(--dark-raised);
  padding: 26px;
}

.image-slot span,
.asset-slot span {
  color: var(--dark-soft);
  font-size: 15px;
}

.image-slot strong,
.asset-slot strong {
  margin-top: 8px;
  color: var(--dark-text);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 460;
  line-height: 1.12;
}

.image-slot-square {
  min-height: 500px;
}

.image-slot-photo {
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border: 0;
  background-position: center;
  background-size: cover;
}

.image-slot-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 16, 23, 0.06), rgba(10, 16, 23, 0.78));
}

.image-slot-photo span,
.image-slot-photo strong {
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.image-slot-warehouse {
  background-image: url("./assets/factory/warehouse-pallets.jpg");
}

.capability {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 96px calc((100vw - var(--container)) / 2);
}

.capability-intro {
  align-items: start;
}

.capability-intro .capability-media {
  position: sticky;
  top: 116px;
}

.capability-photo {
  position: relative;
  min-height: min(620px, calc(100vh - 156px));
  margin: 0;
  overflow: hidden;
  background: var(--surface-muted);
}

.capability-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 20, 0.02) 38%, rgba(7, 13, 20, 0.78) 100%);
  pointer-events: none;
}

.capability-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.capability-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 8px;
  color: #ffffff;
}

.capability-photo figcaption span {
  color: #b8d4ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.capability-photo figcaption strong {
  max-width: 12em;
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 1.2;
}

.capability-copy > .eyebrow {
  margin-bottom: 14px;
}

.capability-copy > h2 {
  max-width: 12em;
}

.proof-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 8px;
  background: var(--surface);
  padding: 20px;
}

.capability-proof-list {
  margin-top: 38px;
}

.capability-proof-list article {
  min-height: 136px;
  transition:
    opacity 440ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms ease;
}

.capability-proof-list.has-reveal article {
  opacity: 0;
  transform: translateY(22px);
}

.capability-proof-list.has-reveal article.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.capability-proof-list article:hover {
  background: #f8fbff;
}

.proof-list h3,
.proof-list p {
  grid-column: 2;
}

.proof-list h3 {
  margin: 0;
}

.proof-list p {
  margin: 0;
}

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

.supply-network-card {
  display: grid;
  min-height: 270px;
  align-content: start;
  gap: 18px;
  background: var(--surface);
  padding: 24px;
}

.supply-network-card h3 {
  margin-top: 38px;
}

.product-coverage-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.product-coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 76px;
  align-items: start;
}

.product-coverage-copy {
  min-width: 0;
}

.product-coverage-copy > h2 {
  max-width: 13em;
}

.product-coverage-copy > p:not(.eyebrow) {
  max-width: 44em;
}

.product-coverage-list {
  display: grid;
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-coverage-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 8px;
  min-height: 132px;
  background: var(--surface);
  padding: 20px;
  transition:
    opacity 440ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms ease;
}

.product-coverage-list article:hover {
  background: #f8fbff;
}

.product-coverage-list span {
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}

.product-coverage-list h3,
.product-coverage-list p {
  grid-column: 2;
}

.product-coverage-list h3,
.product-coverage-list p {
  margin: 0;
}

.product-coverage-list.has-reveal article {
  opacity: 0;
  transform: translateY(22px);
}

.product-coverage-list.has-reveal article.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.product-coverage-cta {
  margin-top: 28px;
}

.product-coverage-media {
  position: sticky;
  top: 116px;
  min-width: 0;
}

.product-coverage-photo {
  position: relative;
  display: grid;
  min-height: min(620px, calc(100vh - 156px));
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(31, 102, 209, 0.06), transparent 46%),
    var(--surface);
}

.product-coverage-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  padding: 34px;
}

.product-coverage-photo figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 7px;
  pointer-events: none;
}

.product-coverage-photo figcaption span {
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}

.product-coverage-photo figcaption strong {
  color: var(--ink);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.15;
}

.quality-proof-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.quality-proof-grid {
  display: grid;
  gap: 28px;
}

.quality-archive-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.quality-archive-tab {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-muted);
  padding: 0 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.quality-archive-tab span {
  display: grid;
  min-width: 22px;
  min-height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  color: inherit;
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 11px;
}

.quality-archive-tab:hover,
.quality-archive-tab:focus-visible,
.quality-archive-tab.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.quality-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.quality-archive-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 0;
  text-align: left;
  font: inherit;
  cursor: zoom-in;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.quality-archive-card:hover,
.quality-archive-card:focus-visible {
  z-index: 1;
  border-color: rgba(31, 102, 209, 0.72);
  box-shadow: 0 14px 32px rgba(16, 29, 43, 0.12);
  transform: translateY(-3px);
}

.quality-archive-card.is-landscape {
  grid-column: span 2;
}

.quality-archive-preview {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.06), transparent 48%),
    #ffffff;
  padding: 16px;
}

.quality-archive-card.is-portrait .quality-archive-preview {
  aspect-ratio: 0.72;
}

.quality-archive-card.is-landscape .quality-archive-preview {
  aspect-ratio: 1.56;
}

.quality-archive-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quality-archive-meta {
  display: grid;
  gap: 6px;
  padding: 15px 16px 16px;
}

.quality-archive-meta > span,
.quality-archive-meta em {
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.quality-archive-meta strong {
  line-height: 1.4;
}

.quality-archive-meta em {
  color: var(--ink-muted);
}

.quality-lightbox[hidden] {
  display: none;
}

.quality-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}

.quality-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 13, 20, 0.82);
}

.quality-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1160px, 100%);
  max-height: min(900px, calc(100vh - 56px));
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #101a24;
  color: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.quality-lightbox-toolbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 18px 0 22px;
}

.quality-lightbox-toolbar p,
.quality-lightbox-count {
  margin: 0;
  color: #dbe6f2;
  font-size: 14px;
  font-weight: 750;
}

.quality-lightbox-toolbar button,
.quality-lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  cursor: pointer;
}

.quality-lightbox-toolbar button {
  min-height: 34px;
  padding: 0 12px;
}

.quality-lightbox-stage {
  display: grid;
  min-height: 0;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.quality-lightbox-stage img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: calc(min(900px, 100vh - 56px) - 130px);
  object-fit: contain;
}

.quality-lightbox-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 24px;
}

.quality-lightbox-count {
  padding: 0 22px 18px;
  text-align: center;
}

.has-quality-lightbox {
  overflow: hidden;
}

.quality-proof-grid {
  display: block;
}

.quality-carousel {
  position: relative;
}

.quality-carousel-viewport {
  overflow: hidden;
}

.quality-carousel-track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quality-carousel-slide {
  display: grid;
  width: 100%;
  min-width: 100%;
  grid-template-columns: repeat(var(--certificate-count), minmax(0, 1fr));
  align-items: end;
  gap: 22px;
  padding: 8px 6px 2px;
}

.quality-certificate {
  display: grid;
  min-width: 0;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transform-origin: center bottom;
}

.quality-certificate img {
  display: block;
  width: 100%;
  max-height: 510px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(18, 31, 45, 0.1));
  transition: filter 180ms ease;
}

.quality-certificate:hover img,
.quality-certificate:focus-visible img {
  filter: drop-shadow(0 16px 24px rgba(18, 31, 45, 0.18));
}

.quality-certificate:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

.quality-certificate.is-emphasized {
  animation: quality-certificate-emphasis 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes quality-certificate-emphasis {
  0%,
  100% {
    transform: scale(1);
  }

  46% {
    transform: scale(1.055);
  }
}

.quality-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.quality-carousel-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.quality-carousel-arrow:hover,
.quality-carousel-arrow:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.quality-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quality-carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #bcc7d4;
  padding: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.quality-carousel-dots button.is-active {
  background: var(--accent);
  transform: scale(1.35);
}

.quality-carousel-dots button:focus-visible {
  outline: 3px solid rgba(31, 102, 209, 0.36);
  outline-offset: 3px;
}

.capability-case-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.capability-case-link h2 {
  max-width: 820px;
}

.delivery-archive {
  background: var(--surface);
}

.delivery-archive-heading {
  max-width: 1120px;
  margin: 0 auto 52px;
  text-align: center;
}

.delivery-archive-heading .eyebrow {
  color: var(--accent);
}

.delivery-archive-heading h2 {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(30px, 3.1vw, 44px);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.delivery-archive-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.delivery-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px) clamp(18px, 2vw, 28px);
}

.delivery-archive-item {
  margin: 0;
  min-width: 0;
}

.delivery-archive-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-muted);
}

.delivery-archive-media-product {
  background: #fff;
}

.delivery-archive-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.delivery-archive-item figcaption {
  margin-top: 14px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .delivery-archive-item:hover img {
    transform: scale(1.025);
  }
}

.contact-meta,
.inquiry-form {
  border: 1px solid var(--line);
  background: var(--surface);
}

.materials,
.catalog-process {
  width: 100%;
  padding-right: calc((100vw - var(--container)) / 2);
  padding-left: calc((100vw - var(--container)) / 2);
}

.gap-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: var(--dark-line);
  background: var(--dark-line);
}

.gap-card {
  min-height: 150px;
  background: var(--dark-raised);
  padding: 22px;
}

.gap-card p {
  color: var(--dark-soft);
}

.catalog-hero,
.subpage-hero {
  padding-right: calc((100vw - var(--container)) / 2);
  padding-left: calc((100vw - var(--container)) / 2);
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-content: start;
  min-height: 0;
  padding-top: 158px;
  padding-bottom: 72px;
}

.catalog-hero-copy {
  min-width: 0;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.catalog-hero-copy h1 {
  max-width: 100%;
  margin-bottom: 30px;
  color: var(--dark-text);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 650;
  line-height: 1.18;
  text-align: center;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.catalog-hero-breadcrumb {
  display: flex;
  width: min(100%, 1080px);
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  color: var(--dark-soft);
  font-size: 16px;
  font-weight: 650;
}

.catalog-hero-breadcrumb a {
  color: var(--dark-text);
}

.catalog-hero-breadcrumb a:hover {
  color: #9fc0ef;
}

.catalog-hero-breadcrumb span {
  color: #9fc0ef;
  font-size: 25px;
  line-height: 1;
}

.catalog-hero-text {
  max-width: 100%;
  color: var(--dark-soft);
  font-size: 17px;
  line-height: 1.82;
}

.catalog-hero-text p {
  margin: 0;
  text-wrap: pretty;
}

.catalog-hero-text p + p {
  margin-top: 17px;
}

.subpage-hero {
  padding-top: 158px;
  padding-bottom: 92px;
}

.subpage-hero h1 {
  max-width: 820px;
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 650;
  line-height: 1.18;
}

.subpage-hero .hero-text {
  max-width: 720px;
  color: var(--dark-soft);
}

.search-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: end;
  min-height: 430px;
  padding: 158px calc((100vw - var(--container)) / 2) 64px;
}

.search-hero h1 {
  max-width: 780px;
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 650;
  line-height: 1.18;
}

.search-hero .hero-text {
  max-width: 720px;
  color: var(--dark-soft);
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 58px;
  overflow: hidden;
  border: 1px solid rgba(169, 183, 199, 0.34);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 14, 24, 0.16);
}

.search-form input,
.search-form button {
  min-width: 0;
  border: 0;
  font: inherit;
}

.search-form input {
  padding: 0 18px;
  color: var(--ink);
  outline: 0;
}

.search-form button {
  padding: 0 24px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 850;
  cursor: pointer;
  transition: background 180ms ease;
}

.search-form button:hover {
  background: var(--accent-strong);
}

.search-section {
  min-height: 360px;
}

.search-summary,
.search-status {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.search-summary {
  margin-bottom: 24px;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.search-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
}

.search-result {
  display: grid;
  grid-template-rows: 218px minmax(0, 1fr);
  height: 460px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.search-result-media {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink-muted);
  padding: 16px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.search-result-image-frame {
  position: absolute;
  inset: 16px;
  display: grid;
  place-items: center;
}

.search-result-image-frame img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 186px;
  object-fit: contain;
}

.search-result-image-placeholder {
  display: grid;
  gap: 8px;
  place-items: center;
  color: var(--accent);
  font-size: 18px;
  font-weight: 850;
  text-align: center;
}

.search-result-image-placeholder small {
  color: var(--ink-muted);
  font-size: 12px;
}

.search-result-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 18px 20px;
}

.search-result-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--ink-muted);
  font-size: 13px;
}

.search-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 2px;
  background: var(--surface-muted);
  color: var(--accent);
  padding: 0 10px;
  font-weight: 850;
}

.search-result h2,
.search-empty h2 {
  margin-bottom: 10px;
  font-size: 23px;
}

.search-result h2 {
  display: -webkit-box;
  min-height: 0;
  overflow: hidden;
  font-size: 21px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.search-result h2 a:hover {
  color: var(--accent);
}

.search-empty p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.search-result-specs {
  display: grid;
  gap: 0;
  margin: 2px 0 14px;
  border-top: 1px solid var(--line);
}

.search-result-specs > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}

.search-result-specs dt {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 850;
}

.search-result-specs dd {
  display: -webkit-box;
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
  overflow-wrap: anywhere;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.search-result-specs > div:first-child dd {
  color: var(--accent);
  font-family: Menlo, Consolas, monospace;
  font-weight: 900;
}

.search-result-specs > div:first-child dd {
  -webkit-line-clamp: 1;
}

.search-result-link {
  width: fit-content;
  margin-top: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 850;
}

.search-result-link:hover,
.search-result-link:focus-visible {
  color: var(--accent-strong);
}

.product-center {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.product-sidebar {
  position: sticky;
  top: 96px;
  min-width: 0;
  max-height: calc(100vh - 116px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
  scrollbar-color: #aab7c6 transparent;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

.product-sidebar::-webkit-scrollbar {
  width: 6px;
}

.product-sidebar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #aab7c6;
}

.product-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.product-sidebar h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.filter-group + .filter-group {
  margin-top: 24px;
}

.filter-group > span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 850;
}

.product-tabs {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-tab-group {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.product-tab-group:not(.is-expanded) > :not(.product-tab) {
  display: none;
}

.product-tab {
  display: grid;
  gap: 8px;
  width: 100%;
  border: 0;
  background: var(--surface);
  color: var(--ink);
  padding: 18px;
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.product-tab span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.product-tab.is-active,
.product-tab:hover {
  background: var(--dark);
  color: var(--dark-text);
}

.product-tab.is-active span,
.product-tab:hover span {
  color: #9fc0ef;
}

.vehicle-make-tabs {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.filter-series-tabs {
  margin-left: 24px;
  border-left: 5px solid rgba(31, 102, 209, 0.22);
}

.filter-series-tabs .vehicle-make-tab {
  padding-left: 28px;
  background: #f9fbfe;
}

.filter-hint {
  background: var(--surface);
  color: var(--ink-muted);
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.6;
}

.vehicle-make-tab {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  border: 0;
  background: #f7f9fc;
  color: var(--ink);
  padding: 12px 18px 12px 30px;
  text-align: left;
  line-height: 1.4;
  overflow-wrap: anywhere;
  white-space: normal;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.vehicle-make-tab span {
  order: 2;
  color: var(--ink-muted);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 850;
}

.vehicle-make-tab.is-active,
.vehicle-make-tab:hover {
  background: rgba(31, 102, 209, 0.1);
  color: var(--accent);
}

.vehicle-make-tab.is-active span,
.vehicle-make-tab:hover span {
  color: var(--accent);
}

.product-main {
  min-width: 0;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.product-main.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.product-detail {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.09), transparent 46%),
    var(--surface);
  padding: 32px;
}

.product-detail h2 {
  max-width: 780px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1px;
  margin-top: 1px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--line);
}

@media (max-width: 1120px) {
  .product-center {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .product-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    scrollbar-gutter: auto;
  }

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

  .product-tab-group.is-expanded {
    grid-column: 1 / -1;
  }

  .product-tab-group.is-expanded .vehicle-make-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.catalog-card {
  display: grid;
  grid-template-rows: 218px minmax(0, 1fr);
  height: 460px;
  overflow: hidden;
  background: #ffffff;
}

.catalog-card.is-featured {
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.1), transparent 42%),
    var(--surface);
}

.catalog-card-media {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: 16px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.catalog-card > .catalog-card-media {
  display: grid;
  margin-top: 0;
}

.catalog-card-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 186px;
  object-fit: contain;
  object-position: center;
}

.catalog-card-media > span {
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 700;
}

.catalog-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  padding: 18px 22px;
}

.catalog-card-body h3 {
  display: -webkit-box;
  min-height: 0;
  margin-bottom: 8px;
  overflow: hidden;
  font-size: 21px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-card-body h3 a {
  display: inline;
  margin-top: 0;
}

.catalog-card-specs {
  display: grid;
  gap: 0;
  margin: 2px 0 14px;
  border-top: 1px solid var(--line);
}

.catalog-card-specs > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}

.catalog-card-specs dt {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 850;
}

.catalog-card-specs dd {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-card-specs > div:first-child dd {
  color: var(--accent);
  font-family: Menlo, Consolas, monospace;
  font-weight: 900;
  -webkit-line-clamp: 1;
}

.catalog-card-link {
  width: fit-content;
  margin-top: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 850;
}

.catalog-card-link:hover,
.catalog-card-link:focus-visible {
  color: var(--accent-strong);
}

.catalog-update-card {
  display: grid;
  min-height: 460px;
  align-content: center;
  justify-items: start;
  background: #ffffff;
  padding: clamp(30px, 4vw, 54px);
}

.catalog-update-line {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--accent);
}

.catalog-update-title {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
}

.catalog-update-dots {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.catalog-update-detail {
  max-width: 290px;
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.catalog-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  min-height: 300px;
  align-content: center;
  background: var(--surface);
  padding: 36px;
}

.catalog-empty span {
  width: fit-content;
  color: var(--accent);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-empty h3,
.catalog-empty p {
  max-width: 620px;
}

.catalog-empty .button {
  width: fit-content;
}

.product-detail-page-shell {
  background: var(--surface);
  padding-top: 158px;
}

.product-breadcrumb-bar {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: #edf0f2;
  padding: 0 calc((100vw - var(--container)) / 2);
  color: #06090d;
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 430;
  line-height: 1.25;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.product-breadcrumb-bar a,
.product-breadcrumb-bar strong,
.product-breadcrumb-bar span {
  flex: 0 0 auto;
}

.product-breadcrumb-bar a {
  transition: color 180ms ease;
}

.product-breadcrumb-bar a:hover,
.product-breadcrumb-bar a:focus-visible {
  color: var(--accent);
}

.product-breadcrumb-bar span {
  color: #111820;
  font-size: 1.1em;
  line-height: 1;
}

.product-breadcrumb-bar strong {
  max-width: min(760px, 48vw);
  overflow: hidden;
  font-weight: 430;
  text-overflow: ellipsis;
}

.product-detail-page {
  width: var(--container);
  margin: 0 auto;
  padding: 56px 0 96px;
}

.product-detail-body .product-detail-page {
  width: min(1240px, calc(100vw - 160px));
  margin-right: 0;
  margin-left: max(24px, calc((100vw - 1240px) / 2));
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 48px;
  align-items: start;
}

.product-detail-gallery {
  display: grid;
  min-width: 0;
  gap: 14px;
  align-self: start;
}

.product-detail-main-image {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.06), transparent 44%),
    #ffffff;
  padding: 32px;
}

.product-detail-main-image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-gallery.is-loading .product-detail-main-image::after {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(31, 102, 209, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  content: "";
  animation: gallery-image-loading 720ms linear infinite;
  pointer-events: none;
}

@keyframes gallery-image-loading {
  to {
    transform: rotate(360deg);
  }
}

.product-detail-gallery.is-empty {
  min-height: 480px;
  align-items: center;
  justify-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.06), transparent 44%),
    #ffffff;
  padding: 32px;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(17, 24, 32, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 0 0 4px;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.product-gallery-arrow.is-prev {
  left: 14px;
}

.product-gallery-arrow.is-next {
  right: 14px;
}

.product-gallery-arrow:hover,
.product-gallery-arrow:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.product-gallery-arrow:disabled {
  cursor: default;
  opacity: 0.28;
}

.product-gallery-counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(17, 24, 32, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-soft);
  padding: 6px 9px;
  font-family: Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.product-gallery-thumbnails {
  display: grid;
  grid-auto-columns: 88px;
  grid-auto-flow: column;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  overscroll-behavior-inline: contain;
  scrollbar-color: rgba(31, 102, 209, 0.38) transparent;
  scrollbar-width: thin;
}

.product-gallery-thumbnail {
  position: relative;
  display: grid;
  width: 88px;
  height: 76px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
  padding: 6px;
  cursor: pointer;
  scroll-snap-align: start;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-gallery-thumbnail:hover,
.product-gallery-thumbnail:focus-visible,
.product-gallery-thumbnail.is-active {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.product-gallery-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-thumbnail.is-unavailable {
  cursor: not-allowed;
  opacity: 0.4;
}

.product-gallery-thumbnail span {
  position: absolute;
  right: 3px;
  bottom: 3px;
  background: rgba(15, 23, 32, 0.78);
  color: #ffffff;
  padding: 2px 4px;
  font-family: Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
}

.product-detail-image-error {
  display: grid;
  gap: 8px;
  place-items: center;
  color: var(--ink-soft);
  text-align: center;
}

.product-detail-image-error[hidden] {
  display: none;
}

.product-detail-image-error span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
}

.product-detail-image-error small {
  font-size: 13px;
}

.product-detail-image-placeholder {
  display: grid;
  gap: 14px;
  width: 100%;
  min-height: 440px;
  align-content: center;
  justify-items: center;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(17, 24, 32, 0.06) 0,
      rgba(17, 24, 32, 0.06) 1px,
      transparent 1px,
      transparent 46px
    ),
    #eef2f6;
  color: var(--ink-soft);
  text-align: center;
}

.product-detail-image-placeholder span,
.product-detail-image-placeholder small {
  color: var(--accent);
  font-family: Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-detail-image-placeholder strong {
  max-width: 78%;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.3;
}

.product-detail-content {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding-top: 2px;
}

.product-detail-heading {
  display: grid;
  min-width: 0;
  gap: 6px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 20px;
}

.product-detail-heading .eyebrow {
  margin-bottom: 8px;
}

.product-detail-content h1 {
  width: 100%;
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.product-detail-content h1.is-long {
  font-size: clamp(30px, 2.55vw, 42px);
  line-height: 1.18;
}

.product-detail-content h1.is-compact {
  font-size: clamp(27px, 2.25vw, 36px);
  line-height: 1.22;
}

.product-detail-content h1.is-single-line {
  white-space: nowrap;
  text-wrap: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

@media (max-width: 1100px) {
  .product-detail-content h1 {
    word-break: normal;
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }
}

@media (min-width: 1101px) and (max-width: 1200px) {
  .product-detail-body .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 72px 24px 88px;
  }

  .product-detail-body .footer-about {
    grid-column: 1 / -1;
  }
}

.product-spec-list {
  display: grid;
  gap: 12px;
  margin: 2px 0 4px;
}

.product-spec-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: baseline;
  padding: 2px 0;
}

.product-spec-row dt {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.product-spec-row dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.product-spec-row.is-id dd {
  color: var(--accent);
  font-family: Menlo, Consolas, monospace;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.product-spec-row dd span {
  color: var(--ink-muted);
  font-weight: 650;
}

.product-fitment-section {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.product-fitment-heading {
  display: grid;
  gap: 2px;
}

.product-fitment-heading .eyebrow {
  margin-bottom: 2px;
  color: var(--accent);
  font-size: 11px;
}

.product-fitment-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
}

.product-fitment-frame {
  display: grid;
  min-height: 180px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 8px;
}

.product-fitment-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-fitment-image[hidden],
.product-fitment-placeholder[hidden] {
  display: none;
}

.product-fitment-placeholder {
  display: grid;
  gap: 10px;
  min-height: 160px;
  place-content: center;
  color: var(--ink-soft);
  text-align: center;
}

.product-fitment-placeholder strong {
  color: var(--ink);
  font-size: 18px;
}

.product-fitment-placeholder p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.product-detail-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.product-detail-actions .button,
.product-ai-pill {
  flex: 1 1 0;
  min-width: 0;
  min-height: 44px;
  border-radius: 0;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.product-detail-actions .button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--accent);
}

.product-detail-actions .button-secondary:hover,
.product-detail-actions .button-secondary:focus-visible {
  border-color: rgba(31, 102, 209, 0.42);
  background: rgba(31, 102, 209, 0.06);
  color: var(--accent-strong);
}

.product-ai-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 102, 209, 0.42);
  background: var(--surface);
  color: var(--accent);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.product-ai-pill:hover,
.product-ai-pill:focus-visible {
  border-color: rgba(31, 102, 209, 0.62);
  background: rgba(31, 102, 209, 0.06);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.product-detail-body .floating-action > span:last-child {
  display: none;
}

.product-detail-empty {
  display: grid;
  gap: 16px;
  min-height: 420px;
  align-content: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.08), transparent 42%),
    var(--surface);
  padding: 48px;
}

.product-detail-empty span {
  color: var(--accent);
  font-family: Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-detail-empty h1,
.product-detail-empty p {
  max-width: 760px;
}

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

.process-grid article {
  min-height: 210px;
  background: var(--surface);
  padding: 24px;
}

.case-global-network {
  background: #eaf0f7;
}

.case-global-network .section-heading {
  margin-bottom: 40px;
}

.case-global-network .section-heading p {
  max-width: 760px;
}

.case-global-map {
  width: min(100%, 1280px);
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid #cad7e6;
  background: #f5f8fc;
}

.case-global-map-canvas {
  position: relative;
  aspect-ratio: 2.45 / 1;
  min-height: 0;
}

.case-global-map-base {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.case-global-market-points {
  position: absolute;
  inset: 0;
}

.case-global-market {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 1;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 3px solid var(--accent);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(31, 102, 209, 0.13);
  transform: translate(-50%, -50%);
  cursor: default;
}

.case-global-market-label {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 2;
  width: max-content;
  max-width: 140px;
  border: 1px solid rgba(31, 102, 209, 0.3);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(17, 24, 32, 0.12);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0;
  padding: 6px 8px;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.case-global-market:hover,
.case-global-market:focus-visible {
  z-index: 3;
  outline: none;
}

.case-global-market:focus-visible {
  box-shadow:
    0 0 0 3px var(--surface),
    0 0 0 6px var(--accent);
}

.case-global-market:hover .case-global-market-label,
.case-global-market:focus-visible .case-global-market-label {
  opacity: 1;
  transform: translate(-50%, 0);
}

.case-market-list {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.case-market-list li {
  border: 1px solid rgba(31, 102, 209, 0.24);
  background: rgba(255, 255, 255, 0.62);
  color: var(--accent-strong);
  font-family: "IBM Plex Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 8px 10px;
}

.case-global-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid #cad7e6;
  background: #cad7e6;
}

.case-certification-proof,
.case-platform-proof {
  min-width: 0;
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
}

.case-global-proof-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.case-certification-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.case-certification-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  margin: 0;
}

.case-certification-item img {
  display: block;
  width: 58px;
  height: 72px;
  border: 1px solid var(--line);
  background: var(--surface);
  object-fit: contain;
}

.case-certification-item figcaption {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.case-certification-item strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.case-certification-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.case-platform-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 540px;
  margin-top: 24px;
}

.case-platform-item {
  display: grid;
  width: min(100%, 172px);
  height: 76px;
  justify-self: start;
  place-items: center;
  border: 1px solid #cad7e6;
  background: var(--surface);
  padding: 14px 16px;
}

.case-platform-item img {
  display: block;
  width: 136px;
  height: 38px;
  max-width: 100%;
  object-fit: contain;
}

.process-grid h3 {
  margin-top: 32px;
}

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

.evidence-card {
  display: grid;
  gap: 18px;
  min-height: 380px;
  align-content: start;
  overflow: hidden;
  background: var(--surface);
  padding: 24px;
}

.evidence-placeholder {
  display: grid;
  min-height: 170px;
  align-content: end;
  background:
    linear-gradient(135deg, rgba(31, 102, 209, 0.14), transparent 44%),
    repeating-linear-gradient(
      90deg,
      rgba(17, 24, 32, 0.06) 0,
      rgba(17, 24, 32, 0.06) 1px,
      transparent 1px,
      transparent 36px
    ),
    var(--surface-muted);
  padding: 18px;
}

.evidence-placeholder strong {
  color: var(--ink);
}

.evidence-placeholder p {
  margin-top: 8px;
  font-size: 14px;
}

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

.feedback-grid article {
  min-height: 220px;
  background: var(--surface);
  padding: 24px;
}

.feedback-grid h3 {
  margin-top: 34px;
}

.case-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.case-cta h2 {
  max-width: 820px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
}

.contact-meta {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.contact-meta div {
  background: var(--surface);
  padding: 18px;
}

.contact-meta dt {
  margin-bottom: 6px;
  color: var(--ink-muted);
  font-size: 13px;
}

.contact-meta dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.required-mark {
  color: #d92d20;
  margin-left: 4px;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--line);
  background: var(--surface-muted);
  color: var(--ink);
  padding: 14px 14px 12px;
  outline: none;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field-message,
.form-status {
  min-height: 20px;
  margin: 0;
  color: #b42318;
  font-size: 13px;
}

.form-status {
  color: var(--ink-soft);
  line-height: 1.55;
}

.form-status[data-status="success"] {
  color: #067647;
}

.form-status[data-status="error"] {
  color: #b42318;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.inquiry-notice {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 80;
  width: min(520px, calc(100vw - 32px));
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -16px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.inquiry-notice.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.inquiry-notice-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(14px);
}

.inquiry-notice-panel strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.inquiry-notice-panel p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.inquiry-notice-panel button {
  align-self: start;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  padding: 0;
}

.inquiry-notice[data-type="success"] .inquiry-notice-panel {
  border-left: 4px solid #12b76a;
}

.inquiry-notice[data-type="error"] .inquiry-notice-panel {
  border-left: 4px solid #d92d20;
}

.floating-contact {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 30;
  display: grid;
  justify-items: center;
  gap: 22px;
  transform: translateY(-20%);
}

.floating-action-group {
  display: grid;
  gap: 10px;
}

.floating-action {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.22);
  overflow: visible;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.floating-action:hover,
.floating-action:focus-visible,
.floating-action.is-active {
  transform: translateX(-4px);
  outline: 0;
  box-shadow: 0 22px 56px rgba(17, 24, 32, 0.3);
}

.floating-action > span:last-child {
  position: absolute;
  right: 60px;
  width: max-content;
  max-width: 150px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.floating-assistant-entry > span:last-child {
  right: 76px;
  border-color: rgba(47, 91, 204, 0.28);
}

.floating-glyph {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.floating-action-message .floating-glyph {
  width: 38px;
  border-radius: 999px;
}

.floating-action:hover > span:last-child,
.floating-action:focus-visible > span:last-child {
  opacity: 1;
  transform: translateX(0);
}

.floating-icon-wrap {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
}

.floating-icon {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.floating-action-wechat {
  background: #43c834;
}

.floating-action-whatsapp {
  background: #20c86a;
}

.floating-action-message {
  background: #2f5bcc;
}

.floating-assistant-entry {
  width: 68px;
  height: 68px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(145deg, #426be1, #244fbf);
  color: #ffffff;
  box-shadow:
    0 20px 50px rgba(47, 91, 204, 0.36),
    0 0 0 7px rgba(255, 255, 255, 0.78);
  overflow: visible;
}

.floating-assistant-entry::after {
  content: "AI";
  position: absolute;
  right: -2px;
  top: 4px;
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: #102a53;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.floating-assistant-entry:hover,
.floating-assistant-entry:focus-visible,
.floating-assistant-entry.is-active,
.is-assistant-open .floating-assistant-entry {
  transform: translateX(-5px) translateY(-1px);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(145deg, #4d75ea, #1e49b5);
  box-shadow:
    0 26px 62px rgba(47, 91, 204, 0.46),
    0 0 0 7px rgba(255, 255, 255, 0.82),
    0 0 0 11px rgba(31, 102, 209, 0.13);
}

.floating-assistant-entry .floating-icon-wrap {
  width: 42px;
  height: 42px;
}

.floating-assistant-entry .floating-icon {
  width: 38px;
  height: 38px;
  filter: brightness(0) invert(1);
}

.floating-action.is-disabled {
  opacity: 0.56;
}

.floating-action-whatsapp.is-disabled {
  opacity: 0.74;
}

.bubble-icon {
  position: relative;
  display: block;
  width: 40px;
  height: 34px;
}

.bubble-icon::before,
.bubble-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.bubble-icon-message::before,
.bubble-icon-double::before,
.bubble-icon-double::after {
  border: 3px solid #ffffff;
  border-radius: 999px;
}

.bubble-icon-message::before {
  inset: 3px 1px 5px;
}

.bubble-icon-message::after {
  left: 10px;
  bottom: 0;
  width: 9px;
  height: 9px;
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: rotate(-18deg);
}

.bubble-icon-double::before {
  top: 1px;
  left: 0;
  width: 25px;
  height: 20px;
}

.bubble-icon-double::after {
  right: 0;
  bottom: 1px;
  width: 25px;
  height: 20px;
}

.floating-action-wechat .bubble-icon-double {
  background:
    radial-gradient(circle at 10px 11px, #ffffff 0 2px, transparent 2.5px),
    radial-gradient(circle at 18px 11px, #ffffff 0 2px, transparent 2.5px),
    radial-gradient(circle at 24px 24px, #ffffff 0 2px, transparent 2.5px),
    radial-gradient(circle at 32px 24px, #ffffff 0 2px, transparent 2.5px);
}

.bubble-icon-whatsapp {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 4px solid #ffffff;
  border-radius: 50%;
  font-size: 0;
}

.bubble-icon-whatsapp::before {
  width: 13px;
  height: 19px;
  border-right: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  border-radius: 0 0 12px 0;
  transform: rotate(28deg);
}

.bubble-icon-whatsapp::after {
  left: 1px;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-bottom: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  transform: rotate(12deg);
}

.bubble-icon-headset::before {
  left: 3px;
  top: 1px;
  width: 28px;
  height: 22px;
  border: 4px solid #ffffff;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.bubble-icon-headset::after {
  left: 0;
  bottom: 1px;
  width: 10px;
  height: 17px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #ffffff 0 4px, transparent 4px 100%),
    linear-gradient(90deg, transparent 0 25px, #ffffff 25px 29px);
}

.floating-panel {
  position: fixed;
  right: 112px;
  top: 50%;
  z-index: 31;
  width: min(360px, calc(100vw - 32px));
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 24px;
  box-shadow: 0 24px 80px rgba(17, 24, 32, 0.22);
  transform: translateY(-18%);
}

.floating-panel-assistant {
  top: 44px;
  right: 102px;
  width: min(620px, calc(100vw - 146px));
  max-width: 640px;
  height: min(640px, calc(100vh - 88px));
  max-height: calc(100vh - 88px);
  min-height: 0;
  padding: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  box-sizing: border-box;
  overflow: visible;
  contain: layout;
  transform: none;
}

.floating-panel-assistant::before,
.floating-panel-assistant::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.floating-panel-assistant::before {
  right: -22px;
  bottom: 132px;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 102, 209, 0.45), rgba(31, 102, 209, 0));
}

.floating-panel-assistant::after {
  right: -29px;
  bottom: 126px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(31, 102, 209, 0.22);
  border-left: 0;
  border-bottom: 0;
  background: #ffffff;
  transform: rotate(45deg);
}

.floating-panel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  color: var(--ink);
  cursor: pointer;
}

.floating-panel > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.floating-panel h2 {
  margin-top: 12px;
  font-size: 28px;
}

.floating-panel p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.qr-placeholder {
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  margin-top: 18px;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(
      45deg,
      var(--surface-muted) 0,
      var(--surface-muted) 8px,
      var(--surface) 8px,
      var(--surface) 16px
    );
  color: var(--ink-muted);
  font-weight: 900;
}

.qr-card {
  width: min(230px, 100%);
  margin: 18px 0 0;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 12px;
}

.qr-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(420px, calc(100vh - 280px));
  object-fit: contain;
}

.qr-card-whatsapp {
  width: min(220px, 100%);
  padding: 12px;
}

.qr-card-whatsapp img {
  max-height: min(260px, calc(100vh - 300px));
}

.assistant-welcome {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 58px 16px 20px;
  border-bottom: 1px solid rgba(216, 222, 231, 0.8);
  background: #ffffff;
}

.floating-panel-assistant.is-chatting .assistant-welcome {
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 54px 10px 16px;
}

.floating-panel-assistant.is-chatting .assistant-avatar {
  width: 40px;
  height: 40px;
  box-shadow: none;
}

.floating-panel-assistant.is-chatting .assistant-avatar img {
  width: 25px;
  height: 25px;
}

.floating-panel-assistant.is-chatting .assistant-welcome h2 {
  margin: 3px 0 0;
  font-size: 22px;
  line-height: 1.18;
}

.floating-panel-assistant.is-chatting .assistant-welcome p {
  display: none;
}

.assistant-welcome span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.assistant-welcome h2 {
  margin: 6px 0 8px;
  max-width: 470px;
  font-size: clamp(24px, 2.4vw, 31px);
  font-weight: 850;
  line-height: 1.18;
}

.assistant-welcome p {
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.62;
}

.assistant-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(31, 102, 209, 0.22);
  border-radius: 50%;
  background: #eef4ff;
  box-shadow: 0 14px 34px rgba(31, 102, 209, 0.16);
}

.assistant-avatar img {
  width: 30px;
  height: 30px;
}

.assistant-prompts {
  grid-area: prompts;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}

.assistant-prompts[hidden] {
  display: none;
}

.assistant-prompts button {
  position: relative;
  min-height: 58px;
  border: 1px solid rgba(216, 222, 231, 0.95);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 11px 40px 11px 14px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(17, 24, 32, 0.05);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.assistant-prompts button::after {
  content: "→";
  position: absolute;
  right: 15px;
  top: 17px;
  color: var(--accent);
  font-weight: 900;
}

.assistant-prompts button:hover,
.assistant-prompts button:focus-visible {
  border-color: rgba(31, 102, 209, 0.38);
  box-shadow: 0 16px 34px rgba(31, 102, 209, 0.1);
  transform: translateY(-1px);
}

.assistant-prompts button span {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.assistant-prompts button small {
  display: block;
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.assistant-chat {
  position: relative;
  display: grid;
  grid-template-areas:
    "prompts"
    "messages"
    "form";
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 10px;
  min-height: 0;
  overflow: hidden;
  padding: 14px 18px 14px;
  background: #f7f9fc;
}

.assistant-messages {
  grid-area: messages;
  display: grid;
  grid-auto-rows: max-content;
  align-items: start;
  min-height: 0;
  height: 100%;
  max-height: none;
  align-content: start;
  gap: 12px;
  padding: 2px 6px 12px 2px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-padding-bottom: 12px;
}

.assistant-message {
  width: min(100%, 520px);
  min-width: 0;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px 16px;
  color: var(--ink);
  overflow-wrap: anywhere;
  box-shadow: 0 10px 28px rgba(17, 24, 32, 0.05);
}

.assistant-message-user {
  justify-self: end;
  max-width: 78%;
  border-color: rgba(47, 91, 204, 0.26);
  background: #eaf2ff;
  box-shadow: none;
}

.assistant-message-assistant {
  justify-self: start;
  background: #eef3f8;
}

.assistant-message-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.assistant-message-meta span {
  border: 1px solid rgba(47, 91, 204, 0.18);
  background: #ffffff;
  color: #456178;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 850;
}

.assistant-message p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.assistant-message p + p {
  margin-top: 8px;
}

.assistant-message ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.assistant-actions a {
  border: 1px solid rgba(47, 91, 204, 0.24);
  border-radius: 6px;
  background: #ffffff;
  color: var(--accent);
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 850;
}

.assistant-actions a:hover {
  background: var(--accent);
  color: #ffffff;
}

.assistant-product-matches {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid rgba(25, 76, 133, 0.14);
}

.assistant-product-matches h3 {
  margin: 0 0 9px;
  color: var(--ink-900);
  font-size: 0.78rem;
  line-height: 1.3;
}

.assistant-product-match-grid {
  display: grid;
  gap: 8px;
}

.assistant-product-match {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 7px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(25, 76, 133, 0.14);
  border-radius: 8px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.assistant-product-match:hover,
.assistant-product-match:focus-visible {
  border-color: var(--blue-500);
  box-shadow: 0 5px 16px rgba(25, 76, 133, 0.12);
}

.assistant-product-match img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #f4f7fb;
}

.assistant-product-match-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.assistant-product-match-copy strong {
  color: var(--blue-700);
  font-size: 0.76rem;
}

.assistant-product-match-copy > span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink-900);
  font-size: 0.76rem;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.assistant-product-match-copy small {
  color: var(--ink-500);
  font-size: 0.68rem;
}

.assistant-product-match-copy em {
  color: var(--blue-600);
  font-size: 0.68rem;
  font-style: normal;
}

.assistant-form {
  grid-area: form;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  flex: 0 0 auto;
  gap: 8px;
  align-items: stretch;
  height: 76px;
  min-height: 76px;
  max-height: 76px;
  padding: 7px;
  border: 2px solid rgba(31, 102, 209, 0.38);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(17, 24, 32, 0.08);
  overflow: hidden;
}

.assistant-form textarea,
.assistant-form button {
  border: 0;
  border-radius: 6px;
  font: inherit;
}

.assistant-form textarea {
  height: 58px;
  min-height: 58px;
  max-height: 58px;
  resize: none;
  overflow-y: auto;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 15px;
}

.assistant-form button {
  min-height: 0;
  background: var(--accent);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.assistant-form button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.assistant-message-thinking {
  position: relative;
  display: grid;
  gap: 10px;
  box-sizing: border-box;
  width: min(100%, 520px);
  min-height: 138px;
  padding: 16px 18px;
  overflow: visible;
  align-self: start;
  justify-self: start;
  flex: none;
}

.assistant-message-thinking p {
  min-height: 0;
  line-height: 1.65;
}

.assistant-thinking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 18px;
  margin-bottom: 0;
  color: var(--accent);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.assistant-thinking-head span {
  min-width: 0;
}

.assistant-thinking-head i {
  display: inline-flex;
  width: 34px;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 5px 5px, currentColor 0 3px, transparent 4px),
    radial-gradient(circle at 17px 5px, currentColor 0 3px, transparent 4px),
    radial-gradient(circle at 29px 5px, currentColor 0 3px, transparent 4px);
  color: rgba(31, 102, 209, 0.72);
  animation: assistantThinkingDots 1.1s infinite ease-in-out;
}

.assistant-thinking-bar {
  height: 4px;
  margin-top: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(31, 102, 209, 0.12);
}

.assistant-thinking-bar span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  animation: assistantThinkingBar 1.45s infinite ease-in-out;
}

@keyframes assistantThinkingDots {
  0%,
  100% {
    opacity: 0.42;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

@keyframes assistantThinkingBar {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(250%);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(120px, 0.55fr) minmax(150px, 0.65fr) minmax(240px, 1fr) minmax(250px, 0.95fr);
  gap: clamp(24px, 3vw, 48px);
  width: 100%;
  margin: 0;
  padding: 88px calc((100vw - var(--container)) / 2) 96px;
  background: #153765;
  color: rgba(218, 231, 246, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.site-footer h2,
.footer-brand strong {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.2;
}

.site-footer p {
  margin: 0;
}

.site-legal {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0 24px 34px;
  border-top: 1px solid rgba(218, 231, 246, 0.14);
  background: #153765;
  color: rgba(218, 231, 246, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.site-legal a {
  padding-top: 22px;
  color: inherit;
  text-decoration: none;
}

.site-legal a:hover {
  color: #ffffff;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-about {
  min-width: 0;
}

.footer-brand {
  display: grid;
  align-content: start;
  justify-items: start;
}

.footer-brand img {
  width: min(250px, 100%);
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
}

.footer-brand strong {
  margin-bottom: 8px;
}

.footer-brand span {
  color: rgba(218, 231, 246, 0.64);
  font-size: 16px;
  white-space: nowrap;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-links a,
.footer-contact p,
.footer-about p {
  color: rgba(218, 231, 246, 0.68);
}

.footer-links a:hover,
.footer-contact-button:hover {
  color: #ffffff;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-about {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
}

.footer-about p {
  font-size: 18px;
}

.footer-contact-button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  background: var(--accent);
  color: #ffffff;
  padding: 16px 22px;
  font-size: 18px;
  font-weight: 850;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.footer-contact-button:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.hero-copy,
.hero-panel,
.capability-copy,
.capability-media,
.contact-copy,
.inquiry-form,
.product-main,
.product-sidebar,
.case-card,
.evidence-card,
.feedback-grid article {
  min-width: 0;
}

@media (max-width: 1200px) {
  .product-detail-body .product-detail-page {
    width: calc(100vw - 160px);
    margin-right: 0;
    margin-left: 24px;
  }

  .product-detail-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .product-detail-gallery {
    width: min(100%, 780px);
  }

  .product-detail-content {
    width: min(100%, 900px);
  }
}

@media (max-width: 1100px) {
  :root {
    --container: calc(100vw - 40px);
  }

  .utility-bar {
    position: sticky;
  }

  .utility-bar-inner {
    width: calc(100vw - 40px);
    padding: 8px 0;
  }

  .utility-bar-inner p {
    font-size: 13px;
  }

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

  .site-header,
  .site-header-overlay {
    position: sticky;
    top: 0;
    width: 100%;
    grid-template-columns: 1fr;
    min-height: 68px;
    margin: 0;
    border-radius: 0;
    padding: 0 20px;
  }

  .brand-logo {
    width: min(210px, 58vw);
    height: 50px;
  }

  .brand-logo img {
    max-height: 42px;
  }

  .main-nav {
    display: none;
  }

  .header-search {
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
    margin: 0 0 12px;
  }

  .header-search button {
    min-width: 58px;
    padding: 0 12px;
  }

  .home-hero {
    min-height: auto;
    padding: 96px 20px 36px;
  }

  .home-hero h1 {
    font-size: 38px;
    overflow-wrap: anywhere;
  }

  .home-hero-media {
    --hero-scrim-left: rgba(8, 13, 19, 0.9);
    --hero-scrim-mid: rgba(8, 13, 19, 0.7);
    --hero-scrim-right: rgba(8, 13, 19, 0.78);
  }

  .home-hero-media::before,
  .home-hero-media::after {
    display: none;
  }

  .home-hero-proof {
    gap: 6px;
    margin-top: 20px;
  }

  .home-hero-proof span {
    padding: 7px 9px;
    font-size: 12px;
  }

  .home-hero-carousel {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 22px;
  }

  .home-hero-strip {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .home-hero-strip a {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .home-hero-strip a:last-child {
    border-bottom: 0;
  }

  .catalog-hero,
  .search-hero,
  .product-detail-layout,
  .product-center,
  .case-cta,
  .capability-case-link,
  .home-news,
  .news-list-card,
  .news-article-layout,
  .capability,
  .contact,
  .capability-intro .capability-media {
    position: static;
  }

  .capability-photo {
    min-height: min(68vw, 520px);
  }

  .product-coverage-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .product-coverage-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-coverage-media {
    position: static;
    order: -1;
  }

  .product-coverage-photo {
    min-height: min(92vw, 520px);
  }

  .quality-proof-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .quality-lightbox {
    padding: 12px;
  }

  .quality-lightbox-dialog {
    max-height: calc(100vh - 24px);
  }

  .quality-lightbox-stage {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 6px;
    padding: 10px;
  }

  .quality-lightbox-nav {
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .quality-carousel-slide {
    gap: 14px;
  }

  .quality-certificate img {
    max-height: 430px;
  }

  .catalog-hero {
    min-height: auto;
    padding: 72px 20px 48px;
  }

  .catalog-hero-breadcrumb {
    gap: 9px;
    font-size: 15px;
  }

  .catalog-hero-copy h1 {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1.28;
    text-align: left;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .catalog-hero-text {
    font-size: 16px;
    line-height: 1.78;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .product-breadcrumb-bar {
    min-height: 60px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 20px;
  }

  .product-detail-page-shell {
    padding-top: 0;
  }

  .product-breadcrumb-bar strong {
    max-width: min(620px, 58vw);
  }

  .product-detail-page {
    width: calc(100vw - 40px);
    padding: 56px 0 72px;
  }

  .product-detail-body .product-detail-page {
    width: calc(100vw - 40px);
    margin-right: auto;
    margin-left: auto;
  }

  .product-detail-layout {
    gap: 32px;
  }

  .product-detail-gallery {
    width: min(100%, 760px);
    min-height: 0;
    padding: 0;
  }

  .product-detail-gallery.is-empty {
    min-height: 420px;
    padding: 28px;
  }

  .search-hero {
    min-height: auto;
    padding: 72px 20px 48px;
  }

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

  .subpage-hero {
    padding: 72px 20px;
  }

  .case-product-band {
    width: calc(100vw - 40px);
    padding-top: 36px;
  }

  .trust-band,
  .product-grid,
  .case-grid,
  .home-news-list,
  .case-type-grid,
  .factory-case-grid,
  .supply-network-grid,
  .quality-proof-grid,
  .advantage-grid,
  .factory-metrics,
  .catalog-grid,
  .evidence-grid,
  .feedback-grid,
  .process-grid,
  .gap-grid {
    grid-template-columns: 1fr;
  }

  .factory-case-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    gap: 14px;
  }

  .factory-collaboration-card,
  .factory-collaboration-card-primary {
    grid-row: auto;
    min-height: 300px;
  }

  .customer-feedback-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .customer-feedback-card-primary {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .customer-feedback-card-secondary,
  .customer-feedback-card-compact {
    grid-column: auto;
  }

  .case-global-map-canvas {
    min-height: 0;
  }

  .case-global-proof-grid {
    grid-template-columns: 1fr;
  }

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

  .case-certification-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
  }

  .case-certification-item img {
    width: 48px;
    height: 62px;
  }

  .case-platform-list {
    max-width: 540px;
  }

  .customer-feedback-lightbox-content {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .customer-feedback-lightbox-copy {
    padding: 24px;
  }

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

  .factory-gallery {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .factory-strength-hero {
    min-height: 440px;
    margin: -72px -20px 56px;
    padding: 72px 20px;
  }

  .factory-feature-grid,
  .factory-feature-grid-reversed {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .factory-feature-grid + .factory-feature-grid {
    margin-top: 64px;
  }

  .factory-feature-grid-reversed .factory-feature-copy {
    justify-self: stretch;
  }

  .factory-feature-grid-reversed .factory-feature-copy {
    grid-row: 1;
  }

  .factory-feature-copy h3 {
    max-width: 12em;
  }

  .factory-carousel-media {
    min-height: 0;
    aspect-ratio: 5 / 4;
  }

  .home-news {
    gap: 32px;
  }

  .home-news-list {
    min-height: auto;
  }

  .home-news-card {
    min-height: 300px;
  }

  .home-news-summary,
  .home-news-read-pill {
    max-height: 9rem;
    opacity: 1;
    transform: none;
  }

  .home-news-read-pill {
    min-height: 40px;
    max-height: 40px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .home-news-media img {
    filter: brightness(0.78);
  }

  .news-page-hero {
    padding: 72px 20px 38px;
  }

  .news-list-card img,
  .news-list-placeholder {
    min-height: 220px;
  }

  .news-article-layout {
    border-top: 0;
  }

  .news-recommendations {
    position: static;
    max-height: none;
    overflow: visible;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .news-recommendation-item {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .news-recommendation-item img,
  .news-recommendation-thumb {
    width: 88px;
    height: 70px;
  }

  .news-article-body h2 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 42px);
    overflow-wrap: anywhere;
  }

  .news-article-summary,
  .news-article-content {
    max-width: 100%;
  }

  .factory-photo-large {
    grid-row: auto;
  }

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

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

  .home-catalog-apps a {
    min-height: 170px;
  }

  .home-catalog-panel-head {
    display: grid;
    align-items: start;
    padding: 0 24px 20px;
  }

  .home-catalog-grid a {
    min-height: 300px;
  }

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

  .category-block-core,
  .procurement-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .category-block + .category-block,
  .procurement-panel {
    margin-top: 20px;
  }

  .trust-band {
    display: grid;
    width: calc(100vw - 40px);
  }

  .product-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .product-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    scrollbar-gutter: auto;
  }

  .product-center {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

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

  .product-tab-group.is-expanded {
    grid-column: 1 / -1;
  }

  .product-tab-group.is-expanded .vehicle-make-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability,
  .catalog-process,
  .case-overview,
  .collaboration-archive,
  .case-preview,
  .case-global-network,
  .case-evidence-section,
  .case-feedback-section,
  .case-cta,
  .news-list-section,
  .factory-case-section,
  .customer-case-section,
  .supply-network-section,
  .quality-proof-section,
  .capability-case-link,
  .materials,
  .factory-strength,
  .applications,
  .delivery-archive {
    padding: 72px 20px;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 72px 20px 88px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .advantage-grid article {
    min-height: auto;
    transform: none;
  }

  .advantage-grid,
  .advantage-grid[data-active-index="0"],
  .advantage-grid[data-active-index="1"],
  .advantage-grid[data-active-index="2"],
  .advantage-grid[data-active-index="3"] {
    grid-template-columns: 1fr;
  }

  .advantage-grid.is-expanded article:not(.is-active) {
    opacity: 1;
  }

  .advantage-grid article.is-active {
    transform: none;
  }

  .advantage-grid h3 {
    margin-top: 28px;
  }

  .delivery-archive-grid {
    grid-template-columns: 1fr;
  }

  .category-grid a {
    min-height: 150px;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .search-form input {
    min-height: 56px;
  }

  .search-form button {
    min-height: 48px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .factory-collaboration-card,
  .factory-collaboration-card-primary {
    min-height: 248px;
  }

  .factory-collaboration-card figcaption {
    padding: 44px 18px 18px;
  }

  .factory-collaboration-card figcaption strong {
    font-size: 17px;
  }

  .customer-feedback-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: 248px;
  }

  .customer-feedback-card-primary,
  .customer-feedback-card-secondary,
  .customer-feedback-card-compact {
    grid-column: auto;
    grid-row: auto;
  }

  .customer-feedback-card-primary {
    min-height: 310px;
  }

  .customer-feedback-card-primary .customer-feedback-card-copy {
    padding: 66px 18px 18px;
  }

  .customer-feedback-lightbox {
    width: min(100vw - 24px, 560px);
  }

  .customer-feedback-lightbox-content {
    grid-template-columns: 1fr;
  }

  .customer-feedback-lightbox-content > img {
    max-height: min(56vh, 440px);
  }

  .customer-feedback-lightbox-copy {
    padding: 20px;
  }

  .customer-feedback-lightbox-copy h2 {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .customer-feedback-lightbox-copy > p:not(:first-child) {
    margin-bottom: 16px;
  }

  .case-product-band {
    width: calc(100vw - 32px);
    padding-top: 28px;
  }

  .case-product-band img {
    aspect-ratio: 2.2 / 1;
  }

  .collaboration-route-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .archive-heading,
  .archive-heading h2,
  .archive-heading p {
    width: 100%;
    max-width: calc(100vw - 40px);
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .archive-title-break {
    display: block;
  }

  .collaboration-route {
    grid-template-columns: minmax(0, 1fr) 118px;
    min-height: 388px;
  }

  .collaboration-route-copy {
    padding: 24px 0 24px 24px;
  }

  .collaboration-route h3 {
    max-width: 10.5em;
    margin-top: 24px;
    font-size: 22px;
  }

  .collaboration-route-copy > p {
    max-width: 17.5em;
    font-size: 14px;
  }

  .collaboration-route-visual {
    padding: 0 16px 20px 0;
  }

  .collaboration-route-visual img {
    width: 104px;
    height: 104px;
  }

  .quality-archive-grid {
    grid-template-columns: 1fr;
  }

  .quality-archive-card.is-landscape {
    grid-column: auto;
  }

  .quality-archive-preview {
    padding: 12px;
  }

  .quality-archive-card.is-landscape .quality-archive-preview {
    aspect-ratio: 1.42;
  }

  .quality-carousel-slide {
    display: block;
    padding: 4px 0 0;
  }

  .quality-certificate img {
    width: min(100%, 300px);
    max-height: 440px;
    margin: 0 auto;
  }

  .utility-bar {
    overflow: hidden;
  }

  .utility-bar-inner {
    display: flex;
    justify-content: flex-end;
    width: calc(100vw - 32px);
    min-height: 48px;
    padding: 6px 0;
  }

  .utility-bar-inner p {
    display: none;
  }

  .utility-actions {
    justify-content: flex-end;
    gap: 6px;
    width: auto;
    max-width: 100%;
    overflow: hidden;
  }

  .quick-inquiry-pill {
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
  }

  .language-switch {
    flex: 0 0 auto;
  }

  .language-switch button {
    min-width: 38px;
    padding: 7px 8px;
  }

  .site-header {
    min-height: 62px;
  }

  .header-search {
    position: relative;
    display: block;
    justify-self: start;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    height: 48px;
  }

  .header-search input {
    width: 100%;
    height: 100%;
    padding-right: 15px;
  }

  .header-search button {
    display: none;
  }

  body {
    padding-bottom: 104px;
  }

  .global-network .section-heading {
    max-width: 100%;
  }

  .global-map-viewport {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }

  .global-map-canvas {
    min-width: 860px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.18;
  }

  h2 {
    font-size: 28px;
    line-height: 1.28;
  }

  h1,
  h2,
  h3,
  p,
  .trust-band span,
  .product-card p,
  .case-card p,
  .evidence-card p,
  .feedback-grid p,
  .advantage-grid p {
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .home-hero {
    min-height: auto;
    padding: 64px 16px 28px;
  }

  .home-hero-slide {
    background-position: center center;
  }

  .home-hero-carousel {
    gap: 8px;
  }

  .search-hero {
    padding: 64px 16px 40px;
  }

  .search-result,
  .search-empty {
    padding: 20px;
  }

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

  .search-result {
    padding: 0;
    grid-template-rows: 190px minmax(0, 1fr);
    height: 440px;
  }

  .catalog-card {
    grid-template-rows: 190px minmax(0, 1fr);
    height: 440px;
  }

  .search-result-image-frame img,
  .catalog-card-media img {
    max-height: 158px;
  }

  .search-result-body {
    padding: 18px;
  }

  .search-result h2 {
    min-height: 0;
    -webkit-line-clamp: 2;
  }

  .home-hero h1 {
    font-size: 31px;
    line-height: 1.2;
    max-width: 100%;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .catalog-hero-copy h1,
  .catalog-hero-copy .hero-text {
    max-width: 100%;
  }

  .catalog-hero-copy,
  .catalog-hero-breadcrumb,
  .catalog-hero-text {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .catalog-hero-copy h1 {
    /* Keep English product terminology on whole-word lines. */
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
    hyphens: auto;
  }

  .catalog-hero-text,
  .catalog-hero-text p {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .subpage-hero,
  .subpage-hero h1,
  .subpage-hero .hero-text,
  .case-grid,
  .evidence-grid,
  .feedback-grid,
  .case-card,
  .evidence-card,
  .feedback-grid article {
    max-width: calc(100vw - 32px);
  }

  .subpage-hero h1,
  .case-meta,
  .case-card p,
  .case-card dd,
  .case-card h3,
  .evidence-card p,
  .evidence-card h3,
  .feedback-grid p,
  .feedback-grid h3 {
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .case-card > *,
  .evidence-card > *,
  .feedback-grid article > * {
    max-width: 100%;
  }

  .subpage-hero h1 {
    max-width: 9em;
    font-size: 30px;
    line-height: 1.24;
  }

  .subpage-hero .hero-text {
    max-width: 20em;
  }

  .case-overview .section-heading p,
  .case-preview .section-heading p,
  .case-card p,
  .case-card dl,
  .evidence-card p,
  .feedback-grid p {
    max-width: 18em;
  }

  .case-meta {
    max-width: 20em;
  }

  .home-hero-content,
  .home-hero .hero-text {
    max-width: 100%;
  }

  .home-hero .hero-text {
    max-width: 22em;
    overflow-wrap: anywhere;
  }

  .section-heading,
  .section-heading.compact,
  .section-heading h2,
  .section-heading p,
  .trust-band div,
  .trust-band span,
  .case-card,
  .evidence-card,
  .feedback-grid article,
  .advantage-grid article,
  .advantage-grid p {
    max-width: calc(100vw - 32px);
  }

  .hero-text {
    font-size: 16px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .product-breadcrumb-bar {
    min-height: 62px;
    gap: 12px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 16px;
  }

  .product-breadcrumb-bar strong {
    max-width: 64vw;
  }

  .product-detail-page {
    width: calc(100vw - 32px);
    padding: 36px 0 58px;
  }

  .product-detail-body .product-detail-page {
    width: calc(100vw - 32px);
  }

  .product-detail-gallery {
    min-height: 0;
    padding: 0;
  }

  .product-detail-gallery.is-empty {
    min-height: 320px;
    padding: 18px;
  }

  .product-detail-main-image {
    aspect-ratio: 1 / 1;
    padding: 18px;
  }

  .product-gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .product-gallery-arrow.is-prev {
    left: 8px;
  }

  .product-gallery-arrow.is-next {
    right: 8px;
  }

  .product-gallery-counter {
    right: 8px;
    bottom: 8px;
  }

  .product-gallery-thumbnails {
    grid-auto-columns: 72px;
    gap: 8px;
  }

  .product-gallery-thumbnail {
    width: 72px;
    height: 64px;
  }

  .product-detail-image-placeholder {
    min-height: 260px;
  }

  .product-detail-content h1 {
    font-size: 30px;
    line-height: 1.18;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .product-detail-heading {
    padding-bottom: 20px;
  }

  .product-spec-row {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 64px;
    padding: 15px 0;
  }

  .product-spec-row dd {
    font-size: 16px;
  }

  .product-spec-row.is-id dd {
    font-size: 20px;
  }

  .product-fitment-section {
    gap: 18px;
    margin-top: 48px;
    padding-top: 36px;
  }

  .product-fitment-frame {
    min-height: 220px;
    padding: 10px;
  }

  .product-fitment-placeholder {
    min-height: 190px;
  }

  .product-detail-actions {
    display: grid;
  }

  .product-ai-pill {
    width: 100%;
  }

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

  .product-tab-group.is-expanded .vehicle-make-tabs {
    grid-template-columns: 1fr;
  }

  .vehicle-make-tab {
    padding-right: 16px;
    padding-left: 22px;
  }

  .category-head {
    display: grid;
    align-items: start;
  }

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

  .home-catalog-apps,
  .home-catalog-grid,
  .application-grid,
  .application-grid-compact {
    grid-template-columns: 1fr;
  }

  .home-catalog-divider {
    margin: 20px;
  }

  .home-catalog-apps a {
    min-height: 180px;
    padding: 22px;
  }

  .home-catalog-panel-head {
    padding: 0 20px 18px;
  }

  .home-catalog-panel-head p {
    font-size: 13px;
  }

  .category-grid a,
  .home-catalog-grid a,
  .factory-photo,
  .application-grid article {
    min-height: 230px;
  }

  .home-catalog-grid strong {
    margin-top: 72px;
  }

  .home-catalog-more {
    padding: 20px;
  }

  .product-detail,
  .product-detail-empty,
  .catalog-card-body,
  .catalog-empty,
  .case-card,
  .evidence-card,
  .feedback-grid article,
  .process-grid article,
  .inquiry-form {
    padding: 20px;
  }

  .case-card,
  .evidence-card,
  .feedback-grid article {
    min-height: auto;
  }

  .case-global-network .section-heading {
    margin-bottom: 30px;
  }

  .case-global-map-canvas {
    aspect-ratio: 2.25 / 1;
  }

  .case-global-market {
    width: 15px;
    height: 15px;
    border-width: 2px;
  }

  .case-global-market-label {
    display: none;
  }

  .case-market-list {
    display: flex;
  }

  .case-global-proof-grid {
    margin-top: 22px;
  }

  .case-certification-proof,
  .case-platform-proof {
    padding: 20px;
  }

  .case-certification-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-certification-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .case-certification-item img {
    width: 56px;
    height: 68px;
  }

  .case-platform-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .case-platform-item {
    width: 100%;
    height: 64px;
    padding: 10px;
  }

  .case-platform-item img {
    width: 100%;
    height: 30px;
  }

  .collaboration-route {
    grid-template-columns: minmax(0, 1fr) 146px;
    min-height: 400px;
  }

  .collaboration-route-copy {
    padding: 28px 0 28px 28px;
  }

  .collaboration-route-visual img {
    width: 126px;
    height: 126px;
  }

  .catalog-empty .button {
    width: 100%;
  }

  .image-slot {
    min-height: 300px;
    padding: 20px;
  }

  .proof-list article {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    gap: 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 56px 16px 96px;
  }

  .footer-brand img {
    width: min(220px, 76vw);
  }

  .footer-about {
    grid-column: auto;
  }

  .floating-contact {
    right: auto;
    left: 50%;
    bottom: 12px;
    top: auto;
    grid-template-columns: auto 54px;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: calc(100vw - 24px);
    transform: translateX(-50%);
  }

  .floating-action-group {
    grid-template-columns: repeat(3, 44px);
    gap: 6px;
  }

  .floating-action {
    width: 44px;
    height: 44px;
  }

  .floating-action:hover,
  .floating-action:focus-visible {
    transform: translateY(-2px);
  }

  .floating-icon {
    width: 25px;
    height: 25px;
  }

  .floating-assistant-entry {
    width: 54px;
    height: 54px;
    box-shadow:
      0 16px 42px rgba(47, 91, 204, 0.34),
      0 0 0 5px rgba(255, 255, 255, 0.82);
  }

  .floating-assistant-entry:hover,
  .floating-assistant-entry:focus-visible,
  .floating-assistant-entry.is-active,
  .is-assistant-open .floating-assistant-entry {
    transform: translateY(-3px);
  }

  .floating-assistant-entry .floating-icon-wrap {
    width: 34px;
    height: 34px;
  }

  .floating-assistant-entry .floating-icon {
    width: 31px;
    height: 31px;
  }

  .floating-assistant-entry::after {
    right: -1px;
    top: 3px;
    min-width: 20px;
    height: 20px;
    font-size: 9px;
  }

  .floating-glyph {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .floating-action > span:last-child {
    display: none;
  }

  .bubble-icon {
    transform: scale(0.78);
  }

  .floating-panel {
    right: 12px;
    bottom: 88px;
    top: auto;
    transform: none;
  }

  .floating-panel-assistant {
    right: 12px;
    bottom: 88px;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    height: calc(100vh - 112px);
    grid-template-rows: auto minmax(0, 1fr);
    max-height: calc(100vh - 112px);
    overflow: hidden;
  }

  .floating-panel-assistant::before,
  .floating-panel-assistant::after {
    display: none;
  }

  .assistant-welcome {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 52px 12px 14px;
  }

  .assistant-avatar {
    width: 38px;
    height: 38px;
  }

  .assistant-avatar img {
    width: 25px;
    height: 25px;
  }

  .assistant-welcome h2 {
    margin: 5px 0;
    font-size: 21px;
  }

  .assistant-welcome p {
    font-size: 12px;
  }

  .floating-panel-assistant.is-chatting .assistant-welcome {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    padding: 10px 48px 9px 12px;
  }

  .floating-panel-assistant.is-chatting .assistant-avatar {
    width: 34px;
    height: 34px;
  }

  .floating-panel-assistant.is-chatting .assistant-avatar img {
    width: 22px;
    height: 22px;
  }

  .floating-panel-assistant.is-chatting .assistant-welcome h2 {
    font-size: 18px;
  }

  .assistant-chat {
    gap: 9px;
    padding: 10px;
  }

  .assistant-prompts {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .assistant-prompts button {
    min-height: 56px;
    padding: 10px 34px 10px 12px;
  }

  .assistant-prompts button small {
    display: none;
  }

  .assistant-messages {
    max-height: none;
    padding-bottom: 10px;
    scroll-padding-bottom: 10px;
  }

  .assistant-message {
    width: 100%;
    padding: 14px;
  }

  .assistant-message-thinking {
    min-height: 132px;
    padding: 14px;
  }

  .assistant-message-user {
    max-width: 88%;
  }

  .assistant-form {
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 8px;
    height: 68px;
    min-height: 68px;
    max-height: 68px;
    padding: 6px;
  }

  .assistant-form textarea {
    height: 52px;
    min-height: 52px;
    max-height: 52px;
    font-size: 14px;
  }

  .assistant-form button {
    font-size: 14px;
  }

  .inquiry-form {
    padding-bottom: 104px;
  }
}

@media (max-width: 640px) and (hover: hover) and (pointer: fine) {
  .floating-panel-assistant {
    right: 108px;
    bottom: auto;
    top: 24px;
    width: min(620px, calc(100vw - 132px));
    max-width: min(620px, calc(100vw - 132px));
    height: min(640px, calc(100vh - 48px));
    max-height: calc(100vh - 48px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .home-hero-slide {
    transform: none !important;
  }
}

/* Product cards must remain readable with long English titles and OE lists. */
@media (max-width: 640px) {
  .search-result {
    grid-template-rows: clamp(180px, 52vw, 240px) auto;
    height: auto;
    min-height: 0;
  }

  .search-result-media {
    padding: 20px;
  }

  .search-result-image-frame {
    inset: 20px;
  }

  .search-result-image-frame img {
    max-height: min(190px, 46vw);
  }

  .search-result-body {
    overflow: visible;
    padding: 22px 20px 24px;
  }

  .search-result h2 {
    margin-bottom: 12px;
    font-size: clamp(20px, 5.4vw, 24px);
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: normal;
    -webkit-line-clamp: 3;
  }

  .search-result-specs {
    margin-bottom: 16px;
  }

  .search-result-specs > div {
    grid-template-columns: minmax(88px, 0.72fr) minmax(0, 1.48fr);
    gap: 12px;
    padding: 10px 0;
  }

  .search-result-specs dt,
  .search-result-specs dd {
    font-size: 14px;
    line-height: 1.45;
  }

  .search-result-specs dd {
    overflow-wrap: anywhere;
    word-break: normal;
    -webkit-line-clamp: 3;
  }

  .search-result-link {
    font-size: 16px;
  }

  .catalog-card {
    grid-template-rows: clamp(220px, 62vw, 310px) auto;
    height: auto;
    min-height: 0;
  }

  .catalog-card-media {
    padding: 20px;
  }

  .catalog-card-media img {
    max-width: 100%;
    max-height: min(220px, 48vw);
    object-fit: contain;
    object-position: center;
  }

  .catalog-card-body {
    overflow: visible;
    padding: 22px 20px 24px;
  }

  .catalog-card-body h3 {
    margin-bottom: 12px;
    font-size: clamp(20px, 5.4vw, 24px);
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: normal;
    -webkit-line-clamp: 3;
  }

  .catalog-card-specs {
    margin-bottom: 16px;
  }

  .catalog-card-specs > div {
    grid-template-columns: minmax(88px, 0.72fr) minmax(0, 1.48fr);
    gap: 12px;
    padding: 10px 0;
  }

  .catalog-card-specs dt,
  .catalog-card-specs dd {
    font-size: 14px;
    line-height: 1.45;
  }

  .catalog-card-specs dd {
    word-break: normal;
    -webkit-line-clamp: 3;
  }

  .catalog-card-link {
    font-size: 16px;
  }

  .catalog-update-card {
    min-height: 240px;
    padding: 32px 24px;
  }

  .catalog-update-line {
    margin-bottom: 18px;
  }

  .catalog-update-title {
    font-size: clamp(21px, 5.4vw, 25px);
  }
}

/*
 * Product assets use a consistent 800 × 800 canvas. Match that canvas with a
 * square frontend frame and give the image an explicit inner box; percentage
 * max-heights on intrinsically sized images can otherwise exceed a fixed grid
 * row and be clipped by overflow.
 */
.search-result,
.catalog-card {
  grid-template-rows: auto minmax(0, 1fr);
  height: auto;
  min-height: 542px;
}

.search-result-media,
.catalog-card-media,
.product-detail-main-image {
  aspect-ratio: 1 / 1;
}

.search-result-image-frame {
  inset: 20px;
}

.search-result-image-frame img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.catalog-card-media {
  padding: 0;
}

.catalog-card-media img {
  position: absolute;
  inset: 20px;
  display: block;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.product-detail-main-image {
  padding: 0;
}

.product-detail-main-image > img {
  position: absolute;
  inset: clamp(28px, 5%, 44px);
  display: block;
  width: calc(100% - clamp(56px, 10%, 88px));
  height: calc(100% - clamp(56px, 10%, 88px));
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.product-gallery-thumbnail img {
  position: absolute;
  inset: 6px;
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 640px) {
  .search-result,
  .catalog-card {
    min-height: 0;
  }

  .search-result-image-frame {
    inset: 18px;
  }

  .catalog-card-media img {
    inset: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
  }

  .product-detail-main-image > img {
    inset: 22px;
    width: calc(100% - 44px);
    height: calc(100% - 44px);
  }
}

/* Unified mobile header and full-screen navigation. */
.mobile-header-actions,
.mobile-navigation {
  display: none;
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: 72px;
  }

  body.is-mobile-nav-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }

  .utility-bar {
    display: none;
  }

  .site-header,
  .site-header-overlay,
  .has-utility .site-header-overlay {
    position: sticky;
    top: 0;
    z-index: 45;
    display: grid;
    width: 100%;
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 72px;
    align-items: center;
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgba(216, 222, 231, 0.92);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.97);
    padding: 0 max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left));
    box-shadow: 0 8px 28px rgba(8, 18, 32, 0.09);
    backdrop-filter: blur(16px);
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
    width: fit-content;
    max-width: calc(100vw - 128px);
  }

  .site-header .brand-logo {
    width: min(188px, 49vw);
    height: 46px;
  }

  .site-header .brand-logo img {
    width: 100%;
    max-height: 40px;
  }

  .site-header .main-nav,
  .site-header .header-search {
    display: none;
  }

  .mobile-header-actions {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    justify-self: end;
    gap: 4px;
  }

  .mobile-header-button,
  .mobile-navigation-close {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .mobile-header-button:hover,
  .mobile-header-button:focus-visible {
    background: var(--surface-muted);
  }

  .mobile-search-icon {
    position: relative;
    display: block;
    width: 23px;
    height: 23px;
    border: 2px solid currentColor;
    border-radius: 50%;
  }

  .mobile-search-icon::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: -4px;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: left center;
  }

  .mobile-menu-button {
    align-content: center;
    gap: 5px;
  }

  .mobile-menu-button > span {
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-navigation {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
    overscroll-behavior: contain;
    background:
      linear-gradient(180deg, rgba(31, 102, 209, 0.11), transparent 38%),
      #102f59;
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    transform: translateX(4%);
    transition:
      opacity 180ms ease,
      transform 220ms ease,
      visibility 220ms step-end;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-navigation.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition:
      opacity 180ms ease,
      transform 220ms ease,
      visibility 0s;
  }

  .mobile-navigation-shell {
    display: flex;
    width: min(100%, 760px);
    min-height: 100dvh;
    flex-direction: column;
    margin: 0 auto;
    padding:
      max(18px, env(safe-area-inset-top))
      max(22px, env(safe-area-inset-right))
      max(24px, env(safe-area-inset-bottom))
      max(22px, env(safe-area-inset-left));
  }

  .mobile-navigation-head {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .mobile-navigation-brand {
    display: block;
    width: min(205px, 58vw);
    overflow: hidden;
    border-radius: 3px;
    background: #ffffff;
  }

  .mobile-navigation-brand img {
    display: block;
    width: 100%;
    height: auto;
  }

  .mobile-navigation-close {
    color: #ffffff;
  }

  .mobile-navigation-close:hover,
  .mobile-navigation-close:focus-visible {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-navigation-close span {
    position: absolute;
    width: 29px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(45deg);
  }

  .mobile-navigation-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-navigation-search {
    display: grid;
    min-height: 58px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin: 24px 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 999px;
    padding: 0 9px 0 20px;
    color: #ffffff;
  }

  .mobile-navigation-search .mobile-search-icon {
    width: 22px;
    height: 22px;
  }

  .mobile-navigation-search input,
  .mobile-navigation-search button {
    min-width: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
  }

  .mobile-navigation-search input {
    width: 100%;
    outline: 0;
    padding: 14px 0;
    font-size: 16px;
  }

  .mobile-navigation-search input::placeholder {
    color: rgba(255, 255, 255, 0.58);
  }

  .mobile-navigation-search button {
    min-height: 40px;
    border-radius: 999px;
    background: var(--accent);
    padding: 0 16px;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
  }

  .mobile-navigation-links,
  .mobile-navigation-products nav {
    display: grid;
  }

  .mobile-navigation-link,
  .mobile-navigation-product-link {
    display: flex;
    min-width: 0;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(18px, 4.6vw, 23px);
    font-weight: 690;
    line-height: 1.3;
  }

  .mobile-navigation-link > span:first-child,
  .mobile-navigation-product-link > span:first-child {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .mobile-navigation-link > span:last-child,
  .mobile-navigation-product-link > span:last-child {
    color: rgba(255, 255, 255, 0.48);
    font-size: 21px;
    font-weight: 400;
  }

  .mobile-navigation-link.is-current,
  .mobile-navigation-product-link.is-current {
    color: #6db5ff;
  }

  .mobile-navigation-products {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 20px;
  }

  .mobile-navigation-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 5px;
  }

  .mobile-navigation-section-title span {
    color: #6db5ff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-navigation-section-title a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 750;
  }

  .mobile-navigation-product-link {
    min-height: 52px;
    font-size: clamp(16px, 4.1vw, 19px);
    font-weight: 560;
  }

  .mobile-navigation-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    margin-top: auto;
    padding-top: 34px;
  }

  .mobile-navigation-inquiry {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    padding: 0 18px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
  }

  .is-mobile-nav-open .floating-contact,
  .is-mobile-nav-open .floating-panel {
    opacity: 0;
    pointer-events: none;
  }

  .home-hero {
    min-height: calc(100svh - 72px);
    align-content: center;
    padding: 68px 20px 36px;
  }

  .home-hero-content {
    max-width: 680px;
  }

  .home-hero-mobile-actions {
    display: flex;
    width: min(100%, 520px);
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  }

  .home-hero-language {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    background: rgba(10, 20, 31, 0.46);
    padding: 3px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
  }

  .home-hero-language button {
    min-width: 50px;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
  }

  .home-hero-language button.is-active {
    background: #ffffff;
    color: var(--dark);
  }

  .home-hero-language button:focus-visible,
  .home-hero-inquiry:focus-visible {
    outline: 3px solid #9fc0ef;
    outline-offset: 3px;
  }

  .home-hero-inquiry {
    display: inline-flex;
    min-height: 48px;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    padding: 0 18px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 10px 28px rgba(31, 102, 209, 0.26);
  }

  .home-news {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 32px;
  }

  .home-news-copy {
    max-width: 680px;
  }

  .home-news-list {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .home-news-card {
    width: 100%;
    min-width: 0;
  }

  .home-news-card strong,
  .home-news-summary {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .news-page-hero {
    width: calc(100vw - 40px);
    padding: 52px 0 30px;
  }

  .news-page-hero h1 {
    font-size: clamp(48px, 10vw, 70px);
    line-height: 1.04;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .news-list-section {
    width: 100%;
    padding: 0 20px 72px;
  }

  .news-list-card {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .news-list-image-link {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .news-list-card img,
  .news-list-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .news-list-copy {
    gap: 16px;
    padding: 28px;
  }

  .news-list-copy h2 {
    max-width: none;
    font-size: clamp(25px, 5.4vw, 34px);
    line-height: 1.32;
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: pretty;
  }

  .news-list-copy p {
    max-width: none;
    font-size: 16px;
    line-height: 1.7;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .news-article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-article-cover {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .news-article-body {
    max-width: 860px;
    gap: 18px;
    padding: 36px 28px 56px;
  }

  .news-article-body h2 {
    max-width: none;
    font-size: clamp(30px, 7vw, 44px);
    line-height: 1.18;
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: pretty;
  }

  .news-article-summary,
  .news-article-content {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .news-recommendations {
    position: static;
    max-height: none;
    overflow: visible;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-header-overlay,
  .has-utility .site-header-overlay {
    min-height: 66px;
    grid-template-rows: 66px;
    padding-right: max(10px, env(safe-area-inset-right));
    padding-left: max(14px, env(safe-area-inset-left));
  }

  .site-header .brand {
    max-width: calc(100vw - 112px);
  }

  .site-header .brand-logo {
    width: min(174px, 48vw);
    height: 42px;
  }

  .site-header .brand-logo img {
    max-height: 37px;
  }

  .mobile-header-actions {
    gap: 0;
  }

  .mobile-header-button {
    width: 44px;
    height: 44px;
  }

  .mobile-navigation-shell {
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .mobile-navigation-search {
    margin-top: 18px;
    padding-left: 18px;
  }

  .mobile-navigation-search button {
    padding: 0 14px;
  }

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

  .home-hero {
    min-height: calc(100svh - 66px);
    padding: 48px 16px 30px;
  }

  .home-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(32px, 9.2vw, 40px);
    line-height: 1.12;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .home-hero .hero-text {
    font-size: 15px;
    line-height: 1.65;
  }

  .home-hero-mobile-actions {
    width: 100%;
    gap: 10px;
    margin-top: 20px;
  }

  .home-hero-language button {
    min-width: 46px;
    min-height: 40px;
  }

  .home-hero-inquiry {
    min-height: 46px;
    padding: 0 14px;
    font-size: 14px;
  }

  .home-hero-strip a {
    padding: 18px;
  }

  .home-news {
    gap: 24px;
  }

  .home-news-copy h2,
  html[lang="zh-CN"] .home-news-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
    white-space: normal;
  }

  .home-news-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .home-news-copy .button {
    width: 100%;
    margin-top: 18px;
  }

  .home-news-card {
    min-height: clamp(280px, 92vw, 380px);
    padding: 24px 20px;
  }

  .home-news-card strong {
    font-size: clamp(23px, 6.4vw, 30px);
    line-height: 1.26;
    text-wrap: pretty;
  }

  .news-page-hero {
    width: calc(100vw - 32px);
    padding: 40px 0 24px;
  }

  .news-page-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(40px, 12.5vw, 54px);
  }

  .news-page-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.65;
  }

  .news-list-section {
    padding: 0 16px 56px;
  }

  .news-list-copy {
    gap: 14px;
    padding: 22px 20px 24px;
  }

  .news-list-meta {
    gap: 8px 10px;
  }

  .news-list-copy h2 {
    margin-bottom: 0;
    font-size: clamp(22px, 6.4vw, 28px);
    line-height: 1.34;
  }

  .news-list-copy p {
    font-size: 15px;
    line-height: 1.65;
  }

  .news-back-link {
    margin: 24px 16px 20px;
  }

  .news-article-body {
    gap: 16px;
    padding: 26px 16px 46px;
  }

  .news-article-body h2 {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: 1.22;
  }

  .news-article-summary {
    font-size: 17px;
    line-height: 1.68;
  }

  .news-article-content {
    gap: 16px;
    font-size: 16px;
    line-height: 1.8;
  }

  .news-recommendations-head {
    padding: 22px 16px 18px;
  }

  .news-recommendation-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    min-height: 108px;
    padding: 14px 16px;
  }

  .news-recommendation-item img,
  .news-recommendation-thumb {
    width: 76px;
    height: 64px;
  }

  .news-recommendation-copy strong {
    font-size: 15px;
    line-height: 1.4;
  }

  .floating-contact {
    bottom: calc(8px + env(safe-area-inset-bottom));
    grid-template-columns: auto 48px;
    gap: 8px;
    max-width: calc(100vw - 20px);
  }

  .floating-action-group {
    grid-template-columns: repeat(3, 40px);
    gap: 5px;
  }

  .floating-action {
    width: 40px;
    height: 40px;
  }

  .floating-icon {
    width: 23px;
    height: 23px;
  }

  .floating-assistant-entry {
    width: 48px;
    height: 48px;
    box-shadow:
      0 14px 34px rgba(47, 91, 204, 0.32),
      0 0 0 4px rgba(255, 255, 255, 0.82);
  }

  .floating-assistant-entry .floating-icon-wrap {
    width: 31px;
    height: 31px;
  }

  .floating-assistant-entry .floating-icon {
    width: 28px;
    height: 28px;
  }

  .floating-assistant-entry::after {
    min-width: 18px;
    height: 18px;
    border-width: 1px;
    font-size: 8px;
  }

  .floating-panel,
  .floating-panel-assistant {
    bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-navigation {
    transition-duration: 0.01ms;
  }
}

/* Mobile overflow guardrails for legacy two-column page sections. */
@media (max-width: 1100px) {
  .capability,
  .search-hero {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .capability {
    gap: 36px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .search-hero {
    gap: 28px;
    min-height: 0;
    padding: 58px 20px 48px;
  }

  .search-hero > *,
  .capability > * {
    min-width: 0;
  }

  .mobile-navigation-shell {
    width: 100%;
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .capability {
    gap: 28px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .search-hero {
    padding: 44px 16px 38px;
  }
}
