/*
 * Amiiba V2 legacy.css
 *
 * 自动提取自 V1 主题 amiiba/assets/css/theme.css 的非首页页面样式
 * （产品、新闻、软件、支持、购买渠道、FAQ、联系、关于等页面）。
 * 仅在非首页加载，且加载顺序在 theme.css 之后：
 * - V2 外壳（body/导航/页脚）样式由 theme.css 提供；
 * - 本文件已剔除 V1 的全局元素、头部、页脚与首页区块规则。
 * 重新生成：node tools/build-legacy-css.js
 */

:root {
  --bg: #070807;
  --panel: #10110f;
  --panel-2: #171914;
  --text: #f2f1e7;
  --muted: rgba(242, 241, 231, 0.62);
  --dim: rgba(242, 241, 231, 0.38);
  --green: #79c7a4;
  --red: #cf665f;
  --max: 1520px;
  --header: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

.site-search {
  display: flex;
  align-items: center;
  height: 40px;
  width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
}

.site-search label {
  flex: 1;
}

.site-search__field {
  width: 100%;
  height: 38px;
  padding: 0 0 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 12px;
}

.site-search__submit {
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.site-search__submit {
  width: 40px;
  height: 38px;
  color: var(--muted);
}

.site-main {
  min-height: 70vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--banner-text-color, var(--yellow));
  font-family: var(--banner-font-family, Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif);
  text-transform: uppercase;
  font-size: var(--banner-eyebrow-font-size, 12px);
  font-weight: var(--banner-eyebrow-font-weight, 800);
  letter-spacing: 2.4px;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  cursor: pointer;
}

.button--primary,
.button--filter {
  width: fit-content;
  border-color: var(--yellow);
  background: var(--yellow);
  color: #15160f;
}

.button--ghost {
  background: transparent;
}

.section,
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 44px;
}

.section--dark {
  max-width: none;
  background: var(--panel);
}

.section--dark > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section__header {
  margin-bottom: 38px;
}

.section__header--split {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 70px;
}

.section__header h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
}

.page-hero {
  padding-top: 170px;
  padding-bottom: 86px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

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

.product-card,
.news-card,
.store-card {
  background: var(--panel);
  border: 1px solid var(--line);
}

.product-card__media,
.news-card__media {
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, #1b1d18, #10110f);
  color: var(--dim);
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
}

.product-card__media {
  aspect-ratio: 1.18;
  position: relative;
}

.product-card__link {
  position: absolute;
  inset: 0;
  z-index: 3;
  color: inherit;
  text-decoration: none;
}

.product-card__title {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.product-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #ffffb9;
  clip-path: polygon(0 0, 58% 50%, 0 100%);
  opacity: 0;
  transform: translateX(-22%);
  transition: opacity 180ms ease, transform 220ms ease;
}

.product-card:hover .product-card__media::before,
.product-card:focus-within .product-card__media::before {
  opacity: 1;
  transform: translateX(0);
}

.news-card__media {
  aspect-ratio: 1.55;
}

.product-card__media img,
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card__gallery {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product-card__gallery img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 50%;
  opacity: 0;
  transition: opacity 420ms ease, transform 240ms ease;
}

.product-card__gallery img.is-active {
  opacity: 1;
}

.product-card:hover .product-card__media img,
.product-card:focus-within .product-card__media img,
.news-card:hover .news-card__media img {
  transform: scale(1.035);
}

.product-card__body,
.news-card__body,
.store-card {
  padding: 24px;
}

.product-card__body {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card__meta,
.news-card time {
  margin: 0 0 10px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.product-card h2,
.news-card h2,
.store-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.12;
}

.product-card h2 a,
.news-card h2 a {
  text-decoration: none;
}

.product-card p,
.news-card p,
.store-card p {
  color: var(--muted);
  line-height: 1.55;
}

.product-card__swatches {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin: 0;
}

.product-card__swatch {
  width: 17px;
  height: 17px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.42);
  background: var(--swatch, #fff);
  cursor: pointer;
}

.product-card__swatch.is-active,
.product-card__swatch:hover,
.product-card__swatch:focus {
  border-color: #ffffb9;
  outline: 1px solid #ffffb9;
}

.product-filters {
  margin-bottom: 28px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) minmax(210px, 1.2fr) auto auto;
  gap: 12px;
  align-items: end;
}

.filter-row label {
  display: grid;
  gap: 8px;
}

.filter-row span,
.contact-form label {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.filter-row select,
.filter-row input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  background: #0b0c0b;
  color: var(--text);
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 160px;
  padding-top: 12px;
  resize: vertical;
}

.product-browser.is-loading #product-results {
  opacity: 0.42;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 54px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 156px 44px 96px;
}

.product-detail__media {
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  border: 1px solid var(--line);
}

.product-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-placeholder {
  color: var(--dim);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 84px);
  line-height: 0.98;
}

.product-detail--reference {
  display: block;
  max-width: none;
  min-height: calc(100svh - var(--header));
  padding: calc(var(--header) + clamp(40px, 5.2vh, 72px)) clamp(42px, 7.2vw, 138px) 0;
  background: #000;
}

.product-breadcrumb {
  max-width: 1680px;
  margin: 0 auto clamp(34px, 3.1vw, 58px);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(8px, 0.5vw, 10px);
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

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

.product-breadcrumb a:hover,
.product-breadcrumb a:focus {
  color: #ffffb9;
}

.product-detail__hero {
  position: relative;
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  min-height: min(820px, calc(100svh - var(--header) - 52px));
  grid-template-columns: minmax(360px, 0.68fr) minmax(520px, 1.32fr);
  gap: clamp(42px, 5.4vw, 104px);
  align-items: center;
  isolation: isolate;
}

.product-detail__hero::before {
  content: "";
  position: absolute;
  top: clamp(-42px, -2.6vw, -20px);
  bottom: clamp(-42px, -2.6vw, -20px);
  left: calc(50% - 50vw);
  width: 100vw;
  z-index: -1;
  display: none;
  background-image: var(--product-hero-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.62;
  pointer-events: none;
}

.product-detail__hero.has-product-hero-bg::before {
  display: block;
}

.product-detail--reference .product-detail__media {
  position: relative;
  min-height: min(760px, calc(100svh - var(--header) - 128px));
  overflow: visible;
  background: transparent;
  border: 0;
}

.product-detail--reference .product-detail__content {
  order: -1;
  align-self: start;
  max-width: 620px;
  padding-top: clamp(20px, 2.6vw, 50px);
}

.product-detail__gallery {
  position: relative;
  width: 100%;
  min-height: min(760px, calc(100svh - var(--header) - 128px));
  transform: translateX(clamp(-72px, -3.2vw, -34px));
}

.product-detail__gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1);
  transform-origin: center bottom;
  transition: opacity 420ms ease, transform 240ms ease;
}

.product-detail__gallery img.is-active {
  opacity: 1;
}

.product-detail--reference .product-detail__media > img {
  object-fit: contain;
}

.product-detail--reference .eyebrow {
  margin: 0 0 clamp(18px, 1.55vw, 30px);
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 900;
  letter-spacing: clamp(4.5px, 0.5vw, 8px);
  line-height: 1;
  text-transform: uppercase;
}

.product-detail--reference h1 {
  max-width: none;
  color: #ffffb9;
  font-size: clamp(58px, 5vw, 96px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: normal;
  white-space: nowrap;
}

.product-detail--reference .lead {
  max-width: 540px;
  min-height: clamp(96px, 9vh, 136px);
  margin: clamp(32px, 2.45vw, 48px) 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 400;
  line-height: 1.55;
}

.product-detail--reference .lead.is-placeholder {
  color: transparent;
}

.product-detail--reference .entry-content {
  max-width: 540px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 0.92vw, 17px);
  line-height: 1.62;
}

.product-detail__colors {
  margin-top: clamp(68px, 7vh, 118px);
}

.product-detail__colors p {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3.4px;
  text-transform: uppercase;
}

.product-detail__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-detail__swatches .product-card__swatch {
  width: clamp(38px, 3.2vw, 54px);
  height: clamp(38px, 3.2vw, 54px);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
  appearance: none;
}

.product-detail__swatches .product-card__swatch.is-active,
.product-detail__swatches .product-card__swatch:hover,
.product-detail__swatches .product-card__swatch:focus {
  border-color: #ffffb9;
  outline: 2px solid rgba(255, 255, 185, 0.5);
  outline-offset: 4px;
}

.product-detail__actions {
  margin-top: clamp(52px, 5.2vh, 90px);
  display: grid;
  justify-items: start;
  gap: clamp(24px, 2vw, 34px);
}

.product-detail__actions .button {
  min-height: 52px;
  padding: 0 34px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
}

.product-detail__actions .product-detail__spec-button {
  min-width: 0;
  min-height: 0;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #fff;
  text-decoration: none;
}

.product-detail__actions .product-detail__manual-button {
  min-width: clamp(210px, 15vw, 292px);
  min-height: 66px;
  padding: 0 34px;
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #fff;
}

.product-detail__actions .product-detail__utility-button {
  min-width: clamp(180px, 12.8vw, 260px);
  min-height: 54px;
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.78);
}

.product-detail__thumb-rail {
  position: absolute;
  right: clamp(-132px, -5.8vw, -78px);
  top: 50%;
  z-index: 20;
  display: grid;
  justify-items: center;
  gap: clamp(14px, 1.2vw, 22px);
  width: clamp(92px, 6.2vw, 118px);
  transform: translateY(-50%);
}

.product-detail__thumbs {
  display: grid;
  grid-auto-rows: min-content;
  gap: clamp(12px, 1vw, 18px);
  width: calc(100% + 8px);
  margin: -4px;
  padding: 4px;
  max-height: min(640px, calc(100svh - var(--header) - 220px));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 185, 0.45) transparent;
}

.product-detail__thumbs::-webkit-scrollbar {
  width: 4px;
}

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

.product-detail__thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 185, 0.45);
  border-radius: 2px;
}

.product-detail__thumbs button {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  padding: clamp(8px, 0.7vw, 12px);
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  overflow: hidden;
  transition: background 180ms ease;
}

.product-detail__thumbs button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.product-detail__thumbs button:hover,
.product-detail__thumbs button:focus,
.product-detail__thumbs button.is-active {
  background: rgba(255, 255, 185, 0.12);
}

.product-detail__thumbs button:hover::after,
.product-detail__thumbs button:focus::after,
.product-detail__thumbs button.is-active::after {
  border-color: #ffffb9;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 185, 0.55);
}

.product-detail__thumbs img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail__thumb-arrow {
  width: 34px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.product-detail__thumb-arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transition: border-color 160ms ease, transform 160ms ease;
}

.product-detail__thumb-arrow--prev::before {
  transform: rotate(45deg);
}

.product-detail__thumb-arrow--next::before {
  transform: rotate(225deg);
}

.product-detail__thumb-arrow:hover::before,
.product-detail__thumb-arrow:focus::before {
  border-color: #ffffb9;
}

.product-stories {
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.product-story {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #050505;
  border-top: 0;
}

.product-story h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 3.4vw, 68px);
  line-height: 1;
}

.product-story p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.7;
}

.product-story .eyebrow {
  margin: 0 0 16px;
  color: #ffffb9;
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.product-story--feature {
  min-height: clamp(420px, 38vw, 720px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(42px, 5vw, 92px);
  align-items: center;
  padding: clamp(46px, 5.2vw, 92px);
}

.product-story--image-right .product-story__image {
  order: 2;
}

.product-story__image {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-story__image img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
}

.product-story__copy {
  max-width: 700px;
}

.product-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.product-mini-stats span {
  min-width: 136px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-mini-stats strong {
  display: block;
  color: #ffffb9;
  font-size: 30px;
  line-height: 1;
}

.product-story--full-image {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 0;
  padding: 0;
  text-align: center;
}

.product-story--full-image > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
}

.product-story__caption {
  max-width: 980px;
  margin: 38px auto 0;
}

.product-story--banner {
  min-height: clamp(320px, 30vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(46px, 5vw, 96px);
  background-position: center;
  background-size: cover;
  text-align: center;
}

.product-story--banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.product-story--banner .product-story__copy {
  position: relative;
  z-index: 1;
}

.product-story--stats {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
  padding: clamp(46px, 5.2vw, 92px);
}

.product-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-stat {
  min-height: 160px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-stat strong {
  display: block;
  color: #ffffb9;
  font-size: clamp(40px, 4vw, 76px);
  line-height: 1;
}

.product-stat span,
.product-stat small {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.product-stat small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.product-specifications {
  max-width: 1680px;
  margin: 0 auto;
  padding: 92px 0 140px;
  border-top: 0;
}

.product-specifications h2 {
  margin: 0 0 46px;
  color: #fff;
  font-size: clamp(42px, 3.6vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}

.product-spec-groups {
  display: grid;
  gap: 52px;
}

.product-spec-group h3 {
  margin: 0 0 22px;
  color: #ffffb9;
  font-size: clamp(22px, 1.5vw, 30px);
  line-height: 1.2;
  text-transform: uppercase;
}

.product-spec-table {
  margin: 0;
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.product-spec-html {
  overflow-x: auto;
}

.product-spec-html table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #050505;
  color: #d6d6d6;
}

.product-spec-html th,
.product-spec-html td {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: left;
  vertical-align: top;
}

.product-spec-html th {
  color: #ffffb9;
  font-weight: 800;
}

.product-spec-html tr:first-child th,
.product-spec-html tr:first-child td {
  color: #fff;
  font-weight: 800;
}

.product-spec-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 34px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.product-spec-row dt,
.product-spec-row dd {
  margin: 0;
}

.product-spec-row dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.product-spec-row dd {
  color: #fff;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.55;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.entry-content,
.page-content {
  color: rgba(242, 241, 231, 0.78);
  line-height: 1.72;
}

.content-intro {
  max-width: 980px;
  color: rgba(242, 241, 231, 0.72);
  font-size: 18px;
}

.software-page,
.faq-page,
.news-page,
.stores-page,
.about-page,
.contact-page {
  max-width: 1680px;
  padding-top: 118px;
  padding-bottom: 140px;
}

.software-page .card-grid--products {
  margin-top: 70px;
}

.news-page .card-grid--news {
  gap: 42px;
}

.news-card {
  min-height: 100%;
}

.news-card__body {
  min-height: 230px;
}

.faq-page {
  display: block;
}

.faq-list {
  max-width: 1240px;
  margin-left: auto;
}

.faq-item {
  background: #070707;
  border-color: rgba(255,255,255,.16);
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.faq-item summary {
  position: relative;
  padding: 28px 72px 28px 30px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffb9;
  font-size: 30px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.store-grid {
  gap: 34px;
}

.store-card {
  background: #070707;
  border: 1px solid rgba(255,255,255,.16);
  padding: 34px;
}

.store-card h2 {
  color: #fff;
}

.contact-page .section__header--split,
.about-page .section__header--split {
  margin-bottom: 56px;
}

.contact-page--reference {
  max-width: none;
  padding: 232px 24px 190px;
  background: #000;
}

.contact-intro {
  max-width: 850px;
  margin: 0 auto 108px;
  text-align: center;
}

.contact-intro > p {
  margin: 0;
  color: #ffffb9;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.contact-layout {
  align-items: start;
}

.contact-copy {
  max-width: 850px;
  margin: 20px auto 0;
  color: rgba(242,241,231,.7);
  font-size: 14px;
  line-height: 1.7;
}

.contact-form {
  background: #070707;
  border-color: rgba(255,255,255,.18);
  padding: 34px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 58px;
  background: #020202;
  border-color: rgba(255,255,255,.2);
}

.about-page .content-intro {
  max-width: 1180px;
  font-size: 20px;
  line-height: 1.9;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.spec-panel {
  margin: 26px 0;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.spec-panel h2 {
  margin: 0 0 14px;
}

.spec-panel pre {
  white-space: pre-wrap;
  color: var(--muted);
  font-family: inherit;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--panel);
}

.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
}

.faq-item summary:hover {
  color: var(--yellow);
}

.faq-item div {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

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

.store-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 42px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form--reference {
  width: min(100% - 48px, 850px);
  margin: 0 auto;
  gap: 70px;
  padding: 0;
  background: transparent;
  border: 0;
}

.contact-form--reference label {
  display: block;
}

.contact-form--reference input,
.contact-form--reference select,
.contact-form--reference textarea {
  width: 100%;
  min-height: 73px;
  border: 0;
  border-radius: 15px;
  background: #fff;
  color: #050505;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
  padding: 0 28px;
  box-shadow: none;
}

.contact-form--reference select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%);
  background-position:
    calc(100% - 36px) 50%,
    calc(100% - 28px) 50%;
  background-size: 9px 9px, 9px 9px;
  background-repeat: no-repeat;
  padding-right: 62px;
}

.contact-form--reference textarea {
  min-height: 253px;
  padding-top: 30px;
  resize: vertical;
}

.contact-form--reference input::placeholder,
.contact-form--reference textarea::placeholder {
  color: #111;
  opacity: 1;
}

.contact-form--reference input:focus,
.contact-form--reference select:focus,
.contact-form--reference textarea:focus {
  box-shadow: 0 0 0 5px rgba(255, 255, 185, 0.3);
}

.contact-form__label {
  margin: 0 0 -56px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form__submit {
  justify-self: end;
  min-width: 258px;
  min-height: 73px;
  border: 0;
  border-radius: 15px;
  background: #ffffb9;
  color: #050505;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-note {
  margin: 0;
  padding: 18px 24px;
  border-radius: 16px;
  color: #111;
  font-weight: 800;
  text-align: center;
}

.form-note--success {
  background: var(--green);
}

.form-note--error {
  background: var(--red);
}

.article-image {
  margin: 0 0 34px;
}

.nav-links,
.page-numbers {
  display: flex;
  gap: 8px;
}

.page-numbers {
  margin-top: 30px;
}

.page-numbers a,
.page-numbers span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  text-decoration: none;
}

.page-numbers .current {
  background: var(--yellow);
  color: #111;
}

.site-search {
  display: none;
}

.page-hero {
  position: relative;
  max-width: none;
  min-height: 660px;
  padding: 92px 44px 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.visual-hero {
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: var(--banner-text-align, center);
}

.visual-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: #f3e967;
}

.visual-hero > * {
  position: relative;
  z-index: 1;
}

.visual-hero .eyebrow,
.visual-hero h1,
.visual-hero p:not(.eyebrow) {
  position: relative;
  width: min(100%, 980px);
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.visual-hero--product { background-image: url("../images/product-hero.jpg"); }

.visual-hero--software { background-image: url("../images/software-hero.jpg"); }

.visual-hero--news { background-image: url("../images/news-hero.jpg"); }

.visual-hero--faq { background-image: none; }

.visual-hero--support { background-image: none; }

.visual-hero--stores { background-image: url("../images/stores-hero.jpg"); }

.visual-hero--about { background-image: url("../images/about-hero.jpg"); }

.visual-hero--contact { background-image: url("../images/contact-hero.jpg"); }

.visual-hero--contact {
  min-height: 670px;
  background-position: center center;
  background-size: cover;
}

.visual-hero--text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 660px;
  padding: 92px 44px 0;
  text-align: var(--banner-text-align, center);
  background-size: cover;
}

.visual-hero--software {
  background-position: center center;
}

.visual-hero--product,
.visual-hero--software,
.visual-hero--support {
  min-height: 670px;
  background-position: center center;
  background-size: cover;
}

.visual-hero--software.visual-hero--text {
  text-align: var(--banner-text-align, center);
}

.visual-hero--software .visual-hero__copy {
  display: grid;
  justify-items: var(--banner-text-justify, center);
  text-align: var(--banner-text-align, center);
}

.visual-hero--software.visual-hero--text h1 {
  width: min(100%, 980px);
  margin-left: auto;
  margin-right: auto;
  color: var(--banner-text-color, #fff);
  font-size: var(--banner-title-font-size, clamp(42px, 3.35vw, 68px));
  letter-spacing: 0;
}

.visual-hero--software.visual-hero--text .eyebrow,
.visual-hero--software.visual-hero--text p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.visual-hero--faq,
.visual-hero--support {
  background-position: center center;
}

.visual-hero__copy {
  position: relative;
  z-index: 1;
  width: min(100%, 1220px);
  text-align: var(--banner-text-align, center);
}

.visual-hero--text .eyebrow,
.visual-hero--text h1,
.visual-hero--text p:not(.eyebrow) {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.visual-hero--text .eyebrow {
  margin: 0 0 24px;
  color: var(--banner-text-color, #ffffb9);
}

.visual-hero h1 {
  color: var(--banner-text-color, #fff);
  font-family: var(--banner-font-family, Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif);
  font-size: var(--banner-title-font-size, clamp(42px, 3.35vw, 68px));
  font-weight: var(--banner-title-font-weight, 800);
  line-height: 1;
  transform: translate(var(--banner-title-offset-x, 0), var(--banner-title-offset-y, 0));
}

.visual-hero p:not(.eyebrow) {
  max-width: min(100%, 780px);
  color: var(--banner-text-color, #fff);
  font-family: var(--banner-font-family, Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif);
  font-size: var(--banner-subtitle-font-size, clamp(18px, 1.35vw, 26px));
  font-weight: var(--banner-subtitle-font-weight, 400);
  line-height: 1.4;
}

.visual-hero--text h1 {
  width: min(100%, 1180px);
  color: #fff;
  font-size: clamp(42px, 3.35vw, 68px);
  font-weight: 800;
  letter-spacing: 0;
}

.software-page--reference,
.faq-page--reference,
.support-page {
  max-width: none;
  padding: 96px clamp(42px, 6.25vw, 120px) 128px;
}

.software-page--reference {
  background: #000;
  padding: clamp(145px, 11vw, 230px) 24px clamp(180px, 14vw, 285px);
}

.software-downloads__head {
  max-width: 980px;
  margin: 0 0 42px;
}

.software-downloads__head h2 {
  margin: 0 0 18px;
  color: #ffffb9;
  font-size: clamp(28px, 2.3vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.software-downloads__head p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.7;
}

.software-downloads {
  display: grid;
  justify-items: center;
  gap: 54px;
}

.software-download-card {
  display: grid;
  grid-template-columns: minmax(230px, 1.04fr) minmax(230px, 0.96fr);
  width: min(100%, 640px);
  min-height: 320px;
  padding: 32px;
  border-radius: 10px;
  background: #6b7072;
  color: #fff;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
}

.software-download-card__media {
  position: relative;
  aspect-ratio: 1060 / 790;
  min-height: 238px;
  border-radius: 9px;
  background: transparent;
  overflow: hidden;
}

.software-download-card__visual {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.software-download-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 0 28px 42px;
}

.software-download-card__kicker {
  margin: 0 0 22px;
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.software-download-card h2 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: none;
}

.software-download-card__body > p:not(.software-download-card__kicker) {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(16px, 1.1vw, 21px);
}

.software-download-card__actions {
  display: grid;
  justify-items: start;
  gap: 24px;
  margin-top: 54px;
}

.button--light,
.button--ghost-light {
  min-width: 92px;
  min-height: 34px;
  border-color: rgba(255,255,255,.82);
  color: #fff;
  background: transparent;
  font-size: 16px;
}

.button--light {
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  background: #ffffb9;
  color: #111;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.button--light:hover,
.button--light:focus,
.button--ghost-light:hover,
.button--ghost-light:focus {
  border-color: #ffffb9;
  background: #ffffb9;
  color: #111;
}

.support-page {
  background: #000;
}

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

.support-card {
  min-height: 300px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.16);
  background: #080808;
  color: #fff;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.support-card:hover,
.support-card:focus {
  transform: translateY(-4px);
  border-color: #ffffb9;
  background: #111;
}

.support-card span {
  display: block;
  margin-bottom: 54px;
  color: #ffffb9;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
}

.support-card h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(26px, 2vw, 38px);
  line-height: 1;
}

.support-card p {
  margin: 0;
  max-width: 420px;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.65;
}

.faq-page--reference {
  background: #000;
}

.faq-page--reference .section__header {
  padding-bottom: 34px;
  border-bottom: 6px solid #ffff5e;
}

.faq-page--reference .section__header h2 {
  color: #fff;
  font-size: clamp(34px, 3.1vw, 62px);
}

.faq-page--reference .faq-list {
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 74px;
}

.faq-page--reference .faq-item {
  min-height: 260px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.34);
  background: transparent;
}

.faq-page--reference .faq-item + .faq-item {
  margin-top: 0;
}

.faq-page--reference .faq-item summary {
  padding: 28px 48px 18px 0;
  color: #fff;
  font-size: clamp(22px, 1.7vw, 34px);
  line-height: 1.2;
}

.faq-page--reference .faq-item summary::after {
  right: 0;
  color: #ffffb9;
}

.faq-page--reference .faq-item div {
  padding: 0 0 28px;
  color: rgba(255,255,255,.68);
  font-size: 17px;
}

.product-browser--reference {
  max-width: none;
  padding: 105px 120px 145px;
}

.product-filter-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin: 0 0 74px;
}

.spec-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.spec-heading h2 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 1px;
}

.spec-heading:hover h2,
.spec-heading:focus h2,
.spec-heading[aria-expanded="true"] h2 {
  color: #ffffb9;
}

.spec-heading[aria-expanded="true"] .spec-heading__icon,
.spec-heading[aria-expanded="true"] .spec-heading__icon::before,
.spec-heading[aria-expanded="true"] .spec-heading__icon::after {
  background: #ffffb9;
}

.spec-heading__icon,
.spec-heading__icon::before,
.spec-heading__icon::after {
  display: block;
  width: 32px;
  height: 3px;
  background: #fff;
}

.spec-heading__icon {
  position: relative;
}

.spec-heading__icon::before,
.spec-heading__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.spec-heading__icon::before { top: -10px; }

.spec-heading__icon::after { top: 10px; }

.product-filters {
  margin: -28px 0 86px;
  padding: 0;
  background: transparent;
  border: 0;
}

.product-category-filter {
  width: min(100%, 360px);
}

.product-category-filter select {
  width: 100%;
  min-height: 72px;
  border: 1px solid rgba(255,255,255,.22);
  background-color: #050505;
  background-image: linear-gradient(45deg, transparent 50%, #ffffb9 50%), linear-gradient(135deg, #ffffb9 50%, transparent 50%);
  background-position: calc(100% - 26px) 50%, calc(100% - 19px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  appearance: none;
  padding: 0 58px 0 24px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.product-category-filter select:hover,
.product-category-filter select:focus {
  border-color: #ffffb9;
  outline: 0;
}

.product-filters[hidden] {
  display: none;
}

.filter-panel {
  max-width: 1540px;
  min-height: 420px;
  padding: 54px 76px 48px;
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid rgba(255,255,255,.04);
  box-shadow: 0 24px 90px rgba(0,0,0,.34);
}

.filter-group {
  margin: 0 0 54px;
  padding: 0;
  border: 0;
}

.filter-group legend {
  display: block;
  margin: 0 0 28px;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

.filter-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 28px 58px;
}

.filter-check {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.filter-check input {
  width: 27px;
  height: 27px;
  margin: 0;
  accent-color: #ffffb9;
}

.filter-check span {
  display: inline;
}

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

.product-browser--reference .button--ghost {
  min-height: 52px;
  padding: 0 24px;
  border-color: rgba(255,255,255,.22);
  background: #050505;
  color: #fff;
  font-size: 16px;
}

.product-browser--reference .button--ghost:hover,
.product-browser--reference .button--ghost:focus {
  border-color: #ffffb9;
  background: #ffffb9;
  color: #111;
}

.filter-summary {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 42px;
  min-height: 38px;
}

.filter-summary:not(.has-filter-tags) {
  display: none;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tag {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,185,.52);
  background: rgba(255,255,185,.08);
  color: #ffffb9;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.product-browser--reference .card-grid--products {
  transition: opacity 220ms ease, filter 220ms ease;
}

.product-browser--reference.is-filter-open .card-grid--products {
  opacity: .28;
  filter: brightness(.46);
}

.product-browser--reference .card-grid--products {
  max-width: 1680px;
  gap: 48px;
}

.product-card,
.news-card,
.store-card {
  background: transparent;
  border: 0;
}

.product-card__media,
.news-card__media {
  background: #5d6263;
}

.product-browser--reference .product-card__media {
  aspect-ratio: 0.78;
  min-height: 0;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.product-browser--reference .product-card {
  max-width: 520px;
}

.product-browser--reference .product-card__gallery img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center bottom;
}

.product-browser--reference .product-card:hover .product-card__media,
.product-browser--reference .product-card:focus-within .product-card__media {
  box-shadow: 0 0 0 2px #ffffb9;
}

.product-browser--reference .product-card h2 {
  text-align: center;
  font-size: 34px;
}

.product-browser--reference .product-card__title {
  top: 12.5%;
  font-size: 32px;
}

.product-browser--reference .product-card__body {
  display: none;
}

.news-card__body,
.store-card {
  padding: 24px 0;
}

.product-card h2,
.news-card h2,
.store-card h2 {
  font-size: 28px;
}

.visual-hero--news,
.visual-hero--stores,
.visual-hero--about,
.visual-hero--faq {
  min-height: 670px;
  background-position: center center;
  background-size: cover;
}

.visual-hero--about {
  background-size: cover;
}

.visual-hero--faq {
  background-image: url("../images/faq-hero.jpg");
}

.visual-hero--stores,
.visual-hero--about,
.visual-hero--news {
  background-color: #000;
}

.stores-page--reference,
.faq-page--reference,
.news-page--reference,
.about-page--reference {
  max-width: none;
  background: #000;
}

.stores-page--reference {
  padding: 156px 24px 156px;
}

.stores-page--reference.is-loading .store-grid,
.stores-page--reference.is-loading .stores-reference-copy {
  opacity: .42;
  transition: opacity 160ms ease;
}

.store-filter-form {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 104px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 5.6vw, 92px);
  align-items: start;
}

.store-filter-control {
  position: relative;
  z-index: 5;
}

.store-filter-control.is-open {
  z-index: 20;
}

.store-filter-toggle {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 34px 0 44px;
  border: 0;
  border-radius: 0;
  background: #ffffb9;
  color: #111;
  font-family: inherit;
  font-size: clamp(18px, 1.3vw, 24px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.store-filter-toggle svg {
  flex: 0 0 auto;
  color: #9e9e9e;
}

.store-filter-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  max-height: 500px;
  padding: 14px 18px 0;
  overflow: hidden;
  background: #ffffb9;
  color: #111;
  box-shadow: 0 28px 36px rgba(0, 0, 0, .46);
}

.store-filter-control.is-open .store-filter-panel {
  display: block;
}

.store-filter-search {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.store-filter-search input {
  width: 100%;
  height: 60px;
  padding: 0 72px 0 20px;
  border: 2px solid #202020;
  border-radius: 0;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: 18px;
  outline: 0;
}

.store-filter-search svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #111;
  pointer-events: none;
}

.store-filter-options {
  max-height: 330px;
  padding-bottom: 10px;
  overflow-y: auto;
  scrollbar-color: #050505 transparent;
  scrollbar-width: thin;
}

.store-filter-options::-webkit-scrollbar {
  width: 12px;
}

.store-filter-options::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #050505;
}

.store-filter-options a {
  display: block;
  padding: 18px 10px;
  color: #111;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 400;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.store-filter-options a:hover,
.store-filter-options a:focus,
.store-filter-options a.is-selected {
  background: #d9d9d9;
  outline: 0;
}

.store-filter-option-empty {
  display: block;
  padding: 18px 10px 26px;
  color: rgba(17, 17, 17, 0.6);
  font-size: 18px;
  text-transform: uppercase;
}

.stores-reference-copy {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 58px;
}

.stores-reference-copy h2 {
  margin: 0 0 58px;
  color: #fff;
  font-size: clamp(24px, 1.45vw, 30px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.stores-reference-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.15vw, 24px);
  line-height: 1.25;
}

.store-filter-reset {
  display: inline-flex;
  margin-top: 24px;
  color: #ffffb9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.stores-page--reference .store-grid {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(58px, 5vw, 86px) clamp(62px, 5.2vw, 90px);
}

.stores-page--reference .store-card {
  min-height: 104px;
  padding: 22px 26px;
  background: #9b9b98;
  border: 0;
  color: #111;
}

.stores-page--reference .store-card h2 {
  margin: 0 0 8px;
  color: #111;
  font-size: clamp(18px, 1.15vw, 24px);
  line-height: 1.12;
}

.stores-page--reference .store-card p,
.stores-page--reference .store-card .product-card__meta {
  margin: 0;
  color: rgba(0, 0, 0, .72);
  font-size: 14px;
  line-height: 1.35;
}

.stores-page--reference .store-card .button {
  display: none;
}

.stores-page--reference .empty-state,
.faq-page--reference .empty-state,
.news-page--reference .empty-state {
  width: min(850px, calc(100% - 48px));
  margin: 0 auto;
}

.stores-page--reference .store-empty-state {
  grid-column: 1 / -1;
  padding: 42px 36px;
  border: 1px solid rgba(255, 255, 185, 0.32);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.faq-page--reference {
  padding: 150px clamp(48px, 8.2vw, 158px) 174px;
}

.faq-reference-heading {
  max-width: 1460px;
  margin: 0 auto 86px;
}

.faq-reference-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.1vw, 60px);
  line-height: 1;
}

.faq-article-grid {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 76px 62px;
}

.faq-article-card {
  min-height: 220px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.faq-article-card h3 {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(21px, 1.35vw, 26px);
  line-height: 1.22;
}

.faq-article-card h3 a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.faq-article-card h3 a:hover,
.faq-article-card h3 a:focus {
  color: #ffffb9;
}

.faq-article-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.7;
}

.news-page--reference {
  padding: clamp(88px, 6.6vw, 128px) clamp(72px, 4.5vw, 172px) clamp(140px, 10.5vw, 202px);
}

.news-list-shell {
  position: relative;
  width: min(3440px, 100%);
  margin: 0 auto;
}

.news-list {
  display: grid;
  gap: clamp(56px, 4.2vw, 112px);
  max-height: clamp(680px, 54vw, 1460px);
  overflow-y: auto;
  padding-right: clamp(44px, 4.2vw, 88px);
  scrollbar-color: #ffffb9 transparent;
  scrollbar-width: thin;
}

.news-list:focus {
  outline: 1px solid rgba(255, 255, 185, 0.28);
  outline-offset: 10px;
}

.news-list::-webkit-scrollbar {
  width: 30px;
}

.news-list::-webkit-scrollbar-track {
  background: transparent;
}

.news-list::-webkit-scrollbar-thumb {
  border: 8px solid #000;
  border-radius: 18px;
  background: #ffffb9;
}

.news-list-card {
  display: grid;
  grid-template-columns: minmax(230px, 28%) minmax(0, 1fr) minmax(180px, auto);
  gap: clamp(48px, 5vw, 132px);
  align-items: center;
  min-height: clamp(320px, 22.4vw, 520px);
  padding: clamp(58px, 4.9vw, 116px) clamp(58px, 6.4vw, 136px);
  border-radius: clamp(16px, 1.45vw, 34px);
  background: #5d6264;
  color: rgba(255, 255, 255, 0.86);
}

.news-list-card__media {
  display: block;
  width: min(100%, 560px);
  justify-self: center;
  overflow: hidden;
  background: #d6d6d6;
}

.news-list-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.news-list-card__body {
  max-width: 960px;
}

.news-list-card__body h2 {
  margin: 0 0 clamp(22px, 2vw, 40px);
  color: #ffffb9;
  font-size: clamp(28px, 2.1vw, 52px);
  font-weight: 500;
  line-height: 1.18;
}

.news-list-card__body h2 a {
  color: inherit;
  text-decoration: none;
}

.news-list-card__body h2 a:hover,
.news-list-card__body h2 a:focus,
.news-list-card__link:hover,
.news-list-card__link:focus {
  color: #fff;
}

.news-list-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.16vw, 28px);
  line-height: 1.58;
}

.news-list-card__body strong {
  display: block;
  margin-top: clamp(26px, 2vw, 42px);
  color: #fff;
  font-size: clamp(17px, 1.16vw, 26px);
  font-weight: 800;
  line-height: 1.45;
}

.news-list-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  align-self: end;
  justify-self: end;
  color: #ffffb9;
  font-size: clamp(22px, 1.72vw, 42px);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.news-list-card__link-arrow {
  display: inline-flex;
  align-items: center;
  line-height: 0.82;
  transform: translateY(0.02em);
}

.news-pagination {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  overflow-x: auto;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.about-page--reference {
  position: relative;
  min-height: calc(100svh - var(--header));
  padding: clamp(78px, 6.2vw, 118px) clamp(68px, 8.4vw, 162px) clamp(92px, 7vw, 132px);
  color: #fff;
  overflow: hidden;
}

.about-story {
  max-width: 1700px;
  height: min(940px, calc(100svh - var(--header) - 150px));
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.about-story h2 {
  margin: 0 0 clamp(46px, 4.2vw, 82px);
  color: #fff;
  text-align: center;
  font-size: clamp(36px, 3vw, 58px);
  line-height: 1;
}

.about-story__body {
  color: #fff;
  font-size: clamp(20px, 1.7vw, 32px);
  line-height: 1.62;
  max-height: 100%;
  overflow-y: auto;
  padding-right: clamp(72px, 6.4vw, 124px);
  scrollbar-color: #ffffb9 transparent;
  scrollbar-width: thin;
}

.about-story__body:focus {
  outline: 1px solid rgba(255, 255, 185, 0.28);
  outline-offset: 10px;
}

.about-story__body::-webkit-scrollbar {
  width: 30px;
}

.about-story__body::-webkit-scrollbar-track {
  background: transparent;
}

.about-story__body::-webkit-scrollbar-thumb {
  border: 8px solid #000;
  border-radius: 18px;
  background: #ffffb9;
}

.about-story__body p {
  margin: 0 0 48px;
}

.about-story__body strong {
  font-weight: 400;
}

.about-story__center {
  margin-top: 130px !important;
  text-align: center;
}

.about-story__mark {
  margin: 96px 0 96px !important;
  text-align: center;
  letter-spacing: 8px;
}

.about-scroll-cue {
  display: none;
  position: absolute;
  right: clamp(54px, 5.5vw, 106px);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
}

.about-scroll-cue--top {
  top: 520px;
  border-bottom: 18px solid #ffffb9;
}

.about-scroll-cue--bottom {
  bottom: 292px;
  border-top: 18px solid #ffffb9;
}

.about-page--reference::after {
  content: "";
  display: none;
  position: absolute;
  right: clamp(62px, 5.8vw, 112px);
  top: 645px;
  width: 28px;
  height: 922px;
  border-radius: 18px;
  background: #ffffb9;
}

@media (max-width: 1600px) {
.visual-hero {
    background-size: cover;
  }

.page-hero {
    min-height: 560px;
    padding-top: 82px;
  }

.visual-hero--text {
    min-height: 560px;
    padding: 112px 78px 76px;
  }

.product-browser--reference {
    padding: 82px 84px 118px;
  }
}

@media (max-width: 1100px) {
.filter-row,
.card-grid--products,
.card-grid--news,
.store-grid,
.support-card-grid,
.product-detail,
.contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.software-download-card {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
  }

.software-download-card__media {
    min-height: 220px;
  }

.software-download-card__body {
    padding: 34px 4px 12px;
  }

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

.product-browser--reference .filter-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

.filter-panel {
    padding: 42px 40px;
  }

.product-filter-head {
    flex-direction: column;
  }

.product-category-filter {
    width: min(100%, 420px);
  }

.filter-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 32px;
  }
}

@media (max-width: 720px) {
:root {
    --header: 68px;
  }

.page-hero h1 {
    font-size: 46px;
  }

.section,
.page-hero,
.product-detail {
    padding-left: 22px;
    padding-right: 22px;
  }

.page-hero {
    min-height: 390px;
    padding-top: 120px;
    padding-bottom: 56px;
  }

.visual-hero--text {
    min-height: 520px;
    padding: 132px 22px 56px;
  }

.visual-hero--text h1 {
    font-size: 44px;
  }

.software-page--reference,
.faq-page--reference,
.support-page {
    padding: 68px 22px 88px;
  }

.filter-row,
.card-grid--products,
.card-grid--news,
.store-grid,
.support-card-grid,
.product-detail,
.contact-layout {
    grid-template-columns: 1fr;
  }

.software-download-card {
    min-height: 0;
    padding: 18px;
  }

.software-download-card__media {
    min-height: 176px;
  }

.software-download-card__body {
    padding: 26px 2px 4px;
  }

.software-download-card__actions {
    margin-top: 34px;
  }

.button--light,
.button--ghost-light {
    width: 100%;
  }

.software-download-card .button--light {
    width: auto;
    min-width: 92px;
  }

.support-card {
    min-height: 250px;
    padding: 32px 26px;
  }

.support-card span {
    margin-bottom: 44px;
  }

.contact-page--reference {
    padding: 70px 22px 110px;
  }

.contact-intro {
    margin-bottom: 58px;
  }

.contact-form--reference {
    gap: 30px;
  }

.contact-form--reference input,
.contact-form--reference select {
    min-height: 72px;
    border-radius: 16px;
    padding: 0 24px;
    font-size: 18px;
  }

.contact-form--reference select {
    background-position:
      calc(100% - 34px) 50%,
      calc(100% - 24px) 50%;
    background-size: 10px 10px, 10px 10px;
    padding-right: 58px;
  }

.contact-form--reference textarea {
    min-height: 220px;
    border-radius: 16px;
    padding: 24px;
    font-size: 18px;
  }

.contact-form__label {
    margin: 0 0 -14px;
    font-size: 14px;
  }

.contact-form__submit {
    width: 100%;
    min-height: 72px;
    border-radius: 16px;
  }

.faq-page--reference .section__header h2 {
    font-size: 38px;
  }

.faq-page--reference .faq-list {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

.product-browser--reference .filter-row {
    grid-template-columns: 1fr;
  }

.spec-heading h2 {
    font-size: 21px;
  }

.filter-panel {
    min-height: 0;
    padding: 30px 22px;
  }

.product-category-filter,
.product-category-filter select {
    width: 100%;
  }

.filter-options {
    grid-template-columns: 1fr;
  }

.filter-check {
    font-size: 19px;
  }

.product-detail {
    padding-top: 108px;
  }

.product-detail__media {
    min-height: 320px;
  }
}

@media (max-width: 1600px) {
.visual-hero--product,
.visual-hero--software,
.visual-hero--support,
.visual-hero--contact,
.visual-hero--news,
.visual-hero--stores,
.visual-hero--about,
.visual-hero--faq {
    min-height: 640px;
    background-position: center center;
    background-size: cover;
  }

.stores-page--reference {
    padding-top: 128px;
  }

.faq-page--reference {
    padding-top: 118px;
  }

.about-page--reference {
    padding-top: 118px;
  }

.about-story {
    height: min(820px, calc(100svh - var(--header) - 132px));
  }

.about-story h2 {
    margin-bottom: clamp(42px, 4vw, 72px);
  }

.about-page--reference::after,
.about-scroll-cue {
    display: none;
  }

.visual-hero--about {
    background-size: cover;
  }
}

@media (max-width: 1100px) {
.visual-hero--product,
.visual-hero--software,
.visual-hero--support,
.visual-hero--contact,
.visual-hero--news,
.visual-hero--stores,
.visual-hero--about,
.visual-hero--faq {
    min-height: 520px;
    background-position: center center;
    background-size: cover;
  }

.visual-hero--about {
    background-size: cover;
  }

.store-filter-form,
.stores-reference-copy,
.stores-page--reference .store-grid,
.stores-page--reference .empty-state,
.faq-page--reference .empty-state,
.news-page--reference .empty-state {
    width: min(100%, 760px);
  }

.store-filter-form {
    grid-template-columns: 1fr;
    gap: 34px;
  }

.faq-article-grid,
.news-feature-slide {
    grid-template-columns: 1fr;
  }

.news-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

.news-list-card {
    grid-template-columns: minmax(190px, 34%) minmax(0, 1fr);
    gap: 28px;
    padding: 34px;
  }

.news-list-card__link {
    grid-column: 2;
    justify-self: start;
  }

.about-story__body {
    font-size: 26px;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

.about-story {
    display: block;
    height: auto;
  }

.product-detail--reference {
    padding: calc(var(--header) + 36px) 28px 0;
  }

.product-detail__hero,
.product-story--feature,
.product-story--stats {
    grid-template-columns: 1fr;
  }

.product-detail--reference .product-detail__content {
    order: -1;
    padding-top: 0;
  }

.product-story--image-right .product-story__image {
    order: 0;
  }

.product-detail--reference .product-detail__media,
.product-detail__gallery {
    min-height: 500px;
  }

.product-detail__gallery {
    transform: none;
  }

.product-detail__thumb-rail {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 18px;
    transform: none;
  }

.product-detail__thumb-arrow {
    display: none;
  }

.product-detail__thumbs {
    display: flex;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }

.product-detail__thumbs button {
    flex: 0 0 76px;
    width: 76px;
  }

.product-story--feature,
.product-story--stats {
    padding: 46px 28px;
  }

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

@media (max-width: 720px) {
.visual-hero--product,
.visual-hero--software,
.visual-hero--support,
.visual-hero--contact,
.visual-hero--news,
.visual-hero--stores,
.visual-hero--about,
.visual-hero--faq {
    min-height: calc(var(--header) + 330px);
    background-position: center center;
    background-size: cover;
  }

.visual-hero--about {
    background-size: cover;
  }

.stores-page--reference,
.faq-page--reference,
.news-page--reference,
.about-page--reference {
    padding-left: 22px;
    padding-right: 22px;
  }

.product-detail--reference {
    padding: calc(var(--header) + 24px) 22px 0;
  }

.product-detail__hero {
    gap: 34px;
  }

.product-detail--reference h1 {
    font-size: 58px;
  }

.product-detail--reference .lead {
    max-width: 100%;
    min-height: 60px;
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.58;
  }

.product-detail--reference .entry-content {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
  }

.product-detail--reference .product-detail__media,
.product-detail__gallery {
    min-height: 330px;
  }

.product-detail__actions {
    margin-top: 34px;
  }

.product-detail__actions .button {
    width: 100%;
    min-height: 50px;
  }

.product-stories {
    margin-top: 0;
    gap: 0;
  }

.product-story h2 {
    font-size: 32px;
  }

.product-story--feature,
.product-story--stats,
.product-story--banner {
    padding: 32px 20px;
  }

.product-story__image {
    min-height: 240px;
  }

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

.product-specifications {
    margin-top: 0;
    padding: 54px 0 82px;
  }

.product-specifications h2 {
    margin-bottom: 32px;
  }

.product-spec-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

.stores-page--reference {
    padding-top: 72px;
  }

.store-filter-form {
    gap: 28px;
    margin-bottom: 78px;
  }

.store-filter-toggle {
    min-height: 64px;
    padding: 0 22px;
    font-size: 16px;
  }

.store-filter-panel {
    padding: 12px 12px 0;
  }

.store-filter-search input {
    height: 54px;
    padding-right: 54px;
    font-size: 16px;
  }

.store-filter-options {
    max-height: 260px;
  }

.store-filter-options a {
    padding: 14px 8px;
    font-size: 18px;
  }

.stores-reference-copy {
    margin-bottom: 42px;
  }

.stores-reference-copy h2 {
    margin-bottom: 34px;
    text-align: left;
  }

.stores-page--reference .store-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

.faq-article-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

.news-page--reference {
    padding-top: 82px;
  }

.news-list {
    gap: 28px;
  }

.news-list-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

.news-list-card__media {
    width: min(100%, 300px);
    justify-self: start;
  }

.news-list-card__media img {
    aspect-ratio: 4 / 3;
  }

.news-list-card__link {
    grid-column: auto;
    justify-self: start;
  }

.news-feature-carousel {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

.news-feature-slide {
    gap: 34px;
  }

.news-feature-slide__media img {
    aspect-ratio: 4 / 3;
  }

.news-feature-slide__body {
    padding-top: 0;
  }

.news-feature-carousel__controls {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 0 26px;
    order: -1;
  }

.news-feature-carousel__link {
    position: static;
    display: inline-block;
    margin-top: 34px;
  }

.about-page--reference {
    padding-top: 82px;
    padding-bottom: 118px;
  }

.about-story h2 {
    margin-bottom: 54px;
    font-size: 42px;
  }

.about-story__body {
    font-size: 24px;
    line-height: 1.52;
  }

.about-story__center {
    margin-top: 70px !important;
  }

.about-story__mark {
    margin: 54px 0 !important;
  }
}

@media (max-width: 1100px) {
.product-detail--reference {
    padding: calc(var(--header) + 42px) 40px 0;
  }

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

.product-detail--reference .product-detail__media,
.product-detail__gallery {
    min-height: 500px;
  }

.product-detail--reference h1 {
    font-size: 62px;
  }

.product-spec-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 720px) {
.product-detail--reference {
    padding: calc(var(--header) + 24px) 22px 0;
  }

.product-breadcrumb {
    margin-bottom: 28px;
    font-size: 12px;
  }

.product-detail__hero {
    gap: 34px;
  }

.product-detail--reference .product-detail__media,
.product-detail__gallery {
    min-height: 300px;
  }

.product-detail--reference h1 {
    font-size: 46px;
    white-space: normal;
  }

.product-detail--reference .lead {
    max-width: 100%;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.58;
  }

.product-detail--reference .entry-content {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
  }

.product-detail__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

.product-detail__actions .button {
    width: 100%;
  }

.product-detail__actions .product-detail__spec-button {
    width: max-content;
  }

.product-specifications {
    margin-top: 0;
    padding: 54px 0 92px;
  }

.product-specifications h2 {
    font-size: 34px;
  }

.product-spec-row {
    padding: 22px 0;
  }
}
