:root {
  --accent: #0071e3;
  --accent-strong: #005bb8;
  --accent-alt: #2997ff;
  --accent-rgb: 0, 113, 227;
  --accent-contrast: #ffffff;
  --blue: var(--accent);
  --blue-strong: var(--accent-strong);
  --cyan: var(--accent-alt);
  --ink: #111827;
  --muted: #5f6877;
  --line: #e6e9ef;
  --bg: #f6f7f9;
  --card: #ffffff;
  --dark: #101827;
  --content-wide: 1500px;
}
:root[data-theme="gold"] {
  --accent: #fcc31e;
  --accent-strong: #e0a900;
  --accent-alt: #ffd85a;
  --accent-rgb: 252, 195, 30;
  --accent-contrast: #111827;
}
:root[data-theme="violet"] {
  --accent: #8b5cf4;
  --accent-strong: #6d3ee6;
  --accent-alt: #a78bfa;
  --accent-rgb: 139, 92, 244;
  --accent-contrast: #ffffff;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Inter, system-ui, sans-serif;
}
body::before {
  content: "";
  display: block;
  height: 0;
  transition: height .22s ease;
}
body.header-compact::before {
  height: 0;
}
body.detail-page::before {
  height: 158px;
}
body.detail-page.header-compact::before {
  height: 78px;
}
main {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }
.skip {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 99;
  background: #fff;
  padding: 10px 14px;
}
.skip:focus { top: 16px; }

.announcement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-contrast);
  background: var(--blue);
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  transition: transform .22s ease;
}
body.header-compact .announcement {
  transform: translateY(-100%);
}
.announcement-inner {
  width: 33.333vw;
  min-width: 280px;
  display: grid;
  grid-template-columns: 1fr 48px;
  align-items: center;
}
.announcement button {
  border: 0;
  background: transparent;
  color: var(--accent-contrast);
  cursor: pointer;
}
.ticker {
  position: relative;
  height: 42px;
  overflow: hidden;
}
.ticker-track {
  width: max-content;
  height: 42px;
  display: flex;
  align-items: center;
  animation: ticker-marquee 60s linear infinite;
  will-change: transform;
}
body.ticker-paused .ticker-track {
  animation-play-state: paused;
}
.ticker a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-group {
  width: calc(33.333vw - 48px);
  min-width: 232px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(33.333vw - 48px);
}
.ticker-toggle {
  position: relative;
  width: 48px;
  height: 42px;
  opacity: .5;
}
.ticker-toggle::before,
.ticker-toggle::after {
  content: "";
  position: absolute;
  top: 13px;
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background: currentColor;
}
.ticker-toggle::before { left: 18px; }
.ticker-toggle::after { right: 18px; }
body.ticker-paused .ticker-toggle::before {
  left: 19px;
  top: 12px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
  border-radius: 0;
  background: transparent;
}
body.ticker-paused .ticker-toggle::after {
  display: none;
}
@keyframes ticker-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: fixed;
  top: 42px;
  z-index: 59;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  box-shadow: 0 1px 0 rgba(17,24,39,.08);
  transition: top .22s ease;
}
.detail-site-header {
  top: 42px;
}
body.header-compact .site-header {
  top: 0;
}
.utility {
  position: relative;
  z-index: 4;
  height: 38px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(15,23,42,.06);
  font-size: 13px;
  overflow: visible;
  transition: height .22s ease, opacity .18s ease, border-color .18s ease;
}
body.header-compact .utility {
  height: 0;
  opacity: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}
.utility nav, .selectors, .menu, .actions, .button-row {
  display: flex;
  align-items: center;
  gap: 22px;
}
.utility nav, .menu { min-width: 0; }
.selectors, .actions { flex: 0 0 auto; }
.theme-dropdown {
  position: relative;
  z-index: 70;
}
.theme-trigger {
  height: 30px;
  min-width: 54px;
  padding: 0 14px 0 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}
.theme-trigger::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-right: 1.3px solid currentColor;
  border-bottom: 1.3px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease, top .18s ease;
}
.theme-dropdown.is-open .theme-trigger::after {
  top: 14px;
  transform: rotate(225deg);
}
.theme-menu {
  position: absolute;
  z-index: 90;
  top: calc(100% + 9px);
  right: 0;
  min-width: 138px;
  padding: 8px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15,23,42,.14);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}
.theme-dropdown.is-open .theme-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.theme-menu button {
  width: 100%;
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
}
.theme-menu button:hover,
.theme-menu button[aria-selected="true"] {
  background: #f5f7fb;
}
.theme-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(15,23,42,.12);
}
.theme-dot.gold { background: #fcc31e; }
.theme-dot.blue { background: #0071e3; }
.theme-dot.violet { background: #8b5cf4; }
.selectors button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}
.utility-quote {
  color: var(--blue);
  font-weight: 900;
}
.flag {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4fd8 0 50%, #19b7d8 50%);
  vertical-align: -2px;
}
.main-nav {
  position: relative;
  z-index: 2;
  height: 78px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  background: rgba(255,255,255,.98);
  overflow: visible;
}
.mobile-menu-toggle {
  display: none;
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f1f4f9;
  color: var(--ink);
  cursor: pointer;
}
.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  transition: .2s ease;
}
.mobile-menu-toggle::before { top: 13px; box-shadow: 0 6px 0 currentColor; }
.mobile-menu-toggle::after { top: 25px; }
.nav-open .mobile-menu-toggle::before {
  top: 19px;
  transform: rotate(45deg);
  box-shadow: 0 0 0 transparent;
}
.nav-open .mobile-menu-toggle::after {
  top: 19px;
  transform: rotate(-45deg);
}
.logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: 156px;
  height: 48px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.menu {
  flex: 1 1 auto;
  gap: 23px;
  overflow: hidden;
  font-weight: 800;
}
.nav-quote {
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: var(--accent-contrast);
  font-weight: 900;
}
.nav-item { height: 78px; display: grid; align-items: center; }
.nav-item > a, .menu > a { white-space: nowrap; }
.actions { display: flex; gap: 12px; }
.actions button {
  width: 24px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.quick-quote {
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--accent-contrast);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(var(--accent-rgb),.18);
}
.icon { position: relative; }
.icon::before, .icon::after, .wish::before, .wish::after {
  content: "";
  position: absolute;
  display: block;
}
.icon.search::before {
  width: 14px;
  height: 14px;
  left: 1px;
  top: 3px;
  border: 3px solid currentColor;
  border-radius: 50%;
}
.icon.search::after {
  width: 10px;
  height: 3px;
  right: 0;
  bottom: 5px;
  background: currentColor;
  transform: rotate(45deg);
  border-radius: 4px;
}
.icon.account::before {
  width: 10px;
  height: 10px;
  left: 7px;
  top: 2px;
  border: 3px solid currentColor;
  border-radius: 50%;
}
.icon.account::after {
  width: 18px;
  height: 9px;
  left: 3px;
  bottom: 2px;
  border: 3px solid currentColor;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom: 0;
}
.cart { position: relative; font-size: 0; }
.cart::before {
  width: 18px;
  height: 12px;
  left: 2px;
  top: 7px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 1px 1px 4px 4px;
}
.cart::after {
  width: 16px;
  height: 6px;
  left: 5px;
  top: 2px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}
.cart span {
  position: absolute;
  right: -11px;
  top: -9px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--accent-contrast);
  font-size: 12px;
  display: grid;
  place-items: center;
}

.mega {
  position: fixed;
  left: 50px;
  right: 50px;
  top: 158px;
  display: none;
  grid-template-columns: 250px 1fr;
  gap: 18px;
  padding: 18px;
  color: var(--ink);
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 22px 52px rgba(15,23,42,.14);
  border: 1px solid rgba(15,23,42,.08);
}
body.header-compact .mega {
  top: 78px;
}
.nav-item:hover .mega { display: grid; }
.mega-tabs {
  display: grid;
  align-content: start;
  gap: 6px;
  padding-right: 14px;
  border-right: 1px solid var(--line);
}
.mega-tab {
  min-height: 64px;
  padding: 12px 14px;
  border-radius: 6px;
  display: grid;
  gap: 4px;
  color: var(--ink);
}
.mega-tab:hover,
.mega-tab.is-active {
  background: #f4f7fb;
}
.mega-tab strong {
  font-size: 15px;
}
.mega-tab small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.mega-products {
  min-width: 0;
}
.mega-panel {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.mega-panel.is-active {
  display: grid;
}
.mega .feature {
  position: relative;
  min-height: 126px;
  padding: 18px 18px 16px;
  display: grid;
  align-content: start;
  gap: 8px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.mega .feature:hover {
  border-color: rgba(var(--accent-rgb),.35);
  box-shadow: 0 14px 26px rgba(15,23,42,.08);
  transform: translateY(-2px);
}
.mega .feature span {
  width: max-content;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 4px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.mega .feature strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}
.mega .feature small {
  min-height: 38px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}
.mega .feature em {
  margin-top: auto;
  color: var(--blue);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 978px;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.hero.is-dragging { cursor: grabbing; }
.hero-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(calc(var(--hero-index, 0) * -100% + var(--drag-offset, 0px)), 0, 0);
  transition: transform .62s cubic-bezier(.22,.61,.36,1);
}
.hero.is-dragging .hero-track { transition: none; }
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 176px 70px 88px;
  overflow: visible;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.62) 18%, rgba(255,255,255,0) 34%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  text-align: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 7px;
  color: var(--blue);
  font-weight: 800;
  font-size: 10px;
}
.hero-copy { color: var(--ink); }
.hero-copy h1 {
  margin: 0;
  font-size: clamp(22px, 2.9vw, 37px);
  line-height: 1;
}
.hero-copy p:not(.eyebrow) {
  max-width: 360px;
  margin: 9px auto 11px;
  font-size: 11px;
  line-height: 1.55;
  color: #3c4658;
}
.hero-copy .button-row {
  justify-content: center;
}
.hero-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  transition: .18s ease;
}
.btn.glass {
  border: 1px solid var(--blue);
  color: var(--accent-contrast);
  background: var(--blue);
  backdrop-filter: none;
}
.btn.primary { background: var(--blue); color: var(--accent-contrast); }
.btn.outline { border: 1px solid #cbd5e1; background: #fff; color: var(--ink); }
.btn:hover { transform: translateY(-1px); }
.hero-dots {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
}
.hero-dots button.is-active { background: var(--blue); }
.hero-arrow {
  display: none;
}

.inquiry-strip {
  width: min(calc(100% - 12px), var(--content-wide));
  margin: 20px auto 0;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15,23,42,.07);
}
.inquiry-strip div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}
.inquiry-strip strong {
  font-size: 18px;
}
.inquiry-strip span {
  color: var(--muted);
  line-height: 1.6;
}

.section-pad { padding: 74px 50px; }
.promo-grid,
.new-releases,
.printing,
.category-banners,
.trust,
.support-cards {
  background: transparent;
}
.promo-grid, .new-releases, .printing, .category-banners, .trust, .support-cards {
  width: min(calc(100% - 12px), var(--content-wide));
  max-width: var(--content-wide);
  margin: 0 auto;
  min-width: 0;
}
.new-releases,
.printing,
.category-banners,
.trust,
.support-cards {
  padding-left: 0;
  padding-right: 0;
}
.section-heading {
  text-align: center;
  margin-bottom: 28px;
}
.section-heading h2, .applications h2, .support-cards h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
}
.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
  overflow: hidden;
}
.promo {
  position: relative;
  min-height: 245px;
  padding: 32px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15,23,42,.03);
}
.promo.tall {
  grid-row: span 2;
  min-height: 508px;
  color: var(--ink);
}
.promo h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
}
.promo p {
  position: relative;
  z-index: 2;
  max-width: 420px;
  color: var(--muted);
  line-height: 1.6;
}
.promo a {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
}
.promo img {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 58%;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.22));
}
.promo.dark {
  background: linear-gradient(135deg, #ffffff, #edf4ff);
}
.promo.dark p { color: var(--muted); }
.promo.dark a { color: var(--blue); }
.promo.blue { background: #fff; }
.promo.sale { color: var(--ink); background: #fff; }
.promo.sale p, .promo.cleaver p { color: var(--muted); }
.promo.sale a, .promo.cleaver a { color: var(--blue); }
.promo.light { background: linear-gradient(135deg, #eef8fb, #fff); }
.promo.cleaver { color: var(--ink); background: #fff; }
.promo.mercury { background: #fff; }
.promo.white { background: #fff; }

.machine-finder {
  width: 100%;
  max-width: none;
  display: block;
  padding-left: 0;
  padding-right: 0;
  background: #ffffff;
}
.machine-heading {
  width: min(calc(100% - 12px), var(--content-wide));
  margin: 0 auto;
  padding: 0 50px 34px;
}
.machine-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}
.machine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - 12px), var(--content-wide));
  margin: 0 auto;
  border-left: 1px solid #bfc6d1;
  border-right: 1px solid #bfc6d1;
  border-top: 1px solid #bfc6d1;
  border-bottom: 1px solid #bfc6d1;
  background: #ffffff;
}
.machine-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 28px 34px 28px;
  display: grid;
  grid-template-rows: 84px 1fr auto;
  align-items: end;
  overflow: hidden;
  border-right: 1px solid #bfc6d1;
  border-bottom: 1px solid #bfc6d1;
  color: var(--ink);
  background: #ffffff;
}
.machine-card:nth-child(3n) { border-right: 0; }
.machine-card:nth-last-child(-n+3) { border-bottom: 0; }
.machine-series {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 5px;
  color: #303744;
  font-size: 14px;
  line-height: 1.15;
}
.machine-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  transition: transform .24s ease;
}
.machine-card h3 {
  position: relative;
  z-index: 2;
  margin: 22px 0 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  font-weight: 500;
}
.machine-card:hover img { transform: translateY(-5px); }
.machine-card:hover h3 { color: var(--blue); }
.machine-cta {
  align-items: start;
  align-content: start;
  grid-template-rows: auto auto 1fr auto;
}
.machine-dot {
  width: 9px;
  height: 9px;
  margin: 2px 0 18px;
  border-radius: 2px;
  background: #12bde8;
}
.machine-cta h3 {
  margin-top: 0;
  max-width: 380px;
}
.machine-cta p {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.machine-cta strong {
  color: var(--blue);
  font-weight: 900;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}
.tabs button {
  height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 0 20px;
  background: #fff;
  color: #283244;
  cursor: pointer;
  font-weight: 900;
}
.tabs button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--accent-contrast);
  box-shadow: 0 10px 22px rgba(var(--accent-rgb),.18);
}
.release-panel {
  display: none;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 44px;
  width: 100%;
  max-width: none;
  min-height: 460px;
  margin: 0 auto;
  padding: 42px 52px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.release-panel.is-active { display: grid; }
.release-panel h3 { margin: 0; font-size: 34px; }
.release-panel p { color: var(--muted); font-size: 18px; line-height: 1.65; }
.release-panel li { margin: 10px 0; }
.release-panel strong { display: block; margin: 22px 0; font-size: 15px; color: var(--blue-strong); }
.showcase {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
}
.showcase img {
  width: min(460px, 86%);
  max-height: 320px;
  object-fit: contain;
  filter: none;
}

.collection-panel { display: none; }
.collection-panel.is-active { display: block; }
.collection-copy {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}
.collection-copy h3 { margin: 0 0 10px; font-size: 30px; }
.collection-copy p { margin: 0; color: var(--muted); line-height: 1.7; }
.product-row {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(232px, 1fr);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  padding-bottom: 12px;
  scrollbar-color: #b8c0cc transparent;
}
.product-card {
  min-width: 232px;
  scroll-snap-align: start;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #eef2f7;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.product-link {
  display: block;
  flex: 1 1 auto;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(15,23,42,.08);
}
.product-media {
  position: relative;
  height: 218px;
  display: grid;
  place-items: center;
  background: #ffffff;
}
.product-media::after {
  content: "查看资料";
  position: absolute;
  left: 50%;
  bottom: 14px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(15,23,42,.84);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: .2s ease;
}
.product-card:hover .product-media::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.product-media img {
  width: 82%;
  height: 150px;
  object-fit: contain;
  filter: none;
}
.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--blue);
  color: var(--accent-contrast);
  font-size: 12px;
  font-weight: 900;
}
.wish {
  position: absolute;
  right: 12px;
  top: 12px;
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15,23,42,.08);
}
.wish::before {
  width: 15px;
  height: 2px;
  left: 8px;
  top: 15px;
  background: currentColor;
}
.wish::after {
  width: 2px;
  height: 15px;
  left: 14px;
  top: 8px;
  background: currentColor;
}
.product-info { padding: 16px 16px 8px; }
.product-info h4 { min-height: 42px; margin: 0 0 8px; font-size: 16px; line-height: 1.35; }
.product-info p { min-height: 44px; margin: 0 0 10px; color: var(--muted); line-height: 1.5; }
.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}
.swatches span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 4px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.product-cta {
  flex: 1 1 0;
  height: 38px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--ink);
  font-weight: 900;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.product-cta:hover { background: var(--blue); color: var(--accent-contrast); }
.product-actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
}
.product-inquiry {
  flex: 0 0 72px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--accent-contrast);
  font-weight: 900;
  cursor: pointer;
}
.product-inquiry:hover {
  background: var(--blue-strong);
}

.category-banners {
  display: grid;
  gap: 20px;
}
.wide-banner {
  min-height: 230px;
  padding: 38px;
  border-radius: 8px;
  overflow: hidden;
}
.wide-banner h3 { margin: 0 0 12px; font-size: 34px; }
.wide-banner p { max-width: 620px; line-height: 1.65; }
.dark-band {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}
.dark-band p { color: var(--muted); }
.blue-band {
  background: #fff;
  border: 1px solid var(--line);
}
.accessory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.accessory-grid article {
  min-height: 180px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
}
.accessory-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef4ff;
  color: var(--blue);
  font-weight: 900;
}
.accessory-grid p { margin: 24px 0 8px; font-size: 22px; font-weight: 900; }
.accessory-grid a { color: var(--blue); font-weight: 900; }

.applications {
  color: var(--ink);
  background: var(--bg);
}
.applications h2 { text-align: center; }
.applications h2 span { display: block; color: var(--blue); }
.app-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.app-grid article {
  min-height: 210px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}
.app-grid h3 { margin-top: 0; }
.app-grid a {
  display: inline-block;
  margin-right: 12px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
}
.trust-row article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
  border-right: 1px solid var(--line);
}
.trust-row article:last-child { border-right: 0; }
.trust-row span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.trust-row h3 { margin: 0 0 4px; font-size: 16px; }
.trust-row p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.support-cards h2 { text-align: center; margin-bottom: 26px; }
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.support-grid article {
  min-height: 230px;
  padding: 34px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}
.support-grid h3 { margin-top: 0; font-size: 28px; line-height: 1.15; }
.support-grid p { color: var(--muted); }
.support-grid a { color: var(--blue); font-weight: 900; text-decoration: underline; }

.inquiry-section {
  max-width: var(--content-wide);
  scroll-margin-top: 24px;
}
.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: stretch;
}
.inquiry-copy,
.inquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.inquiry-section.is-located .inquiry-form {
  animation: inquiry-located .72s ease;
}
@keyframes inquiry-located {
  0% {
    border-color: rgba(var(--accent-rgb),.65);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.08);
  }
  100% {
    border-color: var(--line);
    box-shadow: none;
  }
}
.inquiry-copy {
  padding: 34px;
}
.inquiry-copy h2 {
  margin: 0 0 18px;
  text-align: left;
  font-size: 17px;
  line-height: 1.25;
}
.inquiry-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  text-align: justify;
}
.inquiry-copy p:last-child {
  margin-bottom: 0;
}
.inquiry-points {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.inquiry-points article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #f7f9fc;
}
.inquiry-points strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef4ff;
  color: var(--blue);
  font-size: 12px;
}
.inquiry-points span {
  color: var(--ink);
  font-weight: 800;
}
.inquiry-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}
.inquiry-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}
.inquiry-form .contact-priority {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.contact-priority span {
  color: var(--ink);
  font-size: 14px;
}
.contact-priority input {
  height: 46px;
  border-color: #d7dde7;
  background: #fff;
  font-size: inherit;
  font-weight: 500;
}
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #d7dde7;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
  font-weight: 500;
  outline: none;
}
.inquiry-form input,
.inquiry-form select {
  height: 46px;
}
.inquiry-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.08);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.btn.primary.inquiry-submit {
  width: 100%;
  height: 46px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: transparent;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: none;
  transition: background .16s ease, border-color .16s ease, color .16s ease, opacity .16s ease;
}
.btn.primary.inquiry-submit:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--accent-contrast);
  transform: none;
  box-shadow: none;
}
.btn.primary.inquiry-submit:active {
  transform: translateY(0);
  opacity: .82;
  box-shadow: none;
}
.btn.primary.inquiry-submit:disabled {
  cursor: wait;
  opacity: .58;
  transform: none;
  box-shadow: none;
}
.inquiry-result {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.footer {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 48px;
  padding: 58px 50px;
  background: #050b14;
  color: var(--accent-contrast);
}
.footer-brand {
  max-width: none;
}
.footer h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
}
.footer h3 {
  margin: 0 0 16px;
  color: #dbe6f4;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 800;
}
.footer p {
  margin: 0;
  color: #aab7c7;
  font-size: 13px;
  line-height: 1.75;
}
.footer-links {
  display: contents;
}
.footer-links h4 { margin: 0 0 16px; }
.footer-links a {
  display: block;
  margin: 0 0 10px;
  color: #aab7c7;
  font-size: 14px;
}
.back-top, .help {
  position: fixed;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  z-index: 30;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15,23,42,.16);
}
.back-top { bottom: 92px; background: #fff; color: #4b5563; font-size: 26px; }
.help { bottom: 34px; background: var(--blue); color: var(--accent-contrast); font-size: 25px; }
.back-top.is-shaking {
  animation: backtop-shake .32s ease;
}
@keyframes backtop-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}
.inquiry-float {
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--accent-contrast);
  font-size: 16px;
  font-weight: 900;
}

.detail-page {
  background: var(--bg);
}
.detail-shell {
  overflow: visible;
}
.detail-loading,
.detail-empty {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.detail-hero {
  width: min(calc(100% - 48px), 1400px);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.detail-subnav {
  position: fixed;
  top: 158px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 18;
  width: min(calc(100% - 48px), 1400px);
  min-height: 54px;
  margin: 18px auto 0;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}
body.header-compact .detail-subnav {
  top: 78px;
}
.detail-overview {
  margin-top: 96px;
}
.detail-subnav a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  color: #303744;
  font-weight: 900;
  font-size: 14px;
}
.detail-subnav a.is-active {
  background: var(--blue);
  color: var(--accent-contrast);
}
.detail-copy,
.detail-gallery,
.detail-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.detail-copy {
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.detail-back {
  width: max-content;
  margin-bottom: 26px;
  color: var(--blue);
  font-weight: 900;
}
.detail-copy h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}
.detail-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.detail-gallery {
  min-height: 560px;
  padding: 28px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
}
.detail-main-image {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #fff;
}
.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.detail-thumbs button {
  height: 72px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}
.detail-thumbs button.is-active {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(var(--accent-rgb),.12);
}
.detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.detail-section {
  width: min(calc(100% - 48px), 1400px);
  margin: 24px auto 0;
  padding: 36px;
  scroll-margin-top: 150px;
}
.detail-section h2 {
  margin: 0 0 18px;
  font-size: 28px;
}
.detail-overview {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
}
.detail-overview p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.detail-overview aside {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px;
  border-radius: 8px;
  background: #f7f9fc;
}
.detail-overview aside span {
  color: var(--muted);
  font-size: 13px;
}
.detail-overview aside strong {
  margin-bottom: 12px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.detail-grid article {
  padding: 28px;
  border-radius: 8px;
  background: #f7f9fc;
}
.detail-inquiry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
}
.detail-inquiry h2 {
  margin-bottom: 10px;
}
.detail-inquiry p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.detail-quote {
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: transparent;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .04em;
}
.detail-quote:hover {
  background: var(--blue);
  color: var(--accent-contrast);
}
.detail-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.spec-list p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 6px;
  background: #f7f9fc;
  color: #303744;
  line-height: 1.55;
}
.download-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.download-list a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.download-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--blue);
  color: var(--accent-contrast);
  font-size: 12px;
  font-weight: 900;
}
.download-list strong {
  font-size: 14px;
  line-height: 1.35;
}
.related-products > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.related-products a {
  min-height: 170px;
  padding: 18px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}
.related-products img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

@media (max-width: 1040px) {
  .utility, .main-nav, .section-pad, .footer { padding-left: 24px; padding-right: 24px; }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-overview { grid-template-columns: 1fr; }
  .download-list { grid-template-columns: repeat(2, 1fr); }
  .related-products > div { grid-template-columns: repeat(2, 1fr); }
  .menu { gap: 14px; font-size: 14px; }
  .actions { display: none; }
  .hero-slide { text-align: center; }
  .hero-copy { margin: 0 auto; }
  .hero-copy p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .release-panel { grid-template-columns: 1fr; }
  .accessory-grid, .trust-row, .footer-links { grid-template-columns: repeat(2, 1fr); }
  .app-grid, .support-grid { grid-template-columns: 1fr 1fr; }
  .footer { grid-template-columns: 1fr; }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 720px) {
  body.nav-open { overflow: hidden; }
  .detail-hero,
  .detail-subnav,
  .detail-section {
    width: calc(100% - 20px);
  }
  .detail-copy,
  .detail-gallery,
  .detail-section {
    padding: 22px;
  }
  .detail-gallery { min-height: 420px; }
  .detail-main-image { max-height: 320px; }
  .detail-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  .detail-grid,
  .spec-list,
  .download-list,
  .related-products > div {
    grid-template-columns: 1fr;
  }
  .detail-copy h1 { font-size: 31px; }
  .announcement {
    height: 36px;
    font-size: 11px;
  }
  .announcement-inner {
    width: 33.333vw;
    min-width: 210px;
    grid-template-columns: 1fr 38px;
  }
  body::before { height: 0; }
  body.header-compact::before { height: 0; }
  body.detail-page::before { height: 98px; }
  body.detail-page.header-compact::before { height: 62px; }
  .ticker { height: 36px; overflow: hidden; }
  .ticker-track {
    height: 36px;
    animation-duration: 64s;
  }
  .ticker-group {
    width: calc(33.333vw - 38px);
    min-width: 172px;
    height: 36px;
    flex-basis: calc(33.333vw - 38px);
  }
  .ticker a {
    max-width: none;
  }
  .ticker-toggle { width: 38px; height: 36px; }
  .ticker-toggle::before,
  .ticker-toggle::after {
    top: 11px;
    height: 14px;
  }
  .ticker-toggle::before { left: 14px; }
  .ticker-toggle::after { right: 14px; }
  body.ticker-paused .ticker-toggle::before {
    left: 15px;
    top: 10px;
  }
  .utility { display: none; }
  .site-header { top: 36px; overflow: visible; }
  body.header-compact .site-header { top: 0; }
  .main-nav {
    height: 62px;
    padding: 0 16px;
    gap: 12px;
    overflow: visible;
    background: rgba(255,255,255,.98);
    box-shadow: 0 1px 0 rgba(17,24,39,.08);
  }
  .mobile-menu-toggle { display: block; z-index: 60; }
  .logo {
    width: 128px;
    height: 40px;
  }
  .menu {
    position: fixed;
    top: 98px;
    left: 0;
    right: 0;
    height: calc(100vh - 98px);
    z-index: 55;
    display: block;
    padding: 18px 18px 110px;
    overflow-y: auto;
    background: #fff;
    color: var(--ink);
    transform: translateX(-100%);
    transition: transform .25s ease;
    box-shadow: 18px 0 60px rgba(15,23,42,.18);
  }
  .nav-open .menu { transform: translateX(0); }
  .menu > a,
  .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
  }
  .nav-item > a::after {
    content: "+";
    color: #89909c;
    font-size: 22px;
    font-weight: 600;
  }
  .nav-item.is-open > a::after { content: "-"; }
  .nav-item { height: auto; display: block; }
  .mega {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 8px 0 16px;
    padding: 0 0 12px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-item.is-open .mega { display: grid; }
  .mega-tabs {
    padding-right: 0;
    border-right: 0;
  }
  .mega-tab {
    min-height: 58px;
    padding: 12px;
    border: 1px solid var(--line);
    background: #fff;
  }
  .mega-products {
    display: block;
  }
  .mega-panel {
    grid-template-columns: 1fr;
  }
  .mega .feature {
    min-height: 112px;
    padding: 14px;
  }
  .mega .feature small {
    min-height: 0;
  }
  .actions {
    display: flex;
    margin-left: auto;
    gap: 8px;
  }
  .actions .account { display: none; }
  .actions button { width: 28px; height: 30px; }
  .quick-quote {
    height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
  .nav-quote {
    margin-top: 14px;
    justify-content: center;
  }

  .hero { min-height: 818px; }
  .hero-slide {
    padding: 118px 22px 72px;
    text-align: center;
  }
  .hero-slide::before {
    background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.7) 24%, rgba(255,255,255,0) 46%, rgba(255,255,255,0) 100%);
  }
  .hero-copy h1 { font-size: clamp(22px, 7vw, 30px); }
  .hero-copy p:not(.eyebrow) { font-size: 11px; }
  .button-row { justify-content: center; gap: 10px; flex-wrap: wrap; }
  .hero-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
  }
  .hero-dots { bottom: 40px; }
  .detail-menu {
    position: static;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    overflow: hidden;
    background: transparent;
    color: var(--ink);
    transform: none;
    box-shadow: none;
  }
  .detail-menu a:not(:first-child) { display: none; }
  .detail-subnav {
    top: 98px;
    min-height: 50px;
  }
  body.header-compact .detail-subnav { top: 62px; }
  .detail-overview { margin-top: 82px; }
  .detail-section { scroll-margin-top: 122px; }

  .section-pad { padding-top: 52px; padding-bottom: 52px; }
  .inquiry-strip {
    width: calc(100% - 20px);
    margin-top: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .inquiry-strip .btn {
    width: 100%;
    height: 40px;
  }
  .promo-grid, .accessory-grid, .app-grid, .support-grid, .trust-row, .footer-links { grid-template-columns: 1fr; }
  .machine-finder {
    padding-left: 0;
    padding-right: 0;
  }
  .machine-heading { padding: 0 24px 24px; }
  .machine-grid { grid-template-columns: 1fr; }
  .machine-grid {
    width: calc(100% - 12px);
    margin: 0 auto;
  }
  .machine-card {
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 24px;
    grid-template-rows: auto 1fr auto;
    border-right: 0;
    border-bottom: 1px solid #bfc6d1;
  }
  .machine-card:nth-last-child(-n+3) { border-bottom: 1px solid #bfc6d1; }
  .machine-card:last-child { border-bottom: 0; }
  .machine-series {
    justify-items: start;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    font-size: 13px;
  }
  .machine-card img { height: 230px; }
  .machine-card h3 { font-size: 31px; }
  .promo { min-height: 210px; padding: 28px; }
  .promo.tall { min-height: 360px; }
  .promo h3 { font-size: 26px; }
  .promo img { width: 68%; right: 8px; bottom: 8px; max-height: 190px; opacity: .9; }
  .release-panel { padding: 28px 20px; min-height: auto; gap: 28px; }
  .release-panel h3 { font-size: 27px; }
  .showcase { min-height: 270px; }
  .showcase img { max-height: 230px; }
  .tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 2px 8px;
    scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tabs button {
    flex: 0 0 auto;
    height: 40px;
    padding: 0 17px;
    font-size: 14px;
  }
  .section-heading { margin-bottom: 22px; }
  .section-heading h2, .applications h2, .support-cards h2 { font-size: 31px; }
  .collection-copy { text-align: left; }
  .collection-copy h3 { font-size: 26px; }
  .product-row {
    grid-auto-columns: minmax(248px, 78vw);
    gap: 14px;
    margin-right: -16px;
    padding-right: 16px;
  }
  .wide-banner { min-height: 210px; padding: 28px; }
  .wide-banner h3 { font-size: 29px; }
  .accessory-grid article { min-height: 170px; }
  .app-grid article { min-height: 190px; }
  .app-grid h3 { margin-top: 0; }
  .trust-row { padding: 10px; }
  .trust-row article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-row article:last-child { border-bottom: 0; }
  .support-grid article { min-height: 210px; }
  .support-grid h3 { margin-top: 0; }
  .inquiry-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-layout {
    gap: 14px;
  }
  .inquiry-section {
    scroll-margin-top: 14px;
  }
  .inquiry-copy,
  .inquiry-form {
    padding: 22px;
  }
  .inquiry-copy h2 {
    font-size: 17px;
  }
  .detail-inquiry {
    display: grid;
    gap: 18px;
  }
  .detail-inquiry .btn {
    width: 100%;
    height: 42px;
  }
  .footer { padding-top: 44px; padding-bottom: 44px; }
  .footer h2 { font-size: 23px; }
  .back-top, .help {
    right: 14px;
    width: 44px;
    height: 44px;
  }
}
