:root {
  --void: #050505;
  --ink: #090a0c;
  --graphite: #101114;
  --graphite-2: #17191d;
  --steel: #26282d;
  --paper: #f5f5f7;
  --muted: #a7a8ad;
  --muted-2: #707178;
  --brand: #f45700;
  --brand-bright: #ff7a1a;
  --header-h: 0px;
  --product-nav-h: 0px;
  --page-x: clamp(20px, 5vw, 84px);
  --content-max: 1440px;
  --section-title-size: clamp(44px, 4.4vw, 56px);
  --ease-out: cubic-bezier(0.2, 0, 0, 1);
  --shadow-ring: 0 0 0 1px rgba(255, 255, 255, 0.08);
  --shadow-ring-hover: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

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

html {
  min-width: 0;
  overflow-x: clip;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--product-nav-h) + 20px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background: var(--void);
  color: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.film-open,
body.model-spec-open {
  overflow: hidden;
}

button,
input,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  touch-action: manipulation;
}

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
figcaption {
  text-wrap: pretty;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--brand-bright);
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--void);
  transform: translateY(-160%);
  transition-property: transform;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--brand);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 132px 1fr auto;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--page-x);
  background: rgba(5, 5, 5, 0.86);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: saturate(140%) blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 114px;
  min-height: 44px;
  color: var(--brand);
}

.brand-link svg {
  width: 114px;
  height: 58px;
  fill: currentColor;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}

.site-nav a,
.language-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(245, 245, 247, 0.8);
  font-size: 14px;
  transition-property: color;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right center;
  transition-property: transform;
  transition-duration: 220ms;
  transition-timing-function: var(--ease-out);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-link {
  justify-content: center;
  width: 44px;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition-property: scale;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.menu-toggle:active,
.pill-button:active,
.icon-button:active,
.film-trigger:active,
.highlight-pagination button:active,
.highlight-autoplay:active,
.film-close:active,
.text-button:active {
  scale: 0.96;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1px;
  background: var(--paper);
  transition-property: transform, top;
  transition-duration: 220ms;
  transition-timing-function: var(--ease-out);
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.nav-open .menu-toggle span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.nav-open .menu-toggle span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: -1;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  align-content: start;
  gap: 0;
  height: calc(100dvh - var(--header-h));
  padding: 18px var(--page-x) calc(28px + env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(5, 5, 5, 0.995);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition-property: opacity, transform;
  transition-duration: 200ms;
  transition-timing-function: var(--ease-out);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 16px;
}

.nav-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-nav {
  position: fixed;
  z-index: 90;
  top: var(--header-h);
  left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: var(--product-nav-h);
  padding: 0 var(--page-x);
  background: rgba(17, 18, 21, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(140%) blur(20px);
}

.product-name {
  display: inline-flex;
  align-items: baseline;
  min-height: 44px;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-name strong {
  margin-left: 6px;
  color: var(--muted);
  font-weight: 500;
}

.model-tabs {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.model-tabs button {
  min-width: 48px;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition-property: color, background-color, box-shadow, scale;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}

.model-tabs button[aria-selected="true"] {
  background: var(--paper);
  color: var(--void);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.model-tabs button:active {
  scale: 0.96;
}

.section-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(22px, 2.5vw, 42px);
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.section-links::-webkit-scrollbar {
  display: none;
}

.section-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(245, 245, 247, 0.78);
  font-size: 14px;
  font-weight: 500;
  transition-property: color, opacity;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.section-links a[aria-current="location"] {
  color: var(--brand-bright);
  font-weight: 600;
}

.pill-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 28px rgba(244, 87, 0, 0.2);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition-property: background-color, box-shadow, scale;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.pill-button svg,
.text-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pill-button--small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: rgba(245, 245, 247, 0.86);
  font-size: 14px;
  font-weight: 500;
  transition-property: color;
  transition-duration: 160ms;
}

.section-pad {
  padding: clamp(110px, 13vw, 200px) var(--page-x);
}

.scroll-chapter {
  position: relative;
  isolation: isolate;
}

.chapter-atmosphere {
  display: none;
}

.js .chapter-atmosphere {
  opacity: 0.26;
  transition-property: opacity;
  transition-duration: 420ms;
  transition-timing-function: var(--ease-out);
}

.js .scroll-chapter.is-current-chapter .chapter-atmosphere {
  opacity: 1;
}

.js .scroll-chapter:not(.is-current-chapter) .signal-beam,
.js .scroll-chapter:not(.is-current-chapter) .hero-power-glow,
.js .scroll-chapter:not(.is-current-chapter) .hdr-power-button::before,
.js .scroll-chapter:not(.is-current-chapter) .hdr-power-button::after {
  animation-play-state: paused;
}

.eyebrow {
  color: var(--brand-bright);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

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

.section-heading h2 {
  margin-top: 20px;
  max-width: 900px;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-heading>p:last-child {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.75;
}

.hero {
  --hero-media-lift: clamp(36px, 5.5svh, 56px);
  --hero-media-frame-height: 88%;
  --chapter-atmosphere:
    radial-gradient(ellipse at 50% 78%, rgba(244, 87, 0, 0.1), transparent 44%),
    radial-gradient(ellipse at 16% 18%, rgba(255, 255, 255, 0.045), transparent 32%);
  position: relative;
  min-height: max(680px, 100svh);
  padding: 0;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(360px, 55svh, 540px);
  background: linear-gradient(180deg,
      #000 0%,
      #000 30%,
      rgba(0, 0, 0, 0.98) 44%,
      rgba(0, 0, 0, 0.78) 60%,
      rgba(0, 0, 0, 0.38) 78%,
      transparent 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42) 68%, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  top: calc(var(--header-h) + var(--product-nav-h) + clamp(42px, 6vh, 54px));
  right: var(--page-x);
  left: var(--page-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  max-width: none;
  margin: 0;
  text-align: center;
  pointer-events: none;
}

.hero-kicker {
  max-width: 100%;
  margin: 0 0 clamp(9px, 1.1vh, 13px);
  color: var(--brand-bright);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.52);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  line-height: 1;
  text-wrap: balance;
}

.hero-title strong {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(44px, 4.6vw, 72px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-align: center;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
  text-wrap: balance;
}

.hero-media {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-h) + var(--product-nav-h) + clamp(124px, 17vh, 164px));
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background: #020203;
  transform: translateY(calc(var(--hero-media-lift) * -1));
}

.hero-media::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.hero-media__frame {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  height: var(--hero-media-frame-height);
  aspect-ratio: 1327 / 590;
  overflow: hidden;
  background: #000;
  transform: translate(-50%, -50%);
}

.hero-media__frame::after {
  content: "";
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.08) 28%,
      rgba(0, 0, 0, 0.38) 58%,
      rgba(0, 0, 0, 0.78) 82%,
      #020203 100%);
  pointer-events: none;
}

.hero-media__poster,
.hero-media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition-property: opacity;
  transition-duration: 280ms;
  transition-timing-function: ease-out;
}

.hero-media__poster {
  z-index: 1;
  opacity: 1;
}

.hero-media video {
  z-index: 2;
  opacity: 0;
  transform: translate3d(2px, 0, 0) scale(1.124);
  transform-origin: 50% 50%;
}

.hero.is-video-playing .hero-media__poster {
  opacity: 0;
}

.hero.is-video-playing .hero-media video {
  opacity: 1;
}

.hero.is-video-ended .hero-media__poster,
.hero.is-video-fallback .hero-media__poster {
  opacity: 1;
}

.hero.is-video-ended .hero-media video,
.hero.is-video-fallback .hero-media video {
  opacity: 0;
}

.hero-power-glows {
  position: absolute;
  z-index: 4;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 520ms;
  transition-timing-function: var(--ease-out);
}

.hero.is-video-ended .hero-power-glows,
.hero.is-video-fallback .hero-power-glows {
  opacity: 1;
}

.hero-power-glow {
  position: absolute;
  top: var(--glow-y);
  left: var(--glow-x);
  width: var(--glow-size);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 137, 42, 0.7);
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 0 7px rgba(255, 123, 28, 0.68),
    0 0 18px rgba(244, 87, 0, 0.42),
    0 0 34px rgba(244, 87, 0, 0.2);
  opacity: 0.58;
  mix-blend-mode: screen;
  filter: brightness(0.92);
  transform: translate(-50%, -50%);
  animation: heroPowerGlow 2.8s var(--ease-out) var(--glow-delay) infinite alternate;
}

@keyframes heroPowerGlow {
  to {
    opacity: 0.9;
    filter: brightness(1.28);
  }
}

.signal-beam {
  position: absolute;
  z-index: 1;
  top: 52%;
  right: 4%;
  left: 4%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(244, 87, 0, 0.16) 18%, var(--brand) 52%, rgba(244, 87, 0, 0.16) 82%, transparent 100%);
  box-shadow: 0 0 18px rgba(244, 87, 0, 0.7), 0 0 46px rgba(244, 87, 0, 0.24);
  transform: scaleX(0.82);
  transform-origin: center;
  animation: signalBreath 6s ease-in-out infinite alternate;
}

.hero-enter {
  opacity: 0;
  animation: heroEnter 720ms var(--ease-out) forwards;
}

.hero-enter--1 {
  animation-delay: 80ms;
}

.hero-enter--2 {
  animation-delay: 180ms;
}

.hero-enter--3 {
  animation-delay: 300ms;
}

.hero-enter--4 {
  animation-delay: 520ms;
}

.playback-story {
  position: relative;
  isolation: isolate;
  background: #020304;
}

.playback-intro {
  position: sticky;
  z-index: 1;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  background: #020304;
  isolation: isolate;
  scroll-margin-top: calc(0px - var(--header-h) - var(--product-nav-h) - 20px);
}

.playback-intro::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.12) 14%, transparent 58%, rgba(29, 29, 31, 0.16) 80%, #1d1d1f 100%),
    linear-gradient(90deg, transparent 36%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.76) 100%);
  pointer-events: none;
}

.playback-intro__media,
.playback-intro__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.playback-intro__media {
  z-index: 1;
  overflow: hidden;
}

.playback-intro__media img {
  z-index: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 52%;
}

.playback-intro__source-space {
  position: absolute;
  z-index: 1;
  top: 52%;
  left: 50%;
  width: max(100%, 150svh);
  aspect-ratio: 3 / 2;
  transform: translate(-50%, -52%);
  pointer-events: none;
}

.playback-intro__screen-surface {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 84.375%;
  overflow: hidden;
  opacity: 0;
  transform-origin: 0 0;
  backface-visibility: hidden;
  will-change: transform;
}

.playback-intro__screen-surface.is-projected {
  opacity: 1;
}

.playback-intro__screen-surface video,
.playback-intro__screen-reflection {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.playback-intro__screen-surface video {
  object-fit: cover;
  opacity: 0;
  filter: brightness(0.76) saturate(0.88) contrast(1.06);
  transition: opacity 520ms cubic-bezier(0.2, 0, 0, 1);
}

.playback-intro__screen-surface.is-video-ready video {
  opacity: 1;
}

.playback-intro__screen-reflection {
  z-index: 1;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.055), transparent 29%, transparent 72%, rgba(72, 154, 218, 0.025)),
    linear-gradient(180deg, rgba(1, 7, 12, 0.06), rgba(0, 0, 0, 0.12));
  box-shadow: inset 0 0 0 1px rgba(113, 180, 229, 0.05);
  pointer-events: none;
}

.js .playback-intro__media.reveal {
  opacity: 0.64;
  filter: none;
  transform: scale(1.035);
  transition-property: opacity, transform;
  transition-duration: 1400ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.js .playback-intro__media.reveal.is-visible {
  opacity: 1;
  transform: scale(1);
}

.playback-intro__copy {
  position: absolute;
  z-index: 3;
  top: clamp(140px, 18svh, 196px);
  right: var(--page-x);
  width: min(38vw, 600px);
  text-align: left;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.72);
}

.playback-intro__copy h2 {
  max-width: 9em;
  color: #fff;
  font-size: var(--section-title-size);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.playback-intro__copy p {
  max-width: 580px;
  margin-top: clamp(22px, 2vw, 30px);
  color: rgba(245, 245, 247, 0.76);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.8;
  text-wrap: pretty;
}

.playback-capabilities {
  --capability-progress: 1;
  position: relative;
  z-index: 2;
  height: max(1320px, 190svh);
  overflow: clip;
  background: transparent;
  isolation: auto;
}

.js .playback-capabilities {
  --capability-progress: 0;
}

.playback-capabilities__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: transparent;
}

.playback-capabilities__panel {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: clamp(36px, 3.5vw, 52px) var(--page-x);
  border-radius: 0;
  background: rgba(3, 4, 5, 0.7);
  box-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 72px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transform: translate3d(0, 0, 0);
  -webkit-backdrop-filter: blur(24px) saturate(88%);
  backdrop-filter: blur(24px) saturate(88%);
  will-change: transform;
}

.playback-capabilities__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(1120px, 100%);
  margin: 0;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}

.playback-capability {
  --capability-item-progress: 1;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  min-height: 168px;
  padding: clamp(22px, 2.2vw, 32px);
  opacity: var(--capability-item-progress);
  filter: blur(calc((1 - var(--capability-item-progress)) * 4px));
  transform: translate3d(0, calc((1 - var(--capability-item-progress)) * 24px), 0);
}

.js .playback-capability {
  --capability-item-progress: 0;
}

.playback-capability:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.playback-capability:nth-child(n + 3) {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.playback-capability__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: rgba(245, 245, 247, 0.88);
}

.playback-capability__icon svg {
  width: 34px;
  height: 34px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.playback-capability__icon .playback-capability__accent {
  stroke: #f4772b;
}

.playback-capability h3 {
  color: #fff;
  font-size: clamp(21px, 1.65vw, 27px);
  font-weight: 620;
  line-height: 1.18;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.playback-capability p {
  max-width: 31em;
  margin-top: 10px;
  color: rgba(245, 245, 247, 0.7);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.72;
  text-wrap: pretty;
}

.highlights {
  --highlight-heading-width: min(calc(100vw - 175px), 1260px);
  --highlight-card-width: min(calc(64vw - 112px), 806.4px);
  --highlight-rail-start: max(80px, calc(18vw + 56px), calc(50vw - 403.2px));
  --chapter-atmosphere: none;
  position: relative;
  padding: 160px 0 160px;
  overflow: clip;
  background: #1d1d1f;
  scroll-margin-top: calc(0px - var(--header-h) - var(--product-nav-h) - 20px);
}

.highlights-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  width: var(--highlight-heading-width);
  min-height: 140px;
  margin: 0 auto;
}

.highlights-heading h2 {
  margin-top: 0;
  font-size: clamp(44px, 4.4vw, 56px);
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.film-trigger {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-height: 25px;
  margin-top: 35px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand);
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  cursor: pointer;
  transition-property: color, scale;
  transition-duration: 160ms;
  transition-timing-function: var(--ease-out);
}

.film-trigger::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 12px);
  height: 44px;
  transform: translate(-50%, -50%);
}

.film-trigger__icon {
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  box-shadow: none;
}

.film-trigger__icon svg {
  width: 8px;
  height: 8px;
  fill: currentColor;
  transform: translateX(0.5px);
}

.highlight-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--highlight-card-width);
  gap: 16px;
  margin-top: 0;
  padding: 0 var(--highlight-rail-start) 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--highlight-rail-start);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.highlight-rail::-webkit-scrollbar {
  display: none;
}

.highlight-card {
  min-width: 0;
  border-radius: 17.92px;
  outline: none;
  cursor: pointer;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.highlight-card__media {
  position: relative;
  height: 435.2px;
  overflow: hidden;
  border-radius: 17.92px;
  background: #050506;
  box-shadow: none;
  transition-property: box-shadow, opacity;
  transition-duration: 220ms, 120ms;
  transition-timing-function: var(--ease-out);
}

.highlight-card__media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.14) 38%, transparent 62%),
    radial-gradient(ellipse at 50% 0%, rgba(0, 0, 0, 0.28), transparent 58%);
  pointer-events: none;
}

.highlight-card video,
.highlight-card__image,
.highlight-card__end-frame {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #050506;
}

.highlight-card__end-frame {
  --highlight-end-frame-x: 0%;
  --highlight-end-frame-y: 0%;
  --highlight-end-frame-scale: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--highlight-end-frame-x), var(--highlight-end-frame-y), 0) scale(var(--highlight-end-frame-scale));
  transform-origin: 50% 50%;
  transition-property: opacity;
  transition-duration: 280ms;
  transition-timing-function: ease-out;
}

.highlight-card__end-frame--rack {
  --highlight-end-frame-x: -1%;
  --highlight-end-frame-scale: 1.02;
}

.highlight-card__end-frame--cooling {
  --highlight-end-frame-x: 1%;
  --highlight-end-frame-scale: 1.03;
}

.highlight-card.is-video-ended .highlight-card__end-frame {
  opacity: 1;
}

.highlight-card__copy {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30.72px;
  text-align: center;
  pointer-events: none;
}

.highlight-card__copy h3 {
  max-width: 467.2px;
  margin-top: 0;
  color: #fff;
  font-size: 22.4px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
  text-wrap: balance;
}

.highlight-card__copy p {
  max-width: 467.2px;
  margin-top: 6.4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
  line-height: 17.6px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.68);
  text-wrap: pretty;
}

.highlight-card__copy h3,
.highlight-card__copy p {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(12px);
  transition-property: opacity, transform, filter;
  transition-duration: 180ms;
  transition-timing-function: ease-in;
  transition-delay: 0ms;
}

.highlight-card.is-active .highlight-card__copy h3,
.highlight-card.is-active .highlight-card__copy p {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-duration: 520ms;
  transition-timing-function: var(--ease-out);
}

.highlight-card.is-active .highlight-card__copy h3 {
  transition-delay: 40ms;
}

.highlight-card.is-active .highlight-card__copy p {
  transition-delay: 140ms;
}

.highlight-card.is-active .highlight-card__media {
  box-shadow: none;
}

.highlight-card:focus-visible .highlight-card__media {
  box-shadow:
    0 0 0 3px rgba(244, 87, 0, 0.78),
    0 0 0 7px rgba(244, 87, 0, 0.16),
    0 18px 48px rgba(0, 0, 0, 0.34);
}

.highlight-card:active .highlight-card__media {
  opacity: 0.94;
}

.highlight-controls-wrap {
  position: absolute;
  z-index: 5;
  top: 300px;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: clip;
  pointer-events: none;
}

.highlight-controls {
  position: sticky;
  z-index: 1;
  bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11.2px;
  width: max-content;
  height: 39.2px;
  margin: 32px auto 64px;
  pointer-events: auto;
}

.highlight-pagination {
  --highlight-indicator-width: 33.6px;
  --highlight-active-button-width: 44.8px;
  display: flex;
  align-items: center;
  width: 151.2px;
  height: 39.2px;
  padding: 0 11.2px;
  border-radius: 19.6px;
  background: rgba(42, 42, 45, 0.72);
  box-shadow: none;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.highlight-pagination button,
.highlight-autoplay,
.film-close {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  cursor: pointer;
  transition-property: background-color, color, scale, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: var(--ease-out);
}

.highlight-pagination button {
  flex: 0 0 16.8px;
  width: 16.8px;
  height: 39.2px;
  background: transparent;
  transition-property: flex-basis, width, scale;
  transition-duration: 400ms, 400ms, 160ms;
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1), var(--ease-out);
}

.highlight-pagination button::before,
.highlight-pagination button::after {
  content: "";
  position: absolute;
  top: 16.8px;
  left: 5.6px;
  width: 5.6px;
  height: 5.6px;
  border-radius: 7px;
}

.highlight-pagination button::before {
  background: rgba(245, 245, 247, 0.8);
  transition-property: width, background-color, opacity;
  transition-duration: 400ms, 250ms, 250ms;
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), linear, var(--ease-out);
}

.highlight-pagination button[aria-current="true"] {
  flex-basis: var(--highlight-active-button-width);
  width: var(--highlight-active-button-width);
}

.highlight-pagination button[aria-current="true"]::before {
  width: var(--highlight-indicator-width);
}

.highlight-pagination button::after {
  width: 0;
  background: rgb(245, 245, 247);
  opacity: 0;
}

.highlight-pagination button[aria-current="true"]::after {
  animation: highlightProgress 6150ms linear forwards;
  animation-play-state: paused;
  opacity: 1;
}

.highlight-controls.is-playing .highlight-pagination button[aria-current="true"]::after {
  animation-play-state: running;
}

.highlight-controls.is-ended .highlight-pagination button[aria-current="true"]::after {
  width: var(--highlight-indicator-width);
  animation: none;
}

.highlight-autoplay {
  width: 39.2px;
  height: 39.2px;
  border-radius: 19.6px;
  background: rgba(42, 42, 45, 0.72);
  color: #fff;
  box-shadow: none;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.highlight-autoplay::before {
  content: "";
  position: absolute;
  inset: -2.4px;
  border-radius: 22px;
}

.highlight-autoplay__icon {
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  opacity: 0;
  filter: blur(4px);
  scale: 0.25;
  transition-property: opacity, filter, scale;
  transition-duration: 300ms;
  transition-timing-function: var(--ease-out);
}

.highlight-autoplay__icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.highlight-autoplay__icon--play {
  opacity: 1;
  filter: blur(0);
  scale: 1;
}

.highlight-autoplay__icon--play svg {
  transform: translateX(1px);
}

.highlight-autoplay[aria-pressed="true"] .highlight-autoplay__icon--play {
  opacity: 0;
  filter: blur(4px);
  scale: 0.25;
}

.highlight-autoplay[aria-pressed="true"] .highlight-autoplay__icon--pause {
  opacity: 1;
  filter: blur(0);
  scale: 1;
}

.highlight-autoplay__icon--replay svg {
  width: 39.2px;
  height: 39.2px;
  fill: currentColor;
}

.highlight-autoplay__icon--replay .replay-ring {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 4;
}

.highlight-autoplay[data-state="ended"] .highlight-autoplay__icon--play {
  opacity: 0;
  filter: blur(4px);
  scale: 0.25;
}

.highlight-autoplay[data-state="ended"] .highlight-autoplay__icon--replay {
  opacity: 1;
  filter: blur(0);
  scale: 1;
}

@keyframes highlightProgress {
  from {
    width: 0;
  }

  to {
    width: var(--highlight-indicator-width);
  }
}

.film-dialog {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 76px);
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.film-dialog[hidden] {
  display: none;
}

.film-dialog.is-open {
  opacity: 1;
  visibility: visible;
}

.film-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 23, 0.98);
}

.film-dialog__panel {
  position: relative;
  z-index: 1;
  width: min(70%, 1008px);
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition-property: opacity, transform;
  transition-duration: 260ms;
  transition-timing-function: var(--ease-out);
}

.film-dialog.is-open .film-dialog__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.film-dialog__stage {
  aspect-ratio: 16 / 9;
  max-height: calc(100svh - 96px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 34px 90px rgba(0, 0, 0, 0.48);
}

.film-dialog video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.film-close {
  position: fixed;
  z-index: 2;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.film-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.model-spec-dialog {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 24px;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: var(--paper);
  overscroll-behavior: contain;
}

.model-spec-dialog:not([open]) {
  display: none;
}

.model-spec-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  transition-property: opacity, backdrop-filter;
  transition-duration: 180ms;
  transition-timing-function: ease-in;
}

.model-spec-dialog.is-open::backdrop {
  opacity: 1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition-duration: 280ms;
  transition-timing-function: ease-out;
}

.model-spec-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1000px, calc(100vw - 48px));
  height: min(760px, calc(100svh - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 0%, rgba(244, 87, 0, 0.14), transparent 31%),
    linear-gradient(155deg, #17171a 0%, #0a0a0c 74%);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.62);
  opacity: 0;
  filter: blur(6px);
  transform: translateY(18px) scale(0.96);
  transform-origin: center center;
  transition-property: opacity, transform, filter;
  transition-duration: 180ms;
  transition-timing-function: ease-in;
  will-change: opacity, transform, filter;
}

.model-spec-dialog.is-open .model-spec-panel {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
  transition-duration: 300ms;
  transition-timing-function: var(--ease-out);
}

.model-spec-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  min-height: 152px;
  padding: 32px 36px 28px;
  background: rgba(14, 14, 17, 0.64);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.model-spec-panel__heading,
.model-spec-overview__item,
.model-spec-group {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(14px);
  transition-property: opacity, transform, filter;
  transition-duration: 150ms;
  transition-timing-function: ease-in;
}

.model-spec-dialog.is-open .model-spec-panel__heading,
.model-spec-dialog.is-open .model-spec-overview__item,
.model-spec-dialog.is-open .model-spec-group {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-duration: 340ms;
  transition-timing-function: var(--ease-out);
}

.model-spec-dialog.is-open .model-spec-panel__heading {
  transition-delay: 40ms;
}

.model-spec-dialog.is-open .model-spec-overview__item:nth-child(1) {
  transition-delay: 90ms;
}

.model-spec-dialog.is-open .model-spec-overview__item:nth-child(2) {
  transition-delay: 130ms;
}

.model-spec-dialog.is-open .model-spec-overview__item:nth-child(3) {
  transition-delay: 170ms;
}

.model-spec-dialog.is-open .model-spec-overview__item:nth-child(4) {
  transition-delay: 210ms;
}

.model-spec-dialog.is-open .model-spec-group:nth-child(1) {
  transition-delay: 220ms;
}

.model-spec-dialog.is-open .model-spec-group:nth-child(2) {
  transition-delay: 270ms;
}

.model-spec-dialog.is-open .model-spec-group:nth-child(3) {
  transition-delay: 320ms;
}

.model-spec-panel__heading>p:first-child {
  color: var(--brand-bright);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.model-spec-panel__heading h2 {
  margin-top: 8px;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.model-spec-panel__intro {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(245, 245, 247, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.model-spec-close {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition-property: scale, background-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.model-spec-close:active {
  scale: 0.96;
}

.model-spec-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.model-spec-panel__scroll {
  min-height: 0;
  padding: 24px 28px max(32px, env(safe-area-inset-bottom));
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-color: rgba(244, 87, 0, 0.58) rgba(255, 255, 255, 0.04);
}

.model-spec-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.model-spec-overview__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 112px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.model-spec-overview__item::before {
  position: absolute;
  top: 0;
  left: 20px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-bright);
  box-shadow: 0 0 18px rgba(244, 87, 0, 0.5);
  content: "";
}

.model-spec-overview__item span {
  color: rgba(245, 245, 247, 0.5);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.model-spec-overview__item strong {
  color: var(--paper);
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 610;
  line-height: 1.28;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.model-spec-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.model-spec-group {
  min-width: 0;
  padding: 22px 24px 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.model-spec-group--wide {
  grid-column: 1 / -1;
}

.model-spec-group h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--paper);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.model-spec-group h3::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-bright);
  box-shadow: 0 0 12px rgba(244, 87, 0, 0.45);
  content: "";
}

.model-spec-list {
  margin-top: 12px;
}

.model-spec-group--wide .model-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
}

.model-spec-list__row {
  display: grid;
  grid-template-columns: minmax(104px, 0.45fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 16px;
  min-width: 0;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.model-spec-list__row:last-child,
.model-spec-group--wide .model-spec-list__row:nth-last-child(-n + 2) {
  border-bottom-color: transparent;
}

.model-spec-list dt {
  color: rgba(245, 245, 247, 0.48);
  font-size: 12px;
  line-height: 1.45;
}

.model-spec-list dd {
  min-width: 0;
  color: rgba(245, 245, 247, 0.9);
  font-size: 13px;
  font-weight: 520;
  line-height: 1.45;
  text-align: right;
  overflow-wrap: anywhere;
}

.design-story {
  --chapter-atmosphere:
    radial-gradient(ellipse at 80% 34%, rgba(92, 128, 164, 0.18), transparent 44%),
    radial-gradient(ellipse at 18% 76%, rgba(255, 255, 255, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(12, 18, 24, 0.24), transparent 42%, rgba(0, 0, 0, 0.28));
  background: linear-gradient(180deg, #0a0d11 0%, #040506 100%);
}

.bom-copy {
  position: absolute;
  z-index: 7;
  top: 53%;
  right: auto;
  left: clamp(64px, calc(15vw - 128px), 144px);
  display: block;
  width: min(29%, 520px);
  transform: translateY(-50%);
}

.js .bom-copy__title,
.js .bom-copy__details>* {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(18px);
  transition-property: opacity, filter, transform;
  transition-duration: 520ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.js .bom-stage[data-sequence="running"] .bom-copy__title,
.js .bom-stage[data-sequence="stepped"] .bom-copy__title,
.js .bom-stage[data-sequence="complete"] .bom-copy__title,
.js .bom-stage[data-sequence="running"] .bom-copy__details>*,
.js .bom-stage[data-sequence="stepped"] .bom-copy__details>*,
.js .bom-stage[data-sequence="complete"] .bom-copy__details>* {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.js .bom-stage[data-sequence="running"] .bom-copy__details> :first-child,
.js .bom-stage[data-sequence="stepped"] .bom-copy__details> :first-child,
.js .bom-stage[data-sequence="complete"] .bom-copy__details> :first-child {
  transition-delay: 90ms;
}

.js .bom-stage[data-sequence="running"] .bom-copy__details> :last-child,
.js .bom-stage[data-sequence="stepped"] .bom-copy__details> :last-child,
.js .bom-stage[data-sequence="complete"] .bom-copy__details> :last-child {
  transition-delay: 180ms;
}

.bom-copy__title h2 {
  max-width: 660px;
  margin-top: 0;
  font-size: clamp(38px, 4.4vw, 72px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.bom-copy__details {
  padding-top: clamp(24px, 4dvh, 38px);
}

.bom-copy .design-heading__subtitle {
  max-width: 520px;
  color: var(--paper);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 540;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.bom-copy .design-heading__body {
  max-width: 520px;
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.65;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.scroll-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: clamp(30px, 5vw, 90px);
  width: min(calc(100% - (2 * var(--page-x))), var(--content-max));
  margin: 0 auto;
}

.story-stage {
  position: sticky;
  top: calc(var(--header-h) + var(--product-nav-h) + 24px);
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  display: grid;
  place-items: center;
  height: calc(100dvh - var(--header-h) - var(--product-nav-h) - 48px);
  min-height: 560px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.09), transparent 34%),
    linear-gradient(145deg, #16181b 0%, #08090a 70%);
  box-shadow: var(--shadow-ring), 0 40px 90px rgba(0, 0, 0, 0.28);
}

.story-stage::before,
.viewer-canvas::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.story-stage picture {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 94%;
}

.story-stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 62vh;
  object-fit: contain;
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.58));
}

.scroll-story.bom-story {
  display: block;
  width: 100%;
  min-height: calc(100dvh - var(--header-h) - var(--product-nav-h) + clamp(600px, 72dvh, 840px));
}

.bom-stage {
  --bom-progress: 0;
  isolation: isolate;
  top: calc(var(--header-h) + var(--product-nav-h) + 18px);
  width: calc(100% - (2 * var(--page-x)));
  height: calc(100dvh - var(--header-h) - var(--product-nav-h) - 36px);
  min-height: min(560px, calc(100dvh - var(--header-h) - var(--product-nav-h) - 36px));
  margin: 0 auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.bom-stage::before,
.bom-stage::after {
  content: none;
}

.bom-visual {
  position: absolute;
  z-index: 2;
  top: 58%;
  right: -1.5%;
  left: auto;
  width: min(71%, calc(151dvh - 225px), 1540px);
  height: auto;
  max-width: none;
  aspect-ratio: 1402 / 1122;
  overflow: visible;
  transform: translateY(-50%);
}

.bom-stage .bom-part {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: blur(2.2px);
  opacity: 0;
  transform: translate3d(0, 100px, 0) scale(1);
  transform-origin: 50% 50%;
  pointer-events: none;
  user-select: none;
}

.bom-stage.is-sequencing .bom-part {
  will-change: transform, opacity, filter;
}

.bom-stage.is-pointer-reacting .bom-part {
  will-change: transform;
}

.bom-stage .bom-part--1 {
  z-index: 1;
  top: 49.5%;
  left: 9.8431%;
  width: 79.3866%;
}

.bom-stage .bom-part--2 {
  z-index: 2;
  top: 54%;
  left: 73%;
  width: 11.3409%;
}

.bom-stage .bom-part--3 {
  z-index: 3;
  top: 27%;
  left: 70%;
  width: 8.6305%;
}

.bom-stage .bom-part--4 {
  z-index: 4;
  top: 31%;
  left: 24.5%;
  width: 34.8074%;
}

.bom-stage .bom-part--5 {
  z-index: 5;
  top: 15.5%;
  left: 38.6591%;
  width: 20.1141%;
}

.bom-stage .bom-part--6 {
  z-index: 6;
  top: -2.5%;
  left: 19.5%;
  width: 70.4708%;
}

.bom-stage .story-model,
.bom-stage .stage-meta {
  z-index: 6;
}

.bom-stage .stage-meta strong {
  color: var(--brand-bright);
}

.bom-stage .stage-meta i {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.bom-stage .stage-meta i::after {
  content: none;
}

.story-model {
  position: absolute;
  top: 32px;
  left: 34px;
  color: rgba(245, 245, 247, 0.16);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
}

.signal-beam--story,
.signal-beam--viewer {
  top: 50%;
  right: 8%;
  left: 8%;
}

.stage-meta {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--muted-2);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
}

.stage-meta strong {
  color: var(--paper);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.stage-meta i {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.story-steps {
  grid-column: 2;
  grid-row: 1;
}

.story-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 22px;
  align-content: center;
  min-height: 100dvh;
  padding: 18vh 0;
  opacity: 0.28;
  transform: translateY(18px);
  transition-property: opacity, transform;
  transition-duration: 420ms;
  transition-timing-function: var(--ease-out);
}

.story-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.story-index {
  padding-top: 3px;
  color: var(--brand);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}

.story-step h3 {
  margin-top: 16px;
  font-size: clamp(34px, 3.15vw, 58px);
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.story-step div>p:last-child {
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hdr-section {
  --chapter-atmosphere:
    radial-gradient(ellipse at 76% 44%, rgba(244, 87, 0, 0.13), transparent 36%),
    radial-gradient(ellipse at 24% 70%, rgba(58, 118, 171, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(4, 8, 12, 0.2), transparent 48%, rgba(0, 0, 0, 0.38));
  position: relative;
  min-height: 100svh;
  padding-top: clamp(110px, 11vw, 168px);
  padding-bottom: clamp(48px, 4vw, 64px);
  overflow: hidden;
  background: #020304;
}

.hdr-heading {
  text-align: center;
}

@media (min-width: 721px) {
  .hdr-heading {
    position: relative;
    z-index: 2;
    top: calc(clamp(180px, 30svh, 320px) - 220px);
  }
}

.hdr-heading h2 {
  max-width: 1000px;
  margin: 0 auto;
  font-size: var(--section-title-size);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hdr-heading>p:last-child {
  max-width: 830px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
  text-align: center;
}

.js .hdr-heading.reveal {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.js .hdr-heading.reveal h2,
.js .hdr-heading.reveal>p:last-child {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 56px, 0);
  transition-property: opacity, filter, transform;
  transition-duration: 900ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.js .hdr-heading.reveal>p:last-child {
  transform: translate3d(0, 38px, 0);
  transition-duration: 840ms;
  transition-delay: 110ms;
}

.js .hdr-heading.reveal.is-visible h2,
.js .hdr-heading.reveal.is-visible>p:last-child {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

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

  .js .hdr-heading.reveal h2,
  .js .hdr-heading.reveal>p:last-child {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.hdr-experience {
  --hdr-mask-top: 40%;
  --hdr-mask-inline: 7.5%;
  --hdr-mask-bottom: 40%;
  --hdr-mask-radius: 36px;
  --hdr-media-scale: 1.075;
  --hdr-media-y: 28px;
  position: relative;
  isolation: isolate;
  width: calc(100% + var(--page-x) + var(--page-x));
  height: clamp(600px, 80svh, 820px);
  margin: clamp(52px, 6vw, 82px) calc(0px - var(--page-x)) 0;
}

.hdr-stage {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-clip-path: inset(var(--hdr-mask-top) var(--hdr-mask-inline) var(--hdr-mask-bottom) round var(--hdr-mask-radius));
  clip-path: inset(var(--hdr-mask-top) var(--hdr-mask-inline) var(--hdr-mask-bottom) round var(--hdr-mask-radius));
  will-change: clip-path;
}

.hdr-scene {
  position: absolute;
  z-index: 1;
  top: 46%;
  left: 0;
  width: 100%;
  aspect-ratio: 2421 / 1600;
  transform: translate3d(0, calc(-50% + var(--hdr-media-y)), 0) scale(var(--hdr-media-scale));
  transform-origin: 50% 50%;
  will-change: transform;
}

.hdr-scene__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
}

.hdr-screen {
  position: absolute;
  z-index: 2;
  top: 37.875%;
  left: 12.4329%;
  width: 76.0843%;
  height: 39.1875%;
  overflow: hidden;
  background: #050506;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 38px rgba(31, 83, 125, 0.2);
}

.hdr-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  background: #050506;
  filter: brightness(1.2) contrast(1.02);
}

.hdr-video--sdr {
  z-index: 1;
  opacity: 1;
  transition-property: opacity, filter;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.hdr-video--original {
  z-index: 2;
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition-property: clip-path;
  transition-duration: 1280ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hdr-screen__veil {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.hdr-screen__veil {
  background:
    linear-gradient(90deg, rgba(9, 16, 23, 0.18), rgba(2, 5, 8, 0.28)),
    linear-gradient(180deg, rgba(18, 26, 34, 0.08), rgba(4, 8, 12, 0.2));
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition-property: clip-path, opacity;
  transition-duration: 1280ms, 180ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1), ease-out;
}

.hdr-quality-scan {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent 74%, rgba(255, 121, 38, 0.055) 94%, rgba(255, 159, 87, 0.14));
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translate3d(-100%, 0, 0);
  will-change: transform, opacity;
  transition-property: opacity, transform;
  transition-duration: 140ms, 1280ms;
  transition-timing-function: ease-out, cubic-bezier(0.4, 0, 0.2, 1);
}

.hdr-quality-scan::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #ff8e42 18%, #fff0e5 50%, #ff8e42 82%, transparent);
  box-shadow: 0 0 9px rgba(255, 177, 117, 0.9), 0 0 24px rgba(244, 87, 0, 0.62);
}

.hdr-quality-transition {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: clamp(190px, 20vw, 246px);
  padding: 12px 14px 11px;
  border-radius: 15px;
  background: rgba(4, 7, 10, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.11),
    0 14px 34px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(244, 87, 0, 0.09);
  opacity: 0;
  filter: blur(4px);
  pointer-events: none;
  transform: translate3d(-50%, calc(-50% + 10px), 0) scale(0.98);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  backdrop-filter: blur(12px) saturate(1.15);
  transition-property: opacity, transform, filter;
  transition-duration: 180ms;
  transition-timing-function: ease-in;
}

.hdr-quality-switch {
  display: grid;
  grid-template-columns: auto minmax(62px, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.hdr-quality-badge {
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  transition-property: color, opacity, transform, text-shadow;
  transition-duration: 320ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hdr-quality-badge--from {
  color: rgba(255, 255, 255, 0.88);
}

.hdr-quality-badge--to {
  opacity: 0.42;
  transform: scale(0.94);
}

.hdr-quality-rail {
  position: relative;
  height: 2px;
  overflow: visible;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.hdr-quality-rail__fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 125, 42, 0.7), #ff9b5d 72%, #fff1e8);
  box-shadow: 0 0 10px rgba(244, 87, 0, 0.64);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 980ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hdr-quality-rail__fill::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff5ee;
  box-shadow: 0 0 8px #ff8f48, 0 0 16px rgba(244, 87, 0, 0.78);
  opacity: 0;
  filter: blur(4px);
  transform: translateY(-50%) scale(0.25);
  transition-property: opacity, filter, transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hdr-quality-copy {
  display: grid;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 590;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
}

.hdr-quality-copy>span {
  grid-area: 1 / 1;
  transition-property: opacity, transform, filter;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hdr-quality-copy__complete {
  color: rgba(255, 201, 160, 0.94);
  opacity: 0;
  filter: blur(4px);
  transform: translateY(5px);
}

.hdr-experience.is-hdr-starting .hdr-video--original,
.hdr-experience.is-hdr-powered .hdr-video--original {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.hdr-experience.is-hdr-starting .hdr-video--original,
.hdr-experience.is-hdr-starting .hdr-screen__veil,
.hdr-experience.is-hdr-starting .hdr-quality-scan {
  transition-delay: 130ms;
}

.hdr-experience.is-hdr-starting .hdr-screen__veil,
.hdr-experience.is-hdr-powered .hdr-screen__veil {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}

.hdr-experience.is-hdr-starting .hdr-quality-scan {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 130ms;
}

.hdr-experience.is-hdr-starting .hdr-quality-transition,
.hdr-experience.is-hdr-powered:not(.is-hdr-settled) .hdr-quality-transition {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(-50%, -50%, 0) scale(1);
  transition-duration: 280ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hdr-experience.is-hdr-starting .hdr-quality-badge--from,
.hdr-experience.is-hdr-powered .hdr-quality-badge--from {
  color: rgba(255, 255, 255, 0.36);
  opacity: 0.72;
  transform: scale(0.96);
  transition-delay: 360ms;
}

.hdr-experience.is-hdr-starting .hdr-quality-badge--to,
.hdr-experience.is-hdr-powered .hdr-quality-badge--to {
  color: #ff9958;
  opacity: 1;
  text-shadow: 0 0 14px rgba(244, 87, 0, 0.64);
  transform: scale(1);
  transition-delay: 620ms;
}

.hdr-experience.is-hdr-starting .hdr-quality-rail__fill,
.hdr-experience.is-hdr-powered .hdr-quality-rail__fill {
  transform: scaleX(1);
  transition-delay: 220ms;
}

.hdr-experience.is-hdr-starting .hdr-quality-rail__fill::after,
.hdr-experience.is-hdr-powered .hdr-quality-rail__fill::after {
  opacity: 1;
  filter: blur(0);
  transform: translateY(-50%) scale(1);
  transition-delay: 900ms;
}

.hdr-experience.is-hdr-powered .hdr-video--sdr {
  opacity: 0;
  filter: brightness(1.2) saturate(0.75) contrast(1.02);
}

.hdr-experience.is-hdr-powered .hdr-quality-scan {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition-duration: 180ms, 0ms;
  transition-delay: 0ms;
}

.hdr-experience.is-hdr-powered .hdr-screen__veil {
  opacity: 0;
}

.hdr-experience.is-hdr-powered .hdr-quality-copy__progress {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(-5px);
}

.hdr-experience.is-hdr-powered .hdr-quality-copy__complete {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 90ms;
}

.hdr-device {
  position: absolute;
  z-index: 4;
  top: 12%;
  right: 0;
  left: auto;
  width: min(32%, 640px);
  max-width: none;
  transform-origin: 50% 46%;
}

.hdr-device[hidden] {
  display: none !important;
}

@media (min-width: 721px) {
  .hdr-device {
    top: auto;
    right: 0;
    bottom: 30px;
    translate: 0 0;
  }

  .hdr-experience.is-hdr-settled .hdr-device {
    translate: calc(100% + 6vw) 0;
  }
}

.hdr-device>img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  filter: drop-shadow(-28px 34px 38px rgba(0, 0, 0, 0.62));
  pointer-events: none;
  user-select: none;
}

.js .hdr-device.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(16%, 24px, 0) scale(0.985);
  transition-property: opacity, transform, filter, translate;
  transition-duration: 900ms, 900ms, 900ms, 2000ms;
  transition-timing-function: var(--ease-out), var(--ease-out), var(--ease-out), cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0ms, 0ms, 0ms, 240ms;
}

.js .hdr-device.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.hdr-experience.is-hdr-settled .hdr-device {
  pointer-events: none;
}

.hdr-power-button {
  position: absolute;
  z-index: 3;
  top: 54.3557%;
  left: 48.6582%;
  display: grid;
  place-items: center;
  width: clamp(54px, 5.2vw, 80px);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(244, 87, 0, 0.025);
  box-shadow: 0 0 0 0 rgba(244, 87, 0, 0);
  transform: translate(-50%, -50%);
  scale: 1;
  cursor: pointer;
  transition-property: scale, box-shadow;
  transition-duration: 150ms, 240ms;
  transition-timing-function: ease-out;
}

.hdr-power-button::before,
.hdr-power-button::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hdr-power-button::before {
  inset: 27%;
  border: 2px solid rgba(255, 187, 129, 0.96);
  background: rgba(244, 87, 0, 0.2);
  box-shadow:
    0 0 14px rgba(255, 153, 79, 0.92),
    0 0 34px rgba(244, 87, 0, 0.58),
    0 0 58px rgba(244, 87, 0, 0.28);
  animation: hdr-power-breathe 1.55s ease-in-out infinite;
}

.hdr-power-button::after {
  inset: -8%;
  border: 1px solid rgba(255, 133, 55, 0.92);
  box-shadow:
    0 0 0 8px rgba(244, 87, 0, 0.07),
    0 0 28px rgba(244, 87, 0, 0.58),
    inset 0 0 18px rgba(255, 145, 73, 0.16);
  animation: hdr-power-signal 1.65s cubic-bezier(0.2, 0, 0.2, 1) infinite;
}

.hdr-power-button:hover {
  box-shadow: 0 0 0 10px rgba(244, 87, 0, 0.08), 0 0 48px rgba(244, 87, 0, 0.46);
}

.hdr-power-button:active {
  scale: 0.96;
}

.hdr-experience.is-hdr-starting .hdr-power-button::before,
.hdr-experience.is-hdr-powered .hdr-power-button::before {
  border-color: rgba(255, 210, 171, 0.95);
  background: rgba(244, 87, 0, 0.28);
  box-shadow: 0 0 14px rgba(255, 151, 70, 0.82), 0 0 34px rgba(244, 87, 0, 0.48);
  animation: none;
}

.hdr-experience.is-hdr-starting .hdr-power-button::after,
.hdr-experience.is-hdr-powered .hdr-power-button::after {
  opacity: 0;
  animation: none;
}

.hdr-mode {
  position: absolute;
  z-index: 4;
  top: 72.23%;
  left: 48.6582%;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  min-height: 36px;
  padding: 6px 12px 6px 10px;
  border-radius: 18px;
  background: rgba(8, 10, 13, 0.78);
  color: var(--paper);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.09), 0 10px 28px rgba(0, 0, 0, 0.38);
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.hdr-mode__signal {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(245, 245, 247, 0.5);
  box-shadow: 0 0 0 4px rgba(245, 245, 247, 0.05);
  transition-property: background-color, box-shadow;
  transition-duration: 320ms;
  transition-timing-function: var(--ease-out);
}

.hdr-mode__copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hdr-experience.is-hdr-starting .hdr-mode__signal,
.hdr-experience.is-hdr-powered .hdr-mode__signal {
  background: var(--brand-bright);
  box-shadow: 0 0 0 5px rgba(244, 87, 0, 0.1), 0 0 18px rgba(244, 87, 0, 0.68);
}

@keyframes hdr-power-breathe {

  0%,
  100% {
    opacity: 0.82;
    scale: 0.9;
  }

  50% {
    opacity: 1;
    scale: 1.32;
  }
}

@keyframes hdr-power-signal {
  0% {
    opacity: 0.96;
    scale: 0.68;
  }

  68% {
    opacity: 0.32;
    scale: 1.65;
  }

  100% {
    opacity: 0;
    scale: 2.05;
  }
}

.output-section {
  --chapter-atmosphere:
    radial-gradient(ellipse at 50% 24%, rgba(244, 87, 0, 0.09), transparent 38%),
    radial-gradient(ellipse at 18% 78%, rgba(255, 255, 255, 0.045), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 46%, rgba(0, 0, 0, 0.3));
  position: relative;
  min-height: 0;
  padding-top: clamp(48px, 4vw, 64px);
  padding-bottom: clamp(56px, 5vw, 72px);
  overflow: hidden;
  background: linear-gradient(180deg, #020304 0%, #070708 58%, #0d0f12 100%);
}

.output-heading {
  text-align: center;
}

.output-heading h2 {
  max-width: 1040px;
  margin: 0 auto;
  font-size: var(--section-title-size);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.output-heading__mobile-break {
  display: none;
}

.output-heading>p:last-child {
  max-width: 820px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
  text-align: center;
}

.output-stage {
  position: relative;
  isolation: isolate;
  width: min(100%, 1600px);
  margin: clamp(46px, 5.5vw, 76px) auto 0;
}

.output-stage::before {
  position: absolute;
  z-index: -1;
  top: -4%;
  right: 6%;
  left: 6%;
  height: 68%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06), transparent 68%);
  filter: blur(28px);
  content: "";
  pointer-events: none;
}

.output-device {
  --output-side-fade: clamp(22px, 1.7vw, 30px);
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  -webkit-mask-image:
    linear-gradient(90deg,
      transparent 0,
      #000 var(--output-side-fade),
      #000 calc(100% - var(--output-side-fade)),
      transparent 100%),
    linear-gradient(180deg,
      #000 0%,
      #000 58%,
      rgba(0, 0, 0, 0.96) 64%,
      rgba(0, 0, 0, 0.72) 76%,
      rgba(0, 0, 0, 0.34) 88%,
      transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg,
      transparent 0,
      #000 var(--output-side-fade),
      #000 calc(100% - var(--output-side-fade)),
      transparent 100%),
    linear-gradient(180deg,
      #000 0%,
      #000 58%,
      rgba(0, 0, 0, 0.96) 64%,
      rgba(0, 0, 0, 0.72) 76%,
      rgba(0, 0, 0, 0.34) 88%,
      transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-composite: intersect;
}

.output-device img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.48));
  pointer-events: none;
  user-select: none;
}

.js .output-device.reveal {
  transform: translateY(26px) scale(0.985);
  transition-duration: 820ms;
}

.js .output-device.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.output-callouts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 7vw, 104px);
  width: min(78%, 1120px);
  margin: clamp(-158px, -10vw, -108px) auto 0;
  padding-top: clamp(74px, 6vw, 94px);
}

.output-callout {
  position: relative;
  min-width: 0;
  padding: 22px 0 0;
  border-top: 0;
}

.js .output-callout {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(14px);
  transition-property: opacity, filter, transform;
  transition-duration: 160ms;
  transition-timing-function: ease-in;
  transition-delay: 0ms;
}

.js .output-stage.is-output-4k-visible .output-callout--4k,
.js .output-stage.is-output-multi-visible .output-callout--multi {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-duration: 420ms;
  transition-timing-function: var(--ease-out);
  transition-delay: 220ms;
}

.output-callout::before {
  position: absolute;
  bottom: calc(100% + 1px);
  left: 50%;
  width: 1px;
  height: clamp(72px, 6vw, 94px);
  background: linear-gradient(180deg, rgba(244, 87, 0, 0.88), rgba(244, 87, 0, 0.3));
  box-shadow: 0 0 12px rgba(244, 87, 0, 0.2);
  content: "";
  transform-origin: top center;
}

.output-callout::after {
  position: absolute;
  bottom: calc(100% + clamp(69px, 5.8vw, 91px));
  left: calc(50% - 3px);
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 175, 115, 0.82);
  border-radius: 50%;
  background: var(--brand-bright);
  box-shadow: 0 0 14px rgba(244, 87, 0, 0.62);
  content: "";
}

.output-callout--multi::before {
  left: -25%;
  width: 25%;
  border-bottom: 1px solid rgba(244, 87, 0, 0.34);
  border-left: 1px solid rgba(244, 87, 0, 0.62);
  background: transparent;
  box-shadow: none;
}

.output-callout--multi::after {
  left: calc(-25% - 3px);
}

.output-port-map {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.output-port-map__route {
  fill: none;
  stroke: rgba(244, 87, 0, 0.48);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.output-port-map__route--branch {
  stroke: rgba(244, 87, 0, 0.5);
}

.output-port-map__route--trunk {
  stroke: rgba(244, 87, 0, 0.72);
}

.output-port-map__node {
  fill: var(--brand-bright);
  stroke: rgba(255, 190, 142, 0.92);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.output-port-map__terminal {
  fill: rgba(244, 87, 0, 0.86);
}

.js .output-port-map__group {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 160ms;
  transition-timing-function: ease-in;
}

.js .output-stage.is-output-4k-visible .output-port-map__group--4k,
.js .output-stage.is-output-multi-visible .output-port-map__group--multi {
  opacity: 1;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.js .output-port-map .output-port-map__route {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition-property: stroke-dashoffset;
  transition-duration: 160ms;
  transition-timing-function: ease-in;
  transition-delay: 0ms;
}

.js .output-stage.is-output-4k-visible .output-port-map__group--4k .output-port-map__route,
.js .output-stage.is-output-multi-visible .output-port-map__group--multi .output-port-map__route {
  stroke-dashoffset: 0;
  transition-duration: 620ms;
  transition-timing-function: var(--ease-out);
  transition-delay: var(--route-enter-delay, 0ms);
}

.js .output-port-map .output-port-map__node,
.js .output-port-map .output-port-map__terminal {
  opacity: 0;
  filter: blur(4px);
  scale: 0.25;
  transform-box: fill-box;
  transform-origin: center;
  transition-property: opacity, filter, scale;
  transition-duration: 160ms;
  transition-timing-function: ease-in;
  transition-delay: 0ms;
}

.js .output-stage.is-output-4k-visible .output-port-map__group--4k .output-port-map__node,
.js .output-stage.is-output-4k-visible .output-port-map__group--4k .output-port-map__terminal,
.js .output-stage.is-output-multi-visible .output-port-map__group--multi .output-port-map__node,
.js .output-stage.is-output-multi-visible .output-port-map__group--multi .output-port-map__terminal {
  opacity: 1;
  filter: blur(0);
  scale: 1;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  transition-delay: var(--node-enter-delay, 0ms);
}

.output-port-map__group--4k .output-port-map__route--trunk,
.output-port-map__group--4k .output-port-map__terminal {
  --route-enter-delay: 180ms;
  --node-enter-delay: 180ms;
}

.output-port-map__group--multi .output-port-map__route:nth-of-type(2),
.output-port-map__group--multi .output-port-map__node:nth-of-type(2) {
  --route-enter-delay: 80ms;
  --node-enter-delay: 80ms;
}

.output-port-map__group--multi .output-port-map__route:nth-of-type(3),
.output-port-map__group--multi .output-port-map__node:nth-of-type(3) {
  --route-enter-delay: 160ms;
  --node-enter-delay: 160ms;
}

.output-port-map__group--multi .output-port-map__route:nth-of-type(4),
.output-port-map__group--multi .output-port-map__node:nth-of-type(4) {
  --route-enter-delay: 240ms;
  --node-enter-delay: 240ms;
}

.output-port-map__group--multi .output-port-map__route--trunk,
.js .output-port-map__group--multi .output-port-map__terminal {
  --route-enter-delay: 340ms;
  --node-enter-delay: 340ms;
}

@media (min-width: 721px) {
  .output-callouts {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    width: 100%;
  }

  .output-callout::before,
  .output-callout::after {
    display: none;
  }

  .output-callout {
    grid-area: 1 / 1;
    justify-self: start;
    width: clamp(320px, 32vw, 500px);
    translate: -50% 0;
    text-align: center;
  }

  .output-callout--4k {
    left: 27.25%;
  }

  .output-callout--multi {
    left: 38.05%;
  }

  .output-callout p {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 721px) {
  .output-callouts {
    row-gap: 32px;
  }

  .output-callout--4k {
    grid-area: 1 / 1;
  }

  .output-callout--multi {
    grid-area: 2 / 1;
  }
}

.output-callout h3 {
  color: var(--paper);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 630;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.output-callout h3 span {
  color: var(--brand-bright);
}

.output-callout p {
  max-width: 500px;
  margin-top: 13px;
  color: rgba(245, 245, 247, 0.58);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.72;
}

.viewer-section {
  --chapter-atmosphere:
    radial-gradient(ellipse at 50% 44%, rgba(255, 255, 255, 0.115), transparent 44%),
    radial-gradient(ellipse at 16% 82%, rgba(244, 87, 0, 0.075), transparent 36%),
    linear-gradient(180deg, rgba(18, 21, 26, 0.16), transparent 48%, rgba(0, 0, 0, 0.24));
  position: relative;
  min-height: 100dvh;
  padding: clamp(28px, 5dvh, 64px) var(--page-x);
  background: #0e1013;
}

.viewer-section::before {
  content: "";
  position: absolute;
  top: -24px;
  right: 0;
  left: 0;
  height: 24px;
  background: #0e1013;
  pointer-events: none;
}

.viewer-heading {
  width: min(100%, var(--content-max));
  margin: 0 auto clamp(18px, 2.6dvh, 28px);
}

.viewer-heading .section-heading {
  text-align: center;
}

.viewer-heading .section-heading h2 {
  margin: 0 auto;
  font-size: clamp(48px, 4.6vw, 72px);
  line-height: 0.92;
  text-wrap: balance;
}

.viewer-intro {
  max-width: 720px;
  margin: clamp(14px, 1.8dvh, 20px) auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.75;
  text-align: center;
  text-wrap: pretty;
}

.viewer {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding-bottom: 0;
}

.js .viewer-heading.reveal,
.js .viewer.reveal {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.js .viewer-heading.reveal .section-heading h2,
.js .viewer-heading.reveal .viewer-intro,
.js .viewer.reveal .viewer-model-tabs button>span,
.js .viewer.reveal .viewer-canvas,
.js .viewer.reveal .viewer-controls {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(14px);
  transition-property: opacity, transform, filter;
  transition-duration: 560ms;
  transition-timing-function: var(--ease-out);
}

.js .viewer.reveal .viewer-canvas {
  transform: translateY(16px) scale(0.992);
  transition-duration: 640ms;
}

.js .viewer-heading.reveal.is-visible .section-heading h2,
.js .viewer-heading.reveal.is-visible .viewer-intro,
.js .viewer.reveal.is-visible .viewer-model-tabs button>span,
.js .viewer.reveal.is-visible .viewer-canvas,
.js .viewer.reveal.is-visible .viewer-controls {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.js .viewer-heading.reveal .viewer-intro {
  transition-delay: 100ms;
}

.js .viewer.reveal .viewer-model-tabs button:nth-child(1)>span {
  transition-delay: 180ms;
}

.js .viewer.reveal .viewer-model-tabs button:nth-child(2)>span {
  transition-delay: 240ms;
}

.js .viewer.reveal .viewer-model-tabs button:nth-child(3)>span {
  transition-delay: 300ms;
}

.js .viewer.reveal .viewer-model-tabs button:nth-child(4)>span {
  transition-delay: 360ms;
}

.js .viewer.reveal .viewer-canvas {
  transition-delay: 280ms;
}

.js .viewer.reveal .viewer-controls {
  transition-delay: 420ms;
}

.viewer-model-switcher {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.viewer-model-tabs {
  gap: 4px;
  padding: 5px;
  background: rgba(20, 21, 24, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 14px 34px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.viewer-model-tabs button {
  min-width: 72px;
  min-height: 44px;
  padding: 0 16px;
}

.viewer-model-tabs button>span {
  display: inline-block;
}

.viewer-model-tabs button[aria-selected="true"] {
  background: linear-gradient(180deg, var(--brand-bright), var(--brand));
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 8px 22px rgba(244, 87, 0, 0.32);
}

.viewer-canvas {
  position: relative;
  display: grid;
  place-items: center;
  height: clamp(340px, 46dvh, 440px);
  min-height: 0;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.11), transparent 33%),
    linear-gradient(135deg, #1a1c20 0%, #090a0c 70%);
  box-shadow: var(--shadow-ring), 0 40px 100px rgba(0, 0, 0, 0.36);
  touch-action: pan-y;
  user-select: none;
}

.viewer-canvas picture {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 92%;
}

.viewer-canvas img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(39dvh, 420px);
  object-fit: contain;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.62));
}

.viewer-controls {
  position: relative;
  z-index: 4;
  width: min(380px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 8px;
  border-radius: 28px;
  background: rgba(20, 21, 24, 0.88);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 46px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.viewer-rotation-controls {
  display: grid;
  grid-template-columns: 44px minmax(180px, 1fr) 44px;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition-property: background-color, color, opacity, scale, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.viewer-range-wrap {
  position: relative;
  min-width: 0;
  padding: 0 8px;
}

.viewer-range-cue {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 8px;
  left: 8px;
  height: 20px;
  background: radial-gradient(circle, rgba(255, 132, 58, 0.95) 0 12%, rgba(244, 87, 0, 0.42) 26%, transparent 68%) -48px 50% / 48px 20px no-repeat;
  opacity: 0;
  filter: blur(0.2px);
  pointer-events: none;
}

#view-range {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 44px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}

#view-range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-bright) 0 var(--range-progress, 14.28%), rgba(255, 255, 255, 0.15) var(--range-progress, 14.28%) 100%);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4);
}

#view-range::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border: 3px solid #fff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #fff 0 8%, rgba(255, 255, 255, 0.72) 9% 16%, transparent 18%),
    linear-gradient(145deg, #ff9a42, var(--brand-bright) 58%, var(--brand));
  box-shadow: 0 0 0 5px rgba(244, 87, 0, 0.16), 0 0 18px rgba(244, 87, 0, 0.48), 0 3px 8px rgba(0, 0, 0, 0.4);
  filter: brightness(0.96);
  appearance: none;
  animation: viewer-thumb-breathe 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

#view-range::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

#view-range::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--brand-bright);
}

#view-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #fff 0 8%, rgba(255, 255, 255, 0.72) 9% 16%, transparent 18%),
    linear-gradient(145deg, #ff9a42, var(--brand-bright) 58%, var(--brand));
  box-shadow: 0 0 0 5px rgba(244, 87, 0, 0.16), 0 0 18px rgba(244, 87, 0, 0.48), 0 3px 8px rgba(0, 0, 0, 0.4);
  filter: brightness(0.96);
  animation: viewer-thumb-breathe 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes viewer-thumb-breathe {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(244, 87, 0, 0.14), 0 0 14px rgba(244, 87, 0, 0.42), 0 3px 8px rgba(0, 0, 0, 0.4);
    filter: brightness(0.96);
  }

  46% {
    box-shadow: 0 0 0 8px rgba(244, 87, 0, 0.04), 0 0 28px rgba(255, 112, 24, 0.72), 0 0 42px rgba(244, 87, 0, 0.24), 0 3px 8px rgba(0, 0, 0, 0.4);
    filter: brightness(1.14);
  }

  54% {
    box-shadow: 0 0 0 9px rgba(244, 87, 0, 0), 0 0 34px rgba(255, 170, 92, 0.88), 0 0 52px rgba(244, 87, 0, 0.3), 0 3px 8px rgba(0, 0, 0, 0.4);
    filter: brightness(1.34);
  }
}

.range-ticks {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 4px;
  left: 16px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  pointer-events: none;
}

.range-ticks i {
  justify-self: center;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.viewer.is-guiding .viewer-range-cue {
  animation: viewer-range-guide 2.6s cubic-bezier(0.4, 0, 0.2, 1) 2;
}

@keyframes viewer-range-guide {

  0%,
  100% {
    background-position: -48px 50%;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  43% {
    background-position: calc(100% + 48px) 50%;
    opacity: 1;
  }

  50% {
    background-position: calc(100% + 48px) 50%;
    opacity: 0;
  }

  62% {
    opacity: 1;
  }

  92% {
    background-position: -48px 50%;
    opacity: 1;
  }
}

[data-image-shell] picture img {
  transition-property: opacity, transform, filter;
  transition-duration: 220ms;
  transition-timing-function: var(--ease-out);
}

[data-image-shell].is-changing picture img {
  opacity: 0.08;
  transform: translateY(6px) scale(0.99);
  filter: blur(4px) drop-shadow(0 20px 28px rgba(0, 0, 0, 0.45));
}

.models {
  --chapter-atmosphere:
    radial-gradient(ellipse at 86% 18%, rgba(244, 87, 0, 0.15), transparent 38%),
    radial-gradient(ellipse at 18% 76%, rgba(255, 255, 255, 0.055), transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 46%, rgba(21, 12, 8, 0.24));
  padding-bottom: clamp(52px, 4vw, 72px);
  background: #080709;
}

.models-heading {
  display: block;
}

.models-heading h2 {
  max-width: none;
  margin-top: 0;
}

.models-heading h2>span {
  display: block;
}

.model-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--content-max));
  margin: clamp(52px, 7vw, 96px) auto 0;
}

.model-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  background: var(--graphite);
  box-shadow: var(--shadow-ring);
  transform-origin: center bottom;
  transition-property: opacity, transform, filter, box-shadow;
  transition-duration: 260ms;
  transition-timing-function: var(--ease-out);
}

.model-card::before {
  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 125, 48, 0.45);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 240ms;
  transition-timing-function: var(--ease-out);
}

.model-card::after {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 16%;
  left: 16%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ff7a24 26%, #ffd0ad 50%, #ff7a24 74%, transparent);
  box-shadow: 0 0 20px rgba(244, 87, 0, 0.8);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0.3);
  transition-property: opacity, transform;
  transition-duration: 260ms;
  transition-timing-function: var(--ease-out);
}

.model-card__image {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  height: 280px;
  padding: 30px 16px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 48%),
    #121316;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.model-card__image img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.45));
  transition-property: transform, filter;
  transition-duration: 280ms;
  transition-timing-function: var(--ease-out);
}

.model-card__body {
  position: relative;
  z-index: 1;
  padding: 26px;
  background-color: transparent;
  transition-property: background-color;
  transition-duration: 240ms;
  transition-timing-function: var(--ease-out);
}

.model-card__body>p {
  color: var(--muted-2);
  font-size: 12px;
}

.model-card__body h3 {
  margin-top: 5px;
  font-size: 30px;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 20px;
  margin-left: -14px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--brand-bright);
  font-size: 13px;
  cursor: pointer;
  transition-property: color, background-color, box-shadow, scale;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.text-button span {
  transition-property: transform;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}

.text-button:active {
  scale: 0.96;
}

.js .model-card.reveal.is-visible {
  transition-delay: 0ms !important;
}

.js .model-card.reveal.is-visible:focus-within:not(.is-pointer-focus-restored) {
  transform: translateY(-10px) scale(1.012);
  filter: brightness(1.08);
  box-shadow:
    0 0 34px rgba(244, 87, 0, 0.17),
    0 32px 70px rgba(0, 0, 0, 0.5);
}

.model-card:focus-within:not(.is-pointer-focus-restored)::before,
.model-card:focus-within:not(.is-pointer-focus-restored)::after {
  opacity: 1;
}

.model-card:focus-within:not(.is-pointer-focus-restored)::after {
  transform: scaleX(1);
}

.model-card:focus-within:not(.is-pointer-focus-restored) .model-card__image img {
  transform: translateY(-5px) scale(1.055);
  filter: brightness(1.12) drop-shadow(0 22px 26px rgba(0, 0, 0, 0.5));
}

.model-card:focus-within:not(.is-pointer-focus-restored) .model-card__body {
  background-color: rgba(244, 87, 0, 0.055);
}

.model-card:focus-within:not(.is-pointer-focus-restored) .text-button {
  background-color: var(--brand);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 171, 108, 0.35), 0 8px 24px rgba(244, 87, 0, 0.3);
}

.model-card:focus-within:not(.is-pointer-focus-restored) .text-button span {
  transform: translateX(4px);
}

.model-card.is-pointer-focus-restored .text-button:focus-visible {
  outline: none;
}

.specs-section {
  --chapter-atmosphere:
    radial-gradient(ellipse at 78% 12%, rgba(244, 87, 0, 0.15), transparent 34%),
    radial-gradient(ellipse at 8% 72%, rgba(255, 255, 255, 0.045), transparent 28%),
    linear-gradient(180deg, rgba(20, 10, 5, 0.24), transparent 34%, rgba(0, 0, 0, 0.34));
  overflow: hidden;
  padding-top: clamp(52px, 4vw, 72px);
  background: #070708;
}

.specs-heading {
  text-align: center;
}

.specs-heading h2 {
  max-width: none;
  margin: 0 auto;
}

.specs-panel {
  position: relative;
  width: min(100%, var(--content-max));
  margin: clamp(48px, 6.5vw, 86px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(244, 87, 0, 0.09), transparent 28%),
    #0d0e10;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.specs-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 16px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.018);
}

.specs-toolbar>p {
  color: rgba(245, 245, 247, 0.9);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.specs-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px 22px;
  color: var(--muted);
  font-size: 12px;
}

.specs-legend>span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.specs-scroll {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: rgba(244, 87, 0, 0.7) rgba(255, 255, 255, 0.05);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.specs-scroll:focus-visible {
  outline: 2px solid var(--brand-bright);
  outline-offset: -4px;
}

.specs-scroll::-webkit-scrollbar {
  height: 8px;
}

.specs-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.specs-scroll::-webkit-scrollbar-thumb {
  border: 2px solid #0d0e10;
  border-radius: 999px;
  background: rgba(244, 87, 0, 0.72);
}

.specs-table {
  width: 100%;
  min-width: 1120px;
  border-spacing: 0;
  border-collapse: separate;
  table-layout: fixed;
  color: rgba(245, 245, 247, 0.82);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.specs-col-label {
  width: 168px;
}

.specs-table th,
.specs-table td {
  padding: 17px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  line-height: 1.55;
  text-align: center;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.specs-table tr> :last-child {
  border-right: 0;
}

.specs-table tbody tr:last-child>* {
  border-bottom: 0;
}

.specs-table thead th {
  position: sticky;
  z-index: 3;
  top: 0;
  height: 68px;
  background: rgba(19, 20, 23, 0.97);
  color: var(--paper);
  font-weight: 650;
  backdrop-filter: blur(16px);
}

.specs-table thead th:first-child {
  z-index: 5;
  left: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: left;
}

.specs-model {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(244, 87, 0, 0.22);
  border-radius: 999px;
  background: rgba(244, 87, 0, 0.08);
  color: var(--brand-bright);
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 22px rgba(244, 87, 0, 0.07);
}

.specs-table tbody tr {
  --spec-row-bg: rgba(255, 255, 255, 0.008);
}

.specs-table tbody tr:nth-child(even) {
  --spec-row-bg: rgba(255, 255, 255, 0.022);
}

.specs-table tbody tr>* {
  background: var(--spec-row-bg);
  transition: background-color 180ms ease-out;
}

.specs-table tbody th {
  position: sticky;
  z-index: 2;
  left: 0;
  background: #0d0e10;
  color: rgba(245, 245, 247, 0.9);
  font-size: 12.5px;
  font-weight: 600;
  text-align: left;
  box-shadow: 1px 0 rgba(255, 255, 255, 0.07);
}

.specs-table tbody tr:nth-child(even)>th {
  background: #101114;
}

.specs-table tbody td {
  font-weight: 450;
}

.specs-row--dense td,
.specs-row--media td {
  font-size: 12px;
}

.spec-status {
  display: inline-block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  vertical-align: 1px;
}

.spec-status--supported {
  border: 1px solid rgba(255, 162, 89, 0.9);
  background: var(--brand-bright);
  box-shadow: 0 0 0 4px rgba(244, 87, 0, 0.08), 0 0 14px rgba(244, 87, 0, 0.42);
}

.spec-status--unsupported {
  border: 1.5px solid rgba(245, 245, 247, 0.5);
  background: transparent;
}

.spec-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid rgba(244, 87, 0, 0.3);
  border-radius: 999px;
  background: rgba(244, 87, 0, 0.09);
  color: var(--brand-bright);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.specs-swipe-hint {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .specs-table tbody tr:hover {
    --spec-row-bg: rgba(244, 87, 0, 0.06);
  }

  .specs-table tbody tr:hover>th {
    background: #17110e;
  }
}

.js .reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(22px);
  transition-property: opacity, transform, filter;
  transition-duration: 620ms;
  transition-timing-function: var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes heroEnter {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(14px);
  }

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

@keyframes signalBreath {
  from {
    opacity: 0.45;
    transform: scaleX(0.76);
  }

  to {
    opacity: 0.95;
    transform: scaleX(1);
  }
}

@media (hover: hover) and (pointer: fine) {

  .site-nav a:hover,
  .section-links a:not([aria-current]):hover,
  .language-link:hover,
  .text-link:hover {
    color: var(--paper);
  }

  .site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }

  .pill-button:hover {
    background: var(--brand-bright);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 14px 34px rgba(244, 87, 0, 0.28);
  }

  .film-trigger:hover {
    color: rgb(41, 151, 255);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .highlight-card:not(.is-active):hover .highlight-card__media {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.16),
      0 16px 42px rgba(0, 0, 0, 0.3);
  }

  .highlight-pagination button:hover::before {
    background: #fff;
  }

  .highlight-autoplay:hover,
  .film-close:hover,
  .model-spec-close:hover {
    background: rgba(255, 255, 255, 0.18);
  }

  .icon-button:not(:disabled):hover {
    background: rgba(244, 87, 0, 0.13);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 145, 82, 0.16), 0 8px 18px rgba(0, 0, 0, 0.2);
  }

  .js .model-card.reveal.is-visible:hover {
    transform: translateY(-10px) scale(1.012);
    filter: brightness(1.08);
    box-shadow:
      0 0 34px rgba(244, 87, 0, 0.17),
      0 32px 70px rgba(0, 0, 0, 0.5);
  }

  .model-card:hover::before,
  .model-card:hover::after {
    opacity: 1;
  }

  .model-card:hover::after {
    transform: scaleX(1);
  }

  .model-card:hover .model-card__image img {
    transform: translateY(-5px) scale(1.055);
    filter: brightness(1.12) drop-shadow(0 22px 26px rgba(0, 0, 0, 0.5));
  }

  .model-card:hover .model-card__body {
    background-color: rgba(244, 87, 0, 0.055);
  }

  .model-card:hover .text-button {
    background-color: var(--brand);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255, 171, 108, 0.35), 0 8px 24px rgba(244, 87, 0, 0.3);
  }

  .model-card:hover .text-button span,
  .text-button:hover span {
    transform: translateX(4px);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 120px 1fr auto;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .section-links {
    gap: clamp(18px, 2.2vw, 28px);
  }

  .model-tabs {
    justify-self: center;
  }

  .story-step {
    grid-template-columns: 32px 1fr;
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .hero {
    --hero-media-frame-height: 78%;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .language-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-tools {
    grid-column: 2;
  }

  .brand-link {
    width: 100px;
  }

  .brand-link svg {
    width: 100px;
    height: 50px;
  }

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

  .bom-copy__title h2 {
    font-size: clamp(36px, 4.4vw, 42px);
  }

  .scroll-story {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 28px;
  }

  .viewer-heading {
    margin-bottom: clamp(18px, 3dvh, 24px);
  }

  .model-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .model-card__image {
    height: 300px;
  }
}

@media (min-width: 721px) and (max-width: 900px) and (orientation: portrait) {
  .hero-copy {
    right: max(36px, var(--page-x));
    left: max(36px, var(--page-x));
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 0px;
    --product-nav-h: 0px;
    --page-x: max(18px, env(safe-area-inset-left));
    --section-title-size: 28px;
  }

  .product-nav {
    display: none;
  }

  .product-name {
    font-size: 15px;
  }

  .model-tabs {
    justify-self: end;
  }

  .model-tabs button {
    min-width: 42px;
    min-height: 38px;
    padding: 0 8px;
  }

  .product-nav>.pill-button {
    display: none;
  }

  .section-pad {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-heading h2 {
    margin-top: 16px;
    font-size: clamp(44px, 14vw, 68px);
    line-height: 1;
  }

  .section-heading>p:last-child {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero {
    --hero-media-lift: clamp(24px, 3.5svh, 32px);
    --hero-media-frame-height: 70%;
    min-height: max(720px, 100svh);
  }

  .hero-copy {
    top: calc(var(--header-h) + var(--product-nav-h) + 32px);
    right: max(18px, env(safe-area-inset-right));
    left: max(18px, env(safe-area-inset-left));
  }

  .hero-title {
    width: 100%;
  }

  .hero-title strong {
    margin: 0 auto;
    max-width: 10em;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .hero-media {
    top: calc(var(--header-h) + var(--product-nav-h) + clamp(128px, 18svh, 156px));
  }

  .playback-intro {
    min-height: 100svh;
  }

  .playback-intro::before {
    background:
      linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.88) 8%, rgba(0, 0, 0, 0.62) 32%, rgba(0, 0, 0, 0.08) 58%, rgba(29, 29, 31, 0.24) 80%, #1d1d1f 100%);
  }

  .playback-intro__media img {
    object-position: 58% 50%;
  }

  .playback-intro__source-space {
    top: 50%;
    left: 58%;
    transform: translate(-58%, -50%);
  }

  .playback-intro__copy {
    top: calc(var(--header-h) + clamp(52px, 9svh, 82px));
    right: max(24px, env(safe-area-inset-right));
    left: max(24px, env(safe-area-inset-left));
    width: auto;
    text-align: center;
  }

  .playback-intro__copy h2,
  .playback-intro__copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .playback-intro__copy h2 {
    max-width: none;
  }

  .playback-intro__copy p {
    max-width: 36em;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.72;
  }

  .playback-capabilities {
    height: max(1320px, 205svh);
  }

  .playback-capabilities__stage {
    min-height: 0;
  }

  .playback-capabilities__panel {
    width: 100%;
    padding: 20px 20px 18px;
    border-radius: 0;
  }

  .playback-capabilities__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .playback-capability {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 14px 0;
  }

  .playback-capability:nth-child(even) {
    border-left: 0;
  }

  .playback-capability:nth-child(n + 2) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .playback-capability__icon {
    width: 38px;
    height: 38px;
  }

  .playback-capability__icon svg {
    width: 28px;
    height: 28px;
  }

  .playback-capability h3 {
    font-size: 18px;
  }

  .playback-capability p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.58;
  }

  .highlights {
    --highlight-card-width: calc(64vw - 53.76px);
    --highlight-rail-start: max(24px, calc(18vw + 26.88px), env(safe-area-inset-left));
    padding-top: 96px;
    padding-bottom: 144px;
  }

  .highlights-heading {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    width: calc(100% - 48px);
    min-height: 122px;
    padding-bottom: 48px;
  }

  .highlights-heading h2 {
    margin-top: 0;
    font-size: 28px;
    line-height: 35px;
    letter-spacing: -0.035em;
  }

  .film-trigger {
    flex: 0 0 auto;
    gap: 2px;
    min-height: 21px;
    margin-top: 0;
    padding-left: 0;
    font-size: 14px;
    line-height: 21px;
  }

  .film-trigger__icon {
    width: 12px;
    height: 12px;
  }

  .highlight-rail {
    grid-auto-columns: var(--highlight-card-width);
    gap: 16px;
    margin-top: 0;
    padding-right: var(--highlight-rail-start);
    padding-bottom: 24px;
  }

  .highlight-card__media {
    height: 307.2px;
    border-radius: 17.92px;
  }

  .highlight-card__copy {
    padding: 20.48px;
  }

  .highlight-card__copy h3 {
    margin-top: 0;
    font-size: 17px;
    line-height: 23px;
    letter-spacing: -0.015em;
  }

  .highlight-card__copy p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 19px;
  }

  .highlight-controls {
    bottom: 20px;
    margin: 20px auto 48px;
  }

  .highlight-controls-wrap {
    top: 218px;
  }

  .highlight-pagination {
    --highlight-indicator-width: 22.4px;
    --highlight-active-button-width: 33.6px;
    width: 140px;
  }

  .film-dialog {
    padding: 0;
  }

  .film-dialog__stage {
    width: 100%;
    max-height: 100svh;
    border-radius: 0;
  }

  .model-spec-dialog {
    padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  }

  .model-spec-panel {
    width: 100%;
    height: calc(100svh - 24px);
    border-radius: 24px;
  }

  .model-spec-panel__header {
    min-height: 132px;
    padding: 22px 20px 20px;
  }

  .model-spec-panel__heading {
    padding-right: 4px;
  }

  .model-spec-panel__heading>p:first-child {
    font-size: 9px;
  }

  .model-spec-panel__heading h2 {
    font-size: clamp(27px, 8vw, 32px);
  }

  .model-spec-panel__intro {
    max-width: 260px;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.45;
  }

  .model-spec-panel__scroll {
    padding: 16px max(16px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    scrollbar-gutter: auto;
  }

  .model-spec-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .model-spec-overview__item {
    gap: 12px;
    min-height: 96px;
    padding: 16px;
    border-radius: 15px;
  }

  .model-spec-overview__item::before {
    left: 16px;
    width: 24px;
  }

  .model-spec-overview__item strong {
    font-size: 14px;
  }

  .model-spec-groups {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 10px;
  }

  .model-spec-group,
  .model-spec-group--wide {
    grid-column: auto;
  }

  .model-spec-group {
    padding: 19px 18px 8px;
    border-radius: 18px;
  }

  .model-spec-group--wide .model-spec-list {
    display: block;
  }

  .model-spec-list__row {
    grid-template-columns: minmax(96px, 0.5fr) minmax(0, 1fr);
    gap: 12px;
  }

  .model-spec-group--wide .model-spec-list__row:nth-last-child(2) {
    border-bottom-color: rgba(255, 255, 255, 0.065);
  }

  .scroll-story {
    display: block;
    width: 100%;
  }

  .scroll-story.bom-story {
    min-height: calc(100dvh - var(--header-h) - var(--product-nav-h) + clamp(600px, 72dvh, 840px));
  }

  .story-stage {
    top: calc(var(--header-h) + var(--product-nav-h) + 12px);
    z-index: 3;
    width: calc(100% - 24px);
    height: 46dvh;
    min-height: 330px;
    margin: 0 auto;
    border-radius: 22px;
  }

  .bom-stage {
    top: calc(var(--header-h) + var(--product-nav-h) + 12px);
    width: calc(100% - (2 * var(--page-x)));
    height: calc(100dvh - var(--header-h) - var(--product-nav-h) - 24px);
    min-height: min(520px, calc(100dvh - var(--header-h) - var(--product-nav-h) - 24px));
    border-radius: 0;
  }

  .bom-copy {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: auto;
    padding: 0 4px;
    transform: none;
  }

  .bom-copy__title h2 {
    max-width: none;
    margin-top: 8px;
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1;
  }

  .bom-copy__details {
    padding-top: 16px;
  }

  .bom-copy .design-heading__subtitle {
    font-size: clamp(20px, 5.8vw, 25px);
    line-height: 1.22;
  }

  .bom-copy .design-heading__body {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.6;
  }

  .story-stage::before,
  .viewer-canvas::before {
    inset: 14px;
    border-radius: 12px;
  }

  .story-stage img {
    max-height: 34dvh;
  }

  .bom-visual {
    top: 68%;
    right: auto;
    left: 50%;
    width: 100%;
    height: auto;
    max-width: none;
    transform: translate(-50%, -50%);
  }

  .bom-stage .bom-part {
    max-height: none;
  }

  .story-model {
    top: 22px;
    left: 22px;
    font-size: 54px;
  }

  .stage-meta {
    right: 22px;
    bottom: 18px;
    left: 22px;
  }

  .story-steps {
    position: relative;
    z-index: 2;
    width: calc(100% - (2 * var(--page-x)));
    margin: 0 auto;
  }

  .story-step {
    align-content: start;
    min-height: 110dvh;
    padding: 0 0 14dvh;
  }

  .story-step>.story-index,
  .story-step>div {
    position: sticky;
    top: calc(var(--header-h) + var(--product-nav-h) + 46dvh + 28px);
    align-self: start;
  }

  .story-step h3 {
    font-size: 38px;
  }

  .story-step div>p:last-child {
    font-size: 15px;
  }

  .hdr-section {
    padding-top: 88px;
    padding-bottom: 84px;
  }

  .hdr-heading>p:last-child {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hdr-experience {
    height: clamp(500px, 72svh, 620px);
    margin-top: 36px;
  }

  .hdr-stage {
    height: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .hdr-scene {
    top: 0;
    left: -55%;
    width: 210%;
    transform: translate3d(0, var(--hdr-media-y), 0) scale(var(--hdr-media-scale));
    transform-origin: 50% 18%;
  }

  .hdr-device {
    top: 52.5vw;
    right: 0;
    left: auto;
    width: 94.4%;
  }

  .hdr-experience.is-hdr-settled .hdr-device {
    translate: calc(100% + 28px) 0;
  }

  .hdr-quality-transition {
    min-width: 170px;
    padding: 10px 12px 9px;
    border-radius: 13px;
  }

  .hdr-quality-switch {
    grid-template-columns: auto minmax(52px, 1fr) auto;
    gap: 8px;
  }

  .hdr-quality-copy {
    margin-top: 7px;
    font-size: 8px;
  }

  .output-section {
    padding-top: 88px;
    padding-bottom: 64px;
  }

  .output-heading>p:last-child {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
  }

  .output-heading__mobile-break {
    display: block;
  }

  .output-stage {
    margin-top: 34px;
  }

  .output-device {
    --output-side-fade: 14px;
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .output-port-map {
    display: none;
  }

  .output-callouts {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    width: 100%;
    margin: -38px auto 0;
    padding-top: 0;
  }

  .output-callout {
    padding: 9px 0 2px 18px;
    border-top: 0;
    border-left: 1px solid rgba(244, 87, 0, 0.28);
  }

  .output-callout::before {
    top: 0;
    bottom: auto;
    left: -1px;
    width: 2px;
    height: 48px;
    border: 0;
    background: linear-gradient(180deg, rgba(244, 87, 0, 0.88), rgba(244, 87, 0, 0.3));
  }

  .output-callout--multi::before {
    left: -1px;
  }

  .output-callout::after {
    display: none;
  }

  .output-callout h3 {
    font-size: 23px;
  }

  .output-callout p {
    margin-top: 10px;
    font-size: 14px;
  }

  .viewer-heading {
    gap: 18px;
    margin-bottom: 28px;
  }

  .viewer-section {
    padding: 32px var(--page-x) 48px;
  }

  .viewer-canvas {
    height: clamp(300px, 40dvh, 340px);
    min-height: 0;
    border-radius: 22px;
  }

  .viewer-canvas picture {
    width: 94%;
  }

  .viewer-canvas img {
    width: 96%;
    max-width: 100%;
    max-height: 270px;
  }

  .viewer-model-switcher {
    margin-bottom: 12px;
  }

  .viewer-controls {
    width: 100%;
    margin: 14px auto 0;
    padding: 6px;
    border-radius: 26px;
  }

  .viewer-model-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 360px);
  }

  .viewer-model-tabs button {
    min-width: 0;
    min-height: 44px;
    padding: 0 8px;
  }

  .viewer-rotation-controls {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 6px;
    width: 100%;
  }

  .viewer {
    padding-bottom: 0;
  }

  .icon-button {
    width: 44px;
    height: 44px;
    border-radius: 20px;
  }

  .model-list {
    gap: 14px;
    margin-top: 46px;
  }

  .models {
    padding-bottom: 56px;
  }

  .model-card {
    display: block;
  }

  .model-card__image {
    height: 260px;
  }

  .specs-section {
    padding-top: 56px;
    padding-bottom: 88px;
  }

  .specs-panel {
    margin-top: 38px;
    border-radius: 20px;
  }

  .specs-toolbar {
    align-items: flex-start;
    min-height: 0;
    padding: 18px;
  }

  .specs-toolbar>p {
    display: none;
  }

  .specs-legend {
    justify-content: flex-start;
    gap: 10px 18px;
  }

  .specs-swipe-hint {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.012);
    color: var(--muted-2);
    font-size: 11px;
  }

  .specs-swipe-hint span {
    color: var(--brand-bright);
    font-size: 15px;
  }

  .specs-scroll {
    scroll-padding-inline-start: 126px;
  }

  .specs-table {
    min-width: 980px;
    font-size: 12px;
  }

  .specs-col-label {
    width: 126px;
  }

  .specs-table th,
  .specs-table td {
    padding: 15px 13px;
  }

  .specs-table thead th {
    height: 60px;
  }

  .specs-table tbody th {
    font-size: 11.5px;
  }

  .specs-model {
    min-height: 30px;
    padding: 0 12px;
    font-size: 13px;
  }

  .specs-row--dense td,
  .specs-row--media td {
    font-size: 11px;
  }

}

@media (min-width: 721px) and (max-height: 820px) {
  .viewer-section {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .viewer-heading {
    margin-bottom: 12px;
  }

  .viewer-heading .section-heading h2 {
    font-size: clamp(46px, 4vw, 58px);
  }

  .viewer-model-switcher {
    margin-bottom: 10px;
  }

  .viewer-canvas {
    height: clamp(280px, 40dvh, 330px);
  }

  .viewer-canvas img {
    max-height: 34dvh;
  }

  .viewer-controls {
    margin-top: 12px;
  }
}

@media (max-width: 420px) {
  .story-step {
    grid-template-columns: 28px 1fr;
    gap: 8px;
  }
}

@media (max-width: 720px) and (max-height: 700px) {
  .bom-copy__title .eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .bom-copy__title h2 {
    margin-top: 6px;
    font-size: clamp(28px, 9vw, 34px);
  }

  .bom-copy__details {
    padding-top: 10px;
  }

  .bom-copy .design-heading__subtitle {
    font-size: clamp(17px, 5vw, 20px);
    line-height: 1.18;
  }

  .bom-copy .design-heading__body {
    margin-top: 6px;
    font-size: 11.5px;
    line-height: 1.45;
  }

  .bom-visual {
    top: 69%;
    width: auto;
    height: min(44%, calc(100% - 160px));
    max-width: 92%;
  }

  .stage-meta {
    right: 14px;
    bottom: 6px;
    left: 14px;
    gap: 8px;
  }
}

@media (min-width: 721px) and (max-height: 700px) {
  .playback-capabilities__stage {
    min-height: 0;
  }

  .playback-capabilities__panel {
    width: 100%;
    padding: 18px var(--page-x);
    border-radius: 0;
  }

  .playback-capability {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 14px 18px;
  }

  .playback-capability__icon {
    width: 40px;
    height: 40px;
  }

  .playback-capability__icon svg {
    width: 29px;
    height: 29px;
  }

  .playback-capability h3 {
    font-size: 19px;
  }

  .playback-capability p {
    margin-top: 6px;
    font-size: 12.5px;
    line-height: 1.48;
  }
}

@media (max-width: 720px) and (max-height: 520px) {
  .playback-capabilities__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .playback-capabilities__panel {
    padding: 12px 14px;
    border-radius: 0;
  }

  .playback-capability {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 12px;
  }

  .playback-capability:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
  }

  .playback-capability:nth-child(2) {
    border-top: 0;
  }

  .playback-capability__icon {
    width: 32px;
    height: 32px;
  }

  .playback-capability__icon svg {
    width: 23px;
    height: 23px;
  }

  .playback-capability h3 {
    font-size: 16px;
  }

  .playback-capability p {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.38;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-enter,
  .js .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .js .playback-intro__media.reveal {
    opacity: 1;
    transform: none;
  }

  .playback-capabilities {
    --capability-progress: 1 !important;
    height: auto;
  }

  .playback-capabilities__stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: max(680px, 100svh);
  }

  .playback-capabilities__panel {
    transform: translate3d(0, 0, 0) !important;
  }

  .playback-capability {
    transform: none !important;
  }

  .playback-capability {
    --capability-item-progress: 1 !important;
    opacity: 1;
    filter: none;
  }

  .js .viewer-heading.reveal .section-heading h2,
  .js .viewer-heading.reveal .viewer-intro,
  .js .viewer.reveal .viewer-model-tabs button>span,
  .js .viewer.reveal .viewer-canvas,
  .js .viewer.reveal .viewer-controls {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero-media video {
    display: none;
  }

  .hero-media__poster {
    opacity: 1;
  }

  .hero-power-glow {
    animation: none;
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1);
  }

  .highlight-rail {
    scroll-behavior: auto;
  }

  .highlight-autoplay {
    display: none;
  }

  .viewer-range-cue {
    display: none;
  }

  .chapter-atmosphere {
    opacity: 1 !important;
    transform: none !important;
  }

  .bom-part {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .js .hdr-device.reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition-delay: 0ms;
  }

  .hdr-power-button::before,
  .hdr-power-button::after {
    animation: none;
  }

  .hdr-quality-transition,
  .hdr-quality-scan {
    display: none;
  }
}

.highlights-heading h2,
.bom-copy__title h2,
.hdr-heading h2,
.output-heading h2,
.viewer-heading .section-heading h2,
.models-heading h2,
.specs-heading h2 {
  font-size: var(--section-title-size);
}

/* Apple-style product angle viewer */
.viewer-section {
  position: relative;
  min-height: 0;
  padding: clamp(44px, 5vw, 72px) var(--page-x) clamp(64px, 7vw, 96px);
  overflow: hidden;
  background: #0e1013;
}

.viewer-section .chapter-atmosphere {
  display: none;
}

.viewer-heading,
.viewer {
  width: min(100%, 1600px);
}

.viewer-heading {
  margin: 0 auto clamp(28px, 3vw, 42px);
}

.viewer-heading .section-heading,
.viewer-heading .section-heading h2,
.viewer-intro {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.viewer-heading .section-heading h2 {
  max-width: 900px;
  font-size: var(--section-title-size);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.viewer-intro {
  max-width: 780px;
  margin-top: 18px;
  color: rgba(245, 245, 247, 0.62);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.65;
  text-wrap: pretty;
}

.viewer {
  margin: 0 auto;
  padding: 0;
}

.viewer-stage {
  position: relative;
  height: clamp(520px, 60dvh, 620px);
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.viewer-model-switcher {
  position: absolute;
  z-index: 8;
  top: 16px;
  right: auto;
  left: 50%;
  display: flex;
  justify-content: center;
  margin: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.viewer-model-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3px;
  width: min(292px, 100%);
  padding: 4px;
  border-radius: 999px;
  background: rgba(25, 25, 27, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 12px 30px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.viewer-model-tabs button {
  min-width: 0;
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  color: rgba(245, 245, 247, 0.58);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition-property: color, background-color, box-shadow, scale;
  transition-duration: 220ms, 220ms, 220ms, 140ms;
  transition-timing-function: var(--ease-out);
}

.viewer-model-tabs button[aria-selected="true"] {
  color: #fff;
  background: linear-gradient(180deg, #ff7b18, #ef5200);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 7px 18px rgba(244, 87, 0, 0.2);
}

.viewer-model-tabs button:active,
.viewer-angle-button:active,
.viewer-step-button:active:not(:disabled),
.viewer-close:active:not(:disabled) {
  scale: 0.96;
}

.viewer-angle-panel {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: clamp(62px, 6%, 96px);
  width: 310px;
  transform: translateY(-50%);
}

.viewer-angle-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.viewer-angle-button {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 202px;
  min-height: 50px;
  padding: 9px 16px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: rgba(245, 245, 247, 0.9);
  text-align: left;
  background: #242426;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.055);
  cursor: pointer;
  transform-origin: left center;
  transition-property: width, min-height, color, background-color, box-shadow, scale;
  transition-duration: 440ms, 440ms, 220ms, 220ms, 220ms, 140ms;
  transition-timing-function: var(--ease-out);
}

.viewer-angle-button:nth-child(1) {
  width: 178px;
}

.viewer-angle-button:nth-child(2) {
  width: 190px;
}

.viewer-angle-button:nth-child(3) {
  width: 190px;
}

.viewer-angle-button:nth-child(4) {
  width: 190px;
}

.viewer-angle-button:nth-child(5) {
  width: 190px;
}

.viewer-angle-button:nth-child(6) {
  width: 190px;
}

.viewer-angle-button:nth-child(7) {
  width: 190px;
}

.viewer-angle-button:nth-child(8) {
  width: 190px;
}

.viewer-angle-button[aria-expanded="true"] {
  width: 310px;
  min-height: 82px;
  color: #fff;
  background: #2b2b2e;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.2);
}

.viewer-angle-button[aria-selected="true"][aria-expanded="false"] .viewer-angle-mark {
  box-shadow: inset 0 0 0 1.5px rgba(255, 119, 42, 0.95);
}

.viewer-angle-mark {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.9);
  transition-property: background-color, box-shadow, scale;
  transition-duration: 260ms;
  transition-timing-function: var(--ease-out);
}

.viewer-angle-mark i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition-property: opacity, transform, filter;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.viewer-angle-mark i+i {
  transform: translate(-50%, -50%) rotate(90deg);
}

.viewer-angle-button[aria-expanded="true"] .viewer-angle-mark {
  background: #f45700;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    0 0 0 4px rgba(244, 87, 0, 0.1);
}

.viewer-angle-button[aria-expanded="true"] .viewer-angle-mark i+i {
  opacity: 0;
  filter: blur(4px);
  transform: translate(-50%, -50%) rotate(90deg) scale(0.25);
}

.viewer-angle-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.viewer-angle-copy strong {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
}

.viewer-angle-copy small {
  max-width: 225px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(245, 245, 247, 0.6);
  font-size: 12px;
  font-weight: 450;
  line-height: 1.45;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(6px);
  text-wrap: pretty;
  transition-property: max-height, margin-top, opacity, transform, filter;
  transition-duration: 420ms, 420ms, 260ms, 420ms, 320ms;
  transition-timing-function: var(--ease-out);
}

.viewer-angle-button[aria-expanded="true"] .viewer-angle-copy small {
  max-height: 38px;
  margin-top: 5px;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 0ms, 0ms, 110ms, 80ms, 80ms;
}

.viewer-angle-navigation {
  position: absolute;
  top: 50%;
  left: -54px;
  display: grid;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition-property: opacity, transform;
  transition-duration: 220ms, 360ms;
  transition-timing-function: var(--ease-out);
}

.viewer.is-angle-expanded .viewer-angle-navigation {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.viewer-step-button,
.viewer-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: rgba(245, 245, 247, 0.82);
  background: rgba(36, 36, 38, 0.94);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition-property: color, background-color, box-shadow, opacity, transform, scale;
  transition-duration: 180ms, 180ms, 180ms, 220ms, 360ms, 140ms;
  transition-timing-function: var(--ease-out);
}

.viewer-step-button svg,
.viewer-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.viewer-step-button:disabled {
  opacity: 0.24;
  cursor: default;
}

.viewer-close {
  position: absolute;
  z-index: 9;
  top: 28px;
  right: 28px;
  opacity: 1;
  transform: scale(1);
}

.viewer-close:disabled {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.25);
  filter: blur(4px);
}

.viewer-canvas {
  position: absolute;
  z-index: 2;
  top: 68px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: auto;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  outline: none;
  background: transparent;
  box-shadow: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.viewer-canvas::before {
  display: none;
}

.viewer-canvas.is-dragging {
  cursor: grabbing;
}

.viewer-canvas .viewer-picture {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 460ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.viewer-canvas .viewer-picture source {
  display: none;
}

.viewer-picture--active {
  z-index: 2;
  opacity: 1;
}

.viewer-picture--ghost {
  z-index: 1;
  opacity: 0;
  transition-duration: 210ms;
  transition-timing-function: ease-in;
}

.viewer-canvas .viewer-picture img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: 50% 52%;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.58));
  transform: translate3d(0, 0, 0) scale(1);
  transition-property: opacity, transform, filter;
  transition-duration: 460ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  will-change: transform, opacity, filter;
}

.viewer-canvas .viewer-picture--ghost img {
  transition-duration: 210ms;
  transition-timing-function: ease-in;
}

.viewer-canvas.is-preparing-swap .viewer-picture,
.viewer-canvas.is-preparing-swap .viewer-picture img {
  transition: none;
}

.viewer-canvas.is-preparing-swap .viewer-picture--active {
  opacity: 0;
}

.viewer-canvas.is-preparing-swap .viewer-picture--ghost {
  opacity: 1;
}

.viewer-canvas[data-swap-direction="forward"].is-preparing-swap .viewer-picture--active img {
  filter: blur(4px) drop-shadow(0 22px 28px rgba(0, 0, 0, 0.46));
  transform: translate3d(24px, 0, 0) scale(0.985);
}

.viewer-canvas[data-swap-direction="backward"].is-preparing-swap .viewer-picture--active img {
  filter: blur(4px) drop-shadow(0 22px 28px rgba(0, 0, 0, 0.46));
  transform: translate3d(-24px, 0, 0) scale(0.985);
}

.viewer-canvas[data-swap-direction="model"].is-preparing-swap .viewer-picture--active img {
  filter: blur(4px) drop-shadow(0 22px 28px rgba(0, 0, 0, 0.46));
  transform: translate3d(0, 8px, 0) scale(0.97);
}

.viewer-canvas.is-swapping .viewer-picture--active {
  opacity: 1;
}

.viewer-canvas.is-swapping .viewer-picture--ghost {
  opacity: 0;
}

.viewer-canvas[data-swap-direction="forward"].is-swapping .viewer-picture--ghost img {
  filter: blur(4px) drop-shadow(0 22px 28px rgba(0, 0, 0, 0.46));
  transform: translate3d(-16px, 0, 0) scale(1.006);
}

.viewer-canvas[data-swap-direction="backward"].is-swapping .viewer-picture--ghost img {
  filter: blur(4px) drop-shadow(0 22px 28px rgba(0, 0, 0, 0.46));
  transform: translate3d(16px, 0, 0) scale(1.006);
}

.viewer-canvas[data-swap-direction="model"].is-swapping .viewer-picture--ghost img {
  filter: blur(4px) drop-shadow(0 22px 28px rgba(0, 0, 0, 0.46));
  transform: translate3d(0, -8px, 0) scale(1.01);
}

.viewer-canvas:focus-visible,
.viewer-angle-button:focus-visible,
.viewer-step-button:focus-visible,
.viewer-close:focus-visible,
.viewer-model-tabs button:focus-visible {
  outline: 2px solid #ff7315;
  outline-offset: 3px;
}

.viewer.is-guiding .viewer-angle-button:nth-child(3) .viewer-angle-mark,
.viewer.is-guiding .viewer-angle-button:nth-child(5) .viewer-angle-mark,
.viewer.is-guiding .viewer-angle-button:nth-child(7) .viewer-angle-mark {
  animation: viewer-angle-guide 1.8s var(--ease-out) 2;
}

.viewer.is-guiding .viewer-angle-button:nth-child(5) .viewer-angle-mark {
  animation-delay: 180ms;
}

.viewer.is-guiding .viewer-angle-button:nth-child(7) .viewer-angle-mark {
  animation-delay: 360ms;
}

@keyframes viewer-angle-guide {

  0%,
  100% {
    background: transparent;
    box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.9);
    scale: 1;
  }

  42% {
    background: rgba(244, 87, 0, 0.24);
    box-shadow:
      inset 0 0 0 1.5px rgba(255, 135, 70, 1),
      0 0 0 6px rgba(244, 87, 0, 0.07);
    scale: 1.08;
  }
}

@media (hover: hover) and (pointer: fine) {
  .viewer-angle-button:hover {
    color: #fff;
    background: #303033;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.13);
  }

  .viewer-angle-button:hover .viewer-angle-mark {
    box-shadow: inset 0 0 0 1.5px rgba(255, 121, 46, 0.95);
  }

  .viewer-step-button:hover:not(:disabled),
  .viewer-close:hover:not(:disabled) {
    color: #fff;
    background: rgba(53, 53, 56, 0.98);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 1180px) {
  .viewer-angle-panel {
    left: 60px;
    width: 270px;
  }

  .viewer-angle-button[aria-expanded="true"] {
    width: 270px;
  }

  .viewer-angle-copy small {
    max-width: 190px;
  }

  .viewer-canvas {
    left: 0;
  }

  .viewer-model-switcher {
    left: 50%;
  }
}

@media (max-width: 900px) {
  .viewer-section {
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .viewer-heading {
    margin-bottom: 28px;
  }

  .viewer-stage {
    height: 500px;
    border-radius: 0;
  }

  .viewer-model-switcher {
    top: 12px;
    right: auto;
    left: 50%;
  }

  .viewer-model-tabs {
    width: 274px;
  }

  .viewer-close {
    top: 22px;
    right: 22px;
  }

  .viewer-canvas {
    top: 66px;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    border-radius: 0;
  }

  .viewer-canvas .viewer-picture img {
    object-position: 50% 50%;
  }

  .viewer-angle-panel {
    top: auto;
    right: 0;
    bottom: 24px;
    left: 0;
    width: 100%;
    padding: 0 22px;
    transform: none;
  }

  .viewer-angle-navigation {
    display: none;
  }

  .viewer-angle-list {
    flex-direction: row;
    gap: 10px;
    padding: 2px 2px 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .viewer-angle-list::-webkit-scrollbar {
    display: none;
  }

  .viewer-angle-button,
  .viewer-angle-button:nth-child(n),
  .viewer-angle-button[aria-expanded="true"] {
    flex: 0 0 auto;
    width: 188px;
    scroll-snap-align: start;
  }

  .viewer-angle-button[aria-expanded="true"] {
    width: 260px;
  }

  .viewer-angle-copy small {
    max-width: 178px;
  }
}

@media (max-width: 520px) {
  .viewer-section {
    padding: 34px var(--page-x) 50px;
  }

  .viewer-heading {
    margin-bottom: 22px;
  }

  .viewer-heading .section-heading h2 {
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1.06;
  }

  .viewer-intro {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.65;
  }

  .viewer-stage {
    height: 410px;
    border-radius: 0;
  }

  .viewer-model-switcher {
    top: 8px;
    right: auto;
    left: 50%;
    justify-content: center;
  }

  .viewer-model-tabs {
    width: min(248px, 100%);
  }

  .viewer-model-tabs button {
    min-height: 44px;
    padding: 0 8px;
    font-size: 12px;
  }

  .viewer-close {
    top: 18px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .viewer-canvas {
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
  }

  .viewer-angle-panel {
    bottom: 16px;
    padding: 0 14px;
  }

  .viewer-angle-button,
  .viewer-angle-button:nth-child(n) {
    width: 178px;
    min-height: 48px;
    padding: 8px 13px;
  }

  .viewer-angle-button[aria-expanded="true"] {
    width: min(244px, calc(100vw - 72px));
    min-height: 78px;
  }
}

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

  .viewer-picture,
  .viewer-picture img,
  .viewer-angle-button,
  .viewer-angle-mark,
  .viewer-angle-mark i,
  .viewer-angle-copy small,
  .viewer-angle-navigation,
  .viewer-step-button,
  .viewer-close,
  .viewer-model-tabs button {
    animation: none !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }

  .viewer.is-guiding .viewer-angle-mark {
    animation: none !important;
  }
}

/* Interactive XStar product viewer: all four models use decoded frame sequences. */
.viewer-3d-layer {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transform-origin: 52% 54%;
  transition-property: opacity, transform;
  transition-duration: 420ms, 760ms;
  transition-timing-function: ease-out, cubic-bezier(0.2, 0, 0, 1);
}

.viewer-3d-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
  cursor: grab;
  touch-action: pan-y;
  opacity: 1;
  transition-property: opacity;
  transition-duration: 220ms;
  transition-timing-function: ease-out;
}

.viewer-frame-sequence {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  opacity: 0;
  pointer-events: none;
  transition-property: opacity, filter;
  transition-duration: 240ms, 240ms;
  transition-timing-function: ease-out;
}

.viewer-frame-sequence img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 50% 57%;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.46));
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transition-property: opacity;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.viewer-frame-sequence img.is-active {
  opacity: 1;
}

@property --viewer-optical-reveal {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

.viewer-canvas {
  --viewer-optical-duration: 760ms;
  --viewer-optical-enter-x: 16px;
  --viewer-optical-exit-x: -13px;
}

.viewer-canvas[data-optical-direction="backward"] {
  --viewer-optical-enter-x: -16px;
  --viewer-optical-exit-x: 13px;
}

.viewer-frame-sequence::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  background: radial-gradient(ellipse 68% 54% at 50% 57%,
      transparent 18%,
      rgba(0, 0, 0, 0.08) 60%,
      rgba(0, 0, 0, 0.7) 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 280ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.viewer-canvas.is-optical-transitioning .viewer-frame-sequence {
  opacity: 1 !important;
  pointer-events: none !important;
  transition-duration: 0.001ms;
}

.viewer-canvas.is-optical-transitioning .viewer-frame-sequence img {
  will-change: transform, opacity;
}

.viewer-canvas.is-optical-transitioning .viewer-frame-sequence img.is-optical-outgoing {
  z-index: 1;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-property: opacity, transform;
  transition-duration: 460ms, 560ms;
  transition-timing-function: ease-in, cubic-bezier(0.4, 0, 1, 1);
}

.viewer-canvas.is-optical-transitioning .viewer-frame-sequence img.is-optical-incoming {
  --viewer-optical-reveal: 0%;
  z-index: 2;
  opacity: 0;
  transform: translate3d(var(--viewer-optical-enter-x), 12px, 0) scale(0.968, 0.976);
  -webkit-mask-image: radial-gradient(ellipse at 50% 57%,
      #000 0%,
      #000 var(--viewer-optical-reveal),
      rgba(0, 0, 0, 0.92) calc(var(--viewer-optical-reveal) + 7%),
      transparent calc(var(--viewer-optical-reveal) + 16%));
  -webkit-mask-repeat: no-repeat;
  mask-image: radial-gradient(ellipse at 50% 57%,
      #000 0%,
      #000 var(--viewer-optical-reveal),
      rgba(0, 0, 0, 0.92) calc(var(--viewer-optical-reveal) + 7%),
      transparent calc(var(--viewer-optical-reveal) + 16%));
  mask-repeat: no-repeat;
  transition-property: opacity, transform, --viewer-optical-reveal;
  transition-duration: var(--viewer-optical-duration), var(--viewer-optical-duration), var(--viewer-optical-duration);
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.viewer-canvas.is-optical-active .viewer-frame-sequence::after {
  opacity: 0.2;
}

.viewer-canvas.is-optical-active .viewer-frame-sequence img.is-optical-outgoing {
  opacity: 0;
  transform: translate3d(var(--viewer-optical-exit-x), 9px, 0) scale(0.964, 0.976);
}

.viewer-canvas.is-optical-active .viewer-frame-sequence img.is-optical-incoming {
  --viewer-optical-reveal: 100%;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.viewer-canvas.is-optical-transitioning .viewer-orbit-cue,
.viewer-canvas.is-optical-transitioning .viewer-3d-status {
  opacity: 0;
  pointer-events: none;
}

.viewer-canvas[data-view-mode="sequence"].is-3d-ready.is-frame-sequence .viewer-frame-sequence {
  opacity: 1;
  pointer-events: auto;
}

.viewer-canvas[data-view-mode="sequence"].is-frame-sequence .viewer-3d-canvas {
  opacity: 0;
  pointer-events: none;
}

.viewer-canvas[data-view-mode="sequence"].is-3d-ready .viewer-3d-layer {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.viewer-canvas[data-view-mode="sequence"].is-3d-ready .viewer-picture {
  opacity: 0;
}

.viewer-canvas[data-view-mode="sequence"].is-3d-dragging .viewer-3d-canvas {
  cursor: grabbing;
}

.viewer-canvas[data-view-mode="sequence"].is-3d-dragging .viewer-frame-sequence {
  cursor: grabbing;
  filter: brightness(1.025);
}

.viewer-canvas[data-view-mode="image"] .viewer-3d-layer,
.viewer-canvas[data-view-mode="image"] .viewer-3d-status {
  opacity: 0;
  pointer-events: none;
}

.viewer-3d-status {
  position: absolute;
  z-index: 6;
  right: 50%;
  bottom: 26px;
  display: grid;
  grid-template-columns: 16px auto;
  align-items: center;
  gap: 9px 10px;
  min-width: 218px;
  padding: 12px 15px 11px;
  border-radius: 17px;
  color: rgba(245, 245, 247, 0.76);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.01em;
  background: rgba(24, 24, 26, 0.88);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  opacity: 1;
  transform: translate(50%, 0);
  transition-property: opacity, transform;
  transition-duration: 180ms, 320ms;
  transition-timing-function: ease-in, cubic-bezier(0.2, 0, 0, 1);
}

.viewer-3d-status[hidden] {
  display: none;
}

.viewer-3d-status[data-state="complete"] {
  opacity: 0;
  transform: translate(50%, 7px);
}

.viewer-3d-status__spinner {
  display: block;
  width: 15px;
  height: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-top-color: #f46a16;
  border-radius: 50%;
  animation: viewer-3d-spin 780ms linear infinite;
}

.viewer-3d-status[data-state="ready"] .viewer-3d-status__spinner,
.viewer-3d-status[data-state="error"] .viewer-3d-status__spinner {
  animation: none;
  border-color: rgba(255, 255, 255, 0.42);
}

.viewer-3d-status__track {
  grid-column: 1 / -1;
  display: block;
  height: 1px;
  overflow: hidden;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.viewer-3d-status__track i {
  display: block;
  width: 100%;
  height: 100%;
  background: #f46a16;
  transform: scaleX(0);
  transform-origin: left center;
  transition-property: transform;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

@keyframes viewer-3d-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .viewer-3d-status {
    bottom: 16px;
    min-width: 205px;
  }
}

@media (max-width: 520px) {
  .viewer-3d-status {
    bottom: 12px;
    padding: 10px 13px 9px;
    border-radius: 15px;
    font-size: 11px;
  }
}

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

  .viewer-3d-layer,
  .viewer-3d-canvas,
  .viewer-frame-sequence,
  .viewer-frame-sequence img,
  .viewer-frame-sequence::after,
  .viewer-3d-status,
  .viewer-3d-status__track i {
    transition-duration: 0.001ms !important;
  }

  .viewer-3d-status__spinner {
    animation: none !important;
  }
}

/* Pro video: the full-bleed picture resolves into XOne, then opens onto the controlled space. */
.pro-video-story {
  --pro-device-scale: 1;
  --pro-device-x: 0px;
  --pro-device-y: 0px;
  --pro-device-opacity: 1;
  --pro-screen-opacity: 0;
  --pro-copy-opacity: 0;
  --pro-copy-y: 18px;
  --pro-copy-blur: 4px;
  --pro-environment-opacity: 0;
  --pro-environment-y: 16svh;
  --pro-environment-scale: 1.035;
  --pro-final-title-opacity: 0;
  --pro-final-title-y: 28px;
  --pro-final-title-blur: 5px;
  --pro-final-body-opacity: 0;
  --pro-final-body-y: 28px;
  --pro-final-body-blur: 5px;
  position: relative;
  height: 360svh;
  overflow: clip;
  background: #000;
}

.pro-video-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #000;
}

.pro-video-to-viewer {
  --pro-video-blend-depth: clamp(140px, 22svh, 240px);
  position: relative;
  z-index: 5;
  height: var(--pro-video-blend-depth);
  margin-top: calc(-1 * var(--pro-video-blend-depth));
  background: linear-gradient(180deg,
      rgba(14, 16, 19, 0) 0%,
      rgba(14, 16, 19, 0.06) 22%,
      rgba(14, 16, 19, 0.26) 48%,
      rgba(14, 16, 19, 0.64) 72%,
      rgba(14, 16, 19, 0.92) 90%,
      #0e1013 100%);
  pointer-events: none;
}

.pro-video-environment,
.pro-video-visual,
.pro-video-copy,
.pro-video-final-copy {
  position: absolute;
  inset: 0;
}

.pro-video-environment {
  z-index: 0;
  overflow: hidden;
  opacity: var(--pro-environment-opacity);
  transform: translate3d(0, var(--pro-environment-y), 0) scale(var(--pro-environment-scale));
  transform-origin: center bottom;
  pointer-events: none;
  will-change: transform, opacity;
}

.pro-video-environment::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.14) 100%);
  content: "";
}

.pro-video-environment img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.pro-video-visual {
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.pro-video-device {
  position: relative;
  width: min(869.4px, 67.2vw, calc(61.6svh * 1.57815));
  aspect-ratio: 1242 / 787;
  flex: none;
  transform: translate3d(var(--pro-device-x), var(--pro-device-y), 0) scale(var(--pro-device-scale));
  transform-origin: center center;
  will-change: transform;
}

.pro-video-device__image {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: var(--pro-device-opacity);
  will-change: opacity;
}

.pro-video-screen {
  position: absolute;
  z-index: 2;
  top: 13.3418%;
  left: 32.6087%;
  display: block;
  width: 50%;
  height: 46.3787%;
  overflow: hidden;
  background: #000;
  opacity: var(--pro-screen-opacity);
  will-change: opacity;
}

.pro-video-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.pro-video-copy {
  z-index: 4;
  display: grid;
  place-items: center;
  padding: var(--page-x);
  color: #f5f5f7;
  text-align: center;
  opacity: var(--pro-copy-opacity);
  filter: blur(var(--pro-copy-blur));
  transform: translate3d(0, var(--pro-copy-y), 0);
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.pro-video-copy__statement {
  max-width: 12em;
  margin: 0;
  font-size: var(--section-title-size);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.46);
}

.pro-video-final-copy {
  z-index: 4;
  display: flex;
  justify-content: flex-start;
  padding: calc(var(--header-h) + var(--product-nav-h) + clamp(28px, 5svh, 52px)) var(--page-x) 0;
  color: #f5f5f7;
  text-align: center;
  pointer-events: none;
}

.pro-video-final-copy__inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.pro-video-final-copy h2 {
  max-width: 21em;
  margin: 0 auto;
  font-size: var(--section-title-size);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
  opacity: var(--pro-final-title-opacity);
  filter: blur(var(--pro-final-title-blur));
  transform: translate3d(0, var(--pro-final-title-y), 0);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.72);
  will-change: transform, opacity, filter;
}

.pro-video-final-copy p {
  max-width: 52em;
  margin: clamp(18px, 2.4svh, 28px) auto 0;
  color: rgba(245, 245, 247, 0.9);
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 420;
  line-height: 1.72;
  letter-spacing: 0.01em;
  text-wrap: pretty;
  opacity: var(--pro-final-body-opacity);
  filter: blur(var(--pro-final-body-blur));
  transform: translate3d(0, var(--pro-final-body-y), 0);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.76);
  will-change: transform, opacity, filter;
}

@media (max-width: 720px) {
  .pro-video-story {
    height: 320svh;
  }

  .pro-video-device {
    width: min(67.2vw, calc(58.8svh * 1.57815));
  }

  .pro-video-copy__statement {
    font-size: clamp(36px, 12vw, var(--section-title-size));
  }

  .pro-video-final-copy {
    padding: clamp(82px, 12svh, 118px) 22px 0;
  }

  .pro-video-final-copy h2 {
    max-width: 11em;
    font-size: clamp(32px, 10.6vw, 46px);
    line-height: 1.08;
  }

  .pro-video-final-copy p {
    max-width: 32em;
    margin-top: 16px;
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.68;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .pro-video-device {
    width: min(57.4vw, calc(58.8svh * 1.57815));
  }

  .pro-video-final-copy {
    padding-top: calc(var(--header-h) + var(--product-nav-h) + clamp(12px, 3svh, 22px));
  }

  .pro-video-final-copy h2 {
    font-size: clamp(30px, 5vw, 44px);
  }

  .pro-video-final-copy p {
    max-width: 48em;
    margin-top: 12px;
    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.55;
  }
}

/* Related downloads */
.downloads {
  width: min(100%, var(--content-max));
  margin: clamp(72px, 8vw, 120px) auto 0;
  padding-top: clamp(34px, 4vw, 54px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.downloads__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.downloads__heading h3 {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.downloads__heading p {
  max-width: 30em;
  color: var(--muted-2);
  font-family: var(--font-text);
  font-size: 15px;
  line-height: 1.47;
  text-align: right;
  text-wrap: pretty;
}

.download-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 3vw, 40px);
  padding: 0;
  list-style: none;
}

.download-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 128px;
  padding: 24px 26px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(30, 30, 33, 0.96), rgba(17, 17, 19, 0.98));
  color: var(--paper);
  text-decoration: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.085),
    0 14px 34px rgba(0, 0, 0, 0.2);
  transition-property: translate, scale, background-color, box-shadow;
  transition-duration: 240ms, 160ms, 240ms, 240ms;
  transition-timing-function: var(--ease-out), ease-out, var(--ease-out), var(--ease-out);
}

.download-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(244, 87, 0, 0.1), transparent 48%);
  content: "";
  opacity: 0;
  transition-property: opacity;
  transition-duration: 240ms;
  transition-timing-function: var(--ease-out);
}

.download-card__copy {
  display: grid;
  gap: 11px;
  min-width: 0;
}

.download-card__copy strong {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 23px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.004em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  color: var(--muted-2);
  font-family: var(--font-text);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
}

.download-card__meta i {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(244, 87, 0, 0.12);
  color: var(--brand-bright);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.download-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 87, 0, 0.1);
  color: var(--brand-bright);
  box-shadow: inset 0 0 0 1px rgba(255, 139, 72, 0.18);
  transition-property: color, background-color, box-shadow;
  transition-duration: 220ms;
  transition-timing-function: var(--ease-out);
}

.download-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition-property: transform;
  transition-duration: 220ms;
  transition-timing-function: var(--ease-out);
}

.download-card:focus-visible {
  outline: 2px solid var(--brand-bright);
  outline-offset: 3px;
}

.download-card:focus-visible::before {
  opacity: 1;
}

.download-card:focus-visible .download-card__icon {
  background: var(--brand);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 208, 173, 0.28);
}

.download-card:focus-visible .download-card__icon svg {
  transform: translateY(2px);
}

.download-card:active {
  scale: 0.96;
}

@media (hover: hover) and (pointer: fine) {
  .download-card:hover {
    translate: 0 -4px;
    box-shadow:
      inset 0 0 0 1px rgba(255, 123, 47, 0.3),
      0 20px 44px rgba(0, 0, 0, 0.32);
  }

  .download-card:hover::before {
    opacity: 1;
  }

  .download-card:hover .download-card__icon {
    background: var(--brand);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 208, 173, 0.28);
  }

  .download-card:hover .download-card__icon svg {
    transform: translateY(2px);
  }
}

@media (max-width: 720px) {
  .downloads {
    margin-top: 64px;
    padding-top: 32px;
  }

  .downloads__heading {
    display: grid;
    gap: 10px;
  }

  .downloads__heading h3 {
    font-size: 32px;
  }

  .downloads__heading p {
    text-align: left;
  }

  .download-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .download-card {
    min-height: 112px;
    padding: 20px;
    border-radius: 18px;
  }

  .download-card__copy strong {
    font-size: 19px;
  }
}

@media (max-width: 420px) {
  .download-card {
    gap: 14px;
  }

  .download-card__meta {
    gap: 4px 9px;
  }

  .download-card__icon {
    width: 44px;
    height: 44px;
  }
}

/* Live 360-degree XStar model viewer */
#views.viewer-section {
  padding-top: clamp(72px, 9vw, 132px);
  padding-bottom: clamp(64px, 8vw, 112px);
  background: #0e1013;
}

#views .viewer-heading {
  margin-bottom: clamp(24px, 3vw, 42px);
}

#views .viewer-heading .section-heading,
#views .viewer-heading .section-heading h2,
#views .viewer-intro {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#views .viewer-heading .section-heading h2 {
  max-width: 980px;
}

#views .viewer-intro {
  max-width: 660px;
}

#views .viewer-stage {
  height: clamp(500px, 68dvh, 720px);
}

#views .viewer-canvas {
  top: 64px;
  cursor: grab;
}

#views .viewer-canvas.is-3d-dragging {
  cursor: grabbing;
}

#views .viewer-model-tabs button:not([aria-selected="true"]):hover {
  color: rgba(245, 245, 247, 0.92);
  background-color: rgba(255, 255, 255, 0.07);
}

#views .viewer-model-tabs button:focus-visible,
#views .viewer-canvas:focus-visible {
  outline: 2px solid var(--brand-bright);
  outline-offset: 3px;
}

.viewer-orbit-cue {
  position: absolute;
  z-index: 5;
  bottom: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: 54px auto 54px;
  align-items: center;
  gap: 10px;
  color: rgba(245, 245, 247, 0.52);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  opacity: 0.72;
  pointer-events: none;
  transform: translateX(-50%);
  transition-property: opacity, transform;
  transition-duration: 220ms, 360ms;
  transition-timing-function: ease-out, cubic-bezier(0.2, 0, 0, 1);
}

.viewer-orbit-cue i {
  position: relative;
  display: block;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28));
}

.viewer-orbit-cue i:last-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent);
}

.viewer-orbit-cue i::after {
  position: absolute;
  top: -1px;
  left: -8px;
  width: 8px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-bright);
  box-shadow: 0 0 10px rgba(244, 87, 0, 0.58);
  content: "";
  animation: viewer-orbit-cue 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.viewer-orbit-cue i:last-child::after {
  right: -8px;
  left: auto;
  animation-direction: reverse;
}

#views .viewer-canvas.is-3d-dragging .viewer-orbit-cue {
  opacity: 0.2;
  transform: translateX(-50%) scale(0.96);
}

@keyframes viewer-orbit-cue {

  0%,
  18% {
    opacity: 0;
    transform: translateX(0);
  }

  34% {
    opacity: 1;
  }

  76% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(62px);
  }
}

@media (max-width: 900px) {
  #views.viewer-section {
    padding-top: 64px;
  }

  #views .viewer-stage {
    height: clamp(430px, 62dvh, 560px);
  }
}

@media (max-width: 520px) {
  #views.viewer-section {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  #views .viewer-stage {
    height: 410px;
  }

  .viewer-orbit-cue {
    bottom: 10px;
    grid-template-columns: 42px auto 42px;
    gap: 8px;
  }

  .viewer-orbit-cue i {
    width: 42px;
  }
}

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

  .viewer-orbit-cue,
  .viewer-orbit-cue i::after {
    animation: none !important;
    transition-duration: 0.001ms !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pro-video-story {
    height: auto;
    min-height: 100svh;
  }

  .pro-video-sticky {
    position: relative;
    min-height: 100svh;
    height: 100svh;
  }

  .pro-video-environment,
  .pro-video-visual,
  .pro-video-copy,
  .pro-video-final-copy {
    position: absolute;
    inset: 0;
  }

  .pro-video-environment {
    opacity: 1 !important;
    transform: none !important;
  }

  .pro-video-visual {
    width: 100%;
    height: 100%;
  }

  .pro-video-copy {
    display: none;
  }

  .pro-video-final-copy h2,
  .pro-video-final-copy p {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .pro-video-device {
    transform: translate3d(0, 30.5svh, 0) scale(0.92) !important;
  }

  .pro-video-device__image {
    opacity: 1 !important;
  }

  .pro-video-screen {
    opacity: 0 !important;
  }
}

/* Output story: scroll from the CX1 front panel to a rear-port close-up. */
.output-section {
  --output-device-scale: 0.9;
  --output-device-x: 0px;
  --output-device-y: 17svh;
  --output-frame-scale: 1;
  --output-heading-opacity: 1;
  --output-heading-y: 0px;
  --output-detail-opacity: 0;
  --output-wordmark-opacity: 0;
  --output-wordmark-x: -72vw;
  --output-wordmark-y: 46svh;
  --output-wordmark-scale: 1.85;
  --output-wordmark-blur: 7px;
  position: relative;
  height: 430svh;
  min-height: 0;
  padding: 0;
  overflow: clip;
  isolation: isolate;
  background: #000;
}

.output-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: linear-gradient(180deg, #030303 0%, #000 72%);
}

.output-section .chapter-atmosphere,
.output-stage::before {
  display: none;
}

.output-section .output-heading {
  position: absolute;
  z-index: 5;
  top: clamp(142px, 19svh, 180px);
  left: 50%;
  width: min(920px, calc(100% - 2 * var(--page-x)));
  margin: 0;
  opacity: var(--output-heading-opacity);
  transform: translate3d(-50%, var(--output-heading-y), 0);
  pointer-events: none;
  will-change: transform, opacity;
}

.output-section .output-heading h2 {
  max-width: 920px;
  margin: 0 auto;
  color: #f5f5f7;
  font-size: var(--section-title-size);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.output-section .output-heading>p:last-child {
  max-width: 760px;
  margin: clamp(18px, 2.2svh, 26px) auto 0;
  color: rgba(245, 245, 247, 0.62);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
  text-align: center;
  text-wrap: pretty;
}

.output-section .output-stage {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
}

.output-device-wordmark {
  position: absolute;
  z-index: 0;
  top: 43%;
  left: 50%;
  color: rgba(245, 245, 247, 0.86);
  font-size: 300px;
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.06em;
  white-space: nowrap;
  opacity: var(--output-wordmark-opacity);
  filter: blur(var(--output-wordmark-blur));
  transform: translate3d(calc(-50% + var(--output-wordmark-x)),
      calc(-50% + var(--output-wordmark-y)),
      0) scale(var(--output-wordmark-scale));
  transform-origin: center center;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity, filter;
}

.output-device-wrap {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(var(--output-device-x), var(--output-device-y), 0);
  pointer-events: none;
  will-change: transform;
}

.output-section .output-device {
  position: relative;
  width: min(1920px, 118vw);
  aspect-ratio: 1920 / 1321;
  margin: 0;
  -webkit-mask-image: none;
  mask-image: none;
  transform: scale(var(--output-device-scale));
  transform-origin: center center;
  will-change: transform;
}

.output-section .output-device__frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  z-index: 1;
  visibility: visible;
  opacity: 1;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.48));
  transform: scale(var(--output-frame-scale));
  transform-origin: center center;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

.output-section .output-port-map {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: var(--output-detail-opacity);
  pointer-events: none;
}

.output-section .output-callouts {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: var(--output-detail-opacity);
  pointer-events: none;
}

.output-section .output-callout {
  position: absolute;
  top: var(--output-target-y, 68%);
  right: auto;
  bottom: auto;
  left: var(--output-target-x, 50%);
  width: min(520px, 82vw);
  padding: 0;
  border: 0;
  translate: -50% 0;
  text-align: center;
}

.output-section .output-callout::before,
.output-section .output-callout::after {
  display: none;
}

.output-section .output-callout h3 {
  color: #f5f5f7;
  font-size: clamp(24px, 2.35vw, 34px);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.output-section .output-callout h3 span {
  color: #ff6a00;
}

.output-section .output-callout p {
  max-width: 520px;
  margin: 14px auto 0;
  color: rgba(245, 245, 247, 0.58);
  font-size: clamp(14px, 1.12vw, 17px);
  line-height: 1.65;
  text-wrap: pretty;
}

.output-section .output-port-map__route {
  stroke: rgba(244, 87, 0, 0.5);
  stroke-width: 1;
  filter: none;
}

.output-section .output-port-map__route--trunk {
  stroke: rgba(244, 87, 0, 0.68);
}

.output-section .output-port-map__node {
  fill: #f45700;
  stroke: rgba(255, 190, 142, 0.72);
  stroke-width: 1;
}

.output-section .output-port-map__terminal {
  fill: rgba(244, 87, 0, 0.82);
}

@media (max-width: 720px) {
  .output-section {
    height: 390svh;
    --output-device-scale: 0.96;
    --output-device-y: 14svh;
  }

  .output-section .output-heading {
    top: clamp(88px, 13svh, 116px);
    width: calc(100% - 36px);
  }

  .output-section .output-heading h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .output-section .output-heading>p:last-child {
    max-width: 34em;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.66;
  }

  .output-heading__mobile-break {
    display: block;
  }

  .output-section .output-device {
    width: 136vw;
  }

  .output-device-wordmark {
    top: 44%;
    font-size: clamp(216px, 72vw, 300px);
  }

  .output-section .output-callout {
    bottom: auto;
    left: 50% !important;
    width: min(88vw, 440px);
  }

  .output-section .output-callout h3 {
    font-size: clamp(22px, 7.2vw, 28px);
  }

  .output-section .output-callout p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .output-section .output-heading {
    top: 132px;
  }

  .output-section .output-heading h2 {
    font-size: clamp(34px, 6.2vw, 52px);
  }

  .output-section .output-heading>p:last-child {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .output-section .output-device {
    width: 108vw;
  }

  .output-section .output-callout {
    bottom: auto;
    width: min(500px, 72vw);
  }

  .output-section .output-callout h3 {
    font-size: 22px;
  }

  .output-section .output-callout p {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.45;
  }
}

/* Phone layout calibration: preserve the desktop composition while giving key media enough visual weight. */
@media (max-width: 720px) {
  .playback-intro__media {
    background: #020304;
  }

  .playback-intro__media img {
    object-fit: contain;
    object-position: 50% 64%;
  }

  .playback-intro__source-space {
    top: 64%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -64%);
  }

  .bom-visual {
    top: 68%;
    width: 150vw;
    height: auto;
    max-width: none;
  }

  .hdr-section {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .hdr-experience {
    height: clamp(430px, 60svh, 510px);
    margin-top: 12px;
  }

  .hdr-scene {
    top: -12vw;
  }

  .output-section {
    --output-device-scale: 1.5;
  }

  .output-device-wordmark {
    top: 32%;
  }

  .pro-video-device {
    width: min(90vw, calc(68svh * 1.57815));
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .pro-video-device {
    transform: translate3d(0, 16svh, 0) scale(0.92) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .output-section {
    height: auto;
    min-height: 100svh;
  }

  .output-sticky {
    position: relative;
    display: grid;
    min-height: 100svh;
    height: auto;
    padding: clamp(96px, 12svh, 132px) 0 48px;
  }

  .output-section .output-heading {
    position: relative;
    top: auto;
    left: auto;
    width: min(900px, calc(100% - 2 * var(--page-x)));
    margin: 0 auto;
    opacity: 1 !important;
    transform: none !important;
  }

  .output-section .output-stage {
    position: relative;
    inset: auto;
    min-height: 720px;
    margin-top: 24px;
  }

  .output-section .output-port-map {
    display: none;
  }

  .output-section .output-callouts {
    position: absolute;
    inset: auto var(--page-x) 24px;
    display: grid;
    gap: 24px;
    width: auto;
    height: auto;
    opacity: 1 !important;
  }

  .output-section .output-callout {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto !important;
    width: min(620px, 100%);
    margin: 0 auto;
    translate: none;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* Apple product-page inspired typography scale for product content. */
:root {
  --font-display: "SF Pro SC", "SF Pro Display", "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  --font-text: "SF Pro SC", "SF Pro Text", "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  --type-hero: clamp(48px, 6.4vw, 80px);
  --type-section: clamp(44px, 6.4vw, 64px);
  --type-statement: clamp(56px, 9.2vw, 80px);
  --type-subhead: clamp(24px, 2.8vw, 28px);
  --type-card-title: clamp(24px, 3.2vw, 28px);
  --type-body-large: clamp(17px, 2.42vw, 21px);
  --type-body: clamp(15px, 1.95vw, 17px);
  --type-ui: clamp(15px, 1.95vw, 17px);
  --type-caption: 14px;
  --section-title-size: var(--type-section);
}

main,
.model-spec-dialog,
.film-dialog {
  font-family: var(--font-text);
  font-kerning: normal;
}

main h1,
main h2,
main h3,
.model-spec-dialog h2,
.model-spec-dialog h3 {
  font-family: var(--font-display);
  text-wrap: balance;
}

.hero-title strong,
.playback-intro__copy h2,
.highlights-heading h2,
.bom-copy__title h2,
.hdr-heading h2,
.output-section .output-heading h2,
.pro-video-final-copy h2,
.viewer-heading .section-heading h2,
.models-heading h2,
.specs-heading h2 {
  font-family: var(--font-display);
  font-size: var(--type-section);
  font-weight: 600;
  line-height: 1.0715;
  letter-spacing: 0;
}

.hero-title strong {
  font-size: 50px;
}

.pro-video-copy__statement {
  font-family: var(--font-display);
  font-size: var(--type-statement);
  font-weight: 600;
  line-height: 1.0875;
  letter-spacing: 0;
}

.hero-kicker {
  font-family: var(--font-text);
  font-size: var(--type-caption);
  font-weight: 600;
  line-height: 1.47;
  letter-spacing: 0.02em;
}

#playback-capabilities h3,
.bom-copy .design-heading__subtitle {
  font-family: var(--font-display);
  font-size: var(--type-subhead);
  font-weight: 600;
  line-height: 1.29;
  letter-spacing: 0.009em;
}

.highlight-card__copy h3,
.output-section .output-callout h3,
.model-card__body h3 {
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.007em;
}

.playback-intro__copy p,
.hdr-heading p,
.output-section .output-heading>p:last-child,
.pro-video-final-copy p,
.viewer-heading .viewer-intro {
  font-family: var(--font-display);
  font-size: var(--type-body-large);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.011em;
}

#playback-capabilities p,
.highlight-card__copy p,
.bom-copy .design-heading__body,
.output-section .output-callout p {
  font-family: var(--font-text);
  font-size: var(--type-body);
  line-height: 1.47;
  letter-spacing: 0;
}

.highlight-card__copy p {
  font-weight: 500;
}

.film-trigger,
.hdr-power-button,
.text-button {
  font-family: var(--font-text);
  font-size: var(--type-ui);
  line-height: 1.47;
  letter-spacing: 0;
}

.model-card__body>p {
  font-family: var(--font-text);
  font-size: var(--type-caption);
  line-height: 1.5;
  letter-spacing: 0;
}

.specs-toolbar>p {
  font-family: var(--font-text);
  font-size: var(--type-ui);
  line-height: 1.47;
  letter-spacing: 0;
}

.specs-table {
  font-family: var(--font-text);
  font-size: 14px;
  letter-spacing: 0;
}

.specs-table th,
.specs-table td {
  line-height: 1.5;
}

.specs-table thead th:first-child,
.specs-table tbody th {
  font-size: 14px;
  letter-spacing: 0;
}

.specs-row--dense td,
.specs-row--media td {
  font-size: 13px;
}

.specs-model {
  font-size: 15px;
  letter-spacing: 0;
}

.model-spec-panel__eyebrow,
.model-spec-overview__item span {
  font-family: var(--font-text);
  font-size: 12px;
  line-height: 1.47;
  letter-spacing: 0;
}

.model-spec-panel__heading h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.model-spec-panel__intro {
  font-family: var(--font-text);
  font-size: var(--type-body);
  line-height: 1.47;
  letter-spacing: 0;
}

.model-spec-overview__item strong,
.model-spec-group h3 {
  font-family: var(--font-display);
  font-size: var(--type-body);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.007em;
}

.model-spec-list dt,
.model-spec-list dd {
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.47;
  letter-spacing: 0;
}

@media (max-width: 720px) {
  :root {
    --type-hero: clamp(42px, 12vw, 52px);
    --type-section: clamp(40px, 11vw, 48px);
    --type-statement: clamp(48px, 14vw, 60px);
    --type-subhead: clamp(22px, 6.4vw, 26px);
    --type-card-title: clamp(24px, 7.4vw, 28px);
    --type-body-large: 17px;
    --type-body: 15px;
    --type-ui: 15px;
  }

  .hero-title strong {
    font-size: clamp(44px, 13.333vw, 50px);
  }

  .specs-table {
    font-size: 13px;
  }

  .specs-table thead th:first-child,
  .specs-table tbody th {
    font-size: 13px;
  }

  .specs-row--dense td,
  .specs-row--media td {
    font-size: 12px;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  :root {
    --type-hero: clamp(44px, 6.4vw, 56px);
    --type-section: clamp(44px, 6.4vw, 56px);
    --type-statement: clamp(56px, 9.2vw, 80px);
    --type-body-large: 19px;
  }

  .bom-copy {
    top: 50%;
    width: min(34%, 520px);
  }

  .bom-copy__details {
    padding-top: 14px;
  }

  .bom-copy .design-heading__body {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.47;
  }
}

/* Final phone rhythm calibration: larger copy and shorter scroll stories. */
@media (max-width: 720px) {
  :root {
    --type-section: clamp(48px, 12.8vw, 52px);
    --type-subhead: clamp(26px, 7.15vw, 29px);
    --type-body-large: 18px;
    --type-body: 16px;
  }

  .playback-intro__copy {
    top: calc(var(--header-h) + clamp(42px, 7svh, 64px));
  }

  .playback-intro__copy p {
    max-width: 32em;
    margin-top: 14px;
    font-size: var(--type-body-large);
    line-height: 1.58;
  }

  .playback-capabilities {
    height: max(1080px, 165svh);
  }

  .playback-capabilities__panel {
    padding-block: 24px;
  }

  .playback-capability {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding-block: 17px;
  }

  .playback-capability__icon {
    width: 42px;
    height: 42px;
  }

  .playback-capability__icon svg {
    width: 30px;
    height: 30px;
  }

  #playback-capabilities h3 {
    font-size: clamp(26px, 7.15vw, 29px);
    line-height: 1.2;
  }

  #playback-capabilities p {
    margin-top: 7px;
    font-size: 16px;
    line-height: 1.5;
  }

  .scroll-story.bom-story {
    min-height: calc(100dvh - var(--header-h) - var(--product-nav-h) + clamp(460px, 56dvh, 600px));
  }

  .bom-copy__title h2 {
    margin-top: 4px;
    font-size: var(--type-section);
  }

  .bom-copy__details {
    padding-top: 13px;
  }

  .bom-copy .design-heading__subtitle {
    font-size: var(--type-subhead);
    line-height: 1.2;
  }

  .bom-copy .design-heading__body {
    max-width: 35em;
    margin-top: 8px;
    font-size: var(--type-body);
    line-height: 1.5;
  }

  .bom-visual {
    top: 64%;
  }

  .output-section {
    height: 345svh;
  }

  .output-section .output-heading {
    top: clamp(72px, 10svh, 92px);
    width: 100%;
  }

  .output-section .output-heading h2 {
    font-size: clamp(45px, 12vw, 50px);
    letter-spacing: -0.035em;
  }

  .output-section .output-heading>p:last-child {
    max-width: 31em;
    margin-top: 13px;
    font-size: var(--type-body-large);
    line-height: 1.55;
  }
}

@media (max-width: 360px) and (max-height: 640px) {
  .playback-intro__media img {
    object-position: 50% 90%;
  }

  .playback-intro__source-space {
    top: 90%;
    transform: translate(-50%, -90%);
  }

  .playback-capabilities__panel {
    padding-block: 10px;
  }

  .playback-capability {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding-block: 10px;
  }

  .playback-capability__icon {
    width: 38px;
    height: 38px;
  }

  .playback-capability__icon svg {
    width: 28px;
    height: 28px;
  }

  #playback-capabilities p {
    margin-top: 5px;
    line-height: 1.42;
  }

  .output-section .output-heading h2 {
    font-size: 40px;
    letter-spacing: -0.06em;
  }
}

/* Shared phone and tablet controls: keep the visual language compact while
   giving touch interactions a stable, device-friendly hit area. */
@media (max-width: 1024px) {
  .film-trigger {
    min-height: 44px;
    padding-inline: 6px;
  }

  .highlight-controls {
    gap: 4px;
    height: 44px;
  }

  .highlight-pagination {
    --highlight-indicator-width: 36px;
    --highlight-active-button-width: 48px;
    width: 256px;
    height: 44px;
    padding-inline: 4px;
    border-radius: 22px;
  }

  .highlight-pagination button {
    flex: 0 0 40px;
    width: 40px;
    height: 44px;
  }

  .highlight-pagination button::before,
  .highlight-pagination button::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .highlight-autoplay {
    width: 44px;
    height: 44px;
    border-radius: 22px;
  }

  .viewer-model-tabs button,
  .viewer-close {
    min-height: 44px;
  }
}

/* Prevent the compact model selector from shrink-wrapping on phones. */
@media (max-width: 520px) {
  #views .viewer-model-switcher {
    width: min(248px, calc(100% - 24px));
  }

  #views .viewer-model-tabs {
    width: 100%;
  }
}

/* Tablet pacing and readable measures for portrait and landscape PADs. */
@media (min-width: 721px) and (max-width: 1024px) {
  .playback-capabilities {
    height: max(1320px, 170svh);
  }

  .output-section {
    height: 380svh;
  }

  .viewer-model-tabs button {
    min-height: 44px;
  }
}

@media (min-width: 721px) and (max-width: 900px) and (orientation: portrait) {
  .bom-copy {
    left: 4%;
    width: 32%;
  }

  .bom-copy__title h2 {
    font-size: clamp(44px, 6vw, 50px);
  }

  .bom-copy .design-heading__subtitle {
    font-size: clamp(24px, 3.2vw, 28px);
  }

  .bom-copy .design-heading__body {
    font-size: 16px;
    line-height: 1.55;
  }

  .bom-visual {
    right: -3%;
    width: min(72%, calc(142dvh - 210px));
  }
}

@media (min-width: 901px) and (max-width: 1100px) and (orientation: portrait) {
  .model-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Short phone landscape: use a side-by-side BOM composition instead of the
   tall portrait stack so copy and hardware remain visible together. */
@media (max-width: 720px) and (max-height: 520px) and (orientation: landscape) {
  .playback-intro__copy {
    top: clamp(28px, 8svh, 42px);
  }

  .playback-intro__copy h2 {
    font-size: clamp(42px, 7vw, 48px);
  }

  .playback-intro__copy p {
    max-width: 46em;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.45;
  }

  .bom-copy {
    top: 50%;
    right: auto;
    left: max(24px, 5vw);
    width: min(36vw, 260px);
    padding: 0;
    transform: translateY(-50%);
  }

  .bom-copy__title h2 {
    margin-top: 0;
    font-size: clamp(38px, 6.4vw, 44px);
    line-height: 1;
  }

  .bom-copy__details {
    padding-top: 10px;
  }

  .bom-copy .design-heading__subtitle {
    font-size: clamp(20px, 3.4vw, 25px);
    line-height: 1.18;
  }

  .bom-copy .design-heading__body {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.42;
  }

  .bom-visual {
    top: 53%;
    right: 1%;
    left: auto;
    width: min(60vw, calc(82svh * 1.2496));
    height: auto;
    max-width: none;
    transform: translateY(-50%);
  }

  .output-section .output-heading {
    top: clamp(38px, 9svh, 52px);
  }

  .output-section .output-heading h2 {
    font-size: clamp(36px, 6.6vw, 44px);
  }

  .output-section .output-heading>p:last-child {
    max-width: 44em;
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.45;
  }
}

/* Older compact phones need the complete BOM copy and product in the same
   short viewport. Keep the hardware full-width, but anchor it below the copy
   instead of letting the two layers overlap. */
@media (max-width: 360px) and (max-height: 640px) and (orientation: portrait) {
  .bom-copy__title h2 {
    font-size: 44px;
    line-height: 0.98;
  }

  .bom-copy__details {
    padding-top: 10px;
  }

  .bom-copy .design-heading__subtitle {
    font-size: 23px;
    line-height: 1.15;
  }

  .bom-copy .design-heading__body {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.42;
  }

  .bom-visual {
    top: auto;
    bottom: 0;
    left: 50%;
    width: 105vw;
    transform: translateX(-50%);
  }
}

/* Large PADs report desktop-like CSS widths in landscape. Preserve the
   desktop composition while retaining comfortable touch targets. */
@media (min-width: 1025px) and (max-width: 1366px) and (hover: none) and (pointer: coarse) {

  .film-trigger,
  .text-button,
  .viewer-model-tabs button,
  .model-spec-close,
  .film-close {
    min-height: 44px;
  }

  .highlight-controls,
  .highlight-pagination {
    height: 44px;
  }

  .highlight-pagination {
    --highlight-indicator-width: 36px;
    --highlight-active-button-width: 48px;
    width: 276px;
    padding-inline: 4px;
    border-radius: 22px;
  }

  .highlight-pagination button {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .highlight-pagination button::before,
  .highlight-pagination button::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .highlight-autoplay,
  .film-close,
  .model-spec-close {
    width: 44px;
    height: 44px;
  }
}

/* The site shell uses a fixed 1024px viewport. On portrait phones the iframe
   therefore lands on the tablet breakpoint, so calibrate that exact canvas
   without changing the 1024px desktop/landscape composition. */
@media (min-width: 721px) and (max-width: 1024px) and (orientation: portrait) {
  :root {
    --product-nav-h: 0px;
    --page-x: 56px;
    --type-section: 129.6px;
    --type-statement: 158.4px;
    --type-subhead: 72px;
    --type-card-title: 72px;
    --type-body-large: 54px;
    --type-body: 46.8px;
    --type-ui: 46.8px;
    --type-caption: 39.6px;
  }

  main {
    font-size: 28.8px;
  }

  h2,
  h3 {
    max-width: none !important;
    text-wrap: initial !important;
  }

  .product-nav {
    display: none;
  }

  .hero {
    --hero-media-lift: 0px;
    --hero-media-frame-height: auto;
  }

  .hero-copy {
    top: clamp(88px, 6svh, 132px);
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 46.8px;
  }

  .hero-title strong {
    font-size: clamp(129.6px, 14.4vw, 158.4px);
  }

  .hero-media {
    top: clamp(250px, 16svh, 360px);
    transform: none;
  }

  .hero-media__frame {
    width: 158%;
    height: auto;
  }

  .playback-intro::before {
    background:
      linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.9) 8%, rgba(0, 0, 0, 0.5) 31%, transparent 58%, rgba(29, 29, 31, 0.2) 80%, #1d1d1f 100%);
  }

  .playback-intro__media {
    background: #020304;
  }

  .playback-intro__media img {
    object-fit: contain;
    object-position: 50% 64%;
  }

  .playback-intro__source-space {
    top: 64%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -64%);
  }

  .playback-intro__copy {
    top: clamp(104px, 8svh, 168px);
    right: 72px;
    left: 72px;
    width: auto;
    text-align: center;
  }

  .playback-intro__copy h2,
  .playback-intro__copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .playback-intro__copy h2 {
    max-width: none;
  }

  .playback-intro__copy p {
    max-width: 31em;
    margin-top: 24px;
  }

  .playback-capabilities__panel {
    padding: 48px 56px;
  }

  .playback-capabilities__list {
    grid-template-columns: minmax(0, 1fr);
    max-width: 900px;
  }

  .playback-capability {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 32px;
    min-height: 0;
    padding: 42px 32px;
  }

  .playback-capability:nth-child(even) {
    border-left: 0;
  }

  .playback-capability:nth-child(n + 2) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .playback-capability__icon {
    width: 72px;
    height: 72px;
  }

  .playback-capability__icon svg {
    width: 52px;
    height: 52px;
  }

  .highlights {
    --highlight-heading-width: calc(100% - 112px);
    --highlight-card-width: 52vw;
    --highlight-rail-start: max(56px, calc(18vw + 28px));
    min-height: 75svh;
    padding-top: clamp(220px, 10svh, 280px);
    padding-bottom: clamp(280px, 12svh, 360px);
  }

  .highlights-heading {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 28px;
    min-height: 340px;
  }

  .highlights-heading h2,
  .film-trigger {
    line-height: 1.15;
  }

  .film-trigger {
    margin-top: 0;
  }

  .film-trigger__icon {
    width: 28px;
    height: 28px;
  }

  .film-trigger__icon svg {
    width: 16px;
    height: 16px;
  }

  .highlight-card {
    border-radius: 44px;
  }

  .highlight-card__media {
    height: clamp(620px, 32svh, 760px);
    border-radius: 44px;
  }

  .highlight-card__copy {
    padding: 56px 42px;
  }

  .highlight-card__copy h3 {
    line-height: 1.2;
  }

  .highlight-card__copy p {
    margin-top: 14px;
    line-height: 1.35;
  }

  .highlight-controls {
    gap: 16px;
    height: 104px;
  }

  .highlight-pagination {
    --highlight-indicator-width: 70px;
    --highlight-active-button-width: 104px;
    width: 610px;
    height: 104px;
    border-radius: 52px;
  }

  .highlight-pagination button {
    flex-basis: 84px;
    width: 84px;
    height: 104px;
  }

  .highlight-pagination button::before,
  .highlight-pagination button::after {
    width: 10px;
    height: 10px;
  }

  .highlight-autoplay {
    width: 104px;
    height: 104px;
    border-radius: 52px;
  }

  .highlight-autoplay__icon svg {
    width: 28px;
    height: 28px;
  }

  .scroll-story.bom-story {
    min-height: calc(100dvh + 920px);
  }

  .bom-stage {
    top: 24px;
    width: calc(100% - (2 * var(--page-x)));
    height: calc(100dvh - 48px);
  }

  .bom-copy {
    top: 6%;
    right: 0;
    left: 0;
    width: auto;
    padding: 0 8px;
    transform: none;
  }

  .bom-copy__details {
    padding-top: 28px;
  }

  .bom-visual {
    top: 66%;
    right: auto;
    left: 50%;
    width: 118%;
    transform: translate(-50%, -50%);
  }

  .hdr-heading>p:last-child,
  .output-section .output-heading>p:last-child,
  .pro-video-final-copy p,
  .viewer-intro {
    font-size: var(--type-body-large);
  }

  .hdr-experience {
    height: 960px;
  }

  .output-section {
    --output-device-scale: 1.5;
    height: 360svh;
  }

  .output-section .output-heading {
    top: clamp(104px, 8svh, 160px);
  }

  .output-section .output-device {
    width: 136vw;
  }

  .output-section .output-callout {
    left: 50% !important;
    width: min(82vw, 760px);
  }

  .output-section .output-callout h3 {
    font-size: var(--type-card-title);
  }

  .pro-video-device {
    width: min(90vw, calc(60svh * 1.57815));
  }

  .pro-video-final-copy {
    padding: clamp(104px, 8svh, 160px) 56px 0;
  }

  #views .viewer-stage {
    height: min(1100px, 58dvh);
  }

  #views .viewer-model-tabs {
    width: 520px;
  }

  #views .viewer-model-tabs button {
    min-height: 72px;
    padding-inline: 20px;
    font-size: 39.6px;
  }

  #views .viewer-canvas {
    top: 96px;
  }

  .model-card__image {
    height: 360px;
  }

  .model-card__body h3 {
    font-size: 42px;
  }

  .model-card__body .text-button {
    font-size: 36px;
  }

  .model-list,
  .download-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .download-card {
    min-height: 190px;
    padding: 36px;
  }

  .download-card__copy strong {
    font-size: 40px;
  }

  .download-card__meta,
  .downloads__heading p {
    font-size: 32px;
  }

  .downloads__heading h3 {
    font-size: 79.2px;
  }

  .download-card__meta i {
    font-size: 18px;
  }

  .download-card__icon {
    width: 96px;
    height: 96px;
  }

  .download-card__icon svg {
    width: 44px;
    height: 44px;
  }

  .specs-table {
    min-width: 1680px;
    font-size: 39.6px;
  }

  .specs-col-label {
    width: 240px;
  }

  .specs-table th,
  .specs-table td {
    padding: 24px 22px;
  }

  .specs-table thead th:first-child,
  .specs-table tbody th,
  .specs-row--dense td,
  .specs-row--media td {
    font-size: 36px;
  }

  .specs-model {
    min-height: 48px;
    font-size: 43.2px;
  }

  .specs-swipe-hint {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted-2);
    font-size: 36px;
  }

  .specs-swipe-hint span {
    color: var(--brand-bright);
    font-size: 50.4px;
  }

  .eyebrow,
  .model-spec-panel__eyebrow,
  .model-spec-overview__item span {
    font-size: 21.6px;
  }

  .viewer-orbit-cue {
    font-size: 19.8px;
  }

  .viewer-3d-status {
    font-size: 21.6px;
  }

  .model-spec-panel__heading h2 {
    font-size: 73.8px;
  }

  .model-spec-list dt,
  .model-spec-list dd {
    font-size: 25.2px;
  }

  .specs-legend {
    font-size: 21.6px;
  }

  .spec-option {
    font-size: 19.8px;
  }
}
