/*
  SA-1000 产品正文 V2
  只作用于 .sa1000-page 与 .sa1000-subnav，不修改首页公共 Header / Footer。
  建议在 site-common.css 之后引入。
*/

:root {
  --sa1000-header-offset: 96px;
  --sa1000-subnav-height: 52px;
  --sa1000-container: 1240px;
  --sa1000-red: #e60021;
  --sa1000-red-dark: #bc001a;
  --sa1000-dark: #030303;
  --sa1000-dark-soft: #141414;
  --sa1000-light: #f7f7f5;
  --sa1000-white: #ffffff;
  --sa1000-radius: 8px;
  --sa1000-space: clamp(80px, 8vw, 132px);
  --sa1000-font: var(--font-sans);
  --sa1000-overview-columns: minmax(320px,.72fr) minmax(620px,1.18fr);
  --sa1000-overview-gap: clamp(62px,7vw,112px);
}

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

.sa1000-subnav,
.sa1000-page,
.sa1000-page * {
  box-sizing: border-box;
}

.sa1000-subnav,
.sa1000-page {
  font-family: var(--sa1000-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.sa1000-page a,
.sa1000-subnav a {
  color: inherit;
  text-decoration: none;
}

.sa1000-subnav {
  --sa1000-subnav-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sa1000-subnav-radius: 10px;
  --sa1000-subnav-cta-height: 42px;
  position: sticky;
  top: calc(var(--sa1000-header-offset) + 12px);
  z-index: 90;
  width: min(calc(100% - 64px), var(--sa1000-container));
  margin: 16px auto 0;
  padding: 0;
  color: rgba(255,255,255,.94);
  background: transparent;
  border: 0;
  box-sizing: border-box;
}

.sa1000-subnav-theme-trigger {
  width: 100%;
  height: 1px;
  margin-top: -1px;
  opacity: 0;
  pointer-events: none;
}

.sa1000-subnav__inner {
  width: 100%;
  height: 100%;
  min-height: 40px;
  display: grid;
  grid-template-columns: var(--sa1000-overview-columns);
  column-gap: var(--sa1000-overview-gap);
  align-items: center;
  box-sizing: border-box;
}

.sa1000-subnav__spacer {
  min-width: 0;
}

.sa1000-subnav__content {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: var(--sa1000-subnav-height);
  display: flex;
  align-items: center;
  padding: 4px 8px 4px 18px;
  border-radius: var(--sa1000-subnav-radius);
  border: 1px solid transparent;
  box-sizing: border-box;
  transition:
    width 320ms var(--sa1000-subnav-ease),
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    color 240ms ease,
    backdrop-filter 280ms ease,
    -webkit-backdrop-filter 280ms ease,
    transform 260ms ease;
}

.sa1000-subnav__content::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1px 8px auto;
  height: 36%;
  border-radius: calc(var(--sa1000-subnav-radius) - 2px) calc(var(--sa1000-subnav-radius) - 2px) 50% 50%;
  background: linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,0));
  pointer-events: none;
  opacity: .38;
}

.sa1000-subnav.is-light-zone .sa1000-subnav__content::before {
  opacity: .48;
}

.sa1000-subnav:not(.is-ready) .sa1000-subnav__content,
.sa1000-subnav:not(.is-ready) .sa1000-subnav__links,
.sa1000-subnav:not(.is-ready) .sa1000-subnav__cta,
.sa1000-subnav:not(.is-ready) .sa1000-subnav__links > a {
  transition: none !important;
}

.sa1000-subnav.is-dark-zone .sa1000-subnav__content {
  background: linear-gradient(135deg,rgba(24,24,24,.78),rgba(8,8,8,.66));
  border-color: rgba(255,255,255,.17);
  box-shadow:
    0 18px 48px rgba(0,0,0,.34),
    0 5px 16px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.10);
  color: rgba(255,255,255,.66);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.sa1000-subnav.is-light-zone .sa1000-subnav__content {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(940px, 100%);
  background: linear-gradient(135deg,rgba(255,255,255,.38),rgba(255,255,255,.18));
  border-color: rgba(255,255,255,.72);
  box-shadow:
    0 12px 34px rgba(28,28,28,.10),
    inset 0 1px 0 rgba(255,255,255,.72);
  color: #626262;
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}

.sa1000-subnav__links {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: clamp(12px,1.15vw,22px);
  color: inherit;
  font-size: 15px;
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: .01em;
  box-sizing: border-box;
  transition: gap 320ms var(--sa1000-subnav-ease), color 260ms ease;
}

.sa1000-subnav.is-light-zone .sa1000-subnav__links {
  gap: clamp(14px,1.6vw,28px);
  color: inherit;
}

.sa1000-subnav__links > a:not(.sa1000-subnav__cta) {
  position: relative;
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  border-radius: 999px;
  background: transparent;
  box-sizing: border-box;
  transition:
    color .18s ease,
    background-color .18s ease;
}

.sa1000-subnav.is-dark-zone .sa1000-subnav__links > a:not(.sa1000-subnav__cta) {
  color: rgba(255,255,255,.62);
}

.sa1000-subnav__links > a:not(.sa1000-subnav__cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--sa1000-red);
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity .18s ease;
}

.sa1000-subnav.is-dark-zone .sa1000-subnav__links > a:not(.sa1000-subnav__cta):hover {
  color: rgba(255,255,255,.96);
  background: rgba(255,255,255,.045);
}

.sa1000-subnav.is-light-zone .sa1000-subnav__links > a:not(.sa1000-subnav__cta):hover {
  color: #1f1f1f;
  background: rgba(0,0,0,.035);
}

.sa1000-subnav__links > a.is-active,
.sa1000-subnav.is-dark-zone .sa1000-subnav__links > a.is-active,
.sa1000-subnav.is-light-zone .sa1000-subnav__links > a.is-active {
  color: var(--sa1000-red);
  background: transparent;
}

.sa1000-subnav__links > a.is-active:not(.sa1000-subnav__cta)::after,
.sa1000-subnav__links > a[aria-current="location"]:not(.sa1000-subnav__cta)::after {
  opacity: .82;
}

.sa1000-subnav__links > a:focus-visible {
  outline: 2px solid var(--sa1000-red);
  outline-offset: 3px;
}

.sa1000-subnav__cta {
  height: var(--sa1000-subnav-cta-height);
  min-height: var(--sa1000-subnav-cta-height);
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-left: auto;
  color: rgba(255,255,255,.94) !important;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 7px;
  font-size: 15px;
  font-weight: var(--fw-medium);
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
  box-shadow: none;
  transition:
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.sa1000-subnav__cta:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.48);
  box-shadow: none;
}

.sa1000-subnav.is-dark-zone .sa1000-subnav__cta {
  color: rgba(255,255,255,.94) !important;
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.sa1000-subnav.is-dark-zone .sa1000-subnav__cta:hover {
  color: #fff !important;
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.48);
}

.sa1000-subnav.is-light-zone .sa1000-subnav__cta {
  color: var(--sa1000-red) !important;
  background: rgba(255,255,255,.16);
  border-color: rgba(230,0,33,.28);
}

.sa1000-subnav.is-light-zone .sa1000-subnav__cta:hover {
  color: var(--sa1000-red-dark) !important;
  background: rgba(255,255,255,.28);
  border-color: rgba(230,0,33,.46);
}

.sa1000-subnav__cta span {
  transition: transform .18s ease;
}

.sa1000-subnav__cta:hover span {
  transform: translateX(3px);
}

.sa1000-subnav__cta:focus-visible {
  outline: 2px solid var(--sa1000-red);
  outline-offset: 3px;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .sa1000-subnav.is-dark-zone .sa1000-subnav__content {
    background: rgba(20,20,20,.94);
  }

  .sa1000-subnav.is-light-zone .sa1000-subnav__content {
    background: rgba(255,255,255,.97);
    border-color: rgba(20,20,20,.10);
  }
}

@media (hover: hover) and (pointer: fine) {
  .sa1000-subnav:hover .sa1000-subnav__content {
    transform: translateY(-2px);
  }

  .sa1000-subnav.is-light-zone:hover .sa1000-subnav__content {
    box-shadow:
      0 14px 36px rgba(28,28,28,.12),
      inset 0 1px 0 rgba(255,255,255,.82);
  }

  .sa1000-subnav.is-dark-zone:hover .sa1000-subnav__content {
    box-shadow:
      0 20px 52px rgba(0,0,0,.36),
      0 6px 18px rgba(0,0,0,.24),
      inset 0 1px 0 rgba(255,255,255,.13);
  }
}

.sa1000-page {
  color: rgba(15,15,15,.9);
  background: var(--sa1000-dark);
}

body.has-salang-site-nav .sa1000-page {
  padding-top: 0;
}

.sa1000-page [id] {
  scroll-margin-top: calc(var(--sa1000-header-offset) + var(--sa1000-subnav-height) + 28px);
}

.sa1000-eyebrow {
  margin: 0 0 20px;
  color: var(--sa1000-red);
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.sa1000-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.sa1000-btn {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 15px;
  font-weight: var(--fw-medium);
  letter-spacing: .01em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.sa1000-btn:hover { transform: translateY(-2px); }
.sa1000-btn--primary { color: #fff; background: var(--sa1000-red); }
.sa1000-btn--primary:hover { background: var(--sa1000-red-dark); }
.sa1000-btn--dark { color: rgba(255,255,255,.94); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.04); }
.sa1000-btn--dark:hover { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.08); }
.sa1000-btn--light { color: rgba(15,15,15,.88); border-color: rgba(0,0,0,.18); background: transparent; }
.sa1000-btn--light:hover { border-color: rgba(0,0,0,.34); background: rgba(0,0,0,.035); }

.sa1000-hero {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.94);
  background: var(--sa1000-dark);
}

.sa1000-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 660px;
  padding: 104px 0 94px;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  align-items: center;
}

.sa1000-hero__copy {
  width: 100%;
}

.sa1000-hero-title {
  width: 100%;
  max-width: none;
  margin: 0;
  font-family: var(--font-sans);
  color: rgba(255,255,255,.90);
}

.sa1000-hero-series {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,.96);
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: var(--fw-semibold);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.sa1000-hero-product-name {
  display: block;
  width: 100%;
  font-size: clamp(54px, 5.2vw, 86px);
  font-weight: var(--fw-light);
  line-height: 1.02;
  letter-spacing: -.045em;
  white-space: nowrap;
  color: rgba(255,255,255,.82);
}

.sa1000-hero__desc {
  margin: 34px 0 0;
  max-width: 700px;
  color: rgba(255,255,255,.62);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.9;
  font-weight: var(--fw-light);
}

.sa1000-model-quick {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sa1000-model-quick__label {
  color: rgba(255,255,255,.48);
  font-size: 12px;
  line-height: 1.4;
  font-weight: var(--fw-medium);
  letter-spacing: .12em;
}

.sa1000-model-quick__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sa1000-model-quick__button {
  min-height: 36px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 6px;
  background: transparent;
  font-size: 13px;
  line-height: 1;
  font-weight: var(--fw-medium);
  letter-spacing: .03em;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.sa1000-model-quick__button:hover {
  color: #fff;
  border-color: rgba(255,255,255,.44);
  transform: translateY(-1px);
}

.sa1000-model-quick__button.is-active {
  color: rgba(255,255,255,.72);
  border-color: rgba(255,255,255,.24);
  background: transparent;
}

.sa1000-model-quick__button.is-active:hover {
  color: #fff;
  border-color: rgba(255,255,255,.44);
  background: transparent;
}

.sa1000-overview {
  color: rgba(255,255,255,.94);
  background: var(--sa1000-dark);
}

.sa1000-overview__layout {
  padding: var(--sa1000-space) 0;
  display: grid;
  grid-template-columns: var(--sa1000-overview-columns);
  align-items: start;
  gap: var(--sa1000-overview-gap);
}

.sa1000-subnav + .sa1000-overview .sa1000-overview__layout {
  padding-top: clamp(28px,2.5vw,40px);
}

.sa1000-subnav + .sa1000-overview .sa1000-overview-block--positioning {
  padding-top: 0;
}

.sa1000-sticky-product {
  position: sticky;
  top: calc(var(--sa1000-header-offset) + var(--sa1000-subnav-height) + 38px);
  align-self: start;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.sa1000-product-visual {
  width: min(100%, 480px);
  aspect-ratio: 3 / 4;
  max-height: min(72vh, 680px);
  min-height: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sa1000-product-visual::before,
.sa1000-product-visual::after {
  background: none !important;
  border: 0 !important;
}

.sa1000-product-visual::after {
  content: none;
}

.sa1000-product-visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  background: transparent;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  opacity: 1;
  filter: drop-shadow(0 30px 38px rgba(0,0,0,.48));
  z-index: 1;
}

.sa1000-product-visual.is-placeholder img { display: none; }
.sa1000-product-visual.is-placeholder::before {
  content: "请替换产品透明 PNG\A ../../assets/images/products/sa-1000/sa-1000-main.png";
  white-space: pre;
  color: rgba(255,255,255,.38);
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
}

.sa1000-overview-block + .sa1000-overview-block { margin-top: 88px; }

.sa1000-overview-block--positioning {
  padding: 10px 0 0;
}

.sa1000-overview-block--positioning .sa1000-capability-section__desc + .sa1000-capability-section__desc {
  margin-top: 14px;
}

.sa1000-overview-block--positioning + .sa1000-overview-block {
  margin-top: 72px;
}

.sa1000-dark-title {
  margin: 0;
  font-size: clamp(40px,4vw,64px);
  line-height: 1.15;
  font-weight: var(--fw-light);
  letter-spacing: -.05em;
  color: rgba(255,255,255,.84);
}

.sa1000-dark-copy {
  margin: 24px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 17px;
  line-height: 1.95;
  font-weight: var(--fw-light);
}

.sa1000-metric-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.12);
}

.sa1000-metric-grid article {
  min-height: 180px;
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.025);
}

.sa1000-metric-grid span { color: var(--sa1000-red); font-size: 11px; letter-spacing: .12em; }
.sa1000-metric-grid strong { display: block; margin-top: 26px; font-size: clamp(24px,2.4vw,38px); line-height: 1.2; font-weight: var(--fw-medium); letter-spacing: -.035em; color: rgba(255,255,255,.92); }
.sa1000-metric-grid p { margin: 12px 0 0; color: rgba(255,255,255,.42); font-size: 13px; line-height: 1.75; font-weight: var(--fw-light); }

.sa1000-metric-grid--core {
  width: min(100%, 620px);
  margin-top: 30px;
}

.sa1000-metric-grid--core article {
  min-height: 136px;
  padding: 20px 22px;
}

.sa1000-metric-grid--core strong {
  margin-top: 18px;
  font-size: clamp(22px,2.1vw,34px);
  overflow-wrap: anywhere;
}

.sa1000-metric-grid--core p {
  margin-top: 8px;
}

.sa1000-capability-section__head {
  max-width: 760px;
}

.sa1000-capability-section__index {
  display: block;
  margin-bottom: 16px;
  color: var(--sa1000-red);
  font-size: 11px;
  line-height: 1.4;
  font-weight: var(--fw-semibold);
  letter-spacing: .12em;
}

.sa1000-capability-section__title {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(32px,3.4vw,52px);
  line-height: 1.16;
  font-weight: var(--fw-light);
  letter-spacing: -.05em;
}

.sa1000-capability-section__desc {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.52);
  font-size: 16px;
  line-height: 1.9;
  font-weight: var(--fw-light);
}

.sa1000-scan-scale {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  align-items: end;
  gap: 22px;
  padding-bottom: 8px;
}

.sa1000-scan-scale__item {
  display: grid;
  align-items: end;
  gap: 18px;
}

.sa1000-scan-scale__square {
  width: var(--sa1000-square);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.26);
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.08) 1px, transparent 1px),
    rgba(255,255,255,.018);
  background-size: 16px 16px;
}

.sa1000-scan-scale__item--sm { --sa1000-square: 82px; }
.sa1000-scan-scale__item--md { --sa1000-square: 110px; }
.sa1000-scan-scale__item--lg { --sa1000-square: 138px; }

.sa1000-scan-scale strong,
.sa1000-scan-scale span {
  display: block;
}

.sa1000-scan-scale strong {
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.35;
  font-weight: var(--fw-medium);
}

.sa1000-scan-scale span {
  margin-top: 6px;
  color: var(--sa1000-red);
  font-size: clamp(24px,2.2vw,34px);
  line-height: 1.16;
  font-weight: var(--fw-medium);
  letter-spacing: -.035em;
}

.sa1000-imaging-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.12);
}

.sa1000-imaging-card {
  min-height: 280px;
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
}

.sa1000-imaging-card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 32% 34%, rgba(230,0,33,.24), transparent 22%),
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.018));
}

.sa1000-imaging-card__visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(115deg, transparent 44%, rgba(255,255,255,.14) 45%, transparent 46%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 12px);
}

.sa1000-imaging-card__visual span {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  line-height: 1.4;
  font-weight: var(--fw-medium);
  letter-spacing: .18em;
}

.sa1000-imaging-card__title {
  margin: 18px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.35;
  font-weight: var(--fw-medium);
  letter-spacing: -.025em;
}

.sa1000-imaging-card p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.46);
  font-size: 14px;
  line-height: 1.75;
  font-weight: var(--fw-light);
}

.sa1000-angle-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.12);
}

.sa1000-angle-card {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
}

.sa1000-angle-diagram {
  position: relative;
  height: 150px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}

.sa1000-angle-diagram__surface,
.sa1000-angle-diagram__beam {
  position: absolute;
  display: block;
}

.sa1000-angle-diagram__surface {
  left: 14%;
  right: 14%;
  bottom: 38px;
  height: 1px;
  background: rgba(255,255,255,.42);
}

.sa1000-angle-diagram--matte .sa1000-angle-diagram__surface {
  height: 10px;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.34) 0 2px, transparent 2px 6px);
}

.sa1000-angle-diagram__beam {
  left: 50%;
  bottom: 38px;
  width: 1px;
  height: 82px;
  transform-origin: bottom;
  background: rgba(255,255,255,.72);
}

.sa1000-angle-diagram__beam--left { transform: rotate(-20deg); }
.sa1000-angle-diagram__beam--right { transform: rotate(20deg); }
.sa1000-angle-diagram__beam--wide-left { transform: rotate(-80deg); background: rgba(230,0,33,.78); }
.sa1000-angle-diagram__beam--wide-right { transform: rotate(80deg); background: rgba(230,0,33,.78); }

.sa1000-angle-card span {
  display: block;
  color: rgba(255,255,255,.50);
  font-size: 13px;
  line-height: 1.5;
  font-weight: var(--fw-light);
}

.sa1000-angle-card strong {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.92);
  font-size: clamp(30px,3vw,46px);
  line-height: 1.1;
  font-weight: var(--fw-medium);
  letter-spacing: -.04em;
}

.sa1000-angle-card p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.42);
  font-size: 13px;
  line-height: 1.75;
  font-weight: var(--fw-light);
}

.sa1000-software-layout {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(260px,.9fr) minmax(320px,1.1fr);
  gap: 28px;
  align-items: start;
}

.sa1000-software-screen {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.025);
}

.sa1000-software-screen__bar {
  height: 18px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(90deg, rgba(230,0,33,.74) 0 52px, rgba(255,255,255,.14) 52px 130px, transparent 130px);
}

.sa1000-software-screen__viewport {
  min-height: 210px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 58% 44%, rgba(230,0,33,.18), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.018));
}

.sa1000-software-screen__viewport span {
  display: grid;
  place-items: center;
  min-height: 70px;
  color: rgba(255,255,255,.48);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 10px;
  line-height: 1.4;
  font-weight: var(--fw-medium);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sa1000-software-screen__viewport span:nth-child(2) {
  grid-row: span 2;
  border-color: rgba(230,0,33,.52);
}

.sa1000-software-screen__panel {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.sa1000-software-screen__panel span {
  display: block;
  height: 10px;
  background: rgba(255,255,255,.10);
}

.sa1000-software-list {
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.12);
}

.sa1000-software-list > div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.sa1000-software-list dt {
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.6;
  font-weight: var(--fw-medium);
}

.sa1000-software-list dd {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 14px;
  line-height: 1.8;
  font-weight: var(--fw-light);
}

.sa1000-spec-list {
  margin: 34px 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
}

.sa1000-spec-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.sa1000-spec-list dt { color: rgba(255,255,255,.46); font-size: 13px; font-weight: var(--fw-light); }
.sa1000-spec-list dd { margin: 0; color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.75; font-weight: var(--fw-light); }
.sa1000-note { margin: 18px 0 0; color: rgba(255,255,255,.32); font-size: 12px; line-height: 1.7; }

.sa1000-text-link {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: var(--fw-medium);
  transition: color .2s ease;
}
.sa1000-text-link:hover { color: var(--sa1000-red); }

.sa1000-detail-section {
  padding: var(--sa1000-space) 0;
  background: var(--sa1000-white);
}

.sa1000-detail-block {
  display: grid;
  grid-template-columns: minmax(0,.52fr) minmax(0,.48fr);
  align-items: start;
  gap: clamp(52px,6vw,96px);
}

.sa1000-detail-block--reverse {
  grid-template-columns: minmax(0,.6fr) minmax(0,.4fr);
}

.sa1000-detail-block + .sa1000-detail-block {
  margin-top: clamp(120px,10vw,180px);
}

.sa1000-detail-gallery {
  position: relative;
  min-width: 0;
  margin-top: clamp(20px,2.3vw,34px);
}

.sa1000-detail-gallery__viewport {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sa1000-detail-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(22px,3vw,42px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .42s ease, visibility .42s ease, transform .42s ease;
  transform: scale(1);
}

.sa1000-detail-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: scale(1.006);
}

.sa1000-detail-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: rgba(0,0,0,.38);
  background: transparent;
  font-size: 14px;
  line-height: 1.7;
  font-weight: var(--fw-light);
  text-align: center;
}

.sa1000-detail-item:focus-visible {
  outline: 2px solid var(--sa1000-red);
  outline-offset: 3px;
}

.sa1000-detail__index {
  color: var(--sa1000-red);
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: .2em;
}

.sa1000-detail__title {
  margin: 18px 0 0;
  max-width: 560px;
  color: rgba(0,0,0,.78);
  font-size: clamp(32px,3.4vw,52px);
  line-height: 1.16;
  font-weight: var(--fw-light);
  letter-spacing: -.05em;
  overflow-wrap: normal;
  word-break: keep-all;
}

.sa1000-detail-block--reverse .sa1000-detail__title {
  max-width: none;
  white-space: nowrap;
}

.sa1000-detail__desc {
  margin: 26px 0 0;
  max-width: 560px;
  color: rgba(0,0,0,.56);
  font-size: 17px;
  line-height: 1.9;
  font-weight: var(--fw-light);
}

.sa1000-detail-list {
  margin: 34px 0 0;
  max-width: 560px;
  border-top: 1px solid #e8e8e8;
}

.sa1000-detail-item {
  width: 100%;
  margin: 0;
  padding: 18px 0;
  display: grid;
  gap: 8px;
  border: 0;
  border-bottom: 1px solid #e8e8e8;
  color: inherit;
  background: transparent;
  font-family: var(--sa1000-font);
  text-align: left;
  cursor: pointer;
}

.sa1000-detail-item span {
  color: rgba(0,0,0,.82);
  font-size: 18px;
  line-height: 1.35;
  font-weight: var(--fw-semibold);
  letter-spacing: -.025em;
  transition: color .2s ease;
}

.sa1000-detail-item small {
  color: rgba(0,0,0,.54);
  font-size: 15px;
  line-height: 1.75;
  font-weight: var(--fw-light);
}

.sa1000-detail-item.is-active span,
.sa1000-detail-item:hover span {
  color: var(--sa1000-red);
}

.sa1000-models,
.sa1000-model-specs {
  padding: var(--sa1000-space) 0;
  background: var(--sa1000-white);
}

.sa1000-model-specs {
  padding: clamp(88px,8vw,128px) 0;
  background: var(--sa1000-light);
}

.sa1000-specs-inner {
  width: min(calc(100% - 64px), 1080px);
}

.sa1000-model-specs .sa1000-section-head {
  max-width: none;
  margin-bottom: clamp(28px,3.6vw,44px);
}

.sa1000-model-specs .sa1000-light-copy {
  max-width: none;
}

.sa1000-section-head {
  max-width: 820px;
  margin-bottom: clamp(40px,5vw,72px);
}

.sa1000-light-title {
  margin: 0;
  color: rgba(0,0,0,.82);
  font-size: clamp(40px,4.2vw,72px);
  line-height: 1.18;
  font-weight: var(--fw-light);
  letter-spacing: -.055em;
}

.sa1000-light-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(0,0,0,.50);
  font-size: 17px;
  line-height: 1.9;
  font-weight: var(--fw-light);
}

.sa1000-model-lineup__head {
  max-width: 920px;
}

.sa1000-model-lineup__head .sa1000-light-copy {
  max-width: 920px;
}

.sa1000-model-lineup__subtitle {
  margin: 16px 0 0;
  color: rgba(0,0,0,.74);
  font-size: clamp(22px,2.2vw,32px);
  line-height: 1.28;
  font-weight: var(--fw-regular);
  letter-spacing: -.04em;
}

.sa1000-model-lineup {
  display: grid;
  grid-template-columns: minmax(0,.44fr) minmax(0,.56fr);
  align-items: start;
  column-gap: clamp(56px,6vw,96px);
  row-gap: 36px;
}

.sa1000-model-lineup__visual {
  margin: 0;
  max-width: 620px;
}

.sa1000-model-lineup__media {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #050505;
  padding: clamp(18px,3vw,42px);
}

.sa1000-model-lineup__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.sa1000-model-lineup__media.is-placeholder img { display: none; }

.sa1000-model-lineup__media.is-placeholder::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.42);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.sa1000-model-lineup__visual figcaption {
  margin-top: 14px;
  color: rgba(0,0,0,.42);
  font-size: 13px;
  line-height: 1.7;
  font-weight: var(--fw-light);
}

.sa1000-model-option {
  position: relative;
  scroll-margin-top: calc(var(--sa1000-header-offset) + var(--sa1000-subnav-height) + 36px);
}

.sa1000-model-lineup__visual--upgrade,
.sa1000-model-option--upgrade {
  padding-top: 36px;
  border-top: 1px solid #e5e5e5;
}

.sa1000-model-option--upgrade::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 46px;
  height: 1px;
  background: var(--sa1000-red);
}

.sa1000-model-option__upgrade {
  display: block;
  margin-bottom: 12px;
  color: var(--sa1000-red);
  font-size: 12px;
  line-height: 1.4;
  font-weight: var(--fw-medium);
  letter-spacing: .18em;
}

.sa1000-model-option__head h3 {
  margin: 0;
  color: rgba(0,0,0,.84);
  font-size: clamp(30px,2.8vw,36px);
  line-height: 1.12;
  font-weight: var(--fw-medium);
  letter-spacing: -.04em;
}

.sa1000-model-option--upgrade .sa1000-model-option__head h3 {
  font-weight: var(--fw-semibold);
}

.sa1000-model-option__head p {
  margin: 12px 0 0;
  color: rgba(0,0,0,.76);
  font-size: clamp(20px,2vw,25px);
  line-height: 1.35;
  font-weight: var(--fw-medium);
  letter-spacing: -.035em;
}

.sa1000-model-option__copy {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.sa1000-model-option__copy p {
  margin: 0;
  color: rgba(0,0,0,.54);
  font-size: 15px;
  line-height: 1.85;
  font-weight: var(--fw-light);
  letter-spacing: -.005em;
}

.sa1000-model-option__data {
  margin: 22px 0 0;
  color: rgba(0,0,0,.82);
  font-size: 17px;
  line-height: 1.55;
  font-weight: var(--fw-medium);
}

.sa1000-model-option__data span {
  margin: 0 10px;
  color: rgba(0,0,0,.32);
}

.sa1000-model-option .sa1000-btn {
  width: auto;
  align-self: flex-start;
  margin-top: 22px;
}

.sa1000-specs-table-wrap {
  width: 100%;
  margin-inline: auto;
  overflow-x: auto;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.sa1000-specs-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.sa1000-specs-table th,
.sa1000-specs-table td {
  padding: 14px 20px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.sa1000-specs-table th:last-child,
.sa1000-specs-table td:last-child {
  border-right: 0;
}

.sa1000-specs-table thead th {
  padding-block: 18px;
  color: rgba(255,255,255,.90);
  background: #121212;
  font-size: 15px;
  line-height: 1.45;
  font-weight: var(--fw-medium);
  letter-spacing: .03em;
}

.sa1000-specs-table th[data-model="sa-1100"] {
  box-shadow: inset 0 -2px 0 rgba(230,0,18,.8);
}

.sa1000-specs-table thead th:first-child,
.sa1000-specs-table tbody th {
  width: 36%;
}

.sa1000-specs-table tbody th {
  color: rgba(0,0,0,.72);
  background: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.5;
  font-weight: var(--fw-medium);
}

.sa1000-specs-table tbody td {
  color: rgba(0,0,0,.60);
  background: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 1.55;
  font-weight: var(--fw-regular);
  font-variant-numeric: tabular-nums;
}

.sa1000-specs-table tbody tr:nth-child(even):not(.sa1000-specs-table__group) td,
.sa1000-specs-table tbody tr:nth-child(even):not(.sa1000-specs-table__group) th {
  background: rgba(247,247,245,.72);
}

.sa1000-specs-table tbody tr:not(.sa1000-specs-table__group) {
  transition: background .18s ease;
}

.sa1000-specs-table tbody tr:not(.sa1000-specs-table__group):hover td,
.sa1000-specs-table tbody tr:not(.sa1000-specs-table__group):hover th {
  background: #f7f7f5;
}

.sa1000-specs-table__diff td {
  color: rgba(0,0,0,.82);
  font-weight: var(--fw-medium);
}

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

.sa1000-specs-table__group th {
  padding: 12px 20px;
  color: rgba(0,0,0,.68);
  background: #f0f0ee !important;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  font-weight: var(--fw-medium);
  letter-spacing: .02em;
}

.sa1000-specs-table__shared {
  color: rgba(0,0,0,.58);
}

.sa1000-specs-lines {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.sa1000-specs-lines span {
  display: block;
  line-height: 1.55;
}

.sa1000-applications {
  color: rgba(255,255,255,.94);
  background: #111;
  padding: var(--sa1000-space) 0;
}

.sa1000-applications__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.sa1000-application-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.12);
}

.sa1000-application-grid article {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  transition: transform .18s ease, background .18s ease;
}
.sa1000-application-grid article:hover { background: rgba(255,255,255,.055); transform: translateY(-4px); }
.sa1000-application-grid h3 { margin: 72px 0 0; color: rgba(255,255,255,.90); font-size: 24px; font-weight: var(--fw-semibold); letter-spacing: -.025em; }
.sa1000-application-grid p { margin: 12px 0 0; color: rgba(255,255,255,.42); font-size: 14px; line-height: 1.75; font-weight: var(--fw-light); }

.sa1000-cta {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.94);
  background: radial-gradient(circle at 82% 44%,rgba(230,0,33,.18),transparent 24%),#080808;
  padding: clamp(76px,8vw,116px) 0;
}

.sa1000-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}

.sa1000-cta h2 { margin: 0; font-size: clamp(40px,4vw,64px); line-height: 1.16; font-weight: var(--fw-light); letter-spacing: -.05em; color: rgba(255,255,255,.84); }
.sa1000-cta p { margin: 20px 0 0; max-width: 760px; color: rgba(255,255,255,.56); font-size: 17px; line-height: 1.9; font-weight: var(--fw-light); }

@media (max-width: 1100px) {
  :root { --sa1000-overview-columns: .68fr 1.22fr; --sa1000-overview-gap: 52px; }
  .sa1000-subnav__links { gap: 12px; }
  .sa1000-subnav__links > a:not(.sa1000-subnav__cta) { padding-inline: 10px; }
  .sa1000-subnav__cta { padding-inline: 18px; gap: 10px; }
  .sa1000-specs-table { min-width: 760px; }
  .sa1000-imaging-grid { grid-template-columns: 1fr; }
  .sa1000-software-layout { grid-template-columns: 1fr; }
  .sa1000-application-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 1024px) {
  .sa1000-hero-product-name {
    white-space: normal;
  }
  .sa1000-subnav .sa1000-subnav__content {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(940px, 100%);
  }
  .sa1000-subnav.is-light-zone .sa1000-subnav__content {
    width: min(940px, 100%);
  }
}

@media (max-width: 860px) {
  :root { --sa1000-header-offset: 72px; --sa1000-subnav-height: 48px; --sa1000-overview-columns: minmax(0,1fr); --sa1000-overview-gap: 0; }
  .sa1000-container { width: min(calc(100% - 36px), var(--sa1000-container)); }
  .sa1000-specs-inner { width: min(calc(100% - 36px), 1080px); }
  .sa1000-subnav { width: min(calc(100% - 36px), var(--sa1000-container)); margin-top: 10px; padding: 0; top: calc(var(--sa1000-header-offset) + 10px); }
  .sa1000-subnav__inner { width: 100%; min-height: 40px; }
  .sa1000-subnav__spacer { display: none; }
  .sa1000-subnav.is-dark-zone .sa1000-subnav__content,
  .sa1000-subnav.is-light-zone .sa1000-subnav__content { width: 100%; min-height: var(--sa1000-subnav-height); padding: 4px 8px 4px 12px; }
  .sa1000-subnav__links { width: 100%; min-height: 38px; justify-content: flex-start; gap: 18px; overflow-x: auto; font-size: 14px; }
  .sa1000-subnav__links::-webkit-scrollbar { display: none; }
  .sa1000-subnav__links a { flex: 0 0 auto; white-space: nowrap; }
  .sa1000-subnav.is-dark-zone .sa1000-subnav__cta,
  .sa1000-subnav.is-light-zone .sa1000-subnav__cta { height: 38px; min-height: 38px; padding-inline: 14px; font-size: 14px; }
  .sa1000-hero__inner { min-height: 560px; padding: 78px 0 72px; }
  .sa1000-overview__layout { grid-template-columns: 1fr; }
  .sa1000-product-visual { width: min(100%, 360px); max-height: none; }
  .sa1000-sticky-product { position: relative; top: auto; }
  .sa1000-scan-scale { grid-template-columns: 1fr; align-items: start; }
  .sa1000-scan-scale__item { grid-template-columns: 138px 1fr; align-items: center; }
  .sa1000-scan-scale__item--sm,
  .sa1000-scan-scale__item--md,
  .sa1000-scan-scale__item--lg { --sa1000-square: 96px; }
  .sa1000-angle-grid { grid-template-columns: 1fr; }
  .sa1000-detail-block,
  .sa1000-detail-block--reverse { grid-template-columns: 1fr; gap: 44px; }
  .sa1000-detail-block + .sa1000-detail-block { margin-top: 84px; }
  .sa1000-detail-gallery { margin-top: 0; }
  .sa1000-detail-copy { display: contents; }
  .sa1000-detail__index { order: 1; }
  .sa1000-detail__title { order: 2; font-size: clamp(32px,8.4vw,44px); }
  .sa1000-detail__desc { order: 3; margin-top: -18px; }
  .sa1000-detail-gallery { order: 4; }
  .sa1000-detail-list { order: 5; margin-top: -18px; }
  .sa1000-detail-block--reverse .sa1000-detail__title { max-width: 100%; white-space: normal; }
  .sa1000-model-lineup { grid-template-columns: 1fr; gap: 28px; }
  .sa1000-model-lineup__visual { max-width: none; }
  .sa1000-model-lineup__media { padding: clamp(18px,6vw,34px); }
  .sa1000-model-lineup__visual--upgrade { margin-top: 16px; padding-top: 30px; }
  .sa1000-model-option--upgrade { padding-top: 0; border-top: 0; }
  .sa1000-model-option--upgrade::before { display: none; }
  .sa1000-specs-table th,
  .sa1000-specs-table td { padding: 15px 18px; }
  .sa1000-cta__inner { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 600px) {
  .sa1000-hero-product-name { font-size: 54px; }
  .sa1000-metric-grid,
  .sa1000-application-grid { grid-template-columns: 1fr; }
  .sa1000-specs-table { min-width: 760px; }
  .sa1000-specs-table th,
  .sa1000-specs-table td { padding: 14px 16px; }
  .sa1000-specs-table tbody td { font-size: 14px; }
  .sa1000-metric-grid--core { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .sa1000-metric-grid--core article { min-height: 128px; padding: 16px; }
  .sa1000-metric-grid--core strong { font-size: clamp(20px,6vw,28px); }
  .sa1000-scan-scale__item { grid-template-columns: 104px 1fr; }
  .sa1000-software-list > div { grid-template-columns: 1fr; gap: 6px; }
  .sa1000-detail-section { padding: 72px 0; }
  .sa1000-detail-list { margin-top: 26px; }
  .sa1000-detail-item { padding: 15px 0; }
  .sa1000-model-quick { align-items: flex-start; flex-direction: column; }
  .sa1000-model-quick__button { min-width: 96px; }
  .sa1000-model-lineup__subtitle { font-size: 21px; }
  .sa1000-model-option__head h3 { font-size: 30px; }
  .sa1000-model-option__head p { font-size: 20px; }
  .sa1000-spec-list > div { grid-template-columns: 1fr; gap: 8px; }
  .sa1000-applications__head { align-items: flex-start; flex-direction: column; }
  .sa1000-btn { width: 100%; }
  .sa1000-model-option .sa1000-btn { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .sa1000-subnav,
  .sa1000-page *,
  .sa1000-page *::before,
  .sa1000-page *::after,
  .sa1000-subnav *,
  .sa1000-subnav::before,
  .sa1000-subnav__content::before {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .sa1000-subnav:hover .sa1000-subnav__content,
  .sa1000-subnav__cta:hover,
  .sa1000-subnav__cta:hover span {
    transform: none !important;
  }
}
