:root {
  --ink: #101113;
  --ink-soft: #1a1c1f;
  --paper: #f3f2ee;
  --white: #fff;
  --muted: #666965;
  --line: #d8d7d1;
  --yellow: #f5c400;
  --yellow-light: #ffdc46;
  --red: #f04438;
  --radius: 4px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.announcement {
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.announcement-inner {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement-inner a {
  margin-left: 12px;
  border-bottom: 1px solid currentColor;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(16, 17, 19, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: 0;
}

.brand-copy small {
  margin-top: 5px;
  color: #aaa;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav>a,
.nav-dropdown>a {
  position: relative;
  color: #d7d8d9;
  font-size: 14px;
}

.primary-nav>a::after,
.nav-dropdown>a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--yellow);
  transition: right .25s ease;
}

.primary-nav>a:hover::after,
.nav-dropdown:hover>a::after,
.nav-dropdown:focus-within>a::after {
  right: 0;
}

.primary-nav>a.is-current,
.nav-dropdown>a.is-current {
  color: var(--yellow);
}

.primary-nav>a.is-current::after,
.nav-dropdown>a.is-current::after {
  right: 0;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 76px;
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% - 1px);
  left: 50%;
  width: 250px;
  padding: 8px 0;
  border-top: 3px solid var(--yellow);
  background: #0c0e0c;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .32);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: #d7d8d9;
  border-bottom: 1px solid #282b27;
  font-size: 12px;
  white-space: nowrap;
}

.nav-dropdown-menu a:last-child {
  border-bottom: 0;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus,
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--ink);
  background: var(--yellow);
  outline: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switch,
.menu-toggle {
  border: 0;
  background: none;
  cursor: pointer;
}

.language-switch {
  color: #b8b9ba;
  font-size: 12px;
}

.header-cta {
  padding: 11px 15px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

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

.hero {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 54px;
  height: 1px;
  background: #34363a;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: -28%;
  right: -17%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 196, 0, .22);
  transform: rotate(28deg);
  pointer-events: none;
}

.hero-inner {
  min-height: 610px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-block: 82px 104px;
}

.hero-content {
  max-width: 930px;
  padding-left: 42px;
  border-left: 3px solid var(--yellow);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 700;
  color: #777a76;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow span {
  color: var(--yellow);
}

.hero .eyebrow {
  color: #9b9c9e;
}

.hero h1,
.section-heading h2,
.capabilities-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", "Microsoft YaHei", sans-serif;
  font-weight: 600;
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(62px, 8vw, 108px);
}

em {
  color: var(--yellow);
  font-style: normal;
}

.hero-lede {
  max-width: 710px;
  margin: 34px 0 0;
  color: #b8b9ba;
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s, color .2s, border .2s, transform .2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--yellow-light);
}

.button-ghost {
  border-color: #4c4e50;
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 58px;
  color: #9b9c9e;
  font-size: 11px;
  text-transform: uppercase;
}

.trust-line {
  width: 36px;
  height: 1px;
  background: #4d4e50;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-label {
  margin-bottom: 12px;
  color: #7b7c7e;
  font: 10px "Space Grotesk", sans-serif;
}

.visual-frame {
  position: relative;
  height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f7f5;
  border: 1px solid #333538;
}

.visual-frame::before,
.product-image::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid #e3e3df;
  opacity: .72;
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: var(--yellow);
}

.visual-frame img {
  position: relative;
  z-index: 1;
  width: 96%;
  height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.visual-spec {
  position: absolute;
  right: -24px;
  bottom: -56px;
  width: 226px;
  padding: 18px;
  background: var(--yellow);
  color: var(--ink);
}

.visual-spec span,
.visual-spec small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.visual-spec strong {
  display: block;
  margin: 4px 0 1px;
  font: 700 25px "Space Grotesk", sans-serif;
}

.visual-index {
  position: absolute;
  left: 10px;
  bottom: -34px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #858688;
  font-size: 10px;
}

.visual-index span {
  width: 72px;
  height: 1px;
  background: #55575a;
}

.hero-carousel-controls {
  position: absolute;
  left: 0;
  bottom: -38px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-carousel-controls button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #4a4c4f;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
}

.hero-carousel-controls button:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.hero-dots {
  display: flex;
  gap: 5px;
  margin-left: 4px;
}

.hero-dots button {
  width: 18px;
  height: 3px;
  padding: 0;
  border: 0;
  background: #515356;
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--yellow);
}

.hero-scroll {
  position: absolute;
  right: 28px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6e6f71;
  font-size: 8px;
  letter-spacing: 0;
  writing-mode: vertical-rl;
}

.hero-scroll i {
  width: 1px;
  height: 50px;
  background: #555;
}

.signal-bar {
  background: var(--yellow);
}

.signal-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 28px;
  border-left: 1px solid rgba(16, 17, 19, .18);
}

.signal-grid div:last-child {
  border-right: 1px solid rgba(16, 17, 19, .18);
}

.signal-grid strong {
  font: 600 30px "Space Grotesk", sans-serif;
  line-height: 1;
}

.signal-grid span {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #4f4305;
}

.section {
  padding: 124px 0;
}

.section-heading {
  margin-bottom: 58px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.capabilities-intro h2,
.contact-copy h2 {
  font-size: clamp(42px, 5vw, 67px);
}

.section-heading h2 em,
.capabilities-intro h2 em {
  color: #8b8d87;
}

.heading-aside {
  padding-bottom: 4px;
}

.heading-aside p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.home-product-carousel {
  margin: 0 0 54px;
  padding: 30px 30px 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.home-carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.home-carousel-head h3 {
  margin: 0;
  font: 600 28px/1.1 "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.home-carousel-head p {
  max-width: 390px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.home-carousel-controls {
  display: flex;
  gap: 7px;
}

.home-carousel-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.home-carousel-controls button:hover {
  border-color: var(--ink);
  background: var(--yellow);
}

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

.home-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform .45s ease;
}

.home-product-slide {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
  background: #f6f5f1;
  border: 1px solid #e1e0da;
}

.home-product-slide-image {
  position: relative;
  height: 148px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #efeee9;
}

.home-product-slide-image img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.home-product-slide-body {
  padding: 16px;
}

.home-product-slide-body span {
  color: #888b86;
  font: 9px "Space Grotesk", sans-serif;
}

.home-product-slide-body h4 {
  margin: 7px 0 8px;
  font: 600 16px/1.2 "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.home-product-slide-body a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
}

.product-index-tabs {
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-index-tab {
  padding: 15px 24px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.product-index-tab.is-active {
  background: var(--ink);
  color: var(--white);
  box-shadow: inset 0 -3px var(--yellow);
}

.product-filters {
  margin-top: 20px;
  padding: 20px 24px;
  border: 1px solid var(--yellow);
  background: #fbfaf7;
}

.filter-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 42px;
  border-bottom: 1px solid #e6e4de;
}

.filter-row:last-child {
  border-bottom: 0;
}

.filter-label {
  color: #4e504c;
  font-size: 12px;
  font-weight: 700;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.filter-option {
  padding: 6px 12px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  color: #5c5e59;
  font-size: 11px;
}

.filter-option:hover {
  border-color: #c7c5bd;
}

.filter-option.is-active {
  background: var(--ink);
  color: var(--yellow);
}

.product-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.product-pagination button {
  min-width: 36px;
  height: 36px;
  padding: 0 9px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 11px;
}

.product-pagination button:hover,
.product-pagination button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--yellow);
}

.product-pagination button[disabled] {
  cursor: default;
  opacity: .45;
}

.product-pagination-note {
  min-height: 17px;
  margin: 9px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
}

.product-tabs {
  display: flex;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.tab-button {
  position: relative;
  flex: 1;
  min-width: max-content;
  padding: 17px 12px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #777973;
  cursor: pointer;
  font-size: 12px;
}

.tab-button span {
  margin-left: 7px;
  color: #aaa;
  font-size: 9px;
}

.tab-button.is-active {
  background: var(--ink);
  color: var(--white);
}

.tab-button.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
}

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

.product-card {
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 330px;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 17, 19, .08);
}

.product-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: 52% 48%;
  min-height: 420px;
}

.product-image {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f7f4;
  border-right: 1px solid var(--line);
}

.product-image img {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 82%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-card:not(.featured) .product-image img {
  width: 92%;
  height: 82%;
  object-fit: contain;
  object-position: center;
}

.product-tag {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 6px 9px;
  background: var(--ink);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  padding: 26px;
  min-width: 0;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-code {
  margin: 0;
  color: #8b8d87;
  font: 10px "Space Grotesk", sans-serif;
}

.product-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.product-card h3 {
  margin: 28px 0 12px;
  font: 600 21px/1.25 "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.product-card.featured h3 {
  font-size: 31px;
}

.product-card-body>p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 22px;
}

.product-specs span {
  padding: 5px 8px;
  background: #f1f0ec;
  color: #555;
  font-size: 9px;
  font-weight: 600;
}

.inline-action {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: none;
  text-align: left;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.inline-action span {
  float: right;
}

.catalog-cta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 600;
}

.product-detail-page {
  background: var(--paper);
}

.detail-hero {
  padding: 84px 0 64px;
  background: var(--ink);
  color: var(--white);
}

.detail-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
  color: #8e9092;
  font-size: 11px;
}

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

.detail-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 68px;
  align-items: center;
}

.detail-hero h1 {
  margin: 0;
  font: 600 clamp(44px, 5vw, 72px)/1 "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.detail-hero-description {
  max-width: 560px;
  margin: 24px 0 0;
  color: #adafb1;
  font-size: 15px;
  line-height: 1.8;
}

.detail-gallery-main {
  height: 430px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid #3b3d40;
}

.detail-gallery-main img {
  width: 92%;
  height: 90%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.detail-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.detail-gallery-thumb {
  width: 86px;
  height: 64px;
  padding: 4px;
  border: 1px solid #4e5053;
  background: var(--white);
  cursor: pointer;
}

.detail-gallery-thumb.is-active {
  border-color: var(--yellow);
  box-shadow: inset 0 -3px var(--yellow);
}

.detail-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.detail-content {
  padding: 76px 0 120px;
}

.detail-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
}

.detail-tab {
  padding: 16px 24px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.detail-tab.is-active {
  border-color: var(--yellow);
  background: var(--white);
}

.detail-panel {
  display: none;
  padding-top: 28px;
}

.detail-panel.is-active {
  display: block;
}

.feature-table {
  border: 1px solid var(--line);
  background: var(--white);
}

.feature-group {
  border-bottom: 1px solid var(--line);
}

.feature-group:last-child {
  border-bottom: 0;
}

.feature-group h3 {
  margin: 0;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 13px;
}

.feature-group p {
  margin: 0;
  padding: 11px 16px;
  border-top: 1px solid var(--line);
  color: #5a5c58;
  font-size: 12px;
}

.spec-table-large {
  border: 1px solid var(--line);
  background: var(--white);
}

.spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row span,
.spec-row strong {
  padding: 14px 16px;
  font-size: 12px;
}

.spec-row span {
  color: #60625e;
  background: #f0efeb;
  font-weight: 700;
}

.spec-row strong {
  color: #4a4c48;
  font-weight: 500;
}

.detail-contact {
  margin-top: 34px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--yellow);
}

.detail-contact p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.solutions-section {
  background: var(--ink);
  color: var(--white);
}

.solutions-section .eyebrow,
.capabilities-section .eyebrow {
  color: #87898b;
}

.solutions-section .section-heading h2 em {
  color: #686a6d;
}

.solutions-section .heading-aside p {
  color: #9b9c9e;
}

.solutions-section .text-link {
  border-color: #626467;
}

.solution-list {
  border-top: 1px solid #383a3d;
}

.solution-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  min-height: 142px;
  gap: 36px;
  border-bottom: 1px solid #383a3d;
  transition: background .25s, box-shadow .25s;
}

.solution-row:hover { background: #181a1d; box-shadow: inset 4px 0 var(--yellow); }

.solution-title h3 {
  margin: 0 5px;
  font: 600 23px "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.solution-title p {
  margin: 7px 5px 0;
  color: #7f8183;
  font-size: 10px;
}

.solution-copy {
  color: #a5a6a8;
  font-size: 13px;
}

.capabilities-section {
  background: #202225;
  color: var(--white);
}

.capabilities-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.capabilities-intro {
  position: sticky;
  top: 130px;
}

.capabilities-intro h2 em {
  color: #6d6f71;
}

.capabilities-intro>p:not(.eyebrow) {
  max-width: 470px;
  margin: 28px 0;
  color: #a4a5a7;
  font-size: 14px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #414347;
  border-left: 1px solid #414347;
}

.capability-grid article {
  min-height: 255px;
  padding: 34px;
  border-right: 1px solid #414347;
  border-bottom: 1px solid #414347;
}

.capability-grid span {
  color: var(--yellow);
  font: 10px "Space Grotesk", sans-serif;
}

.capability-grid h3 {
  margin: 70px 0 12px;
  font: 600 21px "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.capability-grid p {
  margin: 0;
  color: #999b9d;
  font-size: 12px;
  line-height: 1.8;
}

.about-section {
  background: #151715;
  color: var(--white);
}

.about-copy .eyebrow {
  color: #87898b;
}

.about-copy h2 {
  font-size: 60px;
}

.about-copy h2 em {
  color: var(--yellow);
}

.about-copy>p:not(.eyebrow) {
  line-height: 1.85;
}

.about-media {
  position: relative;
  min-height: 510px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #41443f;
  background: #111;
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 510px;
  padding: 0;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
}

.about-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 22px;
  background: rgba(9, 10, 9, .94);
  color: #d9dbd5;
  border-top: 2px solid var(--yellow);
  font-size: 12px;
  line-height: 1.7;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 20px;
}

.insight-feature,
.insight-stack article {
  background: var(--white);
  border: 1px solid var(--line);
}

.insight-feature {
  display: grid;
  grid-template-columns: 52% 48%;
}

.insight-image {
  min-height: 380px;
  overflow: hidden;
  background: #edede9;
  border-right: 1px solid var(--line);
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  mix-blend-mode: multiply;
}

.insight-body {
  padding: 34px;
}

.insight-type {
  color: #8a8c88;
  font: 9px "Space Grotesk", sans-serif;
}

.insight-body h3,
.insight-stack h3 {
  margin: 62px 0 16px;
  font: 600 26px/1.3 "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.insight-body p,
.insight-stack p {
  color: var(--muted);
  font-size: 12px;
}

.insight-body .text-link {
  margin-top: 32px;
}

.insight-stack {
  display: grid;
  gap: 20px;
}

.insight-stack article {
  min-height: 180px;
  padding: 28px;
}

.insight-stack h3 {
  margin: 28px 0 10px;
  font-size: 19px;
}

.faq-section {
  background: #e8e7e2;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 100px;
}

.faq-intro h2 {
  margin: 0;
  font: 600 clamp(42px, 5vw, 64px)/1 "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.faq-intro h2 em {
  color: #8b8d87;
}

.faq-intro>p:not(.eyebrow) {
  max-width: 420px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  border-top: 1px solid #c7c6c0;
}

.faq-list details {
  border-bottom: 1px solid #c7c6c0;
}

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font: 600 17px "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--yellow);
  font: 18px/1 "DM Sans", sans-serif;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -2px 50px 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-section {
  background: var(--yellow);
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.contact-copy .eyebrow span {
  color: var(--ink);
}

.contact-copy h2 em {
  color: #7c690a;
}

.contact-copy>p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0;
  color: #554905;
  font-size: 14px;
}

.contact-details {
  margin-top: 62px;
  display: grid;
  gap: 14px;
}

.contact-details a,
.contact-details p {
  margin: 0;
  font: 600 15px "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.contact-details p[href^="mailto:"],
.contact-details p[href^="tel:"] {
  cursor: text;
  user-select: text;
  -webkit-user-select: text;
}

.contact-details span {
  display: inline-block;
  width: 60px;
  color: #6b5b06;
  font: 10px "DM Sans", sans-serif;
}

.inquiry-form {
  padding: 36px;
  background: var(--ink);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: #9b9c9e;
  font-size: 10px;
  font-weight: 600;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #4a4c4f;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  padding: 10px 0 12px;
  font-size: 13px;
  resize: vertical;
}

.inquiry-form select option {
  color: var(--ink);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  border-color: var(--yellow);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

.checkbox-label {
  display: flex !important;
  grid-template-columns: 15px 1fr;
  align-items: center;
  margin: 0 !important;
}

.checkbox-label input {
  width: 14px;
  height: 14px;
  accent-color: var(--yellow);
}

.form-note {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--yellow);
  font-size: 11px;
}

.site-footer {
  background: #0c0d0f;
  color: var(--white);
}

.footer-main {
  min-height: 330px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.footer-brand p {
  margin: 26px 0 0;
  color: #6f7173;
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.footer-links div {
  display: grid;
  gap: 9px;
}

.footer-links span {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
}

.footer-links a {
  color: #919295;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-external-links {
  min-height: 58px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 12px;
  border-top: 1px solid #292b2e;
}

.footer-external-links:empty {
  display: none;
}

.footer-external-links::before {
  content: attr(aria-label);
  margin-right: 6px;
  color: #6f7173;
  font-size: 10px;
  font-weight: 700;
}

.footer-external-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  color: #b9bbb8;
  border: 1px solid #34373a;
  font-size: 11px;
}

.footer-external-links a::after {
  content: "↗";
  color: var(--yellow);
}

.footer-external-links a:hover {
  color: var(--ink);
  border-color: var(--yellow);
  background: var(--yellow);
}

.footer-external-links a:hover::after {
  color: var(--ink);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #292b2e;
  color: #66686b;
  font-size: 10px;
}

.product-dialog {
  width: min(1040px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid #c6c5c0;
  background: var(--white);
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}

.product-dialog[open] {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.dialog-media {
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.dialog-media img {
  width: 95%;
  height: 86%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.dialog-content {
  padding: 48px 44px;
  overflow-y: auto;
}

.dialog-content h2 {
  margin: 0;
  font: 600 36px/1.1 "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.dialog-content>p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
}

.dialog-tabs {
  display: flex;
  margin-top: 38px;
  border-bottom: 1px solid var(--line);
}

.dialog-tabs button {
  padding: 13px 18px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.dialog-tabs button.is-active {
  border-color: var(--yellow);
}

.dialog-panel {
  display: none;
  min-height: 215px;
  padding: 20px 0;
}

.dialog-panel.is-active {
  display: block;
}

.dialog-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dialog-panel li {
  padding: 11px 0 11px 20px;
  border-bottom: 1px solid var(--line);
  color: #555;
  font-size: 12px;
}

.dialog-panel li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  margin: 7px 0 0 -18px;
  background: var(--yellow);
}

.spec-table div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.spec-table span {
  color: var(--muted);
}

.spec-table strong {
  font-weight: 600;
}

.dialog-cta {
  margin-top: 16px;
}

.side-top {
  position: fixed;
  z-index: 70;
  right: 14px;
  bottom: 28px;
  width: 48px;
  height: 58px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  color: var(--white);
  border: 1px solid #3d403c;
  border-top: 3px solid var(--yellow);
  background: #0c0e0c;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  font: 700 10px "Space Grotesk", sans-serif;
}

.side-top span {
  color: var(--yellow);
  font-size: 13px;
}

.side-top:hover,
.side-top:focus {
  color: var(--ink);
  border-color: var(--yellow);
  background: var(--yellow);
  outline: 0;
}

.side-top:hover span,
.side-top:focus span {
  color: var(--ink);
}

.toast {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  transform: translateY(120px);
  padding: 14px 18px;
  background: var(--ink);
  color: var(--white);
  border-left: 4px solid var(--yellow);
  font-size: 12px;
  opacity: 0;
  transition: .3s;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.detail-downloads {
  display: grid;
  gap: 10px;
}

.detail-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.detail-download:hover {
  border-color: var(--yellow);
  background: #fffdf0;
}

.detail-download strong {
  color: #8a7000;
  font-size: 18px;
}

.detail-empty {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
}

.detail-inquiry {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 38px;
  margin-top: 62px;
  padding: 30px;
  background: var(--yellow);
  border: 1px solid #d4aa00;
  color: var(--ink);
}

.detail-inquiry h2 {
  margin: 0 0 12px;
  font: 600 28px/1.2 "Space Grotesk", "Microsoft YaHei", sans-serif;
  color: var(--ink);
}

.detail-inquiry>div>p:not(.eyebrow) {
  max-width: 380px;
  margin: 0;
  color: #4f4200;
  font-size: 12px;
  line-height: 1.7;
}

.inquiry-form--light {
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.inquiry-form--light label {
  color: #5f4c00;
}

.inquiry-form--light input,
.inquiry-form--light textarea {
  border-bottom-color: rgba(16, 17, 19, .36);
  color: var(--ink);
}

.inquiry-form--light input:focus,
.inquiry-form--light textarea:focus {
  border-color: var(--ink);
}

.inquiry-form--light .form-note {
  color: #5f4c00;
}

.inquiry-form--light .button-primary {
  background: var(--ink);
  color: var(--white);
}

.inquiry-form--light .button-primary:hover {
  background: #2a2d28;
}

@media (max-width: 1050px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav>a,
  .nav-dropdown>a {
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero-inner {
    gap: 36px;
  }

  .visual-frame {
    height: 330px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-card.featured {
    grid-template-columns: 1fr 1fr;
  }

  .home-product-slide {
    flex-basis: calc((100% - 32px) / 3);
  }

  .detail-hero-layout {
    gap: 38px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .announcement-inner {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .announcement-inner a {
    display: none;
  }

  .header-inner {
    height: 68px;
  }

  .primary-nav,
  .language-switch {
    display: none;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 8px;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--white);
    transition: .25s;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--ink);
    transition: max-height .3s;
  }

  .mobile-nav.is-open {
    max-height: 760px;
    border-top: 1px solid #343639;
  }

  .mobile-nav a {
    padding: 14px 24px;
    border-bottom: 1px solid #2a2c2f;
    font-size: 13px;
  }

  .mobile-nav .mobile-submenu-link {
    padding: 10px 24px 10px 42px;
    color: #c9b13f;
    background: #151715;
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    min-height: 660px;
    align-items: flex-start;
    padding-top: 76px;
  }

  .hero-content {
    max-width: 760px;
    padding-left: 28px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-trust {
    margin-top: 30px;
  }

  .hero-visual {
    width: 88%;
    margin-left: auto;
  }

  .visual-frame {
    height: 280px;
  }

  .visual-spec {
    right: 0;
    bottom: -30px;
    width: 190px;
  }

  .hero-scroll {
    display: none;
  }

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

  .signal-grid div {
    min-height: 95px;
    border-bottom: 1px solid rgba(16, 17, 19, .18);
  }

  .signal-grid div:nth-child(2) {
    border-right: 1px solid rgba(16, 17, 19, .18);
  }

  .section {
    padding: 86px 0;
  }

  .split-heading,
  .capabilities-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .capabilities-intro h2,
  .contact-copy h2 {
    font-size: clamp(39px, 11vw, 54px);
  }

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

  .home-product-slide {
    flex-basis: calc((100% - 16px) / 2);
  }

  .product-filters {
    padding: 16px;
  }

  .filter-row {
    grid-template-columns: 88px 1fr;
  }

  .product-card,
  .product-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr 1.1fr;
    min-height: 330px;
  }

  .solution-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 8px;
  }

  .solution-copy {
    grid-column: auto;
  }

  .capabilities-intro {
    position: static;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    margin-top: 36px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-block: 70px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 20px;
  }

  .product-dialog[open] {
    grid-template-columns: 1fr;
  }

  .dialog-media {
    min-height: 280px;
    max-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-hero-layout {
    grid-template-columns: 1fr;
  }

  .detail-gallery-main {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .detail-inquiry {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 42px;
    padding: 22px 18px;
  }

  .detail-inquiry h2 {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-inner {
    padding-top: 48px;
  }

  .hero-content {
    padding-left: 20px;
    border-left-width: 2px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    flex-wrap: wrap;
  }

  .signal-grid strong {
    font-size: 26px;
  }

  .signal-grid div {
    padding-left: 16px;
  }

  .product-tabs {
    margin-inline: -12px;
  }

  .tab-button {
    padding-inline: 18px;
  }

  .home-product-carousel {
    margin-inline: 0;
    padding: 22px 0;
  }

  .home-carousel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-product-slide {
    flex-basis: 84%;
  }

  .product-index-tab {
    flex: 1;
    padding-inline: 10px;
  }

  .product-filters {
    margin-inline: -12px;
    border-left: 0;
    border-right: 0;
  }

  .filter-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-block: 9px;
  }

  .filter-option {
    padding: 5px 8px;
  }

  .product-pagination {
    gap: 5px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .product-card,
  .product-card.featured {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 250px;
  }

  .product-card.featured h3 {
    font-size: 24px;
  }

  .catalog-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .solution-row {
    grid-template-columns: 1fr;
  }

  .solution-copy {
    font-size: 12px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid article {
    min-height: 210px;
  }

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

  .about-media,
  .about-media img {
    min-height: 330px;
  }

  .about-media img {
    padding: 0;
  }

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

  .insight-image {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .insight-body h3 {
    margin-top: 34px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .inquiry-form {
    padding: 26px 20px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-external-links {
    flex-wrap: wrap;
  }

  .side-top {
    right: 8px;
    bottom: 12px;
    width: 44px;
    height: 52px;
  }

  .dialog-content {
    padding: 34px 24px;
  }

  .dialog-content h2 {
    font-size: 29px;
  }

  .product-dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
  }

  .detail-hero {
    padding-top: 54px;
  }

  .detail-gallery-main {
    height: 280px;
  }

  .detail-content {
    padding: 54px 0 80px;
  }

  .detail-tabs {
    overflow-x: auto;
  }

  .spec-row {
    grid-template-columns: 102px 1fr;
  }

  .detail-contact {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* Homepage product service layout aligned with the supplied reference. */
.home-product-carousel {
  margin: 0;
  padding: 38px 0 48px;
  background: #111312;
  border: 0;
  color: #fff;
}

.home-carousel-head {
  position: relative;
  display: block;
  margin-bottom: 22px;
  text-align: center;
}

.home-carousel-head .eyebrow {
  display: none;
}

.home-carousel-copy h3 {
  margin: 0;
  color: #fff;
  font: 600 28px/1.15 "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.home-carousel-copy p {
  max-width: none;
  margin: 10px 0 0;
  color: #b8bbb6;
  font-size: 12px;
}

.home-carousel-controls {
  position: absolute;
  z-index: 2;
  top: 170px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 0;
  pointer-events: none;
}

.home-carousel-controls button {
  position: relative;
  width: 64px;
  height: 112px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  pointer-events: auto;
}

.home-carousel-controls button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
}

.home-carousel-controls button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  color: #fff;
  font-size: 21px;
  line-height: 1;
}

.home-carousel-controls button[data-home-prev]::after {
  content: "‹";
}

.home-carousel-controls button[data-home-next]::after {
  content: "›";
}

.home-carousel-controls button:hover::before {
  border-color: var(--yellow);
  background: var(--yellow);
}

.home-carousel-controls button:hover::after {
  color: #111312;
}

.home-carousel-viewport {
  margin: 0 22px;
  overflow: hidden;
}

.home-carousel-track {
  display: flex;
  gap: 14px;
  transition: transform .45s ease;
}

.home-product-slide {
  flex: 0 0 calc((100% - 42px) / 4);
  min-width: 0;
  background: transparent;
  border: 0;
}

.home-product-slide-image {
  height: 145px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

.home-product-slide-image img {
  width: 100%;
  height: 125px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.home-product-slide-body {
  padding: 14px 8px 0;
}

.home-product-slide-body span {
  display: none;
}

.home-product-slide-body h4 {
  min-height: 20px;
  margin: 0 0 10px;
  color: #fff;
  font: 600 15px/1.3 "Microsoft YaHei", sans-serif;
}

.home-product-slide-body p {
  min-height: 63px;
  margin: 0;
  color: #b8bbb6;
  font-size: 11px;
  line-height: 1.6;
}

.home-product-slide-body a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-width: 75px;
  margin-top: 10px;
  padding: 7px 22px 7px 12px;
  background: var(--yellow);
  color: #111312;
  font-size: 10px;
  font-weight: 700;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 50%, calc(100% - 11px) 100%, 0 100%);
  transition: background .2s ease, transform .2s ease;
}

.home-product-slide-body a:hover {
  background: #ffe14d;
  transform: translateY(-1px);
}

.home-product-slide-body a span {
  display: inline;
  color: #111312;
  font-size: 13px;
}

@media (max-width: 1050px) {
  .home-carousel-controls {
    left: 0;
    right: 0;
  }

  .home-carousel-viewport {
    margin-inline: 20px;
  }
}

@media (max-width: 820px) {
  .home-carousel-controls {
    top: 170px;
    left: 0;
    right: 0;
  }

  .home-product-slide {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 560px) {
  .home-product-carousel {
    padding: 28px 0 42px;
  }

  .home-carousel-head {
    margin-bottom: 20px;
  }

  .home-carousel-copy h3 {
    font-size: 23px;
  }

  .home-carousel-copy p {
    padding-inline: 8px;
    line-height: 1.6;
  }

  .home-carousel-controls {
    top: 168px;
    left: 0;
    right: 0;
  }

  .home-carousel-viewport {
    margin-inline: 29px;
  }

  .home-product-slide {
    flex-basis: 100%;
    padding-inline: 2px;
  }

  .home-product-slide-image {
    height: 176px;
  }

  .home-product-slide-image img {
    height: 155px;
  }

  .home-product-slide-body {
    padding-inline: 4px;
  }

  .home-product-slide-body p {
    min-height: 0;
  }
}

/* Site-wide black and gold visual system. */
.products-section,
.insights-section,
.faq-section,
.product-detail-page {
  background: #111312;
  color: var(--white);
}

.products-section .section-heading h2 em,
.insights-section .section-heading h2 em,
.faq-intro h2 em {
  color: var(--yellow);
}

.products-section .heading-aside p,
.insights-section .heading-aside p,
.faq-intro>p:not(.eyebrow),
.faq-list details p {
  color: #a9aca6;
}

.products-section .text-link,
.insights-section .text-link {
  color: var(--white);
  border-color: #555852;
}

.product-index-tabs {
  border-color: #3b3e39;
}

.product-index-tab {
  color: #d9dbd6;
  border-color: #3b3e39;
}

.product-index-tab:hover {
  color: var(--yellow);
  background: #1a1c1a;
}

.product-index-tab.is-active {
  background: #090a09;
  color: var(--white);
}

.product-filters {
  background: #171918;
  border-color: var(--yellow);
}

.filter-row {
  border-color: #323530;
}

.filter-label {
  color: var(--white);
}

.filter-option {
  color: #b8bbb4;
}

.filter-option:hover {
  color: var(--yellow);
  border-color: #686b64;
}

.filter-option.is-active {
  background: #090a09;
  color: var(--yellow);
}

.product-card {
  background: #171918;
  border-color: #3a3d38;
}

.product-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
}

.product-image {
  background: #f7f7f4;
  border-color: #3a3d38;
}

.product-code {
  color: var(--yellow);
}

.product-arrow {
  border-color: #555852;
  color: var(--yellow);
}

.product-card-body>p {
  color: #a9aca6;
}

.product-specs span {
  background: #262925;
  color: #d9dbd6;
  border: 1px solid #3a3d38;
}

.inline-action {
  color: var(--white);
  border-color: #3a3d38;
}

.inline-action:hover {
  color: var(--yellow);
}

.product-pagination button {
  background: #171918;
  color: var(--white);
  border-color: #3a3d38;
}

.product-pagination button:hover,
.product-pagination button.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.product-pagination-note {
  color: #a9aca6;
}

.insight-feature,
.insight-stack article {
  background: #171918;
  border-color: #3a3d38;
}

.insight-image {
  background: #f7f7f4;
  border-color: #3a3d38;
}

.insight-type {
  color: var(--yellow);
}

.insight-body p,
.insight-stack p {
  color: #a9aca6;
}

.faq-list,
.faq-list details {
  border-color: #3a3d38;
}

.faq-list summary {
  color: var(--white);
}

.faq-list summary span {
  background: var(--yellow);
  color: var(--ink);
}

.catalog-page {
  background: #111312;
}

.catalog-page-section {
  min-height: 72vh;
  padding: 36px 0 90px;
}

.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;
}

@media (max-width: 680px) {
  .catalog-page-section {
    padding: 24px 0 64px;
  }
}

.detail-content {
  background: #111312;
}

.detail-tabs {
  border-color: #3b3e39;
}

.detail-tab {
  color: #a9aca6;
}

.detail-tab:hover {
  color: var(--yellow);
}

.detail-tab.is-active {
  background: #1a1c1a;
  color: var(--white);
  border-color: var(--yellow);
}

.feature-table,
.spec-table-large {
  background: #171918;
  border-color: #3b3e39;
}

.feature-group,
.spec-row {
  border-color: #3b3e39;
}

.feature-group h3 {
  background: #090a09;
  color: var(--yellow);
}

.feature-group p {
  color: #d0d2cd;
  border-color: #3b3e39;
  background: #171918;
}

.spec-row span {
  color: var(--yellow);
  background: #090a09;
}

.spec-row strong {
  color: #eceee9;
  background: #171918;
}

.detail-download {
  background: #171918;
  color: var(--white);
  border-color: #3b3e39;
}

.detail-download:hover {
  background: #22251f;
  border-color: var(--yellow);
}

.detail-download strong {
  color: var(--yellow);
}

.detail-empty {
  background: #171918;
  color: #a9aca6;
  border-color: #3b3e39;
}

.detail-inquiry {
  border-color: #d4aa00;
  background: var(--yellow);
  color: var(--ink);
}

.detail-inquiry>div>p:not(.eyebrow) {
  color: #4f4200;
}

.inquiry-form--light {
  color: var(--ink);
}

.inquiry-form--light label {
  color: #5f4c00;
}

.inquiry-form--light input,
.inquiry-form--light textarea {
  color: var(--ink);
  border-bottom-color: rgba(16, 17, 19, .36);
}

.inquiry-form--light input:focus,
.inquiry-form--light textarea:focus {
  border-color: var(--ink);
}

.inquiry-form--light .form-note {
  color: #5f4c00;
}

.inquiry-form--light .button-primary {
  background: var(--ink);
  color: var(--white);
}

.inquiry-form--light .button-primary:hover {
  background: #2a2d28;
}

.product-dialog {
  background: #111312;
  color: var(--white);
  border: 1px solid #3b3e39;
}

.dialog-close {
  background: #111312;
  color: var(--white);
  border-color: #555852;
}

.dialog-close:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.dialog-media {
  border-color: #3b3e39;
}

.dialog-content>p:not(.eyebrow),
.dialog-panel li,
.spec-table span {
  color: #a9aca6;
}

.dialog-tabs,
.dialog-panel li,
.spec-table div {
  border-color: #3b3e39;
}

.dialog-tabs button {
  color: #d0d2cd;
}

.dialog-tabs button.is-active {
  color: var(--yellow);
}

/* Technical support pages. */
.support-page {
  background: #111312;
  color: var(--white);
}

.support-page .site-header .is-current {
  color: var(--yellow);
}

.support-hero {
  position: relative;
  overflow: hidden;
  background: #111312;
  color: var(--white);
  border-bottom: 1px solid #30332f;
}

.support-hero::after {
  content: "";
  position: absolute;
  width: 48vw;
  height: 48vw;
  right: -18vw;
  top: -26vw;
  border: 1px solid rgba(245, 196, 0, .18);
  transform: rotate(28deg);
  pointer-events: none;
}

.support-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
  align-items: center;
  min-height: 480px;
  padding: 86px 0 94px;
}

.support-hero-copy {
  max-width: 760px;
  padding-left: 42px;
  border-left: 3px solid var(--yellow);
}

.support-hero-copy h1 {
  margin: 0;
  font: 600 clamp(48px, 7vw, 88px)/.98 "Space Grotesk", "Microsoft YaHei", sans-serif;
  letter-spacing: -.04em;
}

.support-hero-copy h1 em {
  color: var(--yellow);
  font-style: normal;
}

.support-hero-copy>p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: #b8bbb6;
  font-size: 16px;
  line-height: 1.8;
}

.support-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.support-hero-panel {
  padding: 24px;
  background: #191c19;
  border: 1px solid #3a3d38;
  box-shadow: 16px 16px 0 rgba(245, 196, 0, .9);
}

.support-hero-panel>span {
  display: block;
  color: #a9aca6;
  font: 700 10px/1.2 "Space Grotesk", sans-serif;
  letter-spacing: .12em;
}

.support-hero-panel>strong {
  display: block;
  margin: 14px 0 2px;
  color: var(--yellow);
  font: 600 66px/.9 "Space Grotesk", sans-serif;
}

.support-hero-panel>p {
  margin: 0 0 26px;
  color: #d9dbd6;
  font-size: 12px;
}

.support-hero-panel>div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid #343731;
  color: #d9dbd6;
  font-size: 12px;
}

.support-hero-panel b {
  color: var(--yellow);
  font: 700 11px "Space Grotesk", sans-serif;
}

.support-services,
.support-content,
.support-downloads {
  background: #111312;
  color: var(--white);
}

.support-services {
  padding-top: 94px;
}

.support-services .section-heading,
.support-downloads .section-heading {
  margin-bottom: 42px;
}

.support-services .section-heading h2,
.support-downloads .section-heading h2 {
  color: var(--white);
}

.support-services .section-heading h2 em,
.support-downloads .section-heading h2 em {
  color: var(--yellow);
}

.support-services .heading-aside,
.support-downloads .heading-aside {
  color: #a9aca6;
}

.support-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.support-service-card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  background: #191c19;
  border: 1px solid #3a3d38;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.support-service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, .24);
}

.support-service-number {
  display: block;
  color: var(--yellow);
  font: 700 12px "Space Grotesk", sans-serif;
}

.support-service-card h3 {
  margin: 28px 0 9px;
  color: var(--white);
  font: 600 22px/1.2 "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.support-service-card p {
  min-height: 50px;
  margin: 0;
  color: #a9aca6;
  font-size: 13px;
  line-height: 1.7;
}

.support-service-card strong {
  display: inline-flex;
  gap: 16px;
  margin-top: 24px;
  color: var(--yellow);
  font-size: 12px;
}

.support-content {
  padding-top: 32px;
}

.support-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 64px;
  align-items: start;
}

.support-copy-block,
.support-policy-card {
  padding: 30px;
  border: 1px solid #3a3d38;
  background: #171918;
}

.support-copy-block h2,
.support-policy-card h2 {
  margin: 8px 0 20px;
  color: var(--white);
  font: 600 34px/1.1 "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.support-copy-block>p:not(.eyebrow),
.support-policy-card>p:not(.eyebrow) {
  margin: 0;
  color: #b8bbb6;
  font-size: 14px;
  line-height: 1.9;
}

.support-bullets {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid #3a3d38;
}

.support-bullets>div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #3a3d38;
}

.support-bullets strong {
  color: var(--yellow);
  font-size: 13px;
}

.support-bullets span {
  color: #a9aca6;
  font-size: 13px;
}

.support-policy-card {
  border-top: 3px solid var(--yellow);
}

.support-policy-card ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.support-policy-card li {
  position: relative;
  padding-left: 20px;
  color: #b8bbb6;
  font-size: 13px;
  line-height: 1.7;
}

.support-policy-card li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--yellow);
}

.support-policy-card .text-link {
  color: var(--white);
  border-color: #555852;
}

.support-downloads {
  padding-top: 94px;
}

.support-download-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  border-bottom: 1px solid #3a3d38;
}

.support-download-tab {
  padding: 13px 18px;
  border: 1px solid transparent;
  border-bottom: 0;
  background: transparent;
  color: #a9aca6;
  cursor: pointer;
  font-size: 13px;
}

.support-download-tab:hover {
  color: var(--yellow);
}

.support-download-tab.is-active {
  background: #191c19;
  border-color: #3a3d38;
  color: var(--yellow);
}

.support-download-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.support-download-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  background: #191c19;
  border: 1px solid #3a3d38;
  transition: border-color .2s, transform .2s;
}

.support-download-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.support-download-card.is-placeholder {
  border-style: dashed;
}

.support-download-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--yellow);
  color: var(--ink);
  font: 700 11px "Space Grotesk", sans-serif;
}

.support-download-copy {
  min-width: 0;
}

.support-download-meta {
  margin: 0 0 4px;
  color: #8c908a;
  font-size: 10px;
}

.support-download-copy h3 {
  overflow: hidden;
  margin: 0;
  color: var(--white);
  font: 600 16px/1.25 "Space Grotesk", "Microsoft YaHei", sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-download-copy>p:not(.support-download-meta) {
  overflow: hidden;
  margin: 5px 0 0;
  color: #9da19b;
  font-size: 11px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-download-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid #555852;
  color: var(--white);
  font-size: 11px;
  white-space: nowrap;
}

.support-download-action:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.support-download-card.is-placeholder .support-download-action {
  color: #a9aca6;
}

.support-download-note {
  margin: 16px 0 0;
  color: #8c908a;
  font-size: 11px;
}

.support-request {
  background: var(--yellow);
  color: var(--ink);
}

.support-request-layout {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  padding-block: 66px;
}

.support-request .eyebrow {
  color: #655b00;
}

.support-request h2 {
  margin: 0;
  font: 600 48px/1 "Space Grotesk", "Microsoft YaHei", sans-serif;
}

.support-request h2 em {
  color: var(--ink);
}

.support-request p:not(.eyebrow) {
  max-width: 600px;
  margin: 20px 0 0;
  color: #403b00;
  font-size: 14px;
}

.support-request .button-primary {
  background: var(--ink);
  color: var(--white);
}

.support-request .button-primary:hover {
  background: #2a2d28;
}

.support-page .site-footer {
  background: #0b0c0b;
}

@media (max-width: 900px) {
  .support-hero-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .support-hero-panel {
    max-width: 360px;
  }

  .support-content-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .support-download-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .support-hero-layout {
    min-height: auto;
    padding: 62px 0 74px;
  }

  .support-hero-copy {
    padding-left: 22px;
  }

  .support-hero-copy h1 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .support-hero-copy>p:not(.eyebrow) {
    font-size: 14px;
  }

  .support-hero-panel {
    box-shadow: 9px 9px 0 rgba(245, 196, 0, .9);
  }

  .support-service-grid {
    grid-template-columns: 1fr;
  }

  .support-services,
  .support-downloads {
    padding-top: 64px;
  }

  .support-copy-block,
  .support-policy-card {
    padding: 22px;
  }

  .support-bullets>div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .support-download-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .support-download-action {
    grid-column: 2;
    justify-self: start;
  }

  .support-request-layout {
    align-items: start;
    flex-direction: column;
    padding-block: 52px;
  }

  .support-request h2 {
    font-size: 40px;
  }
}

/* Technical support center */
.support-page {
  background: #0d0f0e;
  color: #f5f5f1;
}

.support-page .site-header {
  background: #101310;
}

.support-hero {
  padding: 88px 0 72px;
  border-bottom: 1px solid #2c302c;
  background: radial-gradient(circle at 78% 30%, rgba(244, 196, 0, .12), transparent 34%), #111411;
}

.support-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: #fff;
  font: 600 clamp(40px, 6vw, 76px)/1.03 "Space Grotesk", "Microsoft YaHei", sans-serif;
  letter-spacing: -.045em;
}

.support-hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.support-hero>.container>p:last-child {
  max-width: 650px;
  margin: 0;
  color: #aeb3ab;
  font-size: 14px;
  line-height: 1.8;
}

.support-content {
  padding: 42px 0 76px;
  background: #0d0f0e;
}

.support-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.support-sidebar {
  position: sticky;
  top: 22px;
  border: 1px solid #343934;
  background: #141714;
}

.support-sidebar-label {
  margin: 0;
  padding: 16px 18px;
  color: var(--yellow);
  border-bottom: 1px solid #343934;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.support-nav {
  display: grid;
}

.support-nav button {
  padding: 14px 18px;
  color: #bfc4bc;
  border: 0;
  border-bottom: 1px solid #292d29;
  background: transparent;
  text-align: left;
  font-size: 13px;
  cursor: pointer;
  transition: color .2s, background .2s, padding .2s;
}

.support-nav button:hover,
.support-nav button.is-active {
  padding-left: 22px;
  color: #111411;
  background: var(--yellow);
  font-weight: 700;
}

.support-contact {
  display: grid;
  gap: 6px;
  margin: 16px;
  padding: 14px 0 0;
  border-top: 1px solid #343934;
  font-size: 11px;
}

.support-contact span {
  color: #858d84;
}

.support-contact a {
  color: #f2f3ee;
  text-decoration: none;
}

.support-contact a:hover {
  color: var(--yellow);
}

.support-main {
  min-width: 0;
}

.support-main-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.support-main-head h2 {
  margin: 8px 0 10px;
  color: #fff;
  font: 600 clamp(28px, 4vw, 46px)/1.1 "Space Grotesk", "Microsoft YaHei", sans-serif;
  letter-spacing: -.035em;
}

.support-main-head>div>p:last-child {
  max-width: 640px;
  margin: 0;
  color: #aeb3ab;
  font-size: 13px;
  line-height: 1.75;
}

.support-search {
  display: grid;
  gap: 7px;
  min-width: 210px;
  color: #858d84;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.support-search input {
  width: 100%;
  min-height: 38px;
  padding: 9px 11px;
  color: #f4f5f1;
  border: 1px solid #3a4039;
  background: #161a16;
  outline: 0;
}

.support-search input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px rgba(244, 196, 0, .12);
}

.support-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid #343934;
  background: #141714;
}

.support-category-filter button {
  padding: 8px 11px;
  color: #bfc4bc;
  border: 1px solid #3b413a;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.support-category-filter button:hover,
.support-category-filter button.is-active {
  color: #111411;
  border-color: var(--yellow);
  background: var(--yellow);
  font-weight: 700;
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.support-info-grid article,
.support-policy {
  min-height: 190px;
  padding: 22px;
  border: 1px solid #343934;
  background: #141714;
}

.support-info-grid b {
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: .12em;
}

.support-info-grid h3 {
  margin: 30px 0 10px;
  color: #fff;
  font-size: 18px;
}

.support-info-grid p,
.support-policy p {
  margin: 0;
  color: #aeb3ab;
  font-size: 12px;
  line-height: 1.8;
}

.support-policy {
  min-height: 0;
}

.support-policy p+p {
  margin-top: 16px;
}

.support-policy .button {
  margin-top: 22px;
}

.support-download-group {
  border: 1px solid #343934;
  background: #141714;
}

.support-download-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 17px 20px;
  border-bottom: 1px solid #343934;
}

.support-download-head span {
  color: var(--yellow);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.support-download-head h3 {
  margin: 6px 0 0;
  color: #fff;
  font-size: 19px;
}

.support-download-head small {
  color: #8b928a;
  font-size: 11px;
}

.support-download-items {
  display: grid;
}

.support-download-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 20px;
  color: #f0f2ed;
  border-bottom: 1px solid #292d29;
  text-decoration: none;
  transition: background .2s, padding .2s;
}

.support-download-item:last-child {
  border-bottom: 0;
}

.support-download-item:hover {
  padding-left: 24px;
  background: #1d221d;
}

.support-download-item b {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.support-download-item small {
  display: block;
  margin-top: 5px;
  color: #8f968e;
  font-size: 10px;
}

.support-download-item>strong {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #111411;
  background: var(--yellow);
  font-size: 16px;
}

.support-empty {
  padding: 32px;
  color: #aeb3ab;
  border: 1px dashed #3a4039;
  background: #141714;
  text-align: center;
}

.support-cta {
  padding: 58px 0;
  background: #f4c400;
  color: #111411;
}

.support-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.support-cta .eyebrow {
  color: #4b3b00;
}

.support-cta h2 {
  margin: 8px 0 10px;
  font: 600 clamp(26px, 4vw, 42px)/1.08 "Space Grotesk", "Microsoft YaHei", sans-serif;
  letter-spacing: -.035em;
}

.support-cta h2 em {
  font-style: normal;
}

.support-cta p {
  max-width: 600px;
  margin: 0;
  color: #4b4b3f;
  font-size: 13px;
  line-height: 1.7;
}

.support-cta .button-dark {
  border-color: #111411;
}

@media (max-width:860px) {
  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-sidebar {
    position: static;
  }

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

  .support-nav button {
    border-right: 1px solid #292d29;
  }

  .support-contact {
    display: none;
  }

  .support-main-head {
    display: block;
  }

  .support-search {
    max-width: 320px;
    margin-top: 18px;
  }
}

@media (max-width:560px) {
  .support-hero {
    padding: 64px 0 52px;
  }

  .support-content {
    padding-top: 28px;
  }

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

  .support-info-grid {
    grid-template-columns: 1fr;
  }

  .support-download-head,
  .support-download-item {
    padding-inline: 14px;
  }

  .support-cta .container {
    display: block;
  }

  .support-cta .button {
    margin-top: 22px;
  }
}

.support-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  border: 1px solid #343934;
  background: #141714;
}

.support-quick-nav a {
  flex: 1 1 150px;
  padding: 14px 16px;
  color: #bfc4bc;
  border-right: 1px solid #343934;
  text-align: center;
  font-size: 12px;
  text-decoration: none;
  transition: color .2s, background .2s;
}

.support-quick-nav a:last-child {
  border-right: 0;
}

.support-quick-nav a:hover,
.support-quick-nav a:focus-visible {
  color: #111411;
  background: var(--yellow);
  outline: 0;
}

@media (max-width:560px) {
  .support-quick-nav a {
    flex-basis: 50%;
    border-bottom: 1px solid #343934;
  }

  .support-quick-nav a:nth-child(2n) {
    border-right: 0;
  }

  .support-quick-nav a:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}