/* Base */
:root {
  color-scheme: light;
  --bg: #F5F5F7;
  --text: #1D1D1F;
  --muted: #6E6E73;
  --quiet: #9A9AA0;
  --line: #D8D8DE;
  --panel: #FFFFFF;
  --panel-solid: #FFFFFF;
  --surface-soft: #F1F2F4;
  --theme-dark-bg: #050608;
  --product-detail-mobile-edge: clamp(20px, 5.5vw, 32px);
  --product-detail-mobile-inner-edge: clamp(4px, 2vw, 16px);
  --accent-soft: rgba(255, 95, 31, 0.12);
  --inverse: #1D1D1F;
  --inverse-text: #FFFFFF;
  --red: #de2910;
  --orange: #FF5F1F;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  --page-max: 1180px;
  --page-width: min(82vw, var(--page-max));
  --wide-max: 1180px;
  --wide-width: min(84vw, var(--wide-max));
  --text-max: 520px;
  --nav-top: 0px;
  --nav-height: 48px;
  --nav-panel-gap: 6px;
  --products-trigger-bridge-height: 28px;
  --site-max: 1180px;
  --site-ratio: var(--page-width);
  --site-gutter: clamp(24px, 4vw, 48px);
  --content-max: min(
    var(--site-max),
    var(--site-ratio),
    calc(100vw - var(--site-gutter) * 2)
  );
  --content-offset: calc((100vw - var(--content-max)) / 2);
  --max: var(--site-max);
  --hero-height: min(86svh, 820px);
  --hero-bg-extra-scroll: clamp(260px, 34svh, 420px);
  --hero-stage-height: var(--hero-height);
  --scroll-gap: clamp(14px, 1.4vw, 22px);
  --model-card-width: clamp(420px, 38vw, 600px);
  --gallery-card-width: clamp(300px, 29vw, 390px);
  --related-card-width: clamp(260px, 24vw, 340px);
  --space-section: clamp(52px, 5.5vw, 86px);
  --section-gap: 88px;
  --space-section-tight: clamp(36px, 4vw, 64px);
  --space-card: clamp(16px, 1.6vw, 24px);
  --font-display-xl: clamp(34px, 4.2vw, 58px);
  --font-display-lg: clamp(30px, 3.4vw, 48px);
  --font-section-title: clamp(24px, 2.5vw, 36px);
  --font-card-title: clamp(17px, 1.25vw, 22px);
  --font-body-lg: clamp(15px, 0.95vw, 17px);
  --font-body: 14px;
  --font-small: 12px;
  --font-kicker: 10px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Model Specifications horizontal scroll boundary correction */
@media (max-width: 1679px) {
  .model-specs .horizontal-bleed {
    overflow: hidden !important;
  }

  .model-specs .horizontal-scroll {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-x: contain !important;
  }

  .model-specs .horizontal-track,
  .model-specs .model-spec-grid {
    width: max-content !important;
    max-width: max-content !important;
    min-width: 100% !important;
  }

  .model-specs .model-spec-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: var(--spec-gap) !important;
  }

  .model-specs .model-spec-card {
    flex: 0 0 clamp(var(--spec-card-min, 420px), var(--spec-card-width), var(--spec-card-max, 620px)) !important;
    width: auto !important;
    min-width: var(--spec-card-min, 420px) !important;
    max-width: var(--spec-card-max, 620px) !important;
  }
}

@media (max-width: 767px) {
  .model-specs .horizontal-scroll {
    padding-inline: 5vw !important;
    scroll-padding-inline: 5vw !important;
  }

  .model-specs .horizontal-track,
  .model-specs .model-spec-grid {
    width: max-content !important;
    max-width: max-content !important;
    min-width: 100% !important;
  }

  .model-specs .model-spec-grid {
    gap: clamp(16px, 5vw, 24px) !important;
  }

  .model-specs .model-spec-card {
    flex: 0 0 min(calc((100vw - 10vw) / 1.1), 420px) !important;
    width: min(calc((100vw - 10vw) / 1.1), 420px) !important;
    min-width: min(calc((100vw - 10vw) / 1.1), 420px) !important;
    max-width: 420px !important;
  }
}

@media (min-width: 1680px) {
  .model-specs .horizontal-bleed {
    overflow: hidden !important;
  }

  .model-specs .horizontal-scroll {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-inline: 0 !important;
    scroll-padding-inline: 0 !important;
  }

  .model-specs .horizontal-track,
  .model-specs .model-spec-grid {
    width: max-content !important;
    max-width: max-content !important;
    min-width: 100% !important;
    justify-content: flex-start !important;
  }

  .model-specs .model-spec-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: var(--spec-gap) !important;
  }

  .model-specs .model-spec-card {
    flex: 0 0 clamp(var(--spec-card-min, 420px), var(--spec-card-width), var(--spec-card-max, 620px)) !important;
    width: auto !important;
    min-width: var(--spec-card-min, 420px) !important;
    max-width: var(--spec-card-max, 620px) !important;
  }
}

/* Mobile Usage Scenarios 2-column correction */
@media (max-width: 767px) {
  .usage-open .usage-open-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: 100% !important;
  }

  .usage-open .usage-open-item,
  .usage-open .usage-open-item:first-child,
  .usage-open .usage-open-item:nth-child(odd),
  .usage-open .usage-open-item:nth-child(even),
  .usage-open .usage-open-item:nth-child(n + 3) {
    box-sizing: border-box !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 22px 12px !important;
    border-top: 0 !important;
    border-left: 0 !important;
  }

  .usage-open .usage-open-item:nth-child(odd) {
    padding-left: 0 !important;
    border-left: 0 !important;
  }

  .usage-open .usage-open-item:nth-child(even) {
    padding-right: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .usage-open .usage-open-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .usage-open .usage-open-index {
    margin-bottom: 16px !important;
    font-size: clamp(42px, 15vw, 64px) !important;
    line-height: 0.82 !important;
  }

  .usage-open .usage-open-item h3 {
    max-width: none !important;
    margin-bottom: 10px !important;
    font-size: clamp(17px, 4.8vw, 23px) !important;
    line-height: 1.08 !important;
  }

  .usage-open .usage-open-item p {
    max-width: none !important;
    font-size: clamp(12px, 3.3vw, 14px) !important;
    line-height: 1.36 !important;
  }
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #070809;
  --text: #f5f2ec;
  --muted: rgba(245, 242, 236, 0.66);
  --quiet: rgba(245, 242, 236, 0.44);
  --line: rgba(245, 242, 236, 0.14);
  --panel: rgba(255, 255, 255, 0.065);
  --panel-solid: #111315;
  --inverse: #f7f4ef;
  --inverse-text: #08090a;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  font-size: var(--font-body);
}

@media (min-width: 1024px) {
  body {
    min-width: 1024px;
  }
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.period-accent {
  color: var(--orange);
}

.arrow-accent {
  color: var(--orange);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
.hero-cta,
.nav-cta,
.card-cta,
.text-button {
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

button:hover,
.hero-cta:hover,
.nav-cta:hover,
.card-cta:hover,
.text-button:hover {
  transform: translateY(-2px);
}

button:active,
.hero-cta:active,
.nav-cta:active,
.card-cta:active,
.text-button:active {
  transform: translateY(1px);
}

img {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: var(--font-display-xl);
  line-height: 1.04;
  letter-spacing: -0.028em;
}

h2 {
  margin-bottom: 14px;
  font-size: var(--font-section-title);
  line-height: 1.08;
  letter-spacing: -0.024em;
}

h3 {
  margin-bottom: 8px;
  font-size: var(--font-card-title);
  line-height: 1.14;
  letter-spacing: -0.014em;
}

p {
  line-height: 1.5;
}

.kicker {
  margin: 0 0 18px;
  color: var(--quiet);
  font-size: var(--font-kicker);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Layout */
.section,
.contact,
.featured,
.trust-line,
.page,
.product-page,
.related,
footer {
  width: var(--content-max);
  margin-inline: auto;
}

.site-container,
.section-inner,
.header-inner,
.hero-content,
.product-detail-inner,
.page-inner {
  width: var(--content-max);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.42);
  backdrop-filter: saturate(130%) blur(2px);
  -webkit-backdrop-filter: saturate(130%) blur(2px);
  pointer-events: none;
}

.site-header__shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100vw - 48px));
  height: var(--nav-height);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  pointer-events: auto;
  transition:
    color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-over-hero .site-header__shell {
  box-shadow: none;
}

.site-header.is-over-hero {
  color: #f7f4ef;
}

.site-header.is-over-hero .brand,
.site-header.is-over-hero .nav button,
.site-header.is-over-hero .nav a,
.site-header.is-over-hero .theme-button,
.site-header.is-over-hero .menu-button {
  color: #f7f4ef;
}

.site-header.is-over-hero .brand-mark img {
  filter: invert(1);
}

.site-header.is-over-hero .brand-text small {
  color: rgba(247, 244, 239, 0.62);
}

.site-header.is-over-hero .nav-cta {
  border-color: rgba(247, 244, 239, 0.34);
  background: transparent;
  color: #f7f4ef;
}

.site-header.is-over-hero .nav-cta:hover {
  border-color: rgba(247, 244, 239, 0.7);
  background: rgba(247, 244, 239, 0.08);
}

.site-header.is-over-content .site-header__shell {
  box-shadow: none;
}

.site-header.is-over-content {
  color: #f7f4ef;
}

.site-header.is-over-content .brand,
.site-header.is-over-content .nav button,
.site-header.is-over-content .nav a,
.site-header.is-over-content .theme-button,
.site-header.is-over-content .menu-button {
  color: #f7f4ef;
}

.site-header.is-over-content .brand-mark img {
  filter: invert(1);
}

.site-header.is-over-content .brand-text small,
.site-header.is-over-content .language-switch,
.site-header.is-over-content .language-switch a {
  color: rgba(247, 244, 239, 0.62);
}

.site-header.is-over-content .language-switch a:hover,
.site-header.is-over-content .language-switch a.is-active {
  color: #f7f4ef;
}

.site-header.is-over-content .nav-cta {
  border-color: rgba(247, 244, 239, 0.34);
  background: transparent;
  color: #f7f4ef;
}

html[data-theme="dark"] .site-header.is-over-content .site-header__shell {
  box-shadow: none;
}

html[data-theme="dark"] .site-header.is-over-content {
  color: #f7f4ef;
}

html[data-theme="dark"] .site-header.is-over-content .brand,
html[data-theme="dark"] .site-header.is-over-content .nav button,
html[data-theme="dark"] .site-header.is-over-content .nav a,
html[data-theme="dark"] .site-header.is-over-content .theme-button,
html[data-theme="dark"] .site-header.is-over-content .menu-button {
  color: #f7f4ef;
}

html[data-theme="dark"] .site-header.is-over-content .brand-mark img {
  filter: invert(1);
}

html[data-theme="dark"] .site-header.is-over-content .brand-text small {
  color: rgba(247, 244, 239, 0.62);
}

html[data-theme="dark"] .site-header.is-over-content .nav-cta {
  border-color: rgba(247, 244, 239, 0.34);
  background: transparent;
  color: #f7f4ef;
}

.brand {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  text-decoration: none;
}

.header-brand {
  justify-self: start;
}

.brand-mark {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-text strong span {
  color: var(--red);
}

.brand-text small {
  display: none;
  margin-top: 0;
  color: var(--quiet);
  font-size: 10px;
}

.brand-text small em {
  font-style: normal;
  opacity: 0.68;
}

.nav,
.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
}

.nav {
  justify-content: center;
  gap: 30px;
}

.nav-actions {
  justify-content: end;
  gap: 14px;
}

.header-nav {
  justify-self: center;
}

.header-actions {
  justify-self: end;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.language-switch a {
  color: var(--quiet);
  text-decoration: none;
}

.language-switch a:hover,
.language-switch a.is-active {
  color: var(--text);
}

.mobile-language-switch {
  display: none;
}

.mobile-header-language-switch {
  display: none;
}

.nav button,
.nav a,
.theme-button,
.menu-button,
.text-button {
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
}

.nav button,
.nav a,
.theme-button,
.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 8px;
  font-size: 12px;
  text-decoration: none;
}

.nav > a,
.nav-product-trigger,
.nav-support-trigger,
.nav button {
  position: relative;
}

.nav > a::after,
.nav-product-trigger::after,
.nav-support-trigger::after,
.nav button::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: #f26a21;
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 220ms ease, transform 220ms ease;
}

.nav > a:hover::after,
.nav-product:hover .nav-product-trigger::after,
.nav-product-trigger:focus-visible::after,
.nav-support:hover .nav-support-trigger::after,
.nav-support-trigger:focus-visible::after,
.nav button:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-product {
  position: relative;
}

.nav-support {
  position: relative;
}

.nav .mobile-products-toggle,
.mobile-products-panel,
.mobile-support-panel,
.mobile-nav-scroll,
.products-hover-bridge {
  display: none;
}

.nav-item-products {
  position: relative;
}

@media (min-width: 768px) {
  .mobile-nav-scroll {
    display: contents;
  }
}

@media (min-width: 768px) {
  .site-header,
  .nav,
  .nav-support,
  .nav-item-products {
    overflow: visible;
  }

  .products-hover-bridge {
    position: fixed;
    top: calc(var(--nav-top) + var(--nav-height));
    right: 0;
    left: 0;
    z-index: 218;
    height: calc(9px + var(--products-trigger-bridge-height));
    background: transparent;
    pointer-events: auto;
  }

  .site-header.is-products-open .products-hover-bridge,
  .site-header:has(.nav-item-products:focus-within) .products-hover-bridge {
    display: block;
  }

  .site-header.is-products-open,
  .site-header:has(.nav-item-products:focus-within) {
    z-index: 220;
  }

  .nav-item-products .products-dropdown {
    position: fixed;
    top: calc(var(--nav-top) + var(--nav-height) + var(--nav-panel-gap));
    left: 50%;
  }
}

@media (min-width: 1920px) {
  :root {
    --nav-panel-gap: 6px;
    --products-trigger-bridge-height: 56px;
  }
}

.support-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  z-index: 221;
  display: grid;
  width: 236px;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(8, 9, 10, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: saturate(130%) blur(2px);
  -webkit-backdrop-filter: saturate(130%) blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-support:hover .support-dropdown,
.nav-support:focus-within .support-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.support-menu-item {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 10px;
  border-radius: 8px;
  color: #f7f4ef;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.support-menu-item:hover {
  color: var(--orange);
  background: rgba(247, 244, 239, 0.08);
}

.support-menu-item span {
  color: var(--orange);
}

.product-dropdown {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  z-index: 220;
  width: min(92vw, 1440px);
  max-width: none;
  padding: 16px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(8, 9, 10, 0.9);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: saturate(130%) blur(2px);
  -webkit-backdrop-filter: saturate(130%) blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-product:focus-within .product-dropdown,
.nav-item-products:focus-within .products-dropdown,
.products-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.product-dropdown-inner {
  width: var(--page-width);
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0;
}

.products-menu-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.products-menu-heading-copy {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 16px;
}

.products-menu-heading strong {
  color: #f7f4ef;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.products-menu-heading span {
  color: rgba(247, 244, 239, 0.58);
  font-size: 13px;
}

.products-dropdown-view-all {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  color: #f7f4ef;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.products-dropdown-view-all:hover {
  opacity: 0.78;
  transform: translateY(-1px);
}

.products-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.products-menu-group {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.products-menu-group h3 {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-menu-group h3 a {
  color: inherit;
  text-decoration: none;
}

.products-menu-group h3 a:hover {
  color: #ff7a00;
}

.products-menu-group p {
  min-height: 36px;
  margin: 0 0 6px;
  color: rgba(247, 244, 239, 0.58);
  font-size: 12px;
  line-height: 1.4;
}

.products-menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  min-height: 30px;
  border-top: 1px solid rgba(247, 244, 239, 0.12);
  color: #f7f4ef;
  text-decoration: none;
  transition: color 180ms ease;
}

.products-menu-item:first-child {
  border-top: 0;
}

.products-menu-item:hover {
  color: var(--orange);
}

.products-menu-name {
  overflow: hidden;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.products-menu-detail {
  color: rgba(247, 244, 239, 0.58);
  font-size: 12px;
  white-space: nowrap;
}

.products-menu-arrow {
  color: var(--orange);
  font-size: 14px;
  line-height: 1;
}

.site-header.is-over-content .product-dropdown {
  border-color: rgba(16, 17, 18, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 90px rgba(25, 27, 29, 0.14);
}

.site-header.is-over-content .support-dropdown {
  border-color: rgba(16, 17, 18, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(25, 27, 29, 0.14);
}

.site-header.is-over-content .support-menu-item {
  color: #101112;
}

.site-header.is-over-content .support-menu-item:hover {
  color: var(--orange);
  background: rgba(8, 9, 10, 0.05);
}

.site-header.is-over-content .products-menu-heading strong,
.site-header.is-over-content .products-dropdown-view-all,
.site-header.is-over-content .products-menu-item {
  color: #101112;
}

.site-header.is-over-content .products-menu-heading span,
.site-header.is-over-content .products-menu-group p,
.site-header.is-over-content .products-menu-detail {
  color: rgba(16, 17, 18, 0.54);
}

.site-header.is-over-content .products-menu-group {
  background: transparent;
}

.site-header.is-over-content .products-menu-item {
  border-top-color: rgba(8, 9, 10, 0.06);
}

.site-header.is-over-content .products-menu-item:hover {
  color: var(--orange);
}

.site-header.is-over-hero .product-dropdown,
html[data-theme="dark"] .site-header.is-over-content .support-dropdown,
html[data-theme="dark"] .site-header.is-over-hero .support-dropdown,
html[data-theme="dark"] .site-header.is-over-content .product-dropdown {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(8, 9, 10, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.site-header.is-over-hero .product-dropdown,
html[data-theme="dark"] .site-header.is-over-content .product-dropdown {
  background: rgba(8, 9, 10, 0.9);
}

html[data-theme="dark"] .site-header.is-over-content .support-menu-item,
html[data-theme="dark"] .site-header.is-over-hero .support-menu-item {
  color: #f7f4ef;
}

html[data-theme="dark"] .site-header.is-over-content .support-menu-item:hover,
html[data-theme="dark"] .site-header.is-over-hero .support-menu-item:hover {
  color: var(--orange);
  background: rgba(247, 244, 239, 0.08);
}

.site-header.is-over-hero .products-menu-heading strong,
.site-header.is-over-hero .products-dropdown-view-all,
.site-header.is-over-hero .products-menu-item,
html[data-theme="dark"] .site-header.is-over-content .products-menu-heading strong,
html[data-theme="dark"] .site-header.is-over-content .products-dropdown-view-all,
html[data-theme="dark"] .site-header.is-over-content .products-menu-item {
  color: #f7f4ef;
}

.site-header.is-over-hero .products-menu-group,
html[data-theme="dark"] .site-header.is-over-content .products-menu-group {
  background: transparent;
}

.site-header.is-over-hero .products-menu-heading span,
.site-header.is-over-hero .products-menu-group p,
.site-header.is-over-hero .products-menu-detail,
html[data-theme="dark"] .site-header.is-over-content .products-menu-heading span,
html[data-theme="dark"] .site-header.is-over-content .products-menu-group p,
html[data-theme="dark"] .site-header.is-over-content .products-menu-detail {
  color: rgba(247, 244, 239, 0.58);
}

.site-header.is-over-hero .products-menu-item,
html[data-theme="dark"] .site-header.is-over-content .products-menu-item {
  border-top-color: rgba(247, 244, 239, 0.12);
}

.site-header.is-over-hero .products-menu-item:hover,
html[data-theme="dark"] .site-header.is-over-content .products-menu-item:hover {
  color: var(--orange);
}

.text-button {
  color: #f5f3ef;
}

.nav button:hover,
.nav a:hover,
.theme-button:hover,
.text-button:hover {
  border-color: transparent;
}

.nav-cta,
.hero-cta,
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--inverse);
  border-radius: 6px;
  background: var(--inverse);
  color: var(--inverse-text);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
}

.nav-cta:hover,
.hero-cta:hover,
.card-cta:hover {
  box-shadow: 0 18px 40px rgba(16, 17, 18, 0.18);
}

html[data-theme="dark"] .nav-cta:hover,
html[data-theme="dark"] .hero-cta:hover,
html[data-theme="dark"] .card-cta:hover {
  box-shadow: 0 18px 44px rgba(255, 255, 255, 0.1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

/*
PROTECTED HERO SYSTEM
This block supports the homepage scroll gate:

* .hero-scroll-stage
* .hero-sticky-viewport
* .hero-bg-scroll
* .hero-bg using --hero-bg-y

Do not rewrite this block during unrelated product, gallery, navigation, or content tasks.
*/
.hero-scroll-stage {
  position: relative;
  height: var(--hero-stage-height);
  min-height: 720px;
  max-height: 820px;
  overflow: visible;
  background: transparent;
  isolation: isolate;
}

.hero-sticky-viewport {
  position: relative;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  background: #08090a;
}

.hero-bg-scroll {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

html[data-theme="dark"] .hero-scroll-stage {
  background: transparent;
}

.hero-slide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 70px var(--content-offset) clamp(26px, 2.4vw, 38px);
}

.hero-ui {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100%;
  z-index: 2;
  margin: 0;
  touch-action: pan-y;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center 48%);
  filter: saturate(1.02) contrast(1.02);
  transform: translate3d(0, var(--hero-bg-y, 0px), 0);
  will-change: transform;
}

html[data-theme="dark"] .hero-bg {
  filter: saturate(1.02) contrast(1.02);
}

@media (min-width: 1024px) {
  .hero-scroll-stage,
  .hero,
  .hero-b-series {
    height: clamp(640px, 78svh, 860px);
    max-height: none;
  }
}

@media (min-width: 1440px) {
  .hero-scroll-stage,
  .hero,
  .hero-b-series {
    height: clamp(700px, 82svh, 900px);
    max-height: none;
  }
}

.hero-image-link-target,
.hero-image-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  cursor: pointer;
}

.hero-image-link-target {
  pointer-events: auto;
}

.hero-image-link {
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  justify-self: start;
  align-items: flex-start;
  width: clamp(420px, 36vw, 560px);
  min-width: 420px;
  max-width: 560px;
  color: #f5f3ef;
  text-align: left;
  transform: translateY(40px);
  pointer-events: auto;
}

.hero-slide-b-series .hero-copy {
  grid-column: 2;
  justify-self: end;
  align-items: flex-end;
  max-width: 560px;
  text-align: right;
}

.hero-slide-b-series .hero-text {
  margin-left: auto;
  margin-right: 0;
}

.hero-slide-b-series .hero-features {
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

.hero-eyebrow {
  margin: 0 0 12px;
  color: #f5f3ef;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.hero-title {
  max-width: 460px;
  margin: 14px 0 18px;
  font-size: clamp(44px, 4.2vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-slide-b-series .hero-title {
  margin-right: 0;
  margin-left: auto;
}

.hero-slide-s35 .hero-title {
  max-width: 520px;
}

.hero-slide-s35 .hero-copy {
  grid-column: 1;
  justify-self: start;
  max-width: 480px;
  text-align: left;
}

.hero-text {
  max-width: 460px;
  margin: 0;
  color: rgba(245, 243, 239, 0.82);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.012em;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(86px, max-content));
  justify-content: start;
  gap: 18px;
  max-width: 560px;
  margin: 24px 0 0;
}

.hero-feature {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  width: auto;
  flex-shrink: 0;
  min-height: auto;
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
  color: #f5f3ef;
  font-size: 13px;
  line-height: 1.18;
}

.hero-feature:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

.hero-feature-icon {
  display: inline-block;
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.65;
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 0;
  align-items: center;
  margin-bottom: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions {
  position: relative;
  bottom: auto;
  left: auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  width: auto;
  margin-top: 18px;
  transform: none;
  pointer-events: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-slide-b-series .hero-actions {
  right: auto;
  left: auto;
  justify-content: flex-end;
  text-align: right;
}

.hero-ui .hero-cta {
  min-height: 68px;
  padding: 0 28px;
  border-color: var(--orange);
  background: var(--orange);
  color: #101112;
  font-size: 24px;
}

.hero-ui .text-button {
  min-height: 68px;
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
}

.view-all-products {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex: 0 0 auto;
}

@media (max-width: 1360px) {
  .hero-features {
    grid-template-columns: repeat(2, minmax(120px, max-content));
    row-gap: 10px;
    column-gap: 24px;
  }

  .hero-actions {
    margin-top: 14px;
  }
}

@media (max-width: 1100px) {
  .hero-copy,
  .hero-slide-b-series .hero-copy,
  .hero-slide-s35 .hero-copy {
    width: min(88vw, 520px);
    min-width: 0;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .hero-actions {
    margin-top: 16px;
  }
}

.hero-arrows,
.hero-arrow,
.hero-dots,
.hero-index {
  pointer-events: auto;
}

.hero-arrows {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  width: clamp(38px, 3vw, 52px);
  height: clamp(38px, 3vw, 52px);
  place-items: center;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.035);
  color: var(--orange);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-arrow::before {
  content: "";
  width: 42%;
  height: 42%;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  color: #ff6a1a;
  fill: #ff6a1a;
}

.hero-arrow:has(svg)::before {
  content: none;
}

.hero-arrow svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  color: var(--orange);
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.hero-arrow svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-arrow-left {
  left: clamp(32px, 5vw, 128px);
}

.hero-arrow-left::before {
  mask-image: url("/assets/icons/arrowleft.svg");
  -webkit-mask-image: url("/assets/icons/arrowleft.svg");
}

.hero-arrow-right {
  right: clamp(32px, 5vw, 128px);
}

.hero-arrow-right::before {
  mask-image: url("/assets/icons/arrowright.svg");
  -webkit-mask-image: url("/assets/icons/arrowright.svg");
}

.hero-arrow:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-50%) scale(1.04);
}

@media (max-width: 767px) {
  .hero-arrow {
    top: auto;
    bottom: 18px;
    z-index: 8;
    width: 42px;
    height: 42px;
    color: var(--orange);
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero-arrow-left {
    left: 18px;
  }

  .hero-arrow-right {
    right: 18px;
  }

  .hero-arrow:hover {
    transform: none;
  }

  .hero-dots,
  .hero-pagination {
    right: auto;
    bottom: 28px;
    left: 50%;
    z-index: 8;
    justify-content: center;
    width: auto;
    max-width: calc(100vw - 140px);
    gap: 10px;
    transform: translateX(-50%);
  }
}

.hero-dots {
  position: absolute;
  bottom: clamp(22px, 2.5vw, 34px);
  left: var(--content-offset);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: none;
}

.hero-index-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(245, 243, 239, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: color 220ms ease, opacity 220ms ease;
}

.hero-index-number {
  line-height: 1;
}

.hero-index-line {
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: rgba(245, 243, 239, 0.28);
  transition: width 220ms ease, background 220ms ease, opacity 220ms ease;
}

.hero-index-item:last-child .hero-index-line {
  display: none;
}

.hero-index-item.is-active {
  color: #f5f3ef;
}

.hero-index-item.is-active .hero-index-line {
  width: 42px;
  background: #f5f3ef;
}

.hero-index-item:hover {
  color: #f5f3ef;
}

.hero-index-item:hover .hero-index-line {
  background: rgba(245, 243, 239, 0.72);
}

.home-content-layer {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  background: var(--bg);
}

.home-content-layer .kicker {
  color: var(--orange);
}

/* Product Family */
.product-family-section {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 72px 0 88px;
  transform: none;
}

.product-family-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 32px;
}

.product-family-intro,
.product-family-title {
  max-width: 620px;
}

.product-family-intro h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

.product-family-header .text-button {
  flex-shrink: 0;
  margin-bottom: 6px;
  color: var(--text);
}

.product-family-header .text-button .arrow-accent {
  color: var(--orange);
}

.product-family-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-family-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-solid);
  color: var(--text);
  text-decoration: none;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.product-family-card:hover {
  border-color: rgba(222, 41, 16, 0.22);
  box-shadow: 0 18px 46px rgba(17, 18, 19, 0.1);
  transform: translateY(-3px);
}

.family-image,
.product-media,
.feature-visual,
.product-hero-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 66%, rgba(255, 255, 255, 0.76), transparent 46%),
    linear-gradient(145deg, rgba(234, 238, 238, 0.72), rgba(255, 255, 255, 0.92));
}

html[data-theme="dark"] .family-image,
html[data-theme="dark"] .product-media,
html[data-theme="dark"] .feature-visual,
html[data-theme="dark"] .product-hero-media {
  background:
    radial-gradient(circle at 50% 66%, rgba(255, 255, 255, 0.7), transparent 46%),
    linear-gradient(145deg, rgba(235, 239, 239, 0.96), rgba(255, 255, 255, 0.82));
}

.family-image {
  width: 100%;
  min-height: 280px;
  flex: 0 0 68%;
  border-radius: 0;
}

.family-image img,
.product-media img,
.feature-visual img,
.product-hero-media img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 88%;
  object-fit: contain;
  object-position: center;
}

.family-image img {
  position: absolute;
  inset: 6%;
  width: 88%;
  height: 88%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.product-family-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 14px;
  align-items: end;
  flex: 1;
  padding: 20px;
}

.product-family-card h3 {
  grid-column: 1 / -1;
  margin: 0 0 5px;
  font-size: 18px;
}

.product-family-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.product-family-card__body > span {
  justify-self: end;
  align-self: end;
  color: var(--orange);
  font-weight: 900;
}

/* EXM feature effects */
.exm-feature-effects {
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  background: var(--theme-dark-bg);
  color: #fff;
}

@media (min-width: 768px) {
  html:has([data-exm-feature-effects]),
  body:has([data-exm-feature-effects]) {
    overflow-x: visible;
  }

  .exm-sound-level.reveal,
  .exm-sound-level.reveal.is-visible {
    transform: none;
  }
}

.exm-sequence-reveal {
  position: relative;
  height: 360vh;
  min-height: 2400px;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  background: var(--theme-dark-bg);
}

.exm-sequence-frame {
  --exm-dimensions-scene-width: min(1060px, 78vw);
  --exm-dimensions-copy-top: clamp(56px, 8vh, 84px);
  --product-visual-y-offset: 0px;
  position: sticky;
  top: var(--nav-height, 48px);
  width: 100%;
  height: calc(100vh - var(--nav-height, 48px));
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  background: var(--theme-dark-bg);
}

.exm-dimensions-visual-stage {
  position: relative;
  width: 100%;
  min-height: 0;
  overflow: hidden;
}

.exm-dimensions-visual-group {
  position: absolute;
  inset: 0;
  transform: translateY(var(--product-visual-y-offset));
  will-change: transform;
}

@media (min-width: 900px) {
  .exm-sequence-frame {
    --product-visual-y-offset: clamp(40px, 6dvh, 88px);
  }
}

.exm-sequence-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--exm-dimensions-scene-width);
  height: auto;
  object-fit: contain;
  opacity: 0;
  display: block;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 100ms linear;
  will-change: opacity;
}

.exm-sequence-image:first-child {
  opacity: 1;
}

.exm-sequence-copy-group {
  position: absolute;
  z-index: 4;
  top: var(--exm-dimensions-copy-top);
  right: max(clamp(32px, 5vw, 80px), calc((100vw - var(--exm-dimensions-scene-width)) / 2));
  bottom: auto;
  left: max(clamp(32px, 5vw, 80px), calc((100vw - var(--exm-dimensions-scene-width)) / 2));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 48px);
  align-items: start;
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
  pointer-events: none;
  transform: translateY(0);
  will-change: opacity, transform;
}

.exm-sequence-copy-item {
  margin: 0;
  opacity: 0;
  color: inherit;
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.38);
  transform: translateY(20px);
  will-change: opacity, transform;
}

.exm-sequence-copy-item .period-accent {
  color: var(--orange);
}

.exm-dimension-overlay {
  --dimension-length-progress: 0;
  --dimension-length-label-progress: 0;
  --dimension-depth-progress: 0;
  --dimension-depth-label-progress: 0;
  --dimension-height-line-progress: 0;
  --dimension-height-title-progress: 0;
  --dimension-height-row-1-progress: 0;
  --dimension-height-row-2-progress: 0;
  --dimension-height-row-3-progress: 0;
  --dimension-mobile-progress: 0;
  --dimension-mobile-offset: 20px;
  position: absolute;
  inset: 0;
  z-index: 3;
  color: rgba(245, 248, 252, 0.9);
  pointer-events: none;
}

.exm-dimension-desktop {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--exm-dimensions-scene-width);
  aspect-ratio: 3373 / 1525;
  transform: translate(-50%, -50%);
}

.exm-dimension-line {
  position: absolute;
  color: rgba(245, 248, 252, 0.9);
  opacity: 1;
}

.exm-dimension-line--length {
  --dimension-rule-progress: var(--dimension-length-progress);
  --dimension-label-progress: var(--dimension-length-label-progress);
  top: 3.6%;
  left: 19.2%;
  width: 39.2%;
  transform: rotate(-5.2deg);
}

.exm-dimension-line--depth {
  --dimension-rule-progress: var(--dimension-depth-progress);
  --dimension-label-progress: var(--dimension-depth-label-progress);
  top: 2.4%;
  left: 56.8%;
  width: 21.5%;
  transform: rotate(7.8deg);
}

.exm-dimension-rule {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(245, 248, 252, 0.7);
  opacity: var(--dimension-rule-progress);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.16);
  transform: scaleX(var(--dimension-rule-progress));
  transform-origin: left center;
}

.exm-dimension-rule::before,
.exm-dimension-rule::after {
  display: none;
}

.exm-dimension-label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  color: rgba(245, 248, 252, 0.96);
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 460;
  letter-spacing: 0;
  opacity: var(--dimension-label-progress);
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  transform: translateX(-50%);
  white-space: nowrap;
}

.exm-dimension-height-line {
  position: absolute;
  top: 9%;
  left: 86.6%;
  height: 78%;
  width: 1px;
  background: rgba(245, 248, 252, 0.72);
  opacity: var(--dimension-height-line-progress);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.16);
  transform: scaleY(var(--dimension-height-line-progress));
  transform-origin: bottom center;
}

.exm-dimension-height-line::before,
.exm-dimension-height-line::after {
  display: none;
}

.exm-dimension-height {
  position: absolute;
  top: 54.5%;
  left: calc(86.6% + 48px);
  width: min(160px, calc(100% - 86.6% - 56px));
  color: rgba(245, 248, 252, 0.94);
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.62);
  will-change: opacity;
}

.exm-dimension-height p,
.exm-dimension-mobile-height p {
  margin: 0 0 20px;
  color: rgba(245, 248, 252, 0.96);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 560;
  letter-spacing: 0;
}

.exm-dimension-height p {
  opacity: var(--dimension-height-title-progress);
}

.exm-dimension-height dl,
.exm-dimension-mobile-height dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.exm-dimension-height div,
.exm-dimension-mobile-height div {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  justify-content: start;
  align-items: baseline;
}

.exm-dimension-height div {
  opacity: var(--height-row-progress, 0);
}

.exm-dimension-height div:nth-child(1) {
  --height-row-progress: var(--dimension-height-row-1-progress);
}

.exm-dimension-height div:nth-child(2) {
  --height-row-progress: var(--dimension-height-row-2-progress);
}

.exm-dimension-height div:nth-child(3) {
  --height-row-progress: var(--dimension-height-row-3-progress);
}

.exm-dimension-height dt,
.exm-dimension-height dd,
.exm-dimension-mobile-height dt,
.exm-dimension-mobile-height dd {
  margin: 0;
  color: rgba(245, 248, 252, 0.92);
  font-size: clamp(15px, 1.32vw, 20px);
  font-weight: 430;
  letter-spacing: 0;
  white-space: nowrap;
}

.exm-dimension-height dt::after,
.exm-dimension-mobile-height dt::after {
  content: ":";
  display: inline-block;
  margin-left: 10px;
  color: rgba(245, 248, 252, 0.74);
}

.exm-dimension-mobile-height {
  display: none;
}

.exm-sequence-cooling-title {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0;
  color: rgba(245, 248, 252, 0.96);
  background: none;
  font-size: var(--font-section-title);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(32px);
  will-change: opacity, transform;
}

.exm-sequence-cooling-title .period-accent {
  color: rgba(245, 248, 252, 0.96);
  -webkit-text-fill-color: rgba(245, 248, 252, 0.96);
}

.exm-dimensions-cooling-bridge {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: clamp(24px, 4vh, 52px) 0 clamp(18px, 3vh, 36px);
  background: var(--theme-dark-bg);
  pointer-events: none;
}

.exm-dimensions-cooling-bridge__inner {
  width: var(--content-max);
  margin-inline: auto;
}

.exm-cooling-effect {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow-x: hidden;
  background: var(--theme-dark-bg);
}

.exm-cooling-effect-media {
  position: relative;
  width: 100%;
  min-height: clamp(680px, 82vh, 940px);
  overflow: hidden;
  background: var(--theme-dark-bg);
}

.exm-cooling-effect-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--content-max);
  min-height: inherit;
  margin-inline: auto;
  align-items: start;
  padding: clamp(28px, 4vw, 64px) 0 clamp(72px, 9vw, 140px);
  pointer-events: none;
}

.exm-cooling-effect-copy {
  max-width: 980px;
  color: rgba(245, 248, 252, 0.94);
}

.exm-cooling-effect-title {
  max-width: 760px;
  margin: 0 0 clamp(22px, 3vw, 38px);
  color: rgba(245, 248, 252, 0.96);
  font-size: clamp(44px, 6.6vw, 108px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.exm-cooling-effect-body,
.exm-cooling-effect-proof {
  max-width: 760px;
  margin: 0;
  color: rgba(245, 248, 252, 0.72);
  font-size: clamp(18px, 1.55vw, 26px);
  font-weight: 430;
  line-height: 1.38;
  letter-spacing: 0;
}

.exm-cooling-effect-proof {
  max-width: min(100%, 1120px);
  margin-top: clamp(44px, 5vw, 76px);
  font-size: clamp(56px, 8.8vw, 148px);
  font-weight: 720;
  line-height: 0.88;
}

.exm-cooling-effect-body.exm-cooling-effect-closing {
  margin-top: clamp(28px, 3.4vw, 56px);
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(42px, 4.2vw, 72px);
  font-weight: 780;
  line-height: 1.02;
}

.cooling-main-claim {
  position: relative;
  display: inline-grid;
  gap: 0.04em;
  max-width: 100%;
  overflow-wrap: normal;
  color: rgba(245, 248, 252, 0.96);
  background: none;
  text-shadow: 0 0 22px rgba(80, 210, 255, 0.1);
  animation: none;
}

.cooling-main-claim__line {
  display: block;
  width: max-content;
  max-width: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(80, 210, 255, 0.1);
}

.cooling-main-claim__line--cold {
  background-image: linear-gradient(100deg, #9b7cff 0%, #6e7dff 52%, #37b8ff 100%);
}

.cooling-main-claim__line--real {
  color: rgba(255, 255, 255, 0.96);
  background: none;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.cooling-main-claim .period-accent,
.exm-cooling-effect-closing .period-accent,
.exm-cooling-effect-body .period-accent,
.exm-cooling-effect-features .period-accent {
  color: var(--orange);
  background: none;
  -webkit-text-fill-color: var(--orange);
}

.cooling-main-claim::after {
  content: none;
}

.exm-cooling-effect-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(44px, 6vw, 96px);
  max-width: min(100%, 1120px);
  margin-top: clamp(56px, 6vw, 82px);
  padding-top: clamp(34px, 4vw, 56px);
  border-top: 1px solid rgba(245, 248, 252, 0.2);
}

.exm-cooling-effect-features article {
  min-width: 0;
}

.exm-cooling-effect-features article + article {
  padding-left: clamp(36px, 4vw, 64px);
  border-left: 1px solid rgba(245, 248, 252, 0.2);
}

.exm-cooling-effect-features h3 {
  margin: 0 0 10px;
  color: rgba(245, 248, 252, 0.92);
  font-size: clamp(26px, 2.55vw, 42px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.exm-cooling-effect-features article:nth-child(1) h3 {
  color: #42e4ff;
}

.exm-cooling-effect-features article:nth-child(2) h3 {
  color: #4c8dff;
}

.exm-cooling-effect-features article:nth-child(3) h3 {
  color: #a479ff;
}

.exm-cooling-effect-features p {
  margin: 0;
  color: rgba(245, 248, 252, 0.56);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 420;
  line-height: 1.42;
}

.exm-cooling-effect-body {
  max-width: 620px;
  color: rgba(245, 248, 252, 0.58);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.45;
}

.exm-cooling-effect-copy {
  opacity: 0;
  transform: translateY(22px);
}

.exm-cooling-effect.is-visible .exm-cooling-effect-copy {
  animation: exmCoolingCopyIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes exmCoolingCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.cooling-timer-feature-section {
  --cooling-timer-size: clamp(360px, 38vw, 620px);
  --cooling-timer-duration: 1.2s;
  --cooling-progress: 0;
  --cooling-progress-offset: 2350;
  --cooling-rotation: 0deg;
  --cooling-temperature-offset: 0em;
  --caption-progress: 0;
  --caption-offset: 48px;
  --caption-blur: 6px;
  --cooling-marker-5-progress: 0;
  --cooling-marker-10-progress: 0;
  --cooling-marker-15-progress: 0;
  --cooling-marker-20-progress: 0;
  --cooling-marker-5-offset: 6px;
  --cooling-marker-10-offset: 6px;
  --cooling-marker-15-offset: 6px;
  --cooling-marker-20-offset: 6px;
  position: relative;
  min-height: 230svh;
  overflow: visible;
  background: var(--theme-dark-bg);
}

.cooling-timer-feature__sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cooling-timer-feature__heading {
  position: absolute;
  top: clamp(56px, 8svh, 96px);
  left: 50%;
  z-index: 5;
  width: var(--content-max);
  margin-inline: auto;
  color: rgba(245, 248, 252, 0.96);
  pointer-events: none;
  transform: translateX(-50%);
}

.feature-section-title {
  max-width: 820px;
  margin: 0;
  color: inherit;
  font-size: var(--font-section-title);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.024em;
}

.cooling-timer-feature__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1440px, calc(100vw - 8vw));
  min-height: 100svh;
  margin-inline: auto;
}

.cooling-timer-feature__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.cooling-timer-feature__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cooling-timer-feature__stage {
  position: relative;
  display: grid;
  width: var(--cooling-timer-size);
  aspect-ratio: 1;
  place-items: center;
  isolation: isolate;
}

.cooling-timer-feature__stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 11%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 12, 26, 0.15) 0%, rgba(1, 4, 12, 0.96) 70%);
}

.cooling-timer-feature__asset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.cooling-timer-feature__ring {
  z-index: 1;
  opacity: 0.42;
  filter: saturate(0.22) brightness(0.74);
}

.cooling-timer-feature__progress {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  transform: rotate(-90deg);
}

.cooling-timer-feature__warm-line,
.cooling-timer-feature__progress-line {
  fill: none;
  stroke-linecap: round;
}

.cooling-timer-feature__warm-line {
  stroke: #ff8626;
  stroke-width: 42;
  opacity: 0.96;
  filter: drop-shadow(0 0 16px rgba(255, 122, 31, 0.34));
}

.cooling-timer-feature__progress-line {
  stroke: url(#coolingTimerProgressGradient);
  stroke-width: 52;
  stroke-dasharray: 2350;
  stroke-dashoffset: var(--cooling-progress-offset);
  filter: drop-shadow(0 0 16px rgba(98, 218, 255, 0.34)) drop-shadow(0 0 24px rgba(206, 248, 255, 0.18));
}

.cooling-timer-feature-section.is-visible .cooling-timer-feature__progress-line {
  animation: none;
}

.cooling-timer-feature__sweep,
.cooling-timer-feature__particles {
  z-index: 3;
  transform-origin: 50% 50%;
  transform: rotate(var(--cooling-rotation));
  will-change: transform;
}

.cooling-timer-feature-section.is-visible .cooling-timer-feature__sweep,
.cooling-timer-feature-section.is-visible .cooling-timer-feature__particles {
  animation: none;
}

.cooling-timer-feature__copy {
  position: relative;
  z-index: 4;
  color: #f8fbff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  text-align: center;
  text-shadow: 0 0 24px rgba(161, 216, 255, 0.16);
}

.cooling-timer-feature__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.cooling-timer-feature__temperature {
  height: 1em;
  overflow: hidden;
  color: #b9ecff;
  font-size: clamp(72px, 10vw, 142px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow: none;
}

.cooling-timer-feature__temperature-track {
  display: flex;
  flex-direction: column;
  transform: translateY(var(--cooling-temperature-offset));
}

.cooling-timer-feature-section.is-visible .cooling-timer-feature__temperature-track {
  animation: none;
}

.cooling-timer-feature__temperature-frame {
  display: block;
  height: 1em;
  color: transparent;
  background: linear-gradient(120deg, #f8fdff 0%, #aee9ff 42%, #6ea3ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  line-height: 1;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
}

.cooling-timer-feature__temperature-frame span {
  font-size: 0.42em;
  letter-spacing: -0.02em;
  vertical-align: 0.42em;
}

.cooling-timer-feature__markers {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.cooling-timer-feature__marker {
  position: absolute;
  --marker-final-x: -50%;
  --marker-final-y: -50%;
  color: rgba(225, 247, 255, 0.76);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: clamp(10px, 1.1vw, 15px);
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1;
  opacity: 0;
  text-shadow: 0 0 14px rgba(106, 218, 255, 0.22);
  transform: translate(var(--marker-final-x), calc(var(--marker-final-y) + 6px));
}

.cooling-timer-feature-section.is-visible .cooling-timer-feature__marker {
  animation: none;
}

.cooling-timer-feature__marker--5 {
  top: 50%;
  left: calc(90% + 5px);
  --marker-final-x: 0;
  --marker-final-y: -50%;
}

.cooling-timer-feature__marker--10 {
  top: calc(90% + 5px);
  left: 50%;
  --marker-final-x: -50%;
  --marker-final-y: 0;
}

.cooling-timer-feature__marker--15 {
  top: 50%;
  left: calc(10% - 5px);
  --marker-final-x: -100%;
  --marker-final-y: -50%;
}

.cooling-timer-feature__marker--20 {
  top: calc(10% - 5px);
  left: 50%;
  --marker-final-x: -50%;
  --marker-final-y: -100%;
}

.cooling-timer-feature-section.is-visible .cooling-timer-feature__marker--5 {
  opacity: var(--cooling-marker-5-progress);
  transform: translate(var(--marker-final-x), calc(var(--marker-final-y) + var(--cooling-marker-5-offset)));
}

.cooling-timer-feature-section.is-visible .cooling-timer-feature__marker--10 {
  opacity: var(--cooling-marker-10-progress);
  transform: translate(var(--marker-final-x), calc(var(--marker-final-y) + var(--cooling-marker-10-offset)));
}

.cooling-timer-feature-section.is-visible .cooling-timer-feature__marker--15 {
  opacity: var(--cooling-marker-15-progress);
  transform: translate(var(--marker-final-x), calc(var(--marker-final-y) + var(--cooling-marker-15-offset)));
}

.cooling-timer-feature-section.is-visible .cooling-timer-feature__marker--20 {
  opacity: var(--cooling-marker-20-progress);
  transform: translate(var(--marker-final-x), calc(var(--marker-final-y) + var(--cooling-marker-20-offset)));
}

.cooling-timer-feature__result {
  margin: clamp(18px, 2.6vw, 34px) 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: clamp(42px, 4.2vw, 72px);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -0.05em;
  opacity: 0;
  text-align: center;
  filter: blur(var(--caption-blur));
  transform: translateY(var(--caption-offset));
}

.cooling-timer-feature__result-highlight {
  color: transparent;
  background: linear-gradient(115deg, #59d8ff 0%, #9defff 48%, #6ea3ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cooling-timer-feature-section.is-visible .cooling-timer-feature__result {
  animation: none;
  opacity: var(--caption-progress);
  filter: blur(var(--caption-blur));
  transform: translateY(var(--caption-offset));
}

.anti-shaking-section {
  --anti-angle: 0deg;
  --anti-progress: 0;
  --anti-arc-offset: 386;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: var(--theme-dark-bg);
  color: rgba(245, 248, 252, 0.96);
}

.anti-shaking-image-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
}

.anti-shaking-image-strip-item {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.anti-shaking-image-strip img {
  display: block;
  width: 100%;
  height: clamp(240px, 29vw, 430px);
  object-fit: cover;
  margin: 0;
  padding: 0;
  border: 0;
}

.anti-shaking-image-strip-item:nth-child(1) img {
  object-position: 54% 48%;
}

.anti-shaking-image-strip-item:nth-child(2) img {
  object-position: 50% 50%;
}

.anti-shaking-image-strip-item:nth-child(3) img {
  object-position: 50% 50%;
}

.anti-shaking-main {
  width: min(82vw, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(44px, 6vw, 72px);
}

.anti-shaking-label {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.anti-shaking-title {
  margin: 0;
  font-size: clamp(54px, 6.6vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 700;
  color: #fff;
}

.anti-shaking-title > span {
  display: block;
  white-space: nowrap;
}

.anti-shaking-title em {
  color: transparent;
  background: linear-gradient(90deg, #38d8ff 0%, #4f7cff 45%, #9b6cff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
  -webkit-text-fill-color: transparent;
}

.anti-shaking-title b {
  color: var(--accent-orange, #ff6a2a);
  font-weight: 700;
}

.anti-shaking-title .period-accent {
  display: inline;
}

.anti-shaking-copy {
  margin: 26px 0 0;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.72);
  max-width: 22ch;
}

.anti-shaking-tilt-demo {
  width: 100%;
  min-width: 0;
}

.tilt-demo-stage {
  position: relative;
  width: min(100%, 610px);
  aspect-ratio: 560 / 320;
  margin-inline: auto 0;
  isolation: isolate;
}

.tilt-demo-stage::before {
  content: "";
  position: absolute;
  inset: 18% 6% 8% 4%;
  background:
    radial-gradient(circle at 48% 56%, rgba(89, 156, 255, 0.2), transparent 38%),
    radial-gradient(circle at 62% 64%, rgba(255, 255, 255, 0.08), transparent 34%);
  filter: blur(14px);
  opacity: calc(0.25 + var(--anti-progress) * 0.55);
  z-index: -1;
}

.tilt-demo-rig {
  position: absolute;
  left: 14.6429%;
  bottom: 22.5%;
  width: 68.9286%;
  height: 42%;
  transform: rotate(calc(var(--anti-angle) * -1));
  transform-origin: 0% 100%;
  transition: transform 80ms linear;
}

.tilt-demo-product {
  position: absolute;
  left: -8%;
  bottom: -36%;
  width: 82%;
  max-width: none;
  display: block;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.58));
  opacity: 0.82;
}

.tilt-demo-platform {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(51, 136, 255, 0.8) 0%, #a5e7ff 52%, rgba(60, 99, 255, 0.18) 100%);
  box-shadow:
    0 0 7px rgba(118, 214, 255, 0.8),
    0 0 22px rgba(73, 134, 255, 0.62);
}

.tilt-demo-angle {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.tilt-demo-horizon,
.tilt-demo-arc,
.tilt-demo-arc-dot {
  vector-effect: non-scaling-stroke;
}

.tilt-demo-horizon {
  stroke: url(#antiAnglePlatformGradient);
  stroke-width: 2;
  opacity: 0.2;
}

.tilt-demo-arc {
  fill: none;
  stroke: #78d6ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 6 10;
  stroke-dashoffset: var(--anti-arc-offset);
  opacity: calc(0.2 + var(--anti-progress) * 0.78);
  filter: url(#antiAngleGlow);
}

.tilt-demo-arc-dot {
  fill: #92e3ff;
  opacity: calc(0.25 + var(--anti-progress) * 0.72);
  filter: url(#antiAngleGlow);
}

.tilt-demo-angle-text {
  fill: #5fa7df;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 34px;
  font-weight: 780;
  letter-spacing: 0;
  opacity: calc(0.2 + var(--anti-progress) * 0.8);
}

.anti-shaking-feature-shell {
  width: var(--content-max);
  margin-inline: auto;
  padding: clamp(8px, 1vw, 16px) 0 clamp(86px, 10vw, 150px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

.anti-shaking-features article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: start;
  padding-top: clamp(30px, 4vw, 58px);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.anti-shaking-features article + article {
  padding-left: clamp(30px, 4vw, 64px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.anti-shaking-section.is-anti-features-visible .anti-shaking-features article {
  opacity: 1;
  transform: translateY(0);
}

.anti-shaking-section.is-anti-features-visible .anti-shaking-features article:nth-child(2) {
  transition-delay: 80ms;
}

.anti-shaking-section.is-anti-features-visible .anti-shaking-features article:nth-child(3) {
  transition-delay: 160ms;
}

.anti-shaking-feature-icon {
  width: clamp(30px, 3vw, 42px);
  color: #76dfff;
}

.anti-shaking-feature-icon svg {
  display: block;
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(76, 185, 255, 0.24));
}

.anti-shaking-features h3 {
  margin: 0 0 10px;
  color: rgba(245, 248, 252, 0.95);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.anti-shaking-features p {
  max-width: 280px;
  margin: 0;
  color: rgba(245, 248, 252, 0.58);
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 600;
  line-height: 1.32;
}

.road-ready-details-section {
  background: var(--theme-dark-bg);
  color: rgba(245, 248, 252, 0.96);
  overflow: hidden;
  padding: clamp(20px, 2.6vw, 36px) 0 clamp(72px, 8vw, 120px);
}

.road-ready-details-inner {
  width: min(calc(100vw - 28px), 1460px);
  box-sizing: border-box;
  margin-inline: auto;
  padding: clamp(42px, 4.4vw, 66px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: #050608;
}

.road-ready-details-heading {
  margin-bottom: clamp(36px, 4.2vw, 64px);
  color: rgba(245, 248, 252, 0.96);
}

.road-ready-details-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.road-ready-details-item {
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 5.4vw, 86px);
  align-items: center;
  min-height: clamp(300px, 25vw, 410px);
  padding: clamp(28px, 3.8vw, 56px) 0;
}

.road-ready-details-item + .road-ready-details-item {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.road-ready-details-item--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.road-ready-details-item--reverse .road-ready-details-media {
  order: -1;
}

.road-ready-details-label {
  margin: 0 0 16px;
  color: #72eaff;
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.road-ready-details-copy h3 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 56px);
  font-weight: 790;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.road-ready-details-gradient {
  color: transparent;
  background: linear-gradient(90deg, #38d8ff 0%, #4f7cff 45%, #9b6cff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.road-ready-details-body {
  max-width: 31ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(16px, 1.22vw, 20px);
  font-weight: 620;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.road-ready-details-media {
  position: relative;
  min-height: clamp(240px, 20vw, 330px);
  margin: 0;
  overflow: hidden;
  background: #050608;
}

.road-ready-details-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(1) saturate(0.92) contrast(1.06);
}

.road-ready-details-media--imd img {
  object-fit: cover;
  object-position: 58% 46%;
  transform: scale(1.58);
  transform-origin: center;
}

.road-ready-details-media--wheel img {
  object-fit: cover;
  object-position: 46% 68%;
  transform: scale(1.82);
  transform-origin: center bottom;
}

.exm-bluetooth-control-section {
  width: 100%;
  min-height: clamp(620px, 72vh, 760px);
  overflow: hidden;
  background: #f5f5f7;
  color: #1d1d1f;
}

html[data-theme="dark"] .exm-bluetooth-control-section {
  background: #050505;
  color: #f5f5f7;
}

.exm-bluetooth-control-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
  width: var(--content-max);
  min-height: inherit;
  margin-inline: auto;
}

.exm-bluetooth-control-copy {
  align-self: center;
  padding: clamp(88px, 8vh, 104px) 0 clamp(54px, 5vw, 70px);
  transform: translateY(-3%);
}

.bluetooth-section-icon {
  display: block;
  width: clamp(56px, 5vw, 86px);
  aspect-ratio: 94.32 / 75.75;
  height: auto;
  margin: 0 0 clamp(22px, 2.2vw, 30px);
  background: currentColor;
  color: currentColor;
  mask: var(--bluetooth-icon-url) center / contain no-repeat;
  -webkit-mask: var(--bluetooth-icon-url) center / contain no-repeat;
}

.exm-bluetooth-control-title {
  margin: 0;
  color: currentColor;
  font-size: clamp(44px, 4.2vw, 68px);
  font-weight: 800;
  line-height: 1.09;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.exm-bluetooth-control-subtitle {
  max-width: 16.8em;
  margin: clamp(24px, 2.5vw, 32px) 0 0;
  color: rgba(29, 29, 31, 0.82);
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 560;
  line-height: 1.3;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

html[data-theme="dark"] .exm-bluetooth-control-subtitle {
  color: rgba(245, 245, 247, 0.72);
}

.exm-bluetooth-app {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: clamp(24px, 2.5vw, 32px);
  color: currentColor;
}

.exm-bluetooth-app-icon {
  width: clamp(64px, 4.6vw, 76px);
  aspect-ratio: 1;
  object-fit: contain;
}

.exm-bluetooth-app-label {
  display: block;
  font-size: clamp(18px, 1.25vw, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.exm-bluetooth-control-phone-wrap {
  position: relative;
  min-width: 0;
  overflow: visible;
}

.exm-bluetooth-control-phone {
  position: absolute;
  top: clamp(92px, 10vh, 118px);
  right: max(-130px, -8vw);
  bottom: auto;
  width: clamp(420px, 38vw, 620px);
  max-width: none;
  height: auto;
  display: block;
  opacity: 0.96;
  transform: translateY(80px);
  transition:
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 900ms ease;
  will-change: transform, opacity;
}

.exm-bluetooth-control-section.is-visible .exm-bluetooth-control-phone {
  opacity: 1;
  transform: translateY(0);
}

@keyframes coolingTimerFeatureRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes coolingTimerProgressDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes coolingTimerTemperatureCount {
  to {
    transform: translateY(-30em);
  }
}

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

@keyframes coolingTimerMarkerEnter {
  to {
    opacity: 1;
    transform: translate(var(--marker-final-x, -50%), var(--marker-final-y, -50%));
  }
}

@media (max-width: 800px) {
  .cooling-timer-feature-section {
    --cooling-timer-size: min(88vw, 420px);
    min-height: 220svh;
    padding-block: 0;
  }

  .cooling-timer-feature__sticky {
    min-height: 100svh;
  }

  .cooling-timer-feature__inner {
    width: min(92vw, 620px);
    min-height: 100svh;
  }

  .cooling-timer-feature__heading {
    box-sizing: border-box;
    top: clamp(34px, 6svh, 54px);
    width: 100%;
    padding-inline: var(--product-detail-mobile-inner-edge, clamp(20px, 5.5vw, 32px));
  }

  .cooling-timer-feature__temperature {
    font-size: clamp(58px, 19vw, 96px);
  }

  .cooling-timer-feature__result {
    font-size: clamp(22px, 6vw, 36px);
    line-height: 1.04;
  }

  .anti-shaking-section {
    overflow-x: hidden;
  }

  .anti-shaking-image-strip {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .anti-shaking-image-strip-item {
    width: 86vw;
    min-width: 86vw;
    scroll-snap-align: start;
  }

  .anti-shaking-image-strip img {
    width: 100%;
    height: clamp(260px, 70vw, 340px);
  }

  .anti-shaking-main {
    grid-template-columns: 1fr;
    gap: clamp(38px, 11vw, 58px);
    width: 100%;
    box-sizing: border-box;
    padding: clamp(56px, 13vw, 82px) var(--product-detail-mobile-inner-edge, clamp(20px, 5.5vw, 32px)) clamp(42px, 10vw, 68px);
  }

  .anti-shaking-title {
    font-size: clamp(48px, 14.4vw, 78px);
    line-height: 0.94;
  }

  .anti-shaking-copy {
    font-size: clamp(16px, 4.6vw, 20px);
  }

  .tilt-demo-stage {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .tilt-demo-rig {
    left: 14.6429%;
    bottom: 22.5%;
    width: 68.9286%;
  }

  .tilt-demo-product {
    left: -8%;
    bottom: -36%;
    width: 82%;
  }

  .anti-shaking-feature-shell {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    padding: 0 var(--product-detail-mobile-inner-edge, clamp(20px, 5.5vw, 32px)) clamp(70px, 16vw, 104px);
    border-top: 0;
  }

  .anti-shaking-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    overscroll-behavior-inline: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .anti-shaking-features article {
    gap: 12px;
    min-width: 0;
    width: auto;
    max-width: 100%;
    padding: 24px 16px 28px 0;
  }

  .anti-shaking-features article + article {
    padding-left: 16px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .anti-shaking-features h3 {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: clamp(17px, 4.8vw, 22px);
  }

  .anti-shaking-features p {
    min-width: 0;
    max-width: none;
    overflow-wrap: anywhere;
    font-size: clamp(12px, 3.3vw, 14px);
  }

  .road-ready-details-inner {
    width: min(calc(100vw - 20px), 520px);
    box-sizing: border-box;
    padding: clamp(28px, 7vw, 42px) clamp(20px, 5.4vw, 30px) clamp(42px, 10vw, 62px);
    border-radius: 16px;
  }

  .road-ready-details-heading {
    margin-bottom: 34px;
  }

  .road-ready-details-item,
  .road-ready-details-item--reverse {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 0;
    padding: 30px 0 38px;
  }

  .road-ready-details-item--reverse .road-ready-details-media {
    order: 0;
  }

  .road-ready-details-copy {
    width: 100%;
  }

  .road-ready-details-label {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .road-ready-details-copy h3 {
    font-size: clamp(32px, 9.4vw, 46px);
    line-height: 0.98;
  }

  .road-ready-details-body {
    max-width: 32ch;
    margin-top: 16px;
    font-size: clamp(16px, 4.4vw, 19px);
    line-height: 1.36;
  }

  .road-ready-details-media {
    width: 100%;
    min-height: clamp(190px, 54vw, 286px);
  }

  .road-ready-details-media--imd img {
    object-position: 65% center;
    transform: scale(1.08);
    transform-origin: center right;
  }

  .road-ready-details-media--wheel img {
    object-position: 44% center;
    transform: scale(1.09);
    transform-origin: center bottom;
  }

  .exm-bluetooth-control-section {
    min-height: clamp(360px, 94vw, 430px);
    overflow-x: hidden;
  }

  .exm-bluetooth-control-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    align-items: stretch;
    width: 100%;
    min-height: inherit;
    box-sizing: border-box;
    padding: clamp(34px, 8vw, 46px) clamp(18px, 5vw, 24px) 0;
  }

  .exm-bluetooth-control-copy {
    align-self: center;
    width: auto;
    padding: 0 0 clamp(22px, 6vw, 34px);
    transform: translateY(-2%);
  }

  .bluetooth-section-icon {
    width: clamp(28px, 8.5vw, 38px);
    margin-bottom: clamp(10px, 3vw, 14px);
  }

  .exm-bluetooth-control-title {
    font-size: clamp(20px, 5.8vw, 26px);
    line-height: 1.09;
  }

  .exm-bluetooth-control-subtitle {
    margin-top: clamp(12px, 3.4vw, 16px);
    font-size: clamp(10px, 3vw, 13px);
    line-height: 1.3;
  }

  .exm-bluetooth-app {
    gap: 5px;
    margin-top: clamp(12px, 3.4vw, 16px);
  }

  .exm-bluetooth-app-icon {
    width: clamp(28px, 8.5vw, 36px);
  }

  .exm-bluetooth-app-label {
    font-size: clamp(10px, 2.8vw, 12px);
  }

  .exm-bluetooth-control-phone-wrap {
    position: relative;
    min-height: inherit;
    margin-top: 0;
  }

  .exm-bluetooth-control-phone {
    top: clamp(34px, 9vw, 48px);
    right: max(-18px, -4vw);
    bottom: auto;
    left: auto;
    width: clamp(205px, 54vw, 245px);
    transform: translateY(80px);
  }

  .exm-bluetooth-control-section.is-visible .exm-bluetooth-control-phone {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .exm-bluetooth-control-phone,
  .exm-bluetooth-control-section.is-visible .exm-bluetooth-control-phone {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}

@media (max-width: 800px) and (prefers-reduced-motion: reduce) {
  .exm-bluetooth-control-phone,
  .exm-bluetooth-control-section.is-visible .exm-bluetooth-control-phone {
    transform: translateY(0);
  }
}

.exm-sound-level {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 360vh;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  background: var(--theme-dark-bg);
}

.exm-sound-level-space {
  position: relative;
  height: 100%;
}

.exm-sound-level-figure {
  position: sticky;
  top: var(--nav-height, 48px);
  width: 100%;
  height: calc(100vh - var(--nav-height, 48px));
  margin: 0;
  overflow: hidden;
  background: var(--theme-dark-bg);
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.exm-sound-level-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.02) 35%, rgba(0, 0, 0, 0.28)),
    rgba(0, 0, 0, 0.04);
  pointer-events: none;
}

.exm-sound-level-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  backface-visibility: hidden;
  will-change: transform;
}

.exm-sound-level-svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform: translateZ(0);
  pointer-events: none;
}

.exm-sound-level__svg--mobile {
  display: none;
}

.exm-sound-curve-path {
  fill: none;
  stroke: url(#exmSoundGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(120, 220, 210, 0.35)) blur(1.5px);
  shape-rendering: geometricPrecision;
}

.exm-sound-curve-shadow {
  fill: none;
  stroke: rgba(95, 210, 225, 0.12);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: blur(14px);
  opacity: 0.8;
}

.exm-sound-curve-path--mobile {
  stroke: url(#exmSoundMobileGradient);
}

.exm-sound-curve-shadow--mobile {
  stroke: rgba(95, 210, 225, 0.16);
}

.exm-sound-node {
  fill: rgba(255, 255, 255, 0.95);
  opacity: 0;
  filter: blur(0.8px);
  transform: scale(0.95);
  transition: opacity 140ms linear, transform 180ms ease-out;
}

.exm-sound-node-glow {
  fill: url(#exmSoftWhiteGlow);
  opacity: 0;
  mix-blend-mode: screen;
  transform-box: fill-box;
  transform-origin: center;
}

.exm-sound-copy,
.exm-sound-dotted-line {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms linear, transform 180ms ease-out;
}

.exm-sound-copy {
  transform: translateY(0);
}

.exm-sound-copy text {
  opacity: inherit;
  transform: none;
  transition: none;
}

.exm-sound-label {
  fill: #fff;
  letter-spacing: 0.02em;
}

.exm-sound-label-main {
  font-size: 44px;
  font-weight: 650;
}

.exm-sound-label-sub {
  font-size: 26px;
  font-weight: 420;
  opacity: 0.92;
}

.exm-sound-dotted-line {
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 2;
  stroke-dasharray: 6 8;
}

.exm-sound-point.is-visible .exm-sound-node,
.exm-sound-point.is-visible .exm-sound-node-glow,
.exm-sound-point.is-visible .exm-sound-copy,
.exm-sound-point.is-visible .exm-sound-dotted-line {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.exm-sound-point.is-flashing .exm-sound-node-glow {
  animation: exmSoundNodeFlash 620ms ease-out;
}

.exm-sound-level__mobile-copy {
  display: none;
}

.exm-feature-eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes exmSoundNodeFlash {
  0% {
    opacity: 0;
    transform: scale(0.45);
  }

  35% {
    opacity: 0.95;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .exm-sequence-frame {
    --exm-dimensions-scene-width: min(1040px, 92vw);
    --exm-dimensions-copy-top: clamp(58px, 9vh, 92px);
  }

  .exm-dimension-desktop {
    width: var(--exm-dimensions-scene-width);
  }

  .exm-sound-level-bg {
    min-height: 82vh;
    object-fit: cover;
  }

  .exm-cooling-effect-overlay {
    padding: 28px 0 42px;
  }

  .exm-cooling-effect-copy {
    max-width: min(100%, 900px);
  }

  .exm-cooling-effect-title {
    font-size: clamp(40px, 6vw, 64px);
  }

  .exm-sound-label-main {
    font-size: 36px;
  }

  .exm-sound-label-sub {
    font-size: 21px;
  }

  .exm-sound-curve-path {
    stroke-width: 7;
  }

  .exm-sound-curve-shadow {
    stroke-width: 14;
  }
}

@media (min-width: 1600px) {
  .exm-sequence-frame {
    --exm-dimensions-scene-width: min(1480px, 68vw);
    --exm-dimensions-copy-top: clamp(64px, 8vh, 104px);
  }
}

@media (min-width: 1200px) and (max-height: 760px),
  (min-width: 1600px) and (min-aspect-ratio: 21 / 9) and (max-height: 1120px) {
  .exm-sequence-frame {
    --exm-dimensions-scene-width: min(70vw, 1040px, 96dvh);
    --exm-dimensions-copy-top: clamp(28px, 5dvh, 52px);
    --product-visual-y-offset: clamp(20px, 4dvh, 48px);
    height: calc(100dvh - var(--nav-height, 48px));
    min-height: 0;
  }

  .exm-sequence-image {
    max-width: min(70vw, 1040px);
    max-height: min(50dvh, 520px);
  }

  .exm-sequence-copy-group {
    gap: clamp(14px, 2.2vw, 32px);
  }

  .exm-sequence-copy-item {
    font-size: clamp(24px, 5.2dvh, 42px);
    line-height: 1;
  }

  .exm-dimension-label {
    font-size: clamp(15px, 3.2dvh, 24px);
  }

  .exm-dimension-height p {
    margin-bottom: clamp(10px, 2dvh, 16px);
    font-size: clamp(22px, 4.2dvh, 32px);
  }

  .exm-dimension-height dt,
  .exm-dimension-height dd {
    font-size: clamp(13px, 2.8dvh, 18px);
  }

  .exm-dimensions-cooling-bridge {
    padding: clamp(14px, 3dvh, 24px) 0 clamp(12px, 2.5dvh, 20px);
  }
}

@media (max-width: 767px) {
  .exm-feature-effects,
  .exm-sequence-reveal,
  .exm-sound-level {
    max-width: 100%;
    overflow: visible;
    overflow-x: clip;
    overflow-y: visible;
  }

  .exm-cooling-effect {
    max-width: 100%;
    overflow-x: hidden;
  }

  .exm-sequence-reveal {
    position: relative;
    height: 360vh;
    height: 360svh;
    min-height: 2400px;
  }

  .exm-sequence-frame {
    --exm-dimensions-mobile-product-width: min(96vw, 520px);
    --product-visual-y-offset: clamp(44px, 8svh, 72px);
    position: sticky;
    top: var(--nav-height, 48px);
    height: calc(100vh - var(--nav-height, 48px));
    height: calc(100svh - var(--nav-height, 48px));
    min-height: 620px;
  }

  .exm-sequence-image {
    width: var(--exm-dimensions-mobile-product-width);
    max-width: none;
    max-height: 40svh;
    left: 50%;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }

  .exm-sequence-copy-group {
    top: clamp(58px, 9vh, 82px);
    right: 22px;
    bottom: auto;
    left: 22px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .exm-sequence-copy-item {
    max-width: 340px;
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.02;
  }

  .exm-dimension-desktop {
    display: block;
    width: var(--exm-dimensions-mobile-product-width);
    max-width: 96vw;
  }

  .exm-dimension-height-line,
  .exm-dimension-height {
    display: none;
  }

  .exm-dimension-line--length {
    top: 2%;
    left: 12%;
    width: 42%;
    transform: rotate(-5.2deg);
  }

  .exm-dimension-line--depth {
    top: 1%;
    left: 58%;
    width: 25%;
    transform: rotate(7.8deg);
  }

  .exm-dimension-rule {
    height: 1px;
    background: rgba(245, 248, 252, 0.68);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
  }

  .exm-dimension-label {
    bottom: calc(100% + 8px);
    font-size: clamp(13px, 3.8vw, 16px);
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.56);
  }

  .exm-dimension-mobile-height {
    position: absolute;
    top: calc(50% + min(34vw, 140px));
    right: 24px;
    bottom: auto;
    left: 24px;
    display: block;
    width: auto;
    max-width: 420px;
    margin-inline: auto;
    padding: 0;
    color: rgba(245, 248, 252, 0.94);
    opacity: var(--dimension-mobile-progress);
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.48);
    transform: translateY(var(--dimension-mobile-offset));
    will-change: opacity, transform;
  }

  .exm-dimension-mobile-height p {
    margin: 0 0 8px;
    font-size: clamp(18px, 4.8vw, 23px);
    font-weight: 540;
  }

  .exm-dimension-mobile-height dl {
    gap: 5px;
  }

  .exm-dimension-mobile-height div {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    justify-content: stretch;
  }

  .exm-dimension-mobile-height dt,
  .exm-dimension-mobile-height dd {
    font-size: clamp(13px, 3.6vw, 16px);
    line-height: 1.28;
  }

  .exm-sequence-cooling-title {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    font-size: var(--font-section-title);
    line-height: 0.98;
    text-shadow: 0 12px 30px rgba(38, 156, 255, 0.16);
  }

  .exm-dimensions-cooling-bridge {
    padding: clamp(12px, 2.8vh, 22px) 0 clamp(14px, 3vh, 24px);
  }

  .exm-dimensions-cooling-bridge__inner {
    width: var(--content-max);
  }

  .exm-cooling-effect {
    min-height: auto;
  }

  .exm-cooling-effect-media {
    min-height: 620px;
  }

  .exm-cooling-effect-overlay {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 18px 0 38px;
    background: none;
  }

  .exm-cooling-effect-copy {
    max-width: none;
    color: #fff;
  }

  .exm-cooling-effect-title {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(40px, 11vw, 62px);
    line-height: 0.98;
  }

  .exm-cooling-effect-body {
    color: rgba(255, 255, 255, 0.52);
    font-size: clamp(10px, 2.8vw, 13px);
    line-height: 1.32;
  }

  .exm-cooling-effect-proof {
    font-size: clamp(40px, 11.5vw, 68px);
    line-height: 0.9;
  }

  .cooling-main-claim {
    font-size: clamp(40px, 11.5vw, 68px);
    line-height: 0.9;
  }

  .exm-cooling-effect-body.exm-cooling-effect-closing {
    margin-top: clamp(18px, 5vw, 30px);
    font-size: clamp(22px, 6vw, 36px);
    line-height: 1.04;
  }

  .exm-cooling-effect-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(8px, 2.6vw, 18px);
    row-gap: 0;
    margin-top: clamp(34px, 8vw, 52px);
    padding-top: clamp(24px, 6vw, 40px);
    border-top: 1px solid rgba(245, 248, 252, 0.14);
  }

  .exm-cooling-effect-features article {
    padding: 0;
  }

  .exm-cooling-effect-features article + article {
    padding-left: clamp(8px, 2.4vw, 16px);
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .exm-cooling-effect-features h3 {
    margin-bottom: clamp(8px, 2vw, 14px);
    font-size: clamp(14px, 4vw, 22px);
    line-height: 1.06;
  }

  .exm-cooling-effect-features p {
    font-size: clamp(10px, 2.8vw, 13px);
    line-height: 1.22;
  }

  .exm-sound-level {
    position: relative;
    height: 360vh;
    height: 360svh;
    min-height: 2400px;
  }

  .exm-sound-level-space {
    height: 100%;
  }

  .exm-sound-level-figure {
    position: sticky;
    top: var(--nav-height, 48px);
    height: calc(100vh - var(--nav-height, 48px));
    height: calc(100svh - var(--nav-height, 48px));
    min-height: 640px;
  }

  .exm-sound-level-bg {
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
  }

  .exm-sound-level__svg--desktop {
    display: none;
  }

  .exm-sound-level__svg--mobile {
    display: block;
  }

  .exm-sound-curve-path--mobile {
    stroke-width: 5;
    filter: drop-shadow(0 0 10px rgba(120, 220, 210, 0.38)) blur(1px);
  }

  .exm-sound-curve-shadow--mobile {
    stroke-width: 13;
    filter: blur(10px);
    opacity: 0.72;
  }

  .exm-sound-point--mobile .exm-sound-label-main {
    font-size: 30px;
  }

  .exm-sound-point--mobile .exm-sound-label-sub {
    font-size: 14px;
    opacity: 0.78;
  }

  .exm-sound-point--quiet .exm-sound-label-main {
    font-size: 25px;
    opacity: 0.72;
  }

  .exm-sound-point--quiet .exm-sound-label-sub {
    font-size: 13px;
    opacity: 0.62;
  }

  .exm-sound-dotted-line--mobile {
    stroke-width: 1.5;
    stroke-dasharray: 5 8;
    opacity: 0;
  }

  .exm-sound-level__mobile-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 28px;
    z-index: 3;
    display: block;
    color: #fff;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
  }

  .exm-sound-level__mobile-copy h2 {
    margin: 0;
    max-width: 420px;
    font-size: clamp(34px, 10vw, 52px);
    font-weight: 620;
    line-height: 1.02;
    letter-spacing: 0;
  }

  .exm-sound-level__mobile-copy .exm-feature-eyebrow,
  .exm-sound-level__mobile-copy h2,
  .exm-sound-level__mobile-metric,
  .exm-sound-level__mobile-copy p {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .exm-sound-level__mobile-metric {
    transform: translateY(22px) scale(0.94);
  }

  .exm-sound-level__mobile-copy.is-copy-visible .exm-feature-eyebrow {
    opacity: 1;
    transform: translateY(0);
  }

  .exm-sound-level__mobile-copy.is-title-visible h2 {
    opacity: 1;
    transform: translateY(0);
  }

  .exm-sound-level__mobile-copy.is-metric-visible .exm-sound-level__mobile-metric {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .exm-sound-level__mobile-copy.is-unit-visible p:last-child {
    opacity: 1;
    transform: translateY(0);
  }

  .exm-sound-level__mobile-copy p:last-child {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
  }

  .exm-sound-level__mobile-metric {
    margin-top: 18px;
    font-size: clamp(72px, 24vw, 124px);
    font-weight: 700;
    line-height: 0.86;
    letter-spacing: 0;
  }

}

@media (max-width: 480px) {
  .exm-sequence-frame,
  .exm-sound-level-figure {
    min-height: 600px;
  }

  .exm-sequence-image {
    width: var(--exm-dimensions-mobile-product-width);
  }

  .exm-cooling-effect-media {
    min-height: 560px;
  }

  .exm-cooling-effect-overlay {
    padding: 16px 0 34px;
  }

  .exm-cooling-effect-proof,
  .cooling-main-claim {
    font-size: clamp(34px, 10.8vw, 56px);
    line-height: 0.92;
  }

  .exm-cooling-effect-body.exm-cooling-effect-closing {
    font-size: clamp(20px, 5.8vw, 30px);
  }

  .exm-cooling-effect-features {
    column-gap: clamp(6px, 2vw, 12px);
  }

  .exm-cooling-effect-features article + article {
    padding-left: clamp(6px, 2vw, 12px);
  }

  .exm-cooling-effect-features h3 {
    font-size: clamp(13px, 3.9vw, 18px);
  }

  .exm-cooling-effect-features p {
    font-size: clamp(9px, 2.65vw, 12px);
  }

  .exm-sound-level__mobile-copy {
    left: 18px;
    right: 18px;
    bottom: 22px;
  }

  .exm-sound-level__mobile-metric {
    font-size: clamp(68px, 25vw, 108px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cooling-main-claim,
  .cooling-main-claim::after {
    animation: none;
  }

  .cooling-main-claim {
    background-position: 50% 50%;
  }

  .cooling-main-claim::after {
    opacity: 0;
  }

  .cooling-timer-feature__sweep,
  .cooling-timer-feature__particles {
    animation: none;
    transform: rotate(312deg);
  }

  .cooling-timer-feature__progress-line {
    animation: none !important;
    stroke-dashoffset: 0;
  }

  .cooling-timer-feature__temperature-track {
    animation: none !important;
    transform: translateY(-30em);
  }

  .cooling-timer-feature__result {
    animation: none !important;
    opacity: 1;
    transform: translateY(0);
  }

  .cooling-timer-feature__marker {
    animation: none !important;
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .exm-sequence-image {
    transition: none;
  }

  .exm-sequence-image:last-child {
    opacity: 1 !important;
  }

  .exm-cooling-effect-copy,
  .exm-cooling-effect-proof,
  .exm-sequence-copy-group,
  .exm-sequence-copy-item,
  .exm-dimension-overlay,
  .exm-dimension-line,
  .exm-dimension-label,
  .exm-dimension-height,
  .exm-dimension-height div,
  .exm-dimension-mobile-height,
  .exm-sequence-cooling-title,
  .exm-sound-point,
  .exm-sound-copy,
  .exm-sound-dotted-line,
  .exm-sound-node,
  .exm-sound-node-glow,
  .exm-sound-level__mobile-copy .exm-feature-eyebrow,
  .exm-sound-level__mobile-copy h2,
  .exm-sound-level__mobile-metric,
  .exm-sound-level__mobile-copy p {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .product-family-header {
    display: block;
  }

  .product-family-header .text-button {
    margin-top: 16px;
    margin-bottom: 0;
  }

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

@media (max-width: 640px) {
  .product-family-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .product-family-card {
    min-width: 78vw;
    scroll-snap-align: start;
  }
}

/* Product Family Manifest */
.family-page {
  width: 100%;
  margin: 0;
  padding-top: 96px;
  background: var(--bg);
}

.family-manifest-hero,
.family-section,
.family-help {
  width: var(--content-max);
  margin-inline: auto;
}

.family-manifest-hero {
  display: block;
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #050607;
  color: #f7f4ef;
  overflow: hidden;
}

.family-manifest-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(18px, 2.4vw, 30px);
  color: rgba(247, 244, 239, 0.48);
  font-size: 13px;
  font-weight: 800;
}

.family-manifest-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.family-manifest-breadcrumb a:hover {
  color: var(--orange);
}

.family-manifest-copy .kicker {
  color: var(--orange);
  margin-bottom: 14px;
}

.family-manifest-copy h1 {
  max-width: 10ch;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.family-manifest-copy h2 {
  max-width: 720px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.family-manifest-copy p:not(.kicker) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(247, 244, 239, 0.68);
  font-size: 17px;
  line-height: 1.45;
}

.family-manifest-actions,
.family-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
}

.family-manifest-actions .text-button,
.family-help-actions .text-button {
  color: #f7f4ef;
}

.family-section,
.family-help {
  padding: clamp(42px, 4vw, 64px) 0;
  border-top: 1px solid var(--line);
}

#lineup,
#comparison-table {
  scroll-margin-top: calc(var(--nav-top) + var(--nav-height) + 24px);
}

.family-comparison-mobile {
  display: none;
}

.family-comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel-solid);
  -webkit-overflow-scrolling: touch;
}

.family-comparison-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.family-comparison-table th,
.family-comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  vertical-align: top;
}

.family-comparison-table th:first-child,
.family-comparison-table td:first-child {
  border-left: 0;
}

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

.family-comparison-table thead th {
  color: var(--text);
  font-weight: 900;
}

.family-product-heading {
  display: grid;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
}

.family-product-heading img {
  width: 120px;
  height: 90px;
  object-fit: contain;
}

.family-product-heading span {
  font-weight: 900;
}

.family-product-heading small {
  color: var(--muted);
  font-size: 12px;
}

.table-link {
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

.family-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.family-feature-grid article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
}

.family-feature-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.family-feature-grid h3 {
  margin: 0;
}

.family-use-case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.family-use-case-list span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-solid);
  color: var(--text);
  font-weight: 800;
}

.family-help {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-bottom: var(--space-section-tight);
}

.family-help h2 {
  max-width: 700px;
}

/* Sections */
.trust-line {
  padding: 24px 0 8px;
  border-bottom: 1px solid var(--line);
}

.trust-line p {
  max-width: var(--text-max);
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.12;
}

.section {
  padding: var(--space-section) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.featured {
  display: grid;
  gap: 12px;
  width: var(--wide-width);
  max-width: var(--wide-max);
  padding: var(--space-section-tight) 0 var(--space-section);
}

.feature-product {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
}

.feature-product.is-reversed {
  grid-template-columns: 1fr 1fr;
}

.feature-product.is-reversed .feature-visual {
  order: 2;
}

.feature-visual img {
  width: 58%;
  height: 58%;
}

.service-entry-card .feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 2.4vw, 34px);
}

.feature-copy p,
.trust-line p {
  max-width: var(--text-max);
}

.feature-copy::after {
  content: "→";
  position: absolute;
  right: clamp(20px, 2.4vw, 34px);
  bottom: clamp(20px, 2.4vw, 34px);
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}

.feature-copy .kicker {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: var(--font-kicker);
  line-height: 1;
}

.feature-copy p,
.product-hero-copy p,
.statement p,
.product-card-copy p,
.page-hero p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.feature-copy h3,
.product-card-copy h3,
.product-hero-copy h2 {
  max-width: 620px;
  margin: -8px 0 18px;
  color: var(--text);
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.12;
}

.feature-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.04;
}

.feature-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.18;
}

.feature-copy > p:not(.kicker) {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

.product-card-copy h3 {
  margin-top: -2px;
  font-size: 22px;
}

.product-hero-copy h2 {
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.024em;
}

.feature-copy .card-cta {
  align-self: flex-start;
  margin-top: 18px;
}

.process-grid,
.qa-list {
  display: grid;
  gap: 14px;
}

.process-grid article,
.qa-list article {
  min-height: 150px;
  padding: var(--space-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
}

.process-grid p,
.qa-list p {
  color: var(--muted);
  line-height: 1.48;
}

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

.process-grid article > span {
  display: block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: var(--font-small);
  font-weight: 900;
  letter-spacing: 0.08em;
}

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

.download-list span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-solid);
  color: var(--text);
  font-weight: 800;
}

.download-list small {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
}

.contact {
  padding: var(--space-section-tight) clamp(0px, 2vw, 22px);
}

.contact {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent, rgba(222, 41, 16, 0.04)),
    var(--panel-solid);
}

.contact h2 {
  max-width: 900px;
}

.contact > p:not(.kicker) {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: var(--font-body-lg);
  line-height: 1.5;
}

.page,
.product-page {
  padding-top: 104px;
}

.products-page {
  padding-top: 76px;
}

.product-page {
  --product-page-bg: var(--bg);
  --product-section-bg: var(--bg);
  --product-panel-bg: var(--panel-solid);
  --product-card-bg: var(--panel-solid);
  --product-text-main: var(--text);
  --product-text-muted: var(--muted);
  --product-text-quiet: var(--quiet);
  --product-border-color: var(--line);
  --product-hero-media-bg: #f7f7f5;

  width: 100%;
  max-width: none;
  background: var(--product-page-bg);
  color: var(--product-text-main, var(--text));
}

html[data-theme="dark"] .product-page {
  --product-page-bg: var(--bg);
  --product-section-bg: #050607;
  --product-panel-bg: rgba(255, 255, 255, 0.035);
  --product-card-bg: rgba(255, 255, 255, 0.035);
  --product-text-main: #f7f4ef;
  --product-text-muted: rgba(247, 244, 239, 0.68);
  --product-text-quiet: rgba(247, 244, 239, 0.48);
  --product-border-color: rgba(255, 255, 255, 0.18);
}

.page-hero {
  padding: 54px 0 44px;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 56px);
}

/* Product Cards */
.product-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 14px;
  padding-bottom: var(--space-section);
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.product-card:hover {
  border-color: rgba(222, 41, 16, 0.24);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-media {
  width: 100%;
  min-height: clamp(220px, 22vw, 320px);
  aspect-ratio: 1.24;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.product-media img {
  transition: transform 360ms ease;
}

.products-page .product-media img {
  --product-card-img-y: 0%;
  --product-card-img-scale: 1;
  --product-card-img-hover-scale: 1.05;
  transform: translateY(var(--product-card-img-y)) scale(var(--product-card-img-scale));
}

.product-card .product-card-image--ex {
  object-fit: contain;
  object-position: center 32%;
  transform: translateY(-10%);
}

.products-page .product-card--gl .product-card-image {
  --product-card-img-scale: 1.4;
  --product-card-img-hover-scale: 1.43;
  object-fit: contain;
  object-position: center;
}

.products-page .product-card--d .product-card-image,
.products-page .product-card--k .product-card-image {
  --product-card-img-scale: 1.38;
  --product-card-img-hover-scale: 1.42;
  object-fit: contain;
  object-position: center;
}

.products-page .product-card--ex .product-card-image--ex {
  --product-card-img-y: -10%;
  --product-card-img-scale: 1;
  --product-card-img-hover-scale: 1.02;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-card:hover .product-card-image--ex {
  transform: translateY(-10%) scale(1.02);
}

.products-page .product-card:hover .product-media img {
  transform: translateY(var(--product-card-img-y)) scale(var(--product-card-img-hover-scale));
}

.product-card-copy {
  padding: var(--space-card);
}

.product-card-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-page .product-card-copy span:nth-of-type(2) {
  color: var(--muted);
}

.product-card-copy .card-cta {
  width: 100%;
  margin-top: 18px;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 28px);
}

.product-page .related-products-section {
  margin-bottom: clamp(72px, 7vw, 112px);
}

.related-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  color: var(--text);
}

.related-product-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 66%, rgba(255, 255, 255, 0.76), transparent 46%),
    linear-gradient(145deg, rgba(234, 238, 238, 0.72), rgba(255, 255, 255, 0.92));
}

html[data-theme="dark"] .related-product-media {
  background:
    radial-gradient(circle at 50% 66%, rgba(255, 255, 255, 0.7), transparent 46%),
    linear-gradient(145deg, rgba(235, 239, 239, 0.96), rgba(255, 255, 255, 0.82));
}

.related-product-media img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 88%;
  object-fit: contain;
  object-position: center;
}

.related-product-card .product-card-image--ex {
  object-fit: contain;
  object-position: center 32%;
  transform: translateY(-10%);
}

.related-product-body {
  padding: var(--space-card);
}

.related-product-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.related-product-subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.related-product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  width: 100%;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid var(--inverse);
  border-radius: 6px;
  background: var(--inverse);
  color: var(--inverse-text);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.related-product-action:hover {
  box-shadow: 0 18px 40px rgba(16, 17, 18, 0.18);
  transform: translateY(-2px);
}

html[data-theme="dark"] .related-product-action:hover {
  box-shadow: 0 18px 44px rgba(255, 255, 255, 0.1);
}

/* Product Detail */
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  width: var(--content-max);
  margin: 0 auto 34px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 800;
}

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

.breadcrumb a:hover {
  color: var(--orange);
}

.product-hero,
.product-config-panel {
  --text: var(--product-text-main);
  --muted: var(--product-text-muted);
  --quiet: var(--product-text-quiet);
  --line: var(--product-border-color);
  --panel-solid: var(--product-panel-bg);

  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(520px, 0.58fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "copy visual"
    "controls visual";
  gap: clamp(44px, 5vw, 72px);
  align-items: stretch;
  width: min(calc(100vw - 80px), 1320px);
  max-width: none;
  margin-inline: auto;
  min-height: auto;
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--product-section-bg);
  box-shadow: 0 0 0 100vmax var(--product-section-bg);
  clip-path: inset(0 -100vmax);
  color: var(--text);
}

.product-config-copy {
  grid-area: copy;
  align-self: start;
  min-width: 0;
}

.product-config-controls {
  grid-area: controls;
  align-self: end;
  min-width: 0;
}

.product-config-visual {
  grid-area: visual;
  align-self: stretch;
  min-width: 0;
}

.product-config-breadcrumb {
  width: 100%;
  margin: 0 0 26px;
  flex-wrap: wrap;
  color: var(--quiet);
}

.product-hero-copy h1 {
  margin: 0 0 clamp(24px, 2.4vw, 42px);
  color: var(--text);
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.034em;
}

.product-hero-copy h2 {
  margin: 0 0 clamp(14px, 1.2vw, 24px);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.product-hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  white-space: pre-line;
}

.product-mobile-subtitle {
  display: none;
}

.product-hero-media {
  width: 100%;
  min-height: clamp(460px, 48vw, 620px);
  border-radius: 10px;
  background: var(--product-hero-media-bg);
}

.product-config-visual img,
.product-hero-media.product-config-visual img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.product-config-visual .gl-product-hero-image {
  transform: none;
}

.gl-product-hero-image {
  transform: scale(1.18);
  transform-origin: center center;
}

.model-selector {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  margin-top: clamp(44px, 6vw, 72px);
  margin-bottom: 28px;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.model-label {
  display: block;
  min-width: 0;
  margin-bottom: 20px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.model-tabs {
  display: flex;
  flex: 1;
  max-width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px 28px;
  overflow: visible;
}

.model-tab {
  position: relative;
  flex: 0 0 auto;
  min-width: max-content;
  height: auto;
  padding: 0 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  transition: color 200ms ease;
}

.model-tab:hover {
  color: var(--orange);
}

.model-tab.active {
  color: var(--orange);
}

.model-tab.active::after {
  content: "";
  position: absolute;
  right: auto;
  bottom: 0;
  left: 0;
  width: min(72px, 100%);
  height: 2px;
  background: var(--orange);
}

.product-color-selector {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin-top: 0;
  padding-top: 0;
}

.product-color-selector > p,
.product-hero-copy .product-color-selector > p {
  max-width: none;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.product-color-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.product-color-option {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  place-items: center;
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-color-option > span:not(.product-color-swatch) {
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-color-option.is-unavailable {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(1);
}

.product-color-option.is-unavailable::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

html[data-theme="dark"] .product-color-option.is-unavailable::after {
  background: rgba(0, 0, 0, 0.5);
}

.product-color-option:hover {
  border-color: rgba(242, 106, 33, 0.46);
  transform: translateY(-1px);
}

.product-color-option.is-unavailable:hover {
  border-color: var(--line);
  transform: none;
}

.product-color-option.is-active {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 2px var(--orange);
}

.product-color-swatch {
  display: flex;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 18, 0.18);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 8px 22px rgba(16, 17, 18, 0.12);
}

.product-color-swatch-dot {
  flex: 1 1 0;
  background: var(--swatch-dot);
}

html[data-theme="dark"] .product-color-option {
  border-color: rgba(245, 242, 236, 0.18);
  background: rgba(245, 242, 236, 0.05);
}

html[data-theme="dark"] .product-color-option:hover {
  border-color: rgba(242, 106, 33, 0.52);
}

html[data-theme="dark"] .product-color-option.is-active {
  border-color: var(--orange);
}

html[data-theme="dark"] .product-color-swatch {
  border-color: rgba(245, 242, 236, 0.22);
}

.product-hero.is-b-series {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: auto;
  padding-bottom: 32px;
}

.product-hero.is-b-series .product-hero-media {
  order: 1;
  min-height: 0;
  height: clamp(320px, 34vw, 430px);
}

.product-hero.is-b-series .product-hero-copy {
  order: 2;
}

.product-hero.is-b-series .product-hero-copy h1 {
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.034em;
}

.statement {
  width: var(--content-max);
  margin-inline: auto;
  padding: var(--space-section) 0;
  color: var(--product-text-main, var(--text));
  text-align: center;
}

.statement h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.06;
}

.model-specs,
.product-gallery,
.product-section,
.certifications,
.downloads,
.product-inquiry {
  width: var(--content-max);
  margin-inline: auto;
  padding: var(--space-section-tight) 0;
  border-top: 1px solid var(--product-border-color, var(--line));
  background: var(--product-page-bg, transparent);
  color: var(--product-text-main, var(--text));
}

.product-gallery {
  width: 100%;
  margin-inline: 0;
}

.model-specs {
  container-type: inline-size;
  --spec-gap: clamp(24px, 2vw, 32px);
  --spec-card-min: 360px;
  --spec-card-max: 520px;
  --spec-card-width: calc(33.333cqw - 21.333px);
  width: min(92vw, 1280px);
  margin-inline: auto;
}

.model-specs > .section-heading {
  width: min(var(--content-max), 100%);
  max-width: var(--content-max);
  margin-inline: auto;
}

@media (min-width: 768px) and (max-width: 1679px) {
  .model-specs {
    --spec-gap: clamp(24px, 2vw, 32px);
    --spec-card-min: 360px;
    --spec-card-max: 620px;
    --spec-card-width: calc((100cqw - (var(--spec-gap) * 2)) / 2.5);
  }
}

.product-gallery > .section-heading {
  width: var(--content-max);
  margin-inline: auto;
}

.horizontal-bleed {
  box-sizing: border-box;
  position: relative;
  width: 100vw;
  margin-left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
}

.horizontal-control-row {
  position: relative;
  display: flex;
  height: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto 16px;
  transform: none;
}

.horizontal-control-row:hover {
  margin-top: 0;
  transform: none;
}

.scroll-arrow {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 5;
  box-sizing: border-box;
  display: inline-flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font: inherit;
  line-height: 1;
  transform: none;
  translate: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.scroll-arrow:hover {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border-width: 1px;
  border-color: rgba(255, 122, 0, 0.55);
  background: rgba(255, 122, 0, 0.14);
  color: #ff7a00;
  box-shadow: 0 0 0 1px rgba(255, 122, 0, 0.08);
  transform: none;
  translate: none;
}

button.scroll-arrow:hover {
  transform: none;
  translate: none;
}

.scroll-arrow:active {
  background: rgba(255, 122, 0, 0.18);
  transform: none;
  translate: none;
}

.scroll-arrow:disabled {
  opacity: 0.32;
  cursor: default;
  box-shadow: none;
}

.scroll-arrow:disabled:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.scroll-arrow-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0;
  padding: 0;
  line-height: 18px;
  text-align: center;
  transform: none;
  translate: none;
  pointer-events: none;
}

.scroll-arrow:hover .scroll-arrow-icon,
.scroll-arrow:hover > span,
.scroll-arrow:hover > svg,
.scroll-arrow:active .scroll-arrow-icon,
.scroll-arrow:active > span,
.scroll-arrow:active > svg {
  margin: 0;
  padding: 0;
  transform: none;
  translate: none;
}

.horizontal-control-row .scroll-arrow {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  box-sizing: border-box;
  display: inline-flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(16, 17, 18, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: rgba(16, 17, 18, 0.9);
  box-shadow: 0 10px 28px rgba(16, 17, 18, 0.12);
  opacity: 1;
  visibility: visible;
  cursor: pointer;
  line-height: 1;
  transform: none;
  translate: none;
}

.horizontal-control-row .scroll-arrow:hover {
  border-color: rgba(255, 122, 0, 0.55);
  background: rgba(255, 122, 0, 0.14);
  color: #ff7a00;
  box-shadow: 0 0 0 1px rgba(255, 122, 0, 0.08), 0 12px 30px rgba(16, 17, 18, 0.14);
  transform: none;
  translate: none;
}

.horizontal-control-row .scroll-arrow:disabled {
  opacity: 0.42;
  visibility: visible;
  cursor: default;
}

html[data-theme="dark"] .horizontal-control-row .scroll-arrow {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.horizontal-scroll {
  box-sizing: border-box;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 5vw;
  padding-inline: 5vw;
  padding-bottom: 10px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #ff7a00 rgba(255, 255, 255, 0.12);
  -webkit-overflow-scrolling: touch;
}

.horizontal-track {
  width: max-content;
  max-width: none;
  min-width: 0;
}

.model-specs .horizontal-track,
.model-specs .model-spec-grid {
  justify-content: flex-start;
  margin-left: 0;
  padding-left: 0;
  padding-inline-start: 0;
  min-width: 100%;
  width: max-content;
}

.model-spec-grid,
.gallery-grid {
  gap: var(--scroll-gap);
  overflow: visible;
  scroll-snap-type: x proximity;
  padding-inline: 0;
}

.model-spec-grid {
  display: flex;
  align-items: stretch;
  gap: var(--spec-gap);
  justify-content: flex-start;
}

.gallery-grid {
  display: flex;
  gap: clamp(20px, 2vw, 32px);
}

.gallery-grid {
  --scroll-card-width: var(--gallery-card-width);
}

.horizontal-scroll::-webkit-scrollbar,
.gallery-scroller::-webkit-scrollbar {
  height: 10px;
}

.horizontal-scroll::-webkit-scrollbar-track,
.gallery-scroller::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.horizontal-scroll::-webkit-scrollbar-thumb,
.gallery-scroller::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: #ff7a00;
  background-clip: padding-box;
}

.horizontal-scroll::-webkit-scrollbar-thumb:hover,
.gallery-scroller::-webkit-scrollbar-thumb:hover {
  border: 2px solid transparent;
  background: #ff8c1a;
  background-clip: padding-box;
}

.model-spec-card,
.gallery-grid article,
.feature-detail-grid article {
  border: 1px solid var(--product-border-color, var(--line));
  border-radius: 8px;
  background: var(--product-card-bg, var(--panel-solid));
  color: var(--product-text-main, var(--text));
}

.model-spec-card {
  flex: 0 0 clamp(var(--spec-card-min, 420px), var(--spec-card-width), var(--spec-card-max, 620px));
  width: auto;
  min-width: var(--spec-card-min, 420px);
  max-width: var(--spec-card-max, 620px);
  padding: clamp(18px, 2vw, 28px);
  scroll-snap-align: start;
}

.model-specs--compact {
  width: var(--content-max);
}

.model-spec-compact-grid {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: var(--spec-gap);
  width: 100%;
  min-width: 100%;
  margin-top: 28px;
}

.model-specs--single .model-spec-compact-grid {
  justify-content: center;
}

.model-specs--pair .model-spec-compact-grid {
  justify-content: flex-start;
}

.model-spec-compact-grid .model-spec-card {
  flex: 0 0 clamp(var(--spec-card-min, 420px), var(--spec-card-width), var(--spec-card-max, 620px));
  width: auto;
  min-width: var(--spec-card-min, 420px);
  max-width: var(--spec-card-max, 620px);
}

@media (min-width: 901px) {
  .model-specs--pair .model-spec-compact-grid .model-spec-card {
    flex: 1 1 calc((100% - var(--spec-gap)) / 2) !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 760px !important;
  }

  .model-specs--single .model-spec-compact-grid .model-spec-card {
    flex: 0 1 min(100%, 720px) !important;
    width: min(100%, 720px) !important;
    min-width: 0 !important;
    max-width: 720px !important;
  }
}

@media (min-width: 1440px) {
  .model-spec-grid {
    gap: var(--spec-gap);
  }

  .model-spec-card {
    flex-basis: clamp(var(--spec-card-min, 420px), var(--spec-card-width), var(--spec-card-max, 620px));
  }
}

@media (min-width: 1680px) {
  .model-specs {
    width: min(1480px, calc(100vw - 10vw));
  }

  .model-specs .horizontal-bleed,
  .model-specs .horizontal-scroll {
    width: 100%;
    margin-inline: auto;
  }

  .model-specs > .section-heading {
    width: min(var(--content-max), 100%);
    max-width: var(--content-max);
    margin-inline: auto;
  }

  .model-specs .horizontal-bleed {
    margin-left: 0;
    overflow: hidden;
    transform: none;
  }

  .model-specs .horizontal-control-row {
    display: none;
  }

  .model-specs .horizontal-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    padding-inline: 0;
    padding-bottom: 10px;
    scroll-padding-inline: 0;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .model-specs .horizontal-track,
  .model-specs .model-spec-grid {
    width: max-content;
    max-width: max-content;
    min-width: 100%;
    margin-inline: auto;
    padding-inline: 0;
    justify-content: flex-start;
    scroll-snap-type: x proximity;
  }

  .model-specs .model-spec-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--spec-gap);
    overflow: visible;
  }

  .model-specs .model-spec-card {
    flex: 0 0 clamp(var(--spec-card-min, 420px), var(--spec-card-width), var(--spec-card-max, 620px));
    width: auto;
    min-width: var(--spec-card-min, 420px);
    max-width: var(--spec-card-max, 620px);
    scroll-snap-align: start;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .product-page .model-specs {
    --spec-gap: clamp(24px, 2vw, 32px);
    --spec-card-min: 360px;
    --spec-card-max: 620px;
    --spec-card-width: calc((100cqw - (var(--spec-gap) * 2)) / 2.5);
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(24px, 4vw, 64px);
    overflow: hidden;
  }

  .product-page .model-specs > .section-heading {
    width: 100%;
    max-width: none;
  }

  .product-page .model-specs .horizontal-bleed {
    width: 100% !important;
    margin-left: 0 !important;
    overflow: hidden !important;
    transform: none !important;
  }

  .product-page .model-specs .horizontal-control-row {
    display: flex;
    width: 100%;
    margin-inline: 0;
  }

  .product-page .model-specs .horizontal-scroll {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-x: contain !important;
    padding-inline: 0 !important;
    padding-bottom: 10px;
    scroll-padding-inline: 0 !important;
    -webkit-overflow-scrolling: touch;
  }

  .product-page .model-specs .horizontal-track,
  .product-page .model-specs .model-spec-grid {
    width: max-content !important;
    max-width: max-content !important;
    min-width: 100% !important;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
    scroll-snap-type: x proximity;
  }

  .product-page .model-specs .model-spec-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: stretch;
    gap: var(--spec-gap);
  }

  .product-page .model-specs .model-spec-card {
    flex: 0 0 clamp(var(--spec-card-min, 460px), var(--spec-card-width), var(--spec-card-max, 620px)) !important;
    width: auto !important;
    min-width: var(--spec-card-min, 460px) !important;
    max-width: var(--spec-card-max, 620px) !important;
    scroll-snap-align: start;
  }
}

@media (max-width: 900px) {
  .model-spec-grid {
    gap: var(--spec-gap);
  }

  .model-spec-compact-grid {
    flex-direction: column;
    gap: 18px;
  }

  .model-specs--pair .model-spec-compact-grid {
    grid-template-columns: 1fr;
  }

  .model-spec-card {
    flex-basis: clamp(var(--spec-card-min, 460px), var(--spec-card-width), var(--spec-card-max, 620px));
  }
}

@media (max-width: 640px) {
  .model-spec-grid {
    gap: 14px;
  }

  .model-spec-card {
    flex: 0 0 min(calc((100vw - 10vw) / 1.1), 420px);
    width: min(calc((100vw - 10vw) / 1.1), 420px);
    min-width: min(calc((100vw - 10vw) / 1.1), 420px);
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .model-specs--pair .model-spec-compact-grid,
  .model-specs--pair .model-spec-mobile-cards {
    display: flex;
    flex-direction: row;
    grid-template-columns: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: clamp(16px, 5vw, 24px);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .model-specs--pair .model-spec-card {
    flex: 0 0 min(82vw, 360px);
    width: min(82vw, 360px);
    min-width: min(82vw, 360px);
    max-width: min(82vw, 360px);
    box-sizing: border-box;
    scroll-snap-align: start;
  }
}

.model-spec-card h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

.model-spec-card dl {
  margin: 0;
}

.model-spec-card div:has(dt) {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(120px, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--product-border-color, var(--line));
}

.model-spec-card div:has(dt):last-child,
.specs div:has(dt):last-child {
  border-bottom: 0;
}

.model-spec-table {
  display: none;
}

@media (min-width: 768px) {
  .model-specs .model-spec-mobile-cards {
    display: none !important;
  }

  .model-spec-table {
    display: block;
    overflow: hidden;
    margin-top: 28px;
    border: 1px solid var(--product-border-color, var(--line));
    border-radius: 8px;
    background: var(--product-card-bg, var(--panel-solid));
    color: var(--product-text-main, var(--text));
  }

  .model-spec-table-row {
    display: grid;
    grid-template-columns: minmax(140px, 0.75fr) repeat(var(--model-count), minmax(0, 1fr));
    column-gap: clamp(16px, 2vw, 32px);
    align-items: stretch;
    padding: clamp(18px, 1.7vw, 24px) clamp(18px, 2.2vw, 32px);
    border-bottom: 1px solid var(--product-border-color, var(--line));
  }

  .model-spec-table-row:last-child {
    border-bottom: 0;
  }

  .model-spec-table-head {
    padding-block: clamp(20px, 1.9vw, 26px);
  }

  .model-spec-table-label {
    color: var(--product-text-muted, var(--muted));
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .model-spec-table-model {
    color: var(--product-text-main, var(--text));
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 800;
    line-height: 1.25;
  }

  .model-spec-table-value {
    min-width: 0;
    color: var(--product-text-main, var(--text));
    font-size: clamp(13px, 0.9vw, 15px);
    font-weight: 600;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
}

.product-materials {
  overflow: visible;
}

.product-materials-desktop {
  display: block;
  margin-top: 30px;
}

.product-materials-desktop.has-material-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.product-material-list {
  display: grid;
  gap: 28px;
}

.product-material-group {
  overflow: hidden;
  border-radius: 8px;
}

.product-material-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  padding: 16px 18px;
  margin: 0;
  border: 1px solid var(--product-border-color, var(--line));
  border-radius: 8px;
  background: var(--product-card-bg, var(--panel-solid));
  color: var(--product-text-main, var(--text));
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  list-style: none;
  cursor: pointer;
}

.product-material-group > summary::-webkit-details-marker {
  display: none;
}

.product-material-group > summary span:first-child {
  display: flex;
  gap: 10px;
  align-items: center;
}

.product-material-group > summary span:first-child::before {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.product-material-rows {
  display: grid;
  gap: 8px;
  padding-top: 12px;
}

.product-material-row,
.product-material-mobile-item summary,
.product-material-mobile-group > summary {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid var(--product-border-color, var(--line));
  border-radius: 8px;
  background: var(--product-card-bg, var(--panel-solid));
  color: var(--product-text-main, var(--text));
}

.product-material-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 10px 14px;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.product-material-row:hover,
.product-material-row:focus-visible,
.product-material-row.is-active {
  border-color: rgba(242, 106, 33, 0.58);
  background: color-mix(in srgb, var(--product-card-bg, var(--panel-solid)) 92%, var(--orange) 8%);
  outline: none;
}

.product-material-row.is-active {
  transform: translateX(4px);
}

.product-material-thumb {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--product-border-color, var(--line));
  border-radius: 8px;
  background: var(--product-media-bg, #f7f7f5);
}

.product-material-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-material-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.product-material-copy strong {
  overflow: hidden;
  font-size: 15px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-material-copy small {
  color: var(--product-text-muted, var(--muted));
  font-size: 13px;
}

.product-material-preview {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--product-border-color, var(--line));
  border-radius: 8px;
  background: var(--product-card-bg, var(--panel-solid));
}

.product-material-preview[hidden] {
  display: none;
}

.product-material-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: var(--product-media-bg, #f7f7f5);
  object-fit: cover;
}

.product-material-preview p,
.product-material-preview h3 {
  margin: 0;
}

.product-material-preview p {
  color: var(--product-text-muted, var(--muted));
  font-size: 13px;
}

.product-material-preview h3 {
  color: var(--product-text-main, var(--text));
  font-size: 22px;
}

.product-materials-mobile {
  display: none;
}

.product-material-mobile-group,
.product-material-mobile-item {
  overflow: hidden;
  border-radius: 8px;
}

.product-material-mobile-group > summary,
.product-material-mobile-item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  cursor: pointer;
}

.product-material-mobile-group > summary {
  justify-content: space-between;
  padding: 16px 18px;
  font-weight: 700;
}

.product-material-mobile-item summary {
  padding: 10px 12px;
}

.product-material-mobile-group > summary::-webkit-details-marker,
.product-material-mobile-item summary::-webkit-details-marker {
  display: none;
}

.product-material-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.58;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.product-material-group[open] > summary .product-material-chevron,
.product-material-mobile-group[open] > summary .product-material-chevron,
.product-material-mobile-item[open] summary .product-material-chevron {
  transform: rotate(225deg);
}

.product-material-mobile-list {
  display: grid;
  gap: 8px;
  padding: 10px 0 0;
}

.product-material-mobile-preview {
  display: grid;
  gap: 10px;
  padding: 12px 12px 16px 78px;
  color: var(--product-text-main, var(--text));
}

.product-material-mobile-preview img {
  width: min(100%, 360px);
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: var(--product-media-bg, #f7f7f5);
  object-fit: cover;
}

@media (max-width: 900px) {
  .product-materials-desktop {
    display: none;
  }

  .product-materials-mobile {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }
}

.gallery-grid article {
  flex: 0 0 clamp(420px, 38vw, 680px);
  min-width: 420px;
  overflow: hidden;
  scroll-snap-align: start;
}

html[data-theme="dark"] .gallery-grid article {
  border-color: rgba(16, 17, 18, 0.12);
  background: #fbfaf7;
  color: #101112;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.gallery-grid h3,
.gallery-grid p {
  margin-right: 18px;
  margin-left: 18px;
}

.gallery-grid h3 {
  margin-top: 18px;
}

.gallery-grid p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.45;
}

html[data-theme="dark"] .gallery-grid p {
  color: rgba(16, 17, 18, 0.62);
}

/* Product Gallery uses light-card islands even inside dark sections */
.product-gallery .gallery-grid article,
.gl-product-gallery-card {
  --gallery-card-bg: #f7f6f2;
  --gallery-card-title: #111111;
  --gallery-card-text: rgba(0, 0, 0, 0.58);
  --gallery-card-border: rgba(0, 0, 0, 0.12);

  overflow: hidden;
  border: 1px solid var(--gallery-card-border);
  border-radius: 16px;
  background: var(--gallery-card-bg);
  color: var(--gallery-card-title);
  box-shadow: none;
}

.gl-product-gallery-body {
  background: var(--gallery-card-bg);
  color: var(--gallery-card-title);
}

.product-gallery .gallery-grid h3,
.gl-product-gallery-card h3 {
  color: var(--gallery-card-title);
  opacity: 1;
  font-weight: 700;
}

.product-gallery .gallery-grid p,
.gl-product-gallery-card p {
  color: var(--gallery-card-text);
  opacity: 1;
}

.product-gallery .period-accent,
.product-gallery .gallery-grid article .period-accent,
.gl-product-gallery-card .period-accent {
  color: #ff7a00;
}

html[data-theme="dark"] .product-gallery .gallery-grid article,
html[data-theme="dark"] .gl-product-gallery-card {
  border-color: var(--gallery-card-border);
  background: var(--gallery-card-bg);
  color: var(--gallery-card-title);
}

html[data-theme="dark"] .gl-product-gallery-body {
  background: var(--gallery-card-bg);
  color: var(--gallery-card-title);
}

html[data-theme="dark"] .product-gallery .gallery-grid h3,
html[data-theme="dark"] .gl-product-gallery-card h3 {
  color: var(--gallery-card-title);
  opacity: 1;
}

html[data-theme="dark"] .product-gallery .gallery-grid p,
html[data-theme="dark"] .gl-product-gallery-card p {
  color: var(--gallery-card-text);
  opacity: 1;
}

.feature-detail-grid,
.accessory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-detail-grid article,
.accessory-grid article {
  padding: clamp(16px, 1.8vw, 24px);
}

.feature-detail-grid h3,
.accessory-grid h3 {
  font-size: 18px;
}

.feature-detail-grid p,
.accessory-grid p,
.product-inquiry p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.accessory-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
}

.usage-open {
  padding: clamp(96px, 8vw, 120px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--theme-dark-bg);
  box-shadow: 0 0 0 100vmax var(--theme-dark-bg);
  clip-path: inset(0 -100vmax);
  color: rgba(245, 248, 252, 0.94);
}

.usage-open-heading {
  max-width: 760px;
  margin-bottom: clamp(58px, 6vw, 86px);
}

.usage-open-heading .kicker {
  color: rgba(245, 248, 252, 0.54);
}

.usage-open-heading h2 {
  max-width: 760px;
  color: rgba(245, 248, 252, 0.96);
  font-size: clamp(42px, 5.2vw, 82px);
  font-weight: 620;
  line-height: 0.98;
  letter-spacing: 0;
}

.usage-open-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.usage-open-item {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 3.2vw, 44px) clamp(24px, 2.8vw, 38px) 0;
  color: rgba(245, 248, 252, 0.92);
}

.usage-open-item:first-child {
  padding-left: 0;
}

.usage-open-item + .usage-open-item {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.usage-open-index {
  margin-bottom: clamp(34px, 4.8vw, 72px);
  color: rgba(245, 248, 252, 0.22);
  font-size: clamp(48px, 7vw, 106px);
  font-weight: 620;
  line-height: 0.78;
  letter-spacing: 0;
}

.usage-open-item h3 {
  max-width: 240px;
  margin: 0 0 16px;
  color: rgba(245, 248, 252, 0.96);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 580;
  line-height: 1.08;
  letter-spacing: 0;
}

.usage-open-item p {
  max-width: 260px;
  margin: 0;
  color: rgba(245, 248, 252, 0.58);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 430;
  line-height: 1.48;
  letter-spacing: 0;
}

.usage-open .period-accent {
  color: var(--orange);
}

@media (max-width: 1023px) {
  .usage-open {
    padding: clamp(76px, 10vw, 96px) 0;
  }

  .usage-open-heading {
    margin-bottom: clamp(42px, 7vw, 64px);
  }

  .usage-open-heading h2 {
    font-size: clamp(36px, 7vw, 62px);
  }

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

  .usage-open-item {
    padding: clamp(26px, 4vw, 36px) clamp(22px, 4vw, 32px) 0;
  }

  .usage-open-item:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .usage-open-item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .usage-open-item:nth-child(n + 3) {
    margin-top: clamp(32px, 5vw, 46px);
    padding-top: clamp(28px, 5vw, 42px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .usage-open-index {
    margin-bottom: clamp(26px, 6vw, 46px);
    font-size: clamp(46px, 10vw, 84px);
  }
}

@media (max-width: 767px) {
  .usage-open {
    padding: clamp(64px, 16vw, 84px) 0;
  }

  .usage-open-heading {
    margin-bottom: 36px;
  }

  .usage-open-heading h2 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1;
  }

  .usage-open-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
    border-top-color: rgba(255, 255, 255, 0.14);
  }

  .usage-open-item,
  .usage-open-item:first-child,
  .usage-open-item:nth-child(odd),
  .usage-open-item:nth-child(even),
  .usage-open-item:nth-child(n + 3) {
    margin-top: 0;
    padding: 22px 12px;
    border-left: 0;
    border-top: 0;
  }

  .usage-open-item:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .usage-open-item:nth-child(even) {
    padding-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .usage-open-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .usage-open-index {
    margin-bottom: 18px;
    font-size: clamp(42px, 16vw, 68px);
  }

  .usage-open-item h3,
  .usage-open-item p {
    max-width: none;
  }

  .usage-open-item h3 {
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.08;
  }

  .usage-open-item p {
    font-size: clamp(12px, 3.4vw, 14px);
    line-height: 1.38;
  }
}

.accessory-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: var(--space-section-tight) 0;
  border-top: 1px solid var(--line);
}

.accessory-showcase-media {
  display: grid;
  min-height: clamp(260px, 32vw, 460px);
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 66%, rgba(255, 255, 255, 0.76), transparent 46%),
    linear-gradient(145deg, rgba(234, 238, 238, 0.72), rgba(255, 255, 255, 0.92));
}

.accessory-showcase-media img {
  width: min(82%, 720px);
  height: auto;
}

.accessory-showcase-copy p:not(.kicker) {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.5;
}

.accessory-gallery .gl-product-gallery-image-frame {
  height: 100%;
  max-height: 100%;
}

.accessory-gallery .gl-product-gallery-card .gl-product-gallery-image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.community-page {
  min-height: 100vh;
  padding: 104px clamp(18px, 3vw, 44px) 204px;
  background: #f4efe7;
  color: #101112;
}

.community-landing {
  width: min(100%, 1560px);
  margin: 0 auto;
}

.community-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(720px, 1.25fr);
  min-height: clamp(700px, 78vh, 860px);
  overflow: visible;
  border-radius: 28px;
  background: #f8f3eb;
  box-shadow: 0 28px 90px rgba(68, 54, 35, 0.14);
}

.community-copy-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(34px, 4.4vw, 62px);
  border-radius: 28px 0 0 28px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.24) 64%, rgba(0, 0, 0, 0));
}

.community-breadcrumb {
  margin: 0 0 clamp(48px, 7vw, 84px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.community-breadcrumb span {
  display: inline-block;
  margin: 0 14px;
  color: rgba(255, 255, 255, 0.44);
}

.community-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.community-copy-panel h1 {
  max-width: 460px;
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.92;
}

.community-copy-panel h1::first-letter {
  letter-spacing: 0;
}

.community-body {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
}

.community-note {
  position: relative;
  margin: auto 0 120px min(120px, 12vw);
  color: rgba(255, 255, 255, 0.78);
  font-family: "Comic Sans MS", "Marker Felt", cursive;
  font-size: clamp(18px, 2vw, 24px);
  transform: rotate(-4deg);
}

.community-paper-plane {
  position: absolute;
  left: calc(100% + 10px);
  bottom: 0.05em;
  display: inline-block;
  width: 86px;
  height: 28px;
  color: var(--orange);
  pointer-events: none;
  transform-origin: 80% 50%;
  animation: communityPaperPlaneFly 4.5s ease-in-out infinite;
}

.community-paper-plane svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.community-paper-plane-trail,
.community-paper-plane-mark,
.community-paper-plane-fold {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-paper-plane-trail {
  stroke-width: 1.4;
  stroke-dasharray: 4 6;
  opacity: 0.72;
}

.community-paper-plane-mark,
.community-paper-plane-fold {
  stroke-width: 2;
}

.community-mobile-ending {
  display: none;
}

@media (min-width: 768px) {
  .community-page {
    padding-bottom: 420px;
  }

  .community-mobile-ending {
    position: absolute;
    right: 0;
    bottom: clamp(-328px, calc(-294px - 2.2vw), -312px);
    left: 0;
    display: block;
    margin: 0;
    color: var(--orange);
    font-size: 28px;
    font-weight: 900;
    text-align: center;
  }
}

@keyframes communityPaperPlaneFly {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(-8deg);
  }

  12% {
    opacity: 1;
  }

  70% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    transform: translate(min(42vw, 620px), -54px) rotate(10deg);
  }
}

.community-image-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: #d9d4c8;
}

.community-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.crew-grid {
  position: absolute;
  z-index: 4;
  right: clamp(28px, 4vw, 64px);
  bottom: clamp(-194px, calc(-160px - 2.2vw), -178px);
  left: clamp(28px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, minmax(270px, 300px));
  gap: clamp(14px, 1.6vw, 22px);
  justify-content: center;
  align-items: stretch;
}

.crew-card {
  --crew-accent: var(--orange);
  display: flex;
  min-height: 420px;
  max-height: 460px;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px 24px;
  border: 1px solid color-mix(in srgb, var(--crew-accent) 68%, rgba(255, 255, 255, 0.2));
  border-radius: 18px;
  background: rgba(16, 19, 21, 0.78);
  color: #f7f4ef;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.crew-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
}

.crew-person-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid color-mix(in srgb, var(--crew-accent) 38%, rgba(255, 255, 255, 0.14));
  color: rgba(247, 244, 239, 0.78);
  font-size: 24px;
  font-weight: 900;
}

.crew-person-row span {
  color: var(--crew-accent);
}

.crew-platform-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.crew-platform-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.crew-platform-icon svg {
  width: 100%;
  height: 100%;
}

.crew-platform-icons--hero {
  gap: 12px;
  justify-content: center;
  min-height: 72px;
}

.crew-platform-icons--hero .crew-platform-icon {
  width: 72px;
  height: 72px;
  flex-basis: 72px;
}

.crew-platform-icon--linkedin {
  color: #0a66c2;
}

.crew-platform-icon--facebook {
  color: #1877f2;
}

.crew-platform-icon--x {
  color: #fff;
}

.crew-card h3 {
  margin: 20px 0 28px;
  color: #fff;
  font-size: clamp(32px, 2.4vw, 40px);
  text-align: center;
  line-height: 1;
}

.crew-card-actions {
  display: grid;
  width: 100%;
  gap: 8px;
}

.crew-social-button {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--crew-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 26px color-mix(in srgb, var(--crew-accent) 28%, transparent);
}

.crew-social-button span:last-child {
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.crew-social-button--tiktok {
  background: linear-gradient(135deg, #ff2b77, #fe2c55);
}

.crew-social-button--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 58%, #8134af);
}

.crew-social-button--linkedin {
  background: #0a66c2;
}

.crew-social-button--facebook {
  background: #1877f2;
}

.crew-social-button--x {
  border-color: rgba(255, 255, 255, 0.32);
  background: #050505;
}

html[data-theme="dark"] .community-page {
  background: #07090b;
  color: #f7f4ef;
}

html[data-theme="dark"] .community-hero-card {
  background: #0e1113;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

html[data-theme="dark"] .community-breadcrumb,
html[data-theme="dark"] .community-body,
html[data-theme="dark"] .community-note {
  color: rgba(247, 244, 239, 0.68);
}

html[data-theme="dark"] .community-breadcrumb span {
  color: rgba(247, 244, 239, 0.34);
}

html[data-theme="dark"] .community-copy-panel h1 {
  color: #f7f4ef;
}

html[data-theme="dark"] .community-image-panel {
  background: #111;
}

html[data-theme="dark"] .crew-card {
  border-color: color-mix(in srgb, var(--crew-accent) 58%, rgba(255, 255, 255, 0.1));
  background: rgba(16, 19, 21, 0.78);
  color: #f7f4ef;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .crew-person-row,
html[data-theme="dark"] .crew-social-button {
  color: #f7f4ef;
}

@media (max-width: 767px) {
  .community-page {
    padding: 88px 20px 56px;
  }

  .community-hero-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .community-copy-panel {
    display: contents;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: none;
  }

  .community-breadcrumb {
    display: none;
  }

  .community-label {
    position: absolute;
    z-index: 2;
    top: 26px;
    left: 22px;
    margin: 0;
    font-size: 11px;
  }

  .community-copy-panel h1 {
    position: absolute;
    z-index: 2;
    top: 58px;
    left: 22px;
    max-width: 300px;
    margin: 0;
    font-size: clamp(44px, 15vw, 62px);
  }

  .community-note {
    order: 2;
    width: fit-content;
    max-width: calc(100% - 74px);
    margin: 28px 0 34px;
    color: #101112;
  }

  html[data-theme="dark"] .community-note {
    color: #f7f4ef;
  }

  .community-paper-plane {
    left: calc(100% + 8px);
    bottom: 0.1em;
    width: 68px;
    height: 22px;
  }

  .community-image-panel {
    position: relative;
    order: 1;
    inset: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    border-radius: 22px;
  }

  .community-image-panel img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .crew-grid {
    position: static;
    order: 3;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    justify-content: stretch;
    padding: 0;
  }

  .crew-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    max-height: none;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border-radius: 18px;
  }

  .crew-platform-icons--hero {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
    min-height: 48px;
  }

  .crew-platform-icons--hero .crew-platform-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .crew-card h3 {
    grid-column: 1;
    grid-row: 2;
    margin: 4px 0 12px;
    font-size: 28px;
    text-align: left;
  }

  .crew-card-actions {
    grid-column: 1;
    grid-row: 3;
  }

  .crew-social-button {
    min-height: 46px;
  }

  .crew-person-row {
    grid-column: 2;
    grid-row: 1 / span 3;
    width: auto;
    min-width: 76px;
    flex-direction: column;
    gap: 8px;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    font-size: 16px;
    text-align: center;
  }

  .crew-avatar {
    width: 48px;
    height: 48px;
  }

  .community-mobile-ending {
    display: block;
    order: 4;
    margin: 34px 0 0;
    color: var(--orange);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-paper-plane {
    animation: none;
  }
}

@media (max-width: 767px) {
  .community-page .crew-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.certifications {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 28px;
  align-items: center;
}

.certifications div,
.download-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.certifications span,
.download-list a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-solid);
}

.certifications span {
  padding: 0 14px;
  color: var(--text);
  font-weight: 900;
}

.downloads {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 34px;
  align-items: start;
}

.download-list a {
  gap: 12px;
  padding: 0 14px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.download-list a:hover {
  border-color: rgba(242, 106, 33, 0.42);
}

.support-downloads {
  display: grid;
  gap: 12px;
  width: 100%;
}

.support-download-row {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel-solid);
  transition:
    border-color 200ms ease,
    background-color 200ms ease;
}

.support-download-row:not(.is-disabled):hover {
  border-color: rgba(242, 106, 33, 0.36);
}

.support-download-row[open] {
  border-color: rgba(242, 106, 33, 0.64);
}

.support-download-row summary,
.support-download-disabled-content {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
}

.support-download-row summary {
  cursor: pointer;
  list-style: none;
}

.support-download-row summary::-webkit-details-marker {
  display: none;
}

.support-download-title {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.support-download-title strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.support-download-title small {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
}

.support-download-row[open] .support-download-title small {
  color: var(--orange);
}

.support-download-chevron {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
  transition:
    border-color 200ms ease,
    transform 200ms ease;
}

.support-download-row[open] .support-download-chevron {
  border-color: var(--orange);
  transform: rotate(225deg) translateY(-2px);
}

.support-download-row.is-disabled {
  opacity: 0.62;
}

.support-download-row.is-disabled .support-download-title strong,
.support-download-row.is-disabled .support-download-title small {
  color: var(--quiet);
}

.support-download-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}

.support-download-row[open] .support-download-panel {
  grid-template-rows: 1fr;
}

.support-download-panel-inner {
  display: grid;
  min-height: 0;
  gap: 8px;
  overflow: hidden;
  padding: 0 12px 12px;
}

.support-document-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto auto 38px;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 8px 8px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--panel-solid) 84%, var(--bg));
}

.support-document-icon,
.support-document-action {
  display: inline-grid;
  place-items: center;
}

.support-document-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: var(--orange);
}

.support-document-icon svg,
.support-document-action svg {
  width: 20px;
  height: 20px;
}

.support-document-icon path,
.support-document-action path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-document-name {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-document-size,
.support-document-type {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.support-document-type {
  color: var(--muted);
}

.support-document-action {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #141414;
  color: #fff;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.support-document-action:hover {
  border-color: rgba(242, 106, 33, 0.56);
  color: var(--orange);
}

.support-document-action:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.support-document-action:disabled:hover {
  border-color: var(--line);
  color: #fff;
}

.product-inquiry {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent, rgba(242, 106, 33, 0.08)),
    var(--panel-solid);
  padding: clamp(28px, 4vw, 48px);
}

.product-inquiry h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.06;
}

.product-inquiry p {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: 15px;
}

.specs {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 42px;
  width: var(--content-max);
  margin-inline: auto;
  padding: var(--space-section-tight) 0;
  border-top: 1px solid var(--line);
}

.specs dl {
  margin: 0;
}

.specs div:has(dt) {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}

/* Footer */
.site-footer {
  display: grid;
  gap: 22px;
  padding: 34px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 12px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  padding: 2px 0 8px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-column ul,
.footer-accordion ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a,
.footer-accordion a,
.footer-bottom a,
.contact-social-links a {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
}

.footer-column a:hover,
.footer-accordion a:hover,
.footer-bottom a:hover,
.contact-social-links a:hover {
  color: var(--orange);
}

.footer-accordions {
  display: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer-bottom-identity {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-bottom-identity span:first-child {
  color: var(--muted);
  font-weight: 700;
}

.footer-bottom-identity span:nth-child(3) {
  flex-basis: 100%;
}

.footer-bottom-links,
.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-social {
  padding-top: clamp(40px, 7vw, 84px);
  padding-bottom: clamp(56px, 9vw, 112px);
}

.contact-social h2 {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

.contact-social .accent-dot {
  color: var(--orange);
}

.contact-social-links {
  gap: 20px;
  margin-top: 44px;
}

.contact-social-links .contact-social-card {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 210px;
  min-height: 68px;
  padding: 0 28px;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--panel) 44%, transparent);
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.contact-social-links .contact-social-card:hover {
  border-color: color-mix(in srgb, var(--orange) 72%, var(--line));
  background: color-mix(in srgb, var(--panel) 72%, transparent);
  color: var(--text);
  transform: translateY(-2px);
}

.contact-social-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: var(--text);
}

.contact-social-icon svg {
  display: block;
  width: 30px;
  height: 30px;
}

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

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

html.is-screenshot-mode *,
body.is-screenshot-mode * {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

html.is-screenshot-mode .reveal,
html.is-screenshot-mode .reveal.is-visible,
body.is-screenshot-mode .reveal,
body.is-screenshot-mode .reveal.is-visible,
html.is-screenshot-mode .home-content-layer section,
body.is-screenshot-mode .home-content-layer section {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

html.is-screenshot-mode .hero-scroll-stage,
body.is-screenshot-mode .hero-scroll-stage {
  height: min(82svh, 900px) !important;
  min-height: 700px !important;
  max-height: 900px !important;
  overflow: hidden !important;
  background: transparent !important;
}

html.is-screenshot-mode .hero-sticky-viewport,
html.is-screenshot-mode .hero,
body.is-screenshot-mode .hero-sticky-viewport,
body.is-screenshot-mode .hero {
  position: relative !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: hidden !important;
}

html.is-screenshot-mode .hero-bg,
body.is-screenshot-mode .hero-bg {
  transform: none !important;
  will-change: auto !important;
}

html.is-screenshot-mode .home-content-layer,
body.is-screenshot-mode .home-content-layer {
  position: relative !important;
  z-index: 3 !important;
  min-height: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

html.is-screenshot-mode .home-content-layer *,
body.is-screenshot-mode .home-content-layer * {
  visibility: visible !important;
}

/* Responsive */
@media (min-width: 1600px) {
  :root {
    --model-card-width: 400px;
    --gallery-card-width: 370px;
    --related-card-width: 320px;
  }
}

@media (max-width: 1100px) {
  :root {
    --model-card-width: clamp(300px, 44vw, 390px);
    --gallery-card-width: clamp(280px, 42vw, 360px);
    --related-card-width: clamp(250px, 38vw, 320px);
  }
}

@media (max-width: 1023px) {
  :root {
    --nav-panel-gap: 8px;
  }

  html,
  body,
  #root {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  html {
    overflow-x: clip;
  }

  body,
  #root,
  main,
  .page,
  .product-page {
    overflow: visible;
  }

  body {
    min-width: 0;
  }

  .site-header {
    z-index: 100;
  }

  .nav {
    position: fixed;
    top: calc(var(--nav-top) + var(--nav-height) + var(--nav-panel-gap));
    right: auto;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: calc(100vw - 32px);
    max-height: calc(100dvh - 120px);
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--panel-solid);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(-14px) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 300ms ease,
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 360ms;
    z-index: 120;
  }

  .mobile-nav-scroll {
    display: block;
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 32px 20px 24px;
  }

  .site-header .nav.is-open {
    background: var(--panel-solid);
  }

  .site-header .nav.is-open button,
  .site-header .nav.is-open a {
    color: var(--text);
  }

  html[data-theme="dark"] .site-header .nav.is-open {
    background: var(--panel-solid);
  }

  html[data-theme="dark"] .site-header .nav.is-open button,
  html[data-theme="dark"] .site-header .nav.is-open a {
    color: #f7f4ef;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
    transition:
      opacity 260ms ease,
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
  }

  .mobile-nav-panel .mobile-nav-scroll > * {
    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 260ms ease,
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-nav-panel.is-open .mobile-nav-scroll > * {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav-panel.is-open .mobile-nav-scroll > *:nth-child(1) {
    transition-delay: 40ms;
  }

  .mobile-nav-panel.is-open .mobile-nav-scroll > *:nth-child(2) {
    transition-delay: 70ms;
  }

  .mobile-nav-panel.is-open .mobile-nav-scroll > *:nth-child(3) {
    transition-delay: 100ms;
  }

  .mobile-nav-panel.is-open .mobile-nav-scroll > *:nth-child(4) {
    transition-delay: 130ms;
  }

  .nav button,
  .nav a {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-actions > .language-switch {
    display: none;
  }

  .mobile-header-language-switch {
    display: inline-flex;
    align-items: center;
    margin-right: clamp(8px, 2.6vw, 14px);
  }

  .mobile-header-language-switch .language-switch {
    gap: 4px;
    min-height: 34px;
    font-size: 12px;
    line-height: 1;
  }

  .mobile-header-language-switch .language-switch a {
    width: auto;
    min-height: 0;
    padding: 0;
    color: rgba(247, 244, 239, 0.62);
  }

  .mobile-header-language-switch .language-switch a:hover,
  .mobile-header-language-switch .language-switch a.is-active {
    color: #f7f4ef;
  }

  .mobile-language-switch {
    display: block;
    padding-top: 12px;
  }

  .mobile-language-switch .language-switch {
    min-height: 36px;
    font-size: 14px;
  }

  .mobile-language-switch .language-switch a {
    width: auto;
    min-height: 0;
    padding: 0;
  }

  .mobile-nav-scroll > a,
  .nav-support-trigger,
  .nav .mobile-products-toggle {
    padding-block: 19px;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.18;
  }

  .nav-product,
  .nav-support {
    width: 100%;
  }

  .desktop-products-link,
  .products-dropdown,
  .product-dropdown,
  .support-dropdown {
    display: none !important;
  }

  .mobile-support-panel {
    display: grid;
    gap: 0;
    margin: -2px 0 20px;
    padding: 0 0 10px 12px;
    border-left: 1px solid var(--line);
  }

  .mobile-support-panel .support-menu-item {
    min-height: 36px;
    padding: 0;
    border-radius: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-support-panel .support-menu-item:hover {
    background: transparent;
    color: var(--orange);
  }

  .nav .mobile-products-toggle {
    display: inline-flex;
  }

  .mobile-products-panel.is-open {
    display: flex;
  }

  .mobile-products-panel {
    position: relative;
    z-index: 1;
    flex-direction: column;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 10px 0 28px;
    padding: 12px 0 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    gap: 0;
    overflow: visible;
  }

  .mobile-products-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-width: 0;
    padding: 14px 0 18px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    color: rgba(17, 17, 17, 0.64);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.22;
    text-decoration: none;
  }

  .mobile-products-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
  }

  .mobile-product-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto auto;
    align-items: baseline;
    column-gap: 12px;
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 10px 0;
    overflow: visible;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    color: #111;
    text-decoration: none;
  }

  .mobile-product-name {
    min-width: 0;
    overflow: hidden;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-product-tag,
  .mobile-product-capacity {
    flex-shrink: 0;
    overflow: visible;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-product-tag {
    color: var(--orange);
  }

  .mobile-product-tag:empty {
    display: block;
    width: 0;
  }

  .mobile-product-capacity {
    color: rgba(17, 17, 17, 0.58);
    text-align: right;
  }

  html[data-theme="dark"] .mobile-products-panel {
    border-top-color: rgba(255, 255, 255, 0.14);
  }

  html[data-theme="dark"] .mobile-products-view-all {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: rgba(247, 244, 239, 0.62);
  }

  html[data-theme="dark"] .mobile-product-row {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: #f7f4ef;
  }

  html[data-theme="dark"] .mobile-product-name {
    color: #f7f4ef;
  }

  html[data-theme="dark"] .mobile-product-capacity {
    color: rgba(247, 244, 239, 0.6);
  }

  html[data-theme="dark"] .mobile-product-tag {
    color: var(--orange);
  }

  .nav-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    z-index: 170;
    appearance: none;
    -webkit-appearance: none;
  }

  .menu-button span {
    position: absolute;
    width: 28px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    transform-origin: center;
    transition:
      transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 600ms ease;
  }

  .menu-button span:first-child {
    transform: translateY(-6px) rotate(0deg);
  }

  .menu-button span:last-child {
    transform: translateY(6px) rotate(0deg);
  }

  .menu-button.is-open span:first-child {
    transform: translateY(0) rotate(45deg);
  }

  .menu-button.is-open span:last-child {
    transform: translateY(0) rotate(-45deg);
  }

  .product-family-section,
  .feature-product,
  .feature-product.is-reversed,
  .product-hero,
  .specs,
  .certifications,
  .downloads,
  .accessory-showcase,
  .community-hero {
    grid-template-columns: 1fr;
  }

  .feature-product.is-reversed .feature-visual {
    order: initial;
  }

  .feature-detail-grid,
  .use-case-grid,
  .accessory-grid,
  .crew-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-toggle span,
  .mobile-nav-panel,
  .mobile-nav-panel .mobile-nav-scroll > * {
    transition: none !important;
  }
}

@supports not (overflow: clip) {
  @media (max-width: 1023px) {
    html {
      overflow-x: hidden;
    }
  }
}

@media (max-width: 430px) {
  .mobile-nav-scroll > a,
  .nav .mobile-products-toggle {
    padding-block: 18px;
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-top: 0px;
    --nav-height: 48px;
    --site-gutter: 20px;
    --site-ratio: calc(100vw - var(--site-gutter) * 2);
    --content-max: min(
      var(--site-max),
      var(--site-ratio),
      calc(100vw - var(--site-gutter) * 2)
    );
    --content-offset: var(--site-gutter);
    --font-display-xl: clamp(32px, 9vw, 40px);
    --font-display-lg: clamp(30px, 8vw, 38px);
    --font-section-title: clamp(24px, 6.5vw, 32px);
    --font-card-title: 19px;
    --font-body: 15px;
    --hero-height: max(560px, 72svh);
    --hero-bg-extra-scroll: 180px;
    --hero-stage-height: var(--hero-height);
    --scroll-gap: 14px;
    --model-card-width: min(84vw, 360px);
    --gallery-card-width: min(84vw, 340px);
    --related-card-width: min(78vw, 300px);
  }

  body {
    min-width: 320px;
  }

  .hero-bg-scroll {
    min-width: 0;
    min-height: 0;
    max-height: none;
    height: 100%;
  }

  .hero-sticky-viewport {
    min-height: 0;
    max-height: none;
  }

  .site-header__shell {
    grid-template-columns: auto 1fr auto;
    width: calc(100vw - 24px);
    height: var(--nav-height);
    min-height: var(--nav-height);
    padding: 0;
    border-radius: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
  }

  .brand-text strong {
    font-size: 12px;
  }

  .brand-text small {
    display: none;
  }

  .theme-button {
    width: 48px;
    padding: 0;
    overflow: hidden;
    font-size: 0;
  }

  .theme-button::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
  }

  .header-actions.nav-actions {
    gap: 6px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    min-width: 0;
    height: 100%;
    min-height: 0;
    padding: 78px 22px 40px;
  }

  .hero-ui {
    height: var(--hero-height);
    min-height: 0;
    max-height: none;
  }

  .hero-title {
    font-size: var(--font-display-lg);
  }

  .hero-copy,
  .hero-slide-s35 .hero-copy {
    grid-column: auto;
    justify-self: start;
    padding-bottom: 78px;
    text-align: left;
    transform: none;
  }

  .hero-slide-b-series .hero-copy {
    grid-column: auto;
    justify-self: end;
    text-align: right;
  }

  .hero-slide-b-series .hero-text {
    margin-left: auto;
  }

  .hero-slide-b-series .hero-features {
    justify-content: flex-end;
    margin-left: auto;
    text-align: right;
  }

  .hero-arrow {
    top: auto;
    bottom: 18px;
    z-index: 8;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .hero-arrow-left {
    left: 18px;
  }

  .hero-arrow-right {
    right: 18px;
  }

  .hero-arrow:hover {
    transform: none;
  }

  .hero-dots {
    right: auto;
    bottom: 28px;
    left: 50%;
    z-index: 8;
    justify-content: center;
    width: auto;
    max-width: calc(100vw - 140px);
    gap: 10px;
    transform: translateX(-50%);
  }

  .hero-index-item {
    font-size: 11px;
  }

  .hero-index-line {
    width: 32px;
  }

  .hero-index-item.is-active .hero-index-line {
    width: 44px;
  }

  .hero-actions {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    width: auto;
    transform: none;
  }

  .hero-slide-b-series .hero-actions {
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: none;
  }

  .hero-feature {
    width: auto;
    flex-shrink: 1;
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }

  .product-family-section,
  .process-grid,
  .qa-list,
  .feature-detail-grid,
  .use-case-grid,
  .accessory-grid,
  .crew-grid,
  .product-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-family-strip {
    gap: 18px;
  }

  .section,
  .contact {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section,
  .contact,
  .featured,
  .trust-line,
  .page,
  .product-page,
  .statement,
  .product-section,
  .certifications,
  .downloads,
  .accessory-showcase,
  .community-hero,
  .product-inquiry,
  .specs,
  .related,
  footer {
    width: calc(100% - 32px);
  }

  .product-family-card {
    min-height: 430px;
    padding: 0;
  }

  .family-image {
    min-height: 280px;
    flex-basis: 68%;
  }

  .family-image img {
    inset: 6%;
    width: 88%;
    height: 88%;
    padding: 0;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

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

  .feature-visual {
    min-height: 240px;
  }

  .product-hero-media {
    min-height: 280px;
  }

  .product-color-selector {
    margin-top: 0;
  }

  .product-hero-copy .product-color-selector > p {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .product-color-options {
    gap: 10px;
  }

  .product-color-option {
    min-height: 106px;
    padding: 14px;
    border-radius: 14px;
    font-size: 14px;
  }

  .product-color-swatch {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }

  .product-hero.is-b-series .product-hero-media,
  .product-hero.is-b-series .product-hero-copy {
    order: initial;
  }

  .product-hero.is-b-series .product-hero-media {
    height: 280px;
  }

  .model-specs,
  .product-gallery,
  .product-section,
  .certifications,
  .downloads,
  .product-inquiry {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .product-gallery {
    width: 100%;
  }

  .gallery-grid {
    scroll-snap-type: x mandatory;
  }

  .model-spec-grid {
    scroll-padding-inline: 0;
    scroll-snap-type: x proximity;
    padding-inline: 0;
  }

  .specs div:has(dt) {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    gap: 0;
    padding: 28px 0 34px;
  }

  .footer-columns {
    display: none;
  }

  .footer-accordions {
    display: grid;
    border-top: 1px solid var(--line);
  }

  .footer-accordion {
    border-bottom: 1px solid var(--line);
  }

  .footer-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
  }

  .footer-accordion summary::-webkit-details-marker {
    display: none;
  }

  .footer-accordion summary::after {
    content: "+";
    color: var(--quiet);
    font-size: 16px;
    font-weight: 400;
  }

  .footer-accordion[open] summary::after {
    content: "-";
  }

  .footer-accordion ul {
    gap: 10px;
    padding: 0 0 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    border-top: 0;
  }

  .footer-bottom-identity {
    flex-direction: row;
    gap: 4px;
  }

  .support-download-row summary,
  .support-download-disabled-content {
    min-height: 52px;
    padding-inline: 14px;
  }

  .support-download-panel-inner {
    padding-inline: 10px;
  }

  .support-document-item {
    grid-template-columns: 30px minmax(0, 1fr) auto 36px;
    grid-template-areas:
      "icon name name action"
      "icon size type action";
    gap: 4px 10px;
    padding: 10px;
  }

  .support-document-icon {
    grid-area: icon;
  }

  .support-document-name {
    grid-area: name;
  }

  .support-document-size {
    grid-area: size;
  }

  .support-document-type {
    grid-area: type;
    justify-self: start;
  }

  .support-document-action {
    grid-area: action;
  }
}

@media (max-width: 640px) {
  .product-hero-copy {
    min-width: 0;
  }

  .model-selector {
    gap: 12px;
    row-gap: 12px;
    margin-top: 18px;
    margin-bottom: 16px;
    padding: 14px;
  }

  .model-label {
    width: 100%;
    min-width: 0;
    font-size: 11px;
  }

  .model-tabs {
    gap: 12px;
    padding-bottom: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .model-tabs::-webkit-scrollbar {
    display: none;
  }

  .model-tab {
    height: auto;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 16px;
    line-height: 1;
  }

  .model-tab.active {
    border-color: var(--orange);
    background: rgba(242, 106, 33, 0.14);
  }

  .model-tab.active::after {
    display: none;
  }

  .product-color-selector {
    width: 100%;
    max-width: 100%;
  }

  .product-color-options {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-color-option {
    display: flex;
    min-height: auto;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    text-align: left;
  }

  .product-color-swatch {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .product-page .product-config-panel {
    --product-mobile-bg: #050607;
    --product-mobile-panel: #171819;
    --product-mobile-panel-soft: rgba(255, 255, 255, 0.045);
    --product-mobile-text: #f7f4ef;
    --product-mobile-muted: rgba(247, 244, 239, 0.68);
    --product-mobile-quiet: rgba(247, 244, 239, 0.48);
    --product-mobile-line: rgba(247, 244, 239, 0.18);

    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "visual"
      "controls";
    gap: 18px;
    width: min(calc(100vw - 34px), 430px);
    min-height: 100svh;
    margin-inline: auto;
    padding: calc(var(--nav-height) + 24px) 0 24px;
    background: var(--product-mobile-bg);
    box-shadow: 0 0 0 100vmax var(--product-mobile-bg);
    color: var(--product-mobile-text);
  }

  html:not([data-theme="dark"]) .product-page .product-config-panel {
    --product-mobile-bg: #f5f5f7;
    --product-mobile-panel: #171819;
    --product-mobile-panel-soft: rgba(16, 17, 18, 0.04);
    --product-mobile-text: #1d1d1f;
    --product-mobile-muted: rgba(29, 29, 31, 0.64);
    --product-mobile-quiet: rgba(29, 29, 31, 0.5);
    --product-mobile-line: rgba(29, 29, 31, 0.18);
  }

  .product-config-breadcrumb,
  .product-hero-copy h2,
  .product-hero-copy > p:not(.product-mobile-subtitle) {
    display: none;
  }

  .product-config-copy {
    padding: 0 4px;
  }

  .product-hero-copy h1 {
    margin: 0 0 clamp(20px, 5vw, 28px);
    color: var(--product-mobile-text);
    font-size: clamp(42px, 13.6vw, 64px);
    font-weight: 820;
    line-height: 0.98;
    letter-spacing: -0.052em;
  }

  .product-hero-copy .product-mobile-subtitle {
    display: block;
    max-width: none;
    margin: 0;
    color: var(--product-mobile-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
    white-space: normal;
  }

  .product-config-visual,
  .product-hero-media.product-config-visual {
    min-height: 0;
    height: clamp(248px, 68vw, 340px);
    border-radius: 18px;
    background:
      radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.16), transparent 62%),
      linear-gradient(145deg, #202123, #101112);
  }

  .product-config-visual img,
  .product-hero-media.product-config-visual img {
    width: 90%;
    height: 90%;
    object-fit: contain;
  }

  .product-config-controls {
    display: grid;
    gap: 20px;
    padding: 0 4px;
  }

  .model-selector {
    margin: 0;
    padding: 0;
  }

  .model-label {
    margin: 0 0 14px;
    color: var(--product-mobile-quiet);
    font-size: 0;
    line-height: 1;
    letter-spacing: 0;
  }

  .model-label::before {
    content: "MODEL";
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.24em;
  }

  .model-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .model-tab {
    display: inline-flex;
    min-width: 0;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--product-mobile-line);
    border-radius: 999px;
    background: transparent;
    color: var(--product-mobile-text);
    font-size: clamp(18px, 5.1vw, 24px);
    font-weight: 820;
    letter-spacing: -0.015em;
    scroll-snap-align: none;
  }

  .model-tab.active {
    border-color: var(--orange);
    background: transparent;
    color: var(--orange);
    box-shadow: inset 0 0 0 1px var(--orange);
  }

  .model-tab.active::after {
    display: none;
  }

  .product-color-selector {
    margin: 0;
    padding: 0;
  }

  .product-color-selector > p,
  .product-hero-copy .product-color-selector > p {
    margin: 0 0 14px;
    color: var(--product-mobile-quiet);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .product-color-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .product-color-option {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    min-height: 70px;
    align-items: center;
    justify-content: stretch;
    gap: 16px;
    padding: 12px 16px;
    border: 1px solid var(--product-mobile-line);
    border-radius: 18px;
    background: var(--product-mobile-panel-soft);
    color: var(--product-mobile-text);
    font-size: clamp(15px, 4.2vw, 20px);
    font-weight: 760;
    line-height: 1.1;
    text-align: left;
  }

  .product-color-option::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    justify-self: end;
    border: 2px solid var(--product-mobile-quiet);
    border-radius: 50%;
  }

  .product-color-option.is-active {
    border-color: var(--orange);
    box-shadow: inset 0 0 0 1px var(--orange);
  }

  .product-color-option.is-active::after {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: var(--orange);
    color: var(--orange);
    font-size: 14px;
    font-weight: 900;
  }

  .product-color-option > span:not(.product-color-swatch) {
    justify-self: end;
    overflow-wrap: normal;
    text-align: right;
  }

  .product-color-swatch {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    margin: 0;
    border-color: var(--product-mobile-line);
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .product-config-panel {
    width: min(calc(100vw - 48px), 1000px);
    grid-template-columns: minmax(320px, 0.44fr) minmax(420px, 0.56fr);
    grid-template-areas:
      "copy visual"
      "controls visual";
    gap: 36px;
  }

  .product-config-visual {
    min-height: clamp(340px, 40vw, 500px);
  }

  .product-color-options {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 900px) {
  .product-config-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "controls";
    width: min(calc(100vw - 40px), 720px);
    gap: 28px;
    margin-inline: auto;
  }

  .product-config-copy {
    grid-area: copy;
  }

  .product-config-visual {
    grid-area: visual;
    min-height: clamp(320px, 80vw, 480px);
  }

  .product-config-controls {
    grid-area: controls;
  }

  .model-selector {
    display: block;
    margin-top: 32px;
    margin-bottom: 22px;
    padding: 0;
    overflow: visible;
    background: transparent;
  }

  .model-tabs {
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .model-tab {
    height: auto;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 16px;
    line-height: 1;
    scroll-snap-align: start;
  }

  .model-tab.active {
    border-color: var(--orange);
    background: rgba(242, 106, 33, 0.14);
  }

  .model-tab.active::after {
    display: none;
  }

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

  .product-color-option {
    min-height: auto;
    padding: 16px 18px;
  }
}

@media (max-width: 380px) {
  .hero-arrow-left {
    left: 12px;
  }

  .hero-arrow-right {
    right: 12px;
  }
}

/* Homepage layout rails */
@media (max-width: 767px) {
  :root {
    --page-width: calc(100vw - 40px);
    --page-max: none;
    --wide-width: calc(100vw - 40px);
    --wide-max: none;
    --section-gap: 56px;
  }

  body {
    min-width: 320px;
  }

  .product-family-section {
    display: block;
    width: min(1180px, calc(100vw - 48px));
    max-width: none;
  }

  .product-family-header {
    display: block;
    margin-bottom: 24px;
  }

  .product-family-header .text-button {
    margin-top: 16px;
    margin-bottom: 0;
  }

  .product-family-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    overflow-x: visible;
    padding-bottom: 8px;
  }

  .product-family-card {
    min-width: 0;
  }

  .featured,
  .home-content-layer > .trust-line {
    width: var(--wide-width);
    max-width: none;
  }

  .feature-product,
  .feature-product.is-reversed {
    display: block;
  }
}

@media (max-width: 640px) {
  .product-family-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .product-family-card {
    min-width: 78vw;
    scroll-snap-align: start;
  }
}

@media (min-width: 768px) and (max-width: 1919px) {
  :root {
    --page-max: 1180px;
    --page-width: min(82vw, var(--page-max));
    --wide-max: 1180px;
    --wide-width: min(84vw, var(--wide-max));
    --section-gap: 88px;
  }

  .home-content-layer > .trust-line {
    width: var(--wide-width);
    max-width: var(--wide-max);
  }

  .product-family-section {
    display: block;
    width: min(1180px, calc(100vw - 48px));
    max-width: none;
  }

  .product-family-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .feature-product,
  .feature-product.is-reversed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .feature-product.is-reversed .feature-visual {
    order: 2;
  }
}

@media (min-width: 1920px) {
  :root {
    --page-max: 1280px;
    --page-width: min(82vw, var(--page-max));
    --wide-max: 1480px;
    --wide-width: min(88vw, var(--wide-max));
    --section-gap: 112px;
  }

  .product-family-section {
    width: min(1180px, calc(100vw - 48px));
    max-width: none;
  }

  .product-family-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .featured,
  .home-content-layer > .trust-line {
    width: var(--wide-width);
    max-width: var(--wide-max);
  }

  .feature-product,
  .feature-product.is-reversed {
    grid-template-columns: minmax(480px, 1fr) minmax(520px, 1fr);
    gap: 72px;
  }

  .feature-product.is-reversed .feature-visual {
    order: 2;
  }
}

/* Mobile Safari hero compatibility */
@media (max-width: 767px) {
  :root {
    --hero-height: 720px;
    --hero-stage-height: var(--hero-height);
  }

  @supports (height: 100dvh) {
    :root {
      --hero-height: clamp(720px, 100dvh, 820px);
      --hero-stage-height: var(--hero-height);
    }
  }

  @supports not (height: 100dvh) {
    :root {
      --hero-height: clamp(720px, 100svh, 820px);
      --hero-stage-height: var(--hero-height);
    }
  }

  html {
    overflow-x: hidden;
  }

  .hero-scroll-stage,
  .hero,
  .hero-b-series,
  .hero-sticky-viewport,
  .hero-ui,
  .hero-slide {
    width: 100%;
    max-width: 100vw;
    height: var(--hero-height);
    min-height: var(--hero-height);
    max-height: none;
  }

  .hero,
  .hero-b-series,
  .hero-sticky-viewport {
    overflow: hidden;
  }

  .hero-bg-scroll,
  .hero-bg {
    max-width: 100vw;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 82px 20px calc(104px + env(safe-area-inset-bottom, 0px));
  }

  .hero-copy,
  .hero-slide-b-series .hero-copy,
  .hero-slide-s35 .hero-copy {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    grid-column: auto;
    justify-self: center;
    align-items: center;
    width: min(88vw, 420px);
    min-width: 0;
    max-width: 420px;
    margin-inline: auto;
    padding-bottom: 78px;
    text-align: center;
    transform: none;
  }

  .hero-badge {
    margin-inline: auto;
  }

  .hero-eyebrow {
    max-width: 100%;
    margin-inline: auto;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
  }

  .hero-title,
  .hero-copy h1,
  .hero-slide-b-series .hero-title,
  .hero-slide-s35 .hero-title {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(40px, 10vw, 54px);
    line-height: 0.92;
    letter-spacing: -0.055em;
  }

  .hero-text,
  .hero-slide-b-series .hero-text,
  .hero-copy p {
    max-width: 360px;
    margin-inline: auto;
    font-size: 17px;
    line-height: 1.35;
    text-align: center;
  }

  .hero-copy .hero-eyebrow {
    font-size: 14px;
    line-height: 1.2;
  }

  .hero-features,
  .hero-slide-b-series .hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    width: min(88vw, 380px);
    max-width: 380px;
    margin: 18px auto 0;
    gap: 8px 18px;
    text-align: center;
  }

  .hero-feature {
    justify-content: center;
    min-width: 0;
    white-space: normal;
    font-size: clamp(13px, 3.6vw, 16px);
    line-height: 1.2;
  }

  .hero-actions,
  .hero-slide-b-series .hero-actions {
    width: 100%;
    margin-top: 18px;
    justify-content: center;
    text-align: center;
  }

  .view-all-products {
    gap: 8px;
    font-size: clamp(22px, 6vw, 26px);
    line-height: 1;
  }

  .hero-arrow {
    top: auto;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    z-index: 8;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .hero-arrow-left {
    left: 18px;
  }

  .hero-arrow-right {
    right: 18px;
  }

  .hero-arrow:hover {
    transform: none;
  }

  .hero-dots,
  .hero-pagination {
    right: auto;
    bottom: calc(28px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    z-index: 8;
    width: auto;
    max-width: calc(100vw - 140px);
    justify-content: center;
    gap: 10px;
    transform: translateX(-50%);
  }
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 767px) {
    .hero-copy,
    .hero-slide-b-series .hero-copy,
    .hero-slide-s35 .hero-copy {
      width: min(88vw, 420px);
      text-align: center;
      transform: none;
    }

    .hero-title,
    .hero-copy h1 {
      font-size: clamp(40px, 10vw, 54px);
    }

    .hero-features,
    .hero-slide-b-series .hero-features {
      width: min(88vw, 380px);
      margin-inline: auto;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    transform: none !important;
  }

  .hero-scroll-stage {
    height: var(--hero-stage-height);
  }
}

@media (max-width: 1023px) {
  .mobile-nav-panel .mobile-nav-scroll > a,
  .mobile-nav-panel .mobile-products-toggle,
  .mobile-nav-panel .mobile-menu-item {
    padding-block: 19px !important;
    font-size: 23px !important;
    font-weight: 500;
    line-height: 1.18;
  }

  .mobile-nav-panel .mobile-products-panel {
    margin-top: 10px !important;
    padding-top: 12px !important;
    width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .mobile-nav-panel .mobile-products-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    padding: 14px 0 18px !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    color: rgba(17, 17, 17, 0.64);
    font-size: 15px !important;
    font-weight: 600;
    line-height: 1.22;
    text-decoration: none;
  }

  .mobile-nav-panel .mobile-products-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
  }

  .mobile-nav-panel .mobile-product-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto auto;
    align-items: baseline;
    column-gap: 12px;
    width: 100%;
    min-width: 0;
    padding: 10px 0 !important;
    overflow: visible;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    color: #111;
    text-decoration: none;
  }

  .mobile-nav-panel .mobile-product-name {
    min-width: 0;
    overflow: hidden;
    color: #111;
    font-size: 14px !important;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-nav-panel .mobile-product-tag,
  .mobile-nav-panel .mobile-product-capacity {
    flex-shrink: 0;
    overflow: visible;
    font-size: 14px !important;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-nav-panel .mobile-product-tag {
    color: var(--orange);
  }

  .mobile-nav-panel .mobile-product-tag:empty {
    display: block;
    width: 0;
  }

  .mobile-nav-panel .mobile-product-capacity {
    color: rgba(17, 17, 17, 0.58);
    text-align: right;
  }

  html[data-theme="dark"] .mobile-nav-panel .mobile-products-view-all {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: rgba(247, 244, 239, 0.62);
  }

  html[data-theme="dark"] .mobile-nav-panel .mobile-product-row {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  html[data-theme="dark"] .mobile-nav-panel .mobile-product-name {
    color: #f7f4ef;
  }

  html[data-theme="dark"] .mobile-nav-panel .mobile-product-capacity {
    color: rgba(247, 244, 239, 0.6);
  }

  html[data-theme="dark"] .mobile-nav-panel .mobile-product-tag {
    color: var(--orange);
  }
}

@media (max-width: 430px) {
  .mobile-nav-panel .mobile-nav-scroll > a,
  .mobile-nav-panel .mobile-products-toggle,
  .mobile-nav-panel .mobile-menu-item {
    padding-block: 18px !important;
    font-size: 22px !important;
  }

  .mobile-nav-panel .mobile-product-row {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 6px;
    padding: 10px 0 !important;
  }

  .mobile-nav-panel .mobile-product-name {
    font-size: 14px !important;
  }

  .mobile-nav-panel .mobile-product-tag {
    grid-column: 1 / 2;
    font-size: 14px !important;
  }

  .mobile-nav-panel .mobile-product-tag:empty {
    display: none;
  }

  .mobile-nav-panel .mobile-product-capacity {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    font-size: 14px !important;
  }
}

@media (max-width: 1023px) {
  html,
  body,
  #root,
  .app,
  .page,
  main,
  .home,
  .site-shell,
  .home-content-layer {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  html {
    overflow-x: clip;
  }

  .desktop-products-link,
  .nav-product-trigger.desktop-products-link,
  .products-dropdown,
  .product-dropdown,
  .products-hover-bridge {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .mobile-menu-toggle {
    display: grid !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    padding: 0 !important;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-products-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header,
  .mobile-nav-panel,
  .mobile-products-toggle,
  .mobile-nav-panel a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 1023px) {
    .site-header,
    .mobile-menu-toggle,
    .mobile-nav-panel {
      touch-action: manipulation;
    }
  }
}

@media (min-width: 768px) {
  .mobile-menu-toggle,
  .mobile-products-toggle,
  .mobile-products-panel,
  .mobile-header-language-switch {
    display: none !important;
  }

  .desktop-products-link {
    display: inline-flex !important;
  }

  .community-page .community-hero-card {
    grid-template-columns: minmax(360px, 0.75fr) minmax(720px, 1.25fr);
    min-height: clamp(700px, 78vh, 860px);
  }

  .community-page .crew-grid {
    position: absolute;
    right: clamp(28px, 4vw, 64px);
    bottom: clamp(-194px, calc(-160px - 2.2vw), -178px);
    left: clamp(28px, 4vw, 64px);
    grid-template-columns: repeat(4, minmax(270px, 300px));
    gap: clamp(14px, 1.6vw, 22px);
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .site-header__shell {
    width: min(calc(100vw - 24px), 1180px);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(10px, 1.4vw, 18px);
  }

  .brand {
    gap: 6px;
  }

  .brand-mark {
    width: 22px;
    height: 22px;
  }

  .brand-text strong {
    font-size: 11px;
  }

  .nav {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(8px, 1.2vw, 16px);
    width: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .mobile-nav-scroll {
    display: contents !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  .mobile-nav-panel .mobile-nav-scroll > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .nav button,
  .nav a {
    justify-content: center;
    width: auto;
    min-height: 34px;
    padding-inline: clamp(3px, 0.55vw, 7px);
    font-size: clamp(10px, 1.05vw, 12px);
    line-height: 1;
    white-space: nowrap;
  }

  .nav-actions {
    gap: clamp(6px, 0.9vw, 10px);
  }

  .nav-actions > .language-switch {
    display: inline-flex !important;
  }

  .language-switch {
    gap: 4px;
    font-size: 11px;
  }

  .theme-button {
    min-height: 34px;
    padding-inline: 6px;
    font-size: 11px;
  }

  .nav-cta {
    display: inline-flex !important;
    min-height: 34px;
    padding: 0 clamp(9px, 1vw, 13px);
    font-size: 11px;
    white-space: nowrap;
  }

  .desktop-products-link,
  .nav-product-trigger.desktop-products-link {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .products-dropdown,
  .product-dropdown {
    display: block !important;
  }

  .support-dropdown {
    display: grid !important;
  }

  .nav .mobile-products-toggle,
  .mobile-products-toggle,
  .mobile-products-panel,
  .mobile-support-panel,
  .mobile-language-switch,
  .mobile-header-language-switch,
  .mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 1023px) {
  html {
    overflow-x: clip;
  }

  body,
  #root,
  main,
  .page,
  .product-page {
    overflow: visible;
  }

  .product-page,
  .product-hero,
  .product-gallery,
  .model-specs,
  .product-section,
  .certifications,
  .downloads,
  .product-inquiry {
    height: auto;
    min-height: 0;
    overflow: visible;
    touch-action: auto;
  }

  .product-hero-media,
  .product-media,
  .product-gallery {
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
  }

  .gl-product-gallery-track {
    touch-action: pan-x;
    -webkit-tap-highlight-color: transparent;
  }

  .model-spec-grid,
  .gallery-grid {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 900px) {
  .product-page .statement,
  .product-page .model-specs > .section-heading,
  .product-page .product-section > .section-heading,
  .product-page .downloads > div:first-child,
  .product-page .related > .section-heading,
  .product-page .certifications {
    box-sizing: border-box;
    padding-inline: var(--product-detail-mobile-inner-edge);
  }

  .product-page .exm-dimensions-cooling-bridge__inner,
  .product-page .exm-cooling-effect-overlay {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: var(--product-detail-mobile-edge);
  }
}

.gl-product-gallery-section {
  margin-inline: 0;
  padding: var(--space-section-tight) 0;
  border-top: 1px solid var(--line);
  overflow: visible;
}

.gl-product-gallery-inner,
.gl-product-gallery-heading {
  width: var(--content-max);
  max-width: none;
  margin-inline: auto;
}

.gl-product-gallery-viewport {
  box-sizing: border-box;
  position: relative;
  width: 100vw;
  margin-left: 50%;
  overflow: hidden;
  padding: 0;
  transform: translateX(-50%);
}

.gl-product-gallery-viewport .horizontal-control-row {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto 16px;
}

.gallery-scroller {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 5vw;
  padding-inline: 5vw;
  padding-bottom: 10px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #ff7a00 rgba(255, 255, 255, 0.12);
  -webkit-overflow-scrolling: touch;
}

.gallery-track {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(20px, 2vw, 32px);
  width: max-content;
  justify-content: flex-start;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  scroll-snap-type: x proximity;
  touch-action: pan-x;
}

.gl-product-gallery-track {
  width: max-content;
}

.gl-product-gallery-card {
  display: flex;
  height: clamp(288px, 27.2vw, 384px);
  flex: 0 0 clamp(360px, 28vw, 520px);
  width: clamp(360px, 28vw, 520px);
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
}

.gl-product-gallery-image-frame {
  display: flex;
  width: 100%;
  height: 68%;
  max-height: 68%;
  min-height: 0;
  align-items: center;
  justify-content: center;
}

.gl-product-gallery-card .gl-product-gallery-image {
  display: block;
  width: auto;
  max-width: 82%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.gl-product-gallery-body {
  position: static;
  flex: 1 1 auto;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 28px 32px 30px;
  background: var(--gallery-card-bg);
  color: var(--gallery-card-title);
  transform: none;
}

.gl-product-gallery-body h3,
.gl-product-gallery-body p {
  margin-left: 0;
  transform: none;
}

.gl-product-gallery-body h3 {
  margin-top: 0;
}

.gl-product-gallery-body p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .gallery-track,
  .gl-product-gallery-track {
    gap: 18px;
  }

  .gl-product-gallery-card {
    flex-basis: clamp(300px, 42vw, 380px);
    width: clamp(300px, 42vw, 380px);
  }
}

@media (max-width: 768px) {
  .scroll-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .horizontal-scroll,
  .gallery-scroller {
    padding-inline: 5vw;
    scroll-padding-inline: 5vw;
  }

  .model-spec-card {
    flex: 0 0 min(86vw, 420px);
    min-width: min(86vw, 420px);
  }

  .gallery-grid article {
    flex: 0 0 auto;
    width: min(86vw, 480px);
    min-width: min(86vw, 480px);
  }

  .gl-product-gallery-viewport {
    width: 100vw;
  }

  .gallery-track,
  .gl-product-gallery-track {
    gap: 14px;
  }

  .gl-product-gallery-card {
    height: clamp(288px, 27.2vw, 384px);
    flex: 0 0 min(86vw, 420px);
    width: min(86vw, 420px);
    min-width: 0;
  }

  .gl-product-gallery-body {
    padding: 16px 18px 20px;
  }
}

@media (max-width: 768px) {
  .site-header.is-over-hero .site-header__shell {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.is-over-hero .theme-button {
    display: none;
  }

  .site-header.is-over-hero .brand-mark {
    width: 30px;
    height: 30px;
  }

  .site-header.is-over-hero .brand-text strong {
    font-size: 16px;
    letter-spacing: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.38);
  }

  .site-header.is-over-hero .mobile-menu-toggle {
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.38));
  }

  .hero-badge {
    min-height: 0;
    margin-bottom: 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero-features,
  .hero-slide-b-series .hero-features {
    display: none;
  }

  .hero-copy,
  .hero-slide-b-series .hero-copy,
  .hero-slide-s35 .hero-copy {
    position: static;
  }

  .hero-actions,
  .hero-slide-b-series .hero-actions {
    position: absolute;
    right: auto;
    bottom: calc(52px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    z-index: 8;
    width: auto;
    margin: 0;
    justify-content: center;
    text-align: center;
    transform: translateX(-50%);
  }

  .view-all-products {
    white-space: nowrap;
  }

  .hero-arrow {
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    width: 38px;
    height: 38px;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.08);
    opacity: 0.74;
  }

  .hero-arrow-left {
    left: 18px;
  }

  .hero-arrow-right {
    right: 18px;
  }

  .hero-dots,
  .hero-pagination {
    bottom: calc(28px + env(safe-area-inset-bottom, 0px));
    gap: 9px;
  }

  .hero-index-item {
    color: rgba(245, 243, 239, 0.48);
  }

  .hero-index-item.is-active {
    color: rgba(245, 243, 239, 0.95);
  }

  .hero-index-line {
    background: rgba(245, 243, 239, 0.26);
  }

  .hero-index-item.is-active .hero-index-line {
    background: var(--orange);
  }
}

@media (max-width: 900px) {
  .family-page {
    padding-top: 78px;
  }

  .family-manifest-hero,
  .family-section,
  .family-help {
    width: min(calc(100vw - 40px), 720px);
  }

  .family-manifest-hero {
    padding: 24px 20px 30px;
  }

  .family-manifest-copy h1 {
    max-width: none;
    font-size: clamp(44px, 12vw, 68px);
    line-height: 0.95;
  }

  .family-manifest-breadcrumb {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .family-manifest-copy .kicker {
    margin-bottom: 12px;
  }

  .family-manifest-copy h2 {
    margin-bottom: 12px;
    font-size: clamp(22px, 6vw, 28px);
  }

  .family-manifest-copy p:not(.kicker) {
    font-size: 16px;
    line-height: 1.45;
  }

  .family-manifest-actions,
  .family-help-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 24px;
  }

  .family-comparison-mobile {
    display: grid;
    gap: 14px;
  }

  .family-comparison-table-wrap {
    margin-top: 18px;
  }

  .family-compare-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-solid);
  }

  .family-compare-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
  }

  .family-compare-card h3 {
    margin-bottom: 10px;
  }

  .family-compare-card dl {
    display: grid;
    gap: 8px;
    margin: 0 0 12px;
  }

  .family-compare-card dl > div {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
  }

  .family-compare-card dt {
    color: var(--quiet);
    font-size: 12px;
    font-weight: 900;
  }

  .family-compare-card dd {
    min-width: 0;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
  }

  .family-table-jump {
    justify-self: start;
  }

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

  .family-help {
    display: block;
  }
}

@media (max-width: 560px) {
  .family-feature-grid {
    grid-template-columns: 1fr;
  }

  .family-compare-card {
    grid-template-columns: 1fr;
  }

  .family-compare-card img {
    height: 150px;
  }

  .family-comparison-table {
    min-width: 760px;
  }
}

/* Apple-like light theme refinements */
html:not([data-theme="dark"]) body {
  background: #F5F5F7;
  color: #1D1D1F;
}

html:not([data-theme="dark"]) .product-page {
  --product-page-bg: #F5F5F7;
  --product-section-bg: #F5F5F7;
  --product-panel-bg: #FFFFFF;
  --product-card-bg: #FFFFFF;
  --product-text-main: #1D1D1F;
  --product-text-muted: #6E6E73;
  --product-text-quiet: #9A9AA0;
  --product-border-color: #D8D8DE;
  --product-hero-media-bg: #F1F2F4;
}

html:not([data-theme="dark"]) .family-image,
html:not([data-theme="dark"]) .product-media,
html:not([data-theme="dark"]) .feature-visual,
html:not([data-theme="dark"]) .product-hero-media {
  background:
    radial-gradient(circle at 50% 66%, rgba(255, 255, 255, 0.9), transparent 46%),
    linear-gradient(145deg, #F1F2F4, #FFFFFF);
}

html:not([data-theme="dark"]) .product-family-card,
html:not([data-theme="dark"]) .product-card,
html:not([data-theme="dark"]) .process-grid article,
html:not([data-theme="dark"]) .qa-list article,
html:not([data-theme="dark"]) .support-download-row,
html:not([data-theme="dark"]) .contact-social-links .contact-social-card,
html:not([data-theme="dark"]) .contact,
html:not([data-theme="dark"]) .product-inquiry {
  border-color: rgba(0, 0, 0, 0.08);
  background: #FFFFFF;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

html:not([data-theme="dark"]) .product-family-card:hover,
html:not([data-theme="dark"]) .product-card:hover,
html:not([data-theme="dark"]) .contact-social-links .contact-social-card:hover {
  border-color: #BFC3CA;
  background: #FAFAFB;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

html:not([data-theme="dark"]) .model-tab {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid #D8D8DE;
  border-radius: 999px;
  background: #FFFFFF;
  color: #1D1D1F;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

html:not([data-theme="dark"]) .model-tab:hover {
  border-color: #C9CBD2;
  background: #F1F2F4;
  color: #1D1D1F;
}

html:not([data-theme="dark"]) .model-tab.active {
  border-color: #FF5F1F;
  background: rgba(255, 95, 31, 0.1);
  color: #FF5F1F;
}

html:not([data-theme="dark"]) .model-tab.active::after {
  display: none;
}

html:not([data-theme="dark"]) .product-color-option {
  border-color: #D8D8DE;
  background: #FFFFFF;
  color: #1D1D1F;
  box-shadow: none;
}

html:not([data-theme="dark"]) .product-color-option:hover {
  border-color: #BFC3CA;
  background: #FAFAFB;
}

html:not([data-theme="dark"]) .product-color-option.is-active {
  border-color: #FF5F1F;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(255, 95, 31, 0.08);
}

html:not([data-theme="dark"]) .product-color-option.is-unavailable:hover {
  border-color: #D8D8DE;
  background: #FFFFFF;
}

html:not([data-theme="dark"]) .product-color-swatch {
  border-color: rgba(29, 29, 31, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.36),
    0 8px 22px rgba(0, 0, 0, 0.08);
}

html:not([data-theme="dark"]) .certifications span,
html:not([data-theme="dark"]) .download-list a,
html:not([data-theme="dark"]) .download-list span,
html:not([data-theme="dark"]) .product-material-group > summary,
html:not([data-theme="dark"]) .product-material-row,
html:not([data-theme="dark"]) .product-material-mobile-group > summary,
html:not([data-theme="dark"]) .product-material-mobile-item summary,
html:not([data-theme="dark"]) .support-document-item,
html:not([data-theme="dark"]) .support-document-action {
  border-color: #D8D8DE;
  background: #FFFFFF;
  color: #1D1D1F;
}

html:not([data-theme="dark"]) .download-list a:hover,
html:not([data-theme="dark"]) .support-document-action:hover {
  border-color: #C9CBD2;
  background: #F1F2F4;
  color: #FF5F1F;
}

html:not([data-theme="dark"]) .product-material-row:hover,
html:not([data-theme="dark"]) .product-material-row:focus-visible,
html:not([data-theme="dark"]) .product-material-row.is-active {
  border-color: #FF5F1F;
  background: rgba(255, 95, 31, 0.08);
}

html:not([data-theme="dark"]) .product-material-thumb,
html:not([data-theme="dark"]) .product-material-preview,
html:not([data-theme="dark"]) .product-material-preview img,
html:not([data-theme="dark"]) .product-material-mobile-preview img {
  border-color: #D8D8DE;
  background: #F1F2F4;
}

html:not([data-theme="dark"]) .support-download-row:not(.is-disabled):hover {
  border-color: #BFC3CA;
  background: #FAFAFB;
}

html:not([data-theme="dark"]) .support-download-row[open] {
  border-color: rgba(255, 95, 31, 0.42);
  background: #FFFFFF;
}

html:not([data-theme="dark"]) .support-document-icon {
  color: #FF5F1F;
}

html:not([data-theme="dark"]) .product-inquiry {
  background:
    linear-gradient(135deg, transparent, rgba(255, 95, 31, 0.08)),
    #FFFFFF;
}

html:not([data-theme="dark"]) .contact {
  background:
    linear-gradient(135deg, transparent, rgba(255, 95, 31, 0.06)),
    #FFFFFF;
}

html:not([data-theme="dark"]) .community-page {
  background: #F5F5F7;
  color: #1D1D1F;
}

html:not([data-theme="dark"]) .community-hero-card {
  background: #FFFFFF;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

html:not([data-theme="dark"]) .product-gallery .gallery-grid article,
html:not([data-theme="dark"]) .gl-product-gallery-card {
  --gallery-card-bg: #FFFFFF;
  --gallery-card-title: #1D1D1F;
  --gallery-card-text: #6E6E73;
  --gallery-card-border: rgba(0, 0, 0, 0.08);
}

html:not([data-theme="dark"]) .product-gallery .period-accent,
html:not([data-theme="dark"]) .product-gallery .gallery-grid article .period-accent,
html:not([data-theme="dark"]) .gl-product-gallery-card .period-accent {
  color: #FF5F1F;
}

/* Mobile product detail first-screen layout */
@media (max-width: 767px) {
  .products-page {
    box-sizing: border-box;
    width: 100% !important;
    max-width: none !important;
    margin-right: 0;
    margin-left: 0;
    padding-top: 72px;
    padding-right: 24px;
    padding-left: 24px;
    transform: none;
  }

  .products-page .page-hero,
  .products-page .product-grid {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    transform: none;
  }

  .products-page .product-grid.reveal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .products-page .product-card {
    width: 100%;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .products-page .product-media {
    min-height: clamp(118px, 33vw, 148px);
  }

  .products-page .product-card-copy {
    padding: clamp(10px, 3vw, 14px);
  }

  .products-page .product-card-copy span {
    margin-bottom: 7px;
    font-size: 9px;
    line-height: 1.15;
  }

  .products-page .product-card-copy h2 {
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.05;
  }

  .products-page .product-card-copy .card-cta {
    min-height: 28px;
    margin-top: 12px;
    padding: 0 10px;
    font-size: 10px;
  }

  .products-page .product-card-copy h3,
  .products-page .product-card-copy p {
    display: none;
  }

  .related-products-section {
    margin-bottom: clamp(48px, 12vw, 72px);
    padding-right: 16px;
    padding-left: 16px;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .related-product-media {
    aspect-ratio: 1.25 / 1;
  }

  .related-product-body {
    padding: 10px;
  }

  .related-product-title {
    font-size: clamp(15px, 4vw, 20px);
    line-height: 1.05;
  }

  .related-product-subtitle {
    display: none;
  }

  .related-product-action {
    min-height: 30px;
    margin-top: 10px;
    padding: 0 10px;
    font-size: 11px;
  }

  .product-page {
    padding-top: 0;
  }

  .product-page .product-config-panel {
    --product-mobile-bg: #050607;
    --product-mobile-panel-soft: rgba(255, 255, 255, 0.045);
    --product-mobile-text: #f7f4ef;
    --product-mobile-muted: rgba(247, 244, 239, 0.68);
    --product-mobile-quiet: rgba(247, 244, 239, 0.48);
    --product-mobile-line: rgba(247, 244, 239, 0.18);

    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "visual"
      "controls";
    gap: 18px;
    width: min(calc(100vw - 34px), 430px);
    min-height: 100svh;
    padding: calc(var(--nav-height) + 24px) 0 24px;
    background: var(--product-mobile-bg);
    box-shadow: 0 0 0 100vmax var(--product-mobile-bg);
    color: var(--product-mobile-text);
  }

  html:not([data-theme="dark"]) .product-page .product-config-panel {
    --product-mobile-bg: #f5f5f7;
    --product-mobile-panel-soft: rgba(16, 17, 18, 0.04);
    --product-mobile-text: #1d1d1f;
    --product-mobile-muted: rgba(29, 29, 31, 0.64);
    --product-mobile-quiet: rgba(29, 29, 31, 0.5);
    --product-mobile-line: rgba(29, 29, 31, 0.18);
  }

  .product-config-breadcrumb,
  .product-hero-copy h2,
  .product-hero-copy > p:not(.product-mobile-subtitle) {
    display: none;
  }

  .product-config-copy,
  .product-config-controls {
    padding: 0 4px;
  }

  .product-hero-copy h1 {
    margin: 0 0 clamp(20px, 5vw, 28px);
    color: var(--product-mobile-text);
    font-size: clamp(42px, 13.6vw, 64px);
    font-weight: 820;
    line-height: 0.98;
    letter-spacing: -0.052em;
  }

  .product-hero-copy .product-mobile-subtitle {
    display: block;
    max-width: none;
    margin: 0;
    color: var(--product-mobile-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
    white-space: normal;
  }

  .product-config-visual,
  .product-hero-media.product-config-visual {
    min-height: 0;
    height: clamp(248px, 68vw, 340px);
    border-radius: 18px;
    background:
      radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.16), transparent 62%),
      linear-gradient(145deg, #202123, #101112);
  }

  .product-config-visual img,
  .product-hero-media.product-config-visual img {
    width: 90%;
    height: 90%;
    object-fit: contain;
  }

  .product-config-controls {
    display: grid;
    gap: 20px;
  }

  .model-selector {
    margin: 0;
    padding: 0;
  }

  .model-label {
    margin: 0 0 14px;
    color: var(--product-mobile-quiet);
    font-size: 0;
    line-height: 1;
    letter-spacing: 0;
  }

  .model-label::before {
    content: "MODEL";
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.24em;
  }

  .model-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .model-tab {
    display: inline-flex;
    min-width: 0;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--product-mobile-line);
    border-radius: 999px;
    background: transparent;
    color: var(--product-mobile-text);
    font-size: clamp(18px, 5.1vw, 24px);
    font-weight: 820;
    letter-spacing: -0.015em;
    scroll-snap-align: none;
  }

  .model-tab.active {
    border-color: var(--orange);
    background: transparent;
    color: var(--orange);
    box-shadow: inset 0 0 0 1px var(--orange);
  }

  .model-tab.active::after {
    display: none;
  }

  .product-color-selector {
    margin: 0;
    padding: 0;
  }

  .product-color-selector > p,
  .product-hero-copy .product-color-selector > p {
    margin: 0 0 14px;
    color: var(--product-mobile-quiet);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .product-color-options {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-color-option {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    min-height: 70px;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border: 1px solid var(--product-mobile-line);
    border-radius: 18px;
    background: var(--product-mobile-panel-soft);
    color: var(--product-mobile-text);
    font-size: clamp(15px, 4.2vw, 20px);
    font-weight: 760;
    line-height: 1.1;
    text-align: left;
  }

  .product-color-option::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    justify-self: end;
    border: 2px solid var(--product-mobile-quiet);
    border-radius: 50%;
  }

  .product-color-option.is-active {
    border-color: var(--orange);
    box-shadow: inset 0 0 0 1px var(--orange);
  }

  .product-color-option.is-active::after {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: var(--orange);
    color: var(--orange);
    font-size: 14px;
    font-weight: 900;
  }

  .product-color-option > span:not(.product-color-swatch) {
    justify-self: end;
    overflow-wrap: normal;
    text-align: right;
  }

  .product-color-swatch {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    margin: 0;
    border-color: var(--product-mobile-line);
  }
}

/* Product detail desktop-scaled layout for narrow desktop */
@media (min-width: 768px) and (max-width: 1279px) {
  .product-page .product-config-panel {
    grid-template-columns: minmax(280px, 0.43fr) minmax(360px, 0.57fr);
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "copy visual"
      "controls visual";
    gap: clamp(28px, 4vw, 44px);
    align-items: stretch;
    width: min(calc(100vw - 48px), 1120px);
    padding: clamp(32px, 4.4vw, 48px) 0;
  }

  .product-page .product-config-copy {
    grid-area: copy;
    align-self: start;
  }

  .product-page .product-config-controls {
    grid-area: controls;
    align-self: end;
  }

  .product-page .product-config-visual {
    grid-area: visual;
    align-self: stretch;
    min-height: clamp(330px, 38vw, 470px);
  }

  .product-page .product-config-breadcrumb {
    margin-bottom: 16px;
  }

  .product-page .product-hero-copy h1 {
    margin: 0 0 clamp(22px, 2.6vw, 34px);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.04;
  }

  .product-page .product-hero-copy h2 {
    display: block;
    margin: 0 0 clamp(12px, 1.4vw, 18px);
    font-size: clamp(13px, 1.35vw, 15px);
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: 0;
  }

  .product-page .product-hero-copy > p:not(.product-mobile-subtitle) {
    display: block;
    max-width: 46ch;
    margin-bottom: 0;
    font-size: clamp(13px, 1.35vw, 15px);
    line-height: 1.42;
  }

  .product-page .product-mobile-subtitle {
    display: none;
  }

  .product-page .model-selector {
    margin-top: clamp(24px, 3.2vw, 38px);
    margin-bottom: 18px;
    padding: 0;
    background: transparent;
  }

  .product-page .model-label {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .product-page .model-tabs {
    flex-wrap: wrap;
    gap: 12px 20px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .product-page .model-tab {
    min-height: 0;
    padding: 0 0 9px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1;
    scroll-snap-align: none;
  }

  .product-page .model-tab.active {
    background: transparent;
    color: var(--orange);
  }

  .product-page .model-tab.active::after {
    display: block;
  }

  .product-page .product-color-selector > p,
  .product-page .product-hero-copy .product-color-selector > p {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .product-page .product-color-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-page .product-color-option {
    display: grid;
    min-height: 92px;
    place-items: center;
    padding: 14px;
    border-radius: 14px;
    font-size: 14px;
    text-align: center;
  }

  .product-page .product-color-swatch {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) {
  .site-header .nav a,
  .site-header .nav button,
  .site-header .nav-link,
  .site-header .nav-product-trigger,
  .site-header .nav-support-trigger,
  .site-header .desktop-products-link {
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -0.01em !important;
    white-space: nowrap !important;
  }

  .site-header .nav-cta {
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -0.01em !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .site-header .theme-button,
  .site-header .language-switch,
  .site-header .language-switch a {
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 768px) and (max-width: 1360px) {
  .site-header__shell {
    width: min(1180px, calc(100vw - 32px));
  }

  .nav {
    gap: clamp(14px, 1.6vw, 24px);
  }

  .nav-actions {
    gap: clamp(8px, 1vw, 12px);
  }

  .nav button,
  .nav a,
  .theme-button,
  .text-button {
    padding-inline: 6px;
  }

  .nav-cta {
    padding-inline: clamp(10px, 1.1vw, 14px);
  }
}
