:root {
  --ink: #070809;
  --ink-soft: #111315;
  --paper: #f5f5f2;
  --paper-bright: #fbfbf8;
  --muted: #74787b;
  --line: rgba(17, 20, 22, 0.14);
  --light-line: rgba(255, 255, 255, 0.13);
  --accent: #b7f52d;
  --accent-cyan: #72ebe4;
  --radius: 22px;
  --page: min(1440px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  color: #111315;
  background: var(--paper);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
::selection {
  color: #0b0c0d;
  background: var(--accent);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 11px 16px;
  color: #0b0d0e;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  font-size: 13px;
  font-weight: 700;
  translate: 0 calc(-100% - 20px);
  transition: translate 0.18s ease;
}
.skip-link:focus {
  translate: 0 0;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px #176f7b;
}

.topbar {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  padding: 0 max(24px, calc((100vw - 1440px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  transition:
    background 0.35s ease,
    border 0.35s ease,
    color 0.35s ease,
    height 0.35s ease;
}
.topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.topbar.scrolled {
  height: 58px;
  background: rgba(5, 6, 7, 0.82);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}
.wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.wordmark img {
  width: 112px;
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  position: relative;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  transition: color 0.2s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #fff;
}
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0.72);
}
.top-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}
.language {
  padding: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}
.buy-link {
  padding: 9px 16px 10px;
  color: #0a0b0c;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.buy-link:hover {
  transform: translateY(-1px);
  background: var(--accent);
}
.theme-toggle {
  min-height: 30px;
  padding: 5px 9px 5px 7px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.055);
  font-size: 10px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.2s ease;
}
.theme-toggle:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}
.theme-toggle-swatch {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: linear-gradient(135deg, #0b0d0e 0 50%, #b7f52d 50% 100%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
}
.theme-toggle.is-mist .theme-toggle-swatch {
  border-color: rgba(146, 227, 236, 0.72);
  background: linear-gradient(135deg, #eaf3f4 0 50%, #54d5e4 50% 100%);
}
.theme-toggle.is-mono-red .theme-toggle-swatch {
  border-color: rgba(255, 114, 119, 0.78);
  background: linear-gradient(135deg, #fff 0 50%, #d71920 50% 100%);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.hero-sequence {
  height: 310svh;
  background: var(--ink);
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-light {
  position: absolute;
  z-index: -3;
  width: 105vw;
  height: 105vw;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(111, 122, 125, 0.3) 0%,
    rgba(38, 42, 44, 0.24) 26%,
    rgba(9, 10, 11, 0) 64%
  );
  opacity: 0.85;
}
.hero-light::before {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0) 66%
  );
  filter: blur(28px);
}
.hero-light::after {
  content: "";
  position: absolute;
  width: 54%;
  height: 48%;
  left: 48%;
  top: 43%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(132, 157, 158, 0.16) 0%,
    rgba(91, 111, 113, 0.08) 38%,
    rgba(32, 40, 42, 0) 76%
  );
  filter: blur(22px);
  opacity: 0.82;
}
.hero-grain {
  position: absolute;
  z-index: 5;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.hero-product-wrap {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 52%;
  width: clamp(520px, 58vw, 940px);
  aspect-ratio: 1.18;
  transform: translate(-40%, -41%) scale(0.86);
  transform-origin: 54% 52%;
  will-change: transform, opacity, filter;
  opacity: 0.9;
  filter: drop-shadow(0 42px 56px rgba(0, 0, 0, 0.54));
}
.hero-product-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-product-wrap i {
  position: absolute;
  z-index: 1;
  width: 64%;
  height: 22%;
  left: 21%;
  bottom: 2%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.88);
  filter: blur(38px);
  transform: perspective(500px) rotateX(72deg);
}
.hero-product-wrap.model-ready {
  opacity: 0 !important;
  visibility: hidden;
  transition:
    opacity 0.42s ease,
    visibility 0s linear 0.42s;
}
.hero-webgl {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.hero-webgl.ready {
  opacity: 1;
}
.hero-webgl canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Desktop fallback: keep the static product render in the lower-right so a
   slower GLB connection still presents a composed launch frame. The former
   centered fallback crossed the headline and made the page look unfinished
   during loading; the mobile layout keeps its dedicated rule below. */
@media (min-width: 981px) {
  .hero-product-wrap {
    left: 58%;
    top: 66%;
    width: clamp(430px, 44vw, 720px);
    transform: translate(-36%, -38%) scale(0.94);
  }
}
.model-loader {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 11%;
  width: 180px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.46);
  text-align: center;
  transition: opacity 0.28s ease;
}
.model-loader span {
  position: relative;
  display: block;
  height: 1px;
  margin-bottom: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}
.model-loader span::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 1px;
  left: -42%;
  background: #fff;
  animation: modelLoad 1.25s ease-in-out infinite;
}
.model-loader small {
  font-size: 9px;
  letter-spacing: 0.14em;
}
.hero-webgl.ready .model-loader {
  opacity: 0;
}
.product-model-webgl {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.product-model-webgl.ready {
  opacity: 1;
}
.product-model-webgl.ready .model-loader {
  opacity: 0;
}
.product-model-webgl canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.product-model-fallback {
  transition:
    opacity 0.42s ease,
    visibility 0s linear 0s,
    transform 1s cubic-bezier(0.2, 0.72, 0.2, 1),
    filter 0.8s ease !important;
}
.product-model-fallback.model-ready {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.42s ease,
    visibility 0s linear 0.42s,
    transform 1s cubic-bezier(0.2, 0.72, 0.2, 1),
    filter 0.8s ease !important;
}
@keyframes modelLoad {
  to {
    transform: translateX(340%);
  }
}
.hero-copy {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}
.hero-copy p,
.section-label {
  margin: 0 0 20px;
  color: #858b8e;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 720;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 0.97;
}
.hero-copy span {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.6;
}
.hero-copy-intro {
  top: 17%;
  left: 50%;
  width: min(1000px, calc(100vw - 64px));
  text-align: center;
  transform: translateX(-50%);
}
.hero-copy-intro h1 {
  font-size: clamp(52px, 7vw, 112px);
}
.hero-copy-detail {
  top: 33%;
  right: max(5vw, calc((100vw - 1440px) / 2));
  width: min(36vw, 480px);
  opacity: 0;
  transform: translateY(28px);
}
.hero-copy-detail h2,
.hero-copy-final h2 {
  font-size: clamp(40px, 4.6vw, 74px);
}
@media (min-width: 621px) {
  html[lang="en"] .hero-copy-detail {
    right: 4vw;
    width: min(40vw, 560px);
  }
  html[lang="en"] .hero-copy-detail h2 {
    font-size: clamp(38px, 4.15vw, 64px);
    letter-spacing: -0.045em;
  }
}
.hero-copy-final {
  left: 50%;
  bottom: 30%;
  width: min(1000px, calc(100vw - 64px));
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 32px);
}
.hero-copy-final a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 12px 20px 13px;
  color: #0b0c0d;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  pointer-events: auto;
}
.hero-copy-final a span {
  margin: 0;
  color: inherit;
  font-size: 14px;
}

/* The flip candidate keeps the exit copy clear of the product silhouette.
   This is intentionally scoped to the review route; the formal homepage
   retains its existing centered composition until the candidate is approved. */
.hero-flip-candidate .hero-copy-final {
  right: max(5vw, calc((100vw - 1440px) / 2));
  left: auto;
  width: min(42vw, 560px);
  text-align: right;
}
.hero-flip-candidate .hero-copy-final a {
  margin-left: auto;
}
.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-cue span {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  overflow: hidden;
}
.scroll-cue span::after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background: #fff;
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  from {
    transform: translateX(-14px);
  }
  to {
    transform: translateX(32px);
  }
}

.light-section {
  background: var(--paper);
}
.manifesto {
  min-height: 96svh;
  padding: clamp(110px, 14vw, 210px) max(40px, calc((100vw - 1280px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.manifesto .section-label {
  color: #656a6d;
}
.manifesto h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(48px, 6.5vw, 98px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 600;
}
.manifesto h2 span {
  color: #a3a6a5;
}
.manifesto > p:last-child {
  max-width: 760px;
  margin: 64px 0 0 auto;
  color: #4d5153;
  font-size: clamp(18px, 1.8vw, 27px);
  line-height: 1.75;
}

.experience {
  padding: clamp(100px, 10vw, 160px) max(40px, calc((100vw - 1440px) / 2));
  color: #fff;
  background: #080a0b;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(46px, 5.6vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.058em;
  font-weight: 610;
}
.section-heading > p {
  margin: 0;
  color: #555a5c;
  font-size: 17px;
  line-height: 1.75;
}
.section-heading.on-dark > p {
  color: rgba(255, 255, 255, 0.54);
}
.experience-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 860px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.experience-steps li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-right: 20px;
}
.experience-steps li::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 8px;
  background: var(--light-line);
}
.experience-steps li:last-child::after {
  display: none;
}
.experience-steps span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--light-line);
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
}
.experience-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(340px, 0.72fr);
  min-height: 680px;
  overflow: hidden;
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  background: #0e1011;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.4);
}
.demo-player {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #111;
}
.demo-player > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.3s ease,
    transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.demo-player.seeking > img {
  opacity: 0.72;
  transform: scale(1.025);
}
.player-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 4, 5, 0.03) 40%,
    rgba(3, 4, 5, 0.92) 100%
  );
}
.player-status {
  position: absolute;
  left: 34px;
  bottom: 108px;
  display: grid;
}
.player-status span {
  width: max-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: #0a0b0c;
  background: var(--accent);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 720;
}
.player-status strong {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 560;
  font-variant-numeric: tabular-nums;
}
.player-status small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.player-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.player-play span {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  opacity: 0.72;
}
.player-play span::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 20px 0 0 23px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}
.timeline {
  position: absolute;
  right: 34px;
  bottom: 28px;
  left: 34px;
}
.timeline-track {
  position: relative;
  height: 18px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
}
.timeline-track i {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 0;
  width: 43%;
  height: 2px;
  background: #fff;
  transition: width 0.58s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.timeline-track b {
  position: absolute;
  z-index: 4;
  top: 3px;
  left: 43%;
  width: 3px;
  height: 12px;
  background: #fff;
  border-radius: 3px;
  transform: translateX(-50%);
  transition: left 0.58s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.timeline-track em {
  position: absolute;
  z-index: 3;
  top: 5px;
  left: 38%;
  width: 10%;
  height: 8px;
  border: 1px solid var(--accent);
  background: rgba(183, 245, 45, 0.18);
  border-radius: 2px;
  transition:
    left 0.58s cubic-bezier(0.2, 0.75, 0.2, 1),
    width 0.58s ease;
}
.timeline-copy {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  letter-spacing: 0.08em;
}
.demo-controls {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #121415;
}
.mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  border-radius: 999px;
  background: #080909;
}
.mode-switch button {
  padding: 11px 12px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.48);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.mode-switch button.active {
  color: #0a0b0c;
  background: #fff;
}
.instruction {
  display: grid;
  gap: 7px;
  margin: 34px 2px 22px;
}
.instruction strong {
  font-size: 20px;
  font-weight: 580;
}
.instruction span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.6;
}
.metric-options {
  display: grid;
  gap: 8px;
}
.metric-button {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 18px;
  width: 100%;
  padding: 18px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition:
    background 0.22s ease,
    border 0.22s ease,
    transform 0.22s ease;
}
.metric-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
}
.metric-button.active {
  border-color: rgba(183, 245, 45, 0.62);
  background: rgba(183, 245, 45, 0.08);
}
.metric-button span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}
.metric-button strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-size: 19px;
  font-weight: 560;
  font-variant-numeric: tabular-nums;
}
.metric-button small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.08em;
}
.clip-result {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding: 23px 2px 2px;
  border-top: 1px solid var(--light-line);
}
.clip-result span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}
.clip-result strong {
  font-size: 19px;
  font-weight: 560;
  font-variant-numeric: tabular-nums;
}
.clip-result small {
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}
.asset-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  text-align: right;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  min-height: 100svh;
}
.product-lens {
  position: relative;
  min-height: 820px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e9e9e5;
}
.product-lens::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(255, 255, 255, 0.95),
    rgba(220, 221, 217, 0.6) 55%,
    rgba(205, 206, 202, 0.72) 100%
  );
}
.product-lens img {
  position: relative;
  z-index: 2;
  width: min(68%, 620px);
  height: auto;
  aspect-ratio: auto;
  filter: drop-shadow(0 32px 34px rgba(0, 0, 0, 0.22));
}
.lens-halo {
  position: absolute;
  z-index: 1;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(20, 22, 23, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.18),
    0 0 0 180px rgba(255, 255, 255, 0.11);
}
.product-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(50px, 7vw, 124px);
  background: var(--paper-bright);
}
.product-story-copy h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 610;
}
.product-story-copy > p:not(.section-label) {
  max-width: 660px;
  margin: 32px 0 48px;
  color: #636769;
  font-size: 17px;
  line-height: 1.8;
}
.feature-points {
  border-top: 1px solid var(--line);
}
.feature-points article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.feature-points strong {
  font-size: 14px;
  font-weight: 650;
}
.feature-points span {
  color: #74787a;
  font-size: 13px;
  line-height: 1.6;
}
.text-action {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  margin-top: 38px;
  font-size: 14px;
  font-weight: 650;
}
.text-action span {
  transition: transform 0.2s ease;
}
.text-action:hover span {
  transform: translateX(4px);
}

.scene-section {
  padding: clamp(100px, 10vw, 160px) max(24px, calc((100vw - 1440px) / 2));
  background: #eeefeb;
}
.scene-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.scene-teaser {
  min-width: 0;
}
.scene-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #d9dad6;
}
.scene-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.scene-teaser:hover .scene-image img {
  transform: scale(1.025);
}
.scene-info {
  padding: 22px 3px 0;
}
.scene-info span {
  color: #7a7e7e;
  font-size: 11px;
}
.scene-info h3 {
  min-height: 1.25em;
  margin: 9px 0 18px;
  font-size: clamp(22px, 2.5vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.04em;
  font-weight: 590;
}
.scene-info b {
  font-size: 12px;
  font-weight: 650;
}

.system-cta {
  min-height: 72svh;
  padding: clamp(90px, 10vw, 150px) max(40px, calc((100vw - 1440px) / 2));
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  color: #fff;
  background: radial-gradient(
    circle at 65% 20%,
    #262a2c,
    #0b0d0e 48%,
    #050607 100%
  );
}
.system-cta h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 6.3vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 600;
}
.system-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
}
.solid-action,
.ghost-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 124px;
  padding: 13px 20px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
}
.solid-action {
  color: #090a0b;
  background: #fff;
}
.solid-action:hover {
  background: var(--accent);
}
.ghost-action {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}
.ghost-action:hover {
  border-color: #fff;
}
.contact-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 11vw, 160px) 40px;
  text-align: center;
  background: linear-gradient(135deg, #f3f4ef 0%, #dfe4dc 100%);
}
.contact-cta::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: 50%;
  top: 15%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(177, 255, 46, 0.18),
    rgba(177, 255, 46, 0) 68%
  );
  pointer-events: none;
}
.contact-cta > * {
  position: relative;
  z-index: 1;
}
.contact-cta p {
  margin: 0 0 20px;
  color: rgba(5, 6, 7, 0.62);
  font-size: 14px;
}
.contact-cta h2 {
  max-width: 920px;
  margin: 0 auto 42px;
  font-size: clamp(44px, 5.3vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 620;
}
.solid-action.dark {
  color: #fff;
  background: #08090a;
}
.solid-action.dark:hover {
  background: #252829;
}

/* Product catalog */
.inner-page {
  background: #eff0ec;
}
.inner-page main {
  overflow: hidden;
}
.catalog-hero {
  min-height: 78svh;
  padding: 168px max(40px, calc((100vw - 1320px) / 2)) 108px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.56fr);
  align-content: end;
  align-items: end;
  gap: 54px 80px;
  background:
    radial-gradient(
      circle at 72% 34%,
      rgba(255, 255, 255, 0.9),
      transparent 32%
    ),
    linear-gradient(145deg, #f9f9f6 0%, #eeefeb 70%, #e5e7e1 100%);
}
.catalog-hero .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: #666b6d;
}
.catalog-hero h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(62px, 7.6vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 610;
}
.catalog-hero h1 span {
  color: #9da19f;
}
.catalog-hero > p:last-child {
  max-width: 580px;
  margin: 0 0 5px;
  color: #585d5f;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.75;
}

.catalog-products {
  padding: 122px max(24px, calc((100vw - 1440px) / 2)) 152px;
  background: #e9ebe6;
}
.catalog-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 40px;
}
.catalog-section-head .section-label {
  margin-bottom: 13px;
  color: #74797a;
}
.catalog-section-head h2 {
  margin: 0;
  font-size: clamp(44px, 5.1vw, 76px);
  line-height: 1;
  letter-spacing: -0.058em;
  font-weight: 610;
}
.catalog-section-head .text-action {
  margin: 0 0 6px;
}
.catalog-section-head > p {
  max-width: 500px;
  margin: 0 0 7px;
  color: #686d6e;
  font-size: 15px;
  line-height: 1.7;
}

.product-feature-card {
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(500px, 0.98fr) minmax(0, 1.02fr);
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background: radial-gradient(
    circle at 74% 42%,
    #353c3d 0%,
    #171b1c 35%,
    #080a0b 73%
  );
  box-shadow: 0 30px 70px rgba(20, 24, 23, 0.12);
  isolation: isolate;
}
.product-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: inherit;
}
.product-feature-copy {
  position: relative;
  z-index: 3;
  padding: clamp(52px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-tag {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.product-feature-copy h3 {
  max-width: 640px;
  margin: 25px 0 25px;
  font-size: clamp(47px, 4.65vw, 70px);
  line-height: 1.01;
  letter-spacing: -0.058em;
  font-weight: 610;
}
.product-feature-copy > p {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 16px;
  line-height: 1.78;
}
.product-commerce {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 48px;
}
.product-commerce strong {
  font-size: 25px;
  font-weight: 610;
  letter-spacing: -0.02em;
}
.product-commerce em {
  color: var(--accent);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.04em;
}
.product-feature-copy > b {
  width: max-content;
  margin-top: 42px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 650;
}
.product-feature-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.catalog-glow {
  position: absolute;
  width: min(78%, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.17) 0%,
    rgba(154, 187, 181, 0.08) 39%,
    transparent 69%
  );
  filter: blur(8px);
}
.product-feature-visual img {
  position: relative;
  z-index: 2;
  width: min(91%, 820px);
  height: auto;
  aspect-ratio: auto;
  max-height: 650px;
  object-fit: contain;
  transform: translate(1%, 2%) scale(0.96);
  filter: drop-shadow(0 46px 52px rgba(0, 0, 0, 0.58));
  transition:
    transform 1s cubic-bezier(0.2, 0.72, 0.2, 1),
    filter 0.8s ease;
}
.product-feature-card:hover .product-feature-visual img {
  transform: translate(-1%, 0) scale(1.015);
  filter: drop-shadow(0 54px 62px rgba(0, 0, 0, 0.66));
}

.accessories-head {
  margin-top: 132px;
}
.accessory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.accessory-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #f8f8f5;
  box-shadow: inset 0 0 0 1px rgba(20, 24, 23, 0.04);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.72, 0.2, 1),
    box-shadow 0.35s ease;
}
.accessory-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(32, 37, 35, 0.1);
}
.accessory-visual {
  position: relative;
  min-height: 475px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 45%,
    #fff 0%,
    #f0f1ed 58%,
    #e5e7e2 100%
  );
}
.accessory-visual::after {
  content: "";
  position: absolute;
  inset: auto 21% 9%;
  height: 9%;
  border-radius: 50%;
  background: rgba(38, 42, 41, 0.13);
  filter: blur(24px);
  transform: perspective(300px) rotateX(72deg);
}
.accessory-visual img {
  position: relative;
  z-index: 2;
  width: min(76%, 460px);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(32, 37, 36, 0.17));
  transition: transform 0.7s cubic-bezier(0.2, 0.72, 0.2, 1);
}
.accessory-card:hover .accessory-visual img {
  transform: scale(1.025);
}
.accessory-copy {
  padding: 30px 34px 36px;
}
.accessory-copy > span {
  color: #777c7d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.accessory-copy h3 {
  margin: 10px 0 13px;
  font-size: clamp(25px, 2.4vw, 35px);
  line-height: 1.12;
  letter-spacing: -0.042em;
  font-weight: 610;
}
.accessory-copy > p {
  min-height: 3.4em;
  margin: 0;
  color: #666b6d;
  font-size: 14px;
  line-height: 1.7;
}
.accessory-copy > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 21px;
  border-top: 1px solid rgba(17, 20, 22, 0.11);
}
.accessory-copy strong {
  font-size: 17px;
  font-weight: 650;
}
.accessory-copy a {
  font-size: 12px;
  font-weight: 650;
}

.catalog-support {
  padding: 126px max(40px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  align-items: end;
  gap: 48px 100px;
  background:
    radial-gradient(
      circle at 86% 14%,
      rgba(183, 245, 45, 0.13),
      transparent 34%
    ),
    #f7f8f4;
}
.catalog-support .section-label {
  color: #737879;
}
.catalog-support h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(46px, 5.3vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.058em;
  font-weight: 610;
}
.channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-self: end;
}
.channel-list span {
  padding: 10px 14px 11px;
  border: 1px solid rgba(15, 18, 19, 0.13);
  border-radius: 999px;
  color: #555a5b;
  background: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}
.catalog-support > .solid-action {
  grid-column: 2;
  justify-self: start;
  margin-top: -16px;
}
.product-feature-card:focus-visible,
.accessory-copy a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Camorace Max product detail */
.pdp-page main {
  padding-top: 58px;
  overflow: visible;
  background: #f4f5f1;
}
.product-subnav {
  position: sticky;
  z-index: 90;
  top: 58px;
  min-height: 58px;
  padding: 0 max(24px, calc((100vw - 1440px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgba(20, 23, 24, 0.1);
  background: rgba(247, 248, 244, 0.88);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.product-subnav > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
}
.product-subnav b {
  font-size: 14px;
  font-weight: 720;
}
.product-subnav span {
  color: #7c8081;
  font-size: 10px;
}
.product-subnav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.product-subnav-links > a {
  color: #686d6f;
  font-size: 11px;
}
.product-subnav-links > a:hover {
  color: #090a0b;
}
.product-subnav-links .subnav-buy {
  padding: 8px 14px 9px;
  border-radius: 999px;
  color: #fff;
  background: #0a0b0c;
  font-weight: 650;
}

.pdp-hero {
  min-height: calc(100svh - 116px);
  display: grid;
  grid-template-columns: minmax(470px, 0.88fr) minmax(0, 1.12fr);
  background: #f5f6f2;
}
.pdp-hero-copy {
  padding: clamp(78px, 8vw, 132px) clamp(48px, 7vw, 118px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pdp-hero-copy .section-label {
  color: #6d7274;
}
.pdp-hero-copy h1 {
  margin: 0;
  font-size: clamp(66px, 6.2vw, 96px);
  line-height: 0.93;
  letter-spacing: -0.067em;
  font-weight: 610;
}
.pdp-hero-copy h1 span {
  display: block;
  margin-top: 18px;
  color: #a0a4a2;
  font-size: 0.54em;
  line-height: 1.05;
  letter-spacing: -0.055em;
}
.pdp-hero-copy > p:not(.section-label) {
  max-width: 600px;
  margin: 34px 0 0;
  color: #575c5e;
  font-size: 17px;
  line-height: 1.78;
}
.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 44px;
}
.pdp-price strong {
  font-size: 25px;
  font-weight: 660;
}
.pdp-price span {
  color: #74797a;
  font-size: 11px;
}
.pdp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 29px;
}
.pdp-hero-actions .solid-action {
  color: #fff;
  background: #090a0b;
}
.pdp-hero-actions .solid-action:hover {
  color: #0a0b0c;
  background: var(--accent);
}
.pdp-hero-actions .ghost-action {
  color: #16191a;
  border-color: rgba(15, 18, 19, 0.2);
}
.pdp-hero-actions .ghost-action:hover {
  border-color: #111;
}
.pdp-hero-media {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 42%,
    #505759 0%,
    #24292a 34%,
    #0b0d0e 72%
  );
  isolation: isolate;
}
.pdp-hero-media::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16),
    transparent 67%
  );
  filter: blur(16px);
}
.pdp-hero-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 18%;
  right: 18%;
  bottom: 10%;
  height: 9%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.56);
  filter: blur(30px);
  transform: perspective(400px) rotateX(72deg);
}
.pdp-hero-media img {
  position: relative;
  z-index: 2;
  width: min(87%, 820px);
  height: auto;
  max-height: 760px;
  object-fit: contain;
  transform: translateY(2%);
  filter: drop-shadow(0 48px 58px rgba(0, 0, 0, 0.55));
}
.pdp-media-note {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.pdp-statement {
  min-height: 92svh;
  padding: 140px max(40px, calc((100vw - 1240px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8f8f5;
}
.pdp-statement .section-label {
  color: #727779;
}
.pdp-statement h2 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(58px, 7.3vw, 108px);
  line-height: 1.02;
  letter-spacing: -0.064em;
  font-weight: 610;
}
.pdp-statement h2 span {
  color: #a4a8a5;
}
.pdp-statement > p:last-child {
  max-width: 740px;
  margin: 62px 0 0 auto;
  color: #5d6263;
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.75;
}

.pdp-panorama {
  min-height: 96svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
  color: #fff;
  background: #07090a;
}
.pdp-lens-visual {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 46%,
    #2a3031 0%,
    #111415 45%,
    #07090a 72%
  );
}
.pdp-lens-visual::before,
.pdp-lens-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.pdp-lens-visual::before {
  width: 72%;
  aspect-ratio: 1;
}
.pdp-lens-visual::after {
  width: 96%;
  aspect-ratio: 1;
}
.pdp-lens-visual img {
  position: relative;
  z-index: 2;
  width: min(76%, 680px);
  height: auto;
  aspect-ratio: auto;
  filter: drop-shadow(0 42px 54px rgba(0, 0, 0, 0.7));
}
.pdp-panorama-copy {
  padding: 104px clamp(44px, 5.5vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pdp-panorama-copy .section-label {
  color: rgba(255, 255, 255, 0.4);
}
.pdp-panorama-copy h2 {
  margin: 0;
  font-size: clamp(52px, 5.8vw, 88px);
  line-height: 1.01;
  letter-spacing: -0.061em;
  font-weight: 610;
}
.pdp-panorama-copy > p:not(.section-label) {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
  line-height: 1.8;
}
.pdp-feature-lines {
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.pdp-feature-lines div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.pdp-feature-lines strong {
  font-size: 13px;
  font-weight: 650;
}
.pdp-feature-lines span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  line-height: 1.6;
}

.pdp-workflow {
  padding: 138px max(24px, calc((100vw - 1440px) / 2)) 152px;
  background: #edf0ea;
}
.pdp-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 68px;
}
.pdp-section-heading .section-label {
  color: #727779;
}
.pdp-section-heading h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 90px);
  line-height: 1.01;
  letter-spacing: -0.06em;
  font-weight: 610;
}
.pdp-section-heading > p {
  margin: 0 0 5px;
  color: #5d6264;
  font-size: 16px;
  line-height: 1.75;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.workflow-card {
  min-height: 420px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #fafbf7;
}
.workflow-card > span {
  color: #8a8e8f;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.workflow-card h3 {
  margin: auto 0 18px;
  font-size: clamp(34px, 3.3vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 610;
}
.workflow-card p {
  min-height: 4.8em;
  margin: 0;
  color: #656a6b;
  font-size: 14px;
  line-height: 1.72;
}
.workflow-card b {
  margin-top: 27px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 20, 22, 0.1);
  font-size: 11px;
  font-weight: 650;
}

.pdp-scenes {
  padding: 138px max(24px, calc((100vw - 1440px) / 2)) 152px;
  background: #f8f8f5;
}
.pdp-scene-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pdp-scene-card {
  overflow: hidden;
  border-radius: 20px;
  background: #111415;
  color: #fff;
}
.pdp-scene-card figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
}
.pdp-scene-card figure::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(7, 9, 10, 0.8));
}
.pdp-scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.72, 0.2, 1);
}
.pdp-scene-card:hover img {
  transform: scale(1.025);
}
.pdp-scene-copy {
  padding: 30px 32px 36px;
}
.pdp-scene-copy span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.12em;
}
.pdp-scene-copy h3 {
  margin: 11px 0 15px;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 610;
}
.pdp-scene-copy p {
  min-height: 3.4em;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.72;
}

.pdp-specs {
  padding: 138px max(40px, calc((100vw - 1320px) / 2)) 152px;
  color: #fff;
  background: #090b0c;
}
.pdp-specs .pdp-section-heading .section-label {
  color: rgba(255, 255, 255, 0.38);
}
.pdp-specs .pdp-section-heading > p {
  color: rgba(255, 255, 255, 0.5);
}
.spec-groups {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.spec-group {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.spec-group > h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 650;
}
.spec-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 46px;
}
.spec-items div {
  display: grid;
  gap: 7px;
}
.spec-items span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}
.spec-items strong {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 560;
}

.pdp-faq {
  padding: 138px max(40px, calc((100vw - 1180px) / 2)) 152px;
  background: #f8f8f5;
}
.pdp-faq > h2 {
  margin: 0 0 58px;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 610;
}
.pdp-faq details {
  border-top: 1px solid rgba(17, 20, 22, 0.13);
}
.pdp-faq details:last-child {
  border-bottom: 1px solid rgba(17, 20, 22, 0.13);
}
.pdp-faq summary {
  position: relative;
  padding: 27px 52px 27px 0;
  list-style: none;
  cursor: pointer;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  font-weight: 570;
}
.pdp-faq summary::-webkit-details-marker {
  display: none;
}
.pdp-faq summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 25px;
  color: #7a7e7f;
  font-size: 24px;
  font-weight: 400;
}
.pdp-faq details[open] summary::after {
  content: "−";
}
.pdp-faq details p {
  max-width: 820px;
  margin: -4px 0 28px;
  color: #5d6264;
  font-size: 15px;
  line-height: 1.8;
}

.pdp-buy {
  padding: 138px max(24px, calc((100vw - 1440px) / 2)) 152px;
  background: #e9ebe6;
}
.retail-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.retail-card {
  grid-column: span 2;
  min-width: 0;
  min-height: 320px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #f9faf6;
}
.retail-card:nth-last-child(-n + 2) {
  grid-column: span 3;
}
.retail-card > span {
  color: #7e8384;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.retail-card h3 {
  margin: auto 0 12px;
  font-size: clamp(33px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 610;
}
.retail-card p {
  min-height: 3.4em;
  margin: 0;
  color: #656a6b;
  font-size: 13px;
  line-height: 1.65;
}
.retail-card a,
.retail-card button {
  width: max-content;
  margin-top: 28px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(17, 20, 22, 0.3);
  color: #111314;
  background: transparent;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}
.retail-card .mobile-channel-open {
  display: none;
}
.retail-card.has-qr {
  position: relative;
  padding-right: 154px;
}
.channel-qr-placeholder {
  position: absolute;
  right: 26px;
  bottom: 28px;
  width: 104px;
  aspect-ratio: 1;
  padding: 11px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 22, 0.09);
}
.channel-qr-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.channel-qr-placeholder span {
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  color: #747879;
  font-size: 8px;
  text-align: center;
}
.pdp-buy-note {
  margin: 28px 0 0;
  color: #6d7273;
  font-size: 11px;
  line-height: 1.7;
}

/* Accessory product detail */
.accessory-detail-page main {
  padding-top: 58px;
  overflow: visible;
  background: #f5f6f2;
}
.accessory-hero {
  min-height: calc(100svh - 116px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(470px, 0.95fr);
  background: #f5f6f2;
}
.accessory-hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 44%,
    #fff 0%,
    #eceee9 55%,
    #e1e4dd 100%
  );
}
.accessory-hero-visual::after {
  content: "";
  position: absolute;
  right: 22%;
  bottom: 12%;
  left: 22%;
  height: 10%;
  border-radius: 50%;
  background: rgba(37, 41, 40, 0.14);
  filter: blur(28px);
  transform: perspective(320px) rotateX(72deg);
}
.accessory-hero-visual img {
  position: relative;
  z-index: 2;
  width: min(74%, 610px);
  height: auto;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 34px 38px rgba(27, 31, 30, 0.2));
}
.accessory-hero-copy {
  padding: clamp(78px, 8vw, 132px) clamp(48px, 7vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.accessory-hero-copy .section-label {
  color: #727779;
}
.accessory-hero-copy h1 {
  margin: 0;
  font-size: clamp(52px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.061em;
  font-weight: 610;
}
.accessory-hero-copy h1 span {
  display: block;
  margin-top: 18px;
  color: #a2a6a4;
  font-size: 0.54em;
  line-height: 1.08;
}
.accessory-hero-copy > p:not(.section-label) {
  max-width: 580px;
  margin: 32px 0 0;
  color: #5d6264;
  font-size: 16px;
  line-height: 1.8;
}
.accessory-hero-copy .pdp-price {
  margin-top: 40px;
}
.accessory-intro {
  min-height: 78svh;
  padding: 130px max(40px, calc((100vw - 1220px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fafaf7;
}
.accessory-intro h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.063em;
  font-weight: 610;
}
.accessory-intro h2 span {
  color: #a3a7a5;
}
.accessory-intro p {
  max-width: 720px;
  margin: 54px 0 0 auto;
  color: #5e6365;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.75;
}
.accessory-features {
  padding: 132px max(24px, calc((100vw - 1440px) / 2)) 146px;
  background: #e9ebe6;
}
.accessory-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.accessory-feature-card {
  min-height: 370px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #f9faf6;
}
.accessory-feature-card span {
  color: #838889;
  font-size: 10px;
  letter-spacing: 0.13em;
}
.accessory-feature-card h3 {
  margin: auto 0 18px;
  font-size: clamp(32px, 3.1vw, 47px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 610;
}
.accessory-feature-card p {
  min-height: 4.8em;
  margin: 0;
  color: #64696b;
  font-size: 14px;
  line-height: 1.72;
}
.accessory-spec-section {
  padding: 132px max(40px, calc((100vw - 1220px) / 2)) 146px;
  color: #fff;
  background: #090b0c;
}
.accessory-spec-section .pdp-section-heading .section-label {
  color: rgba(255, 255, 255, 0.38);
}
.accessory-spec-section .pdp-section-heading > p {
  color: rgba(255, 255, 255, 0.48);
}
.accessory-spec-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.accessory-spec-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 44px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.accessory-spec-list span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}
.accessory-spec-list strong {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 560;
}
.accessory-final-cta {
  min-height: 64svh;
  padding: 110px max(40px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(183, 245, 45, 0.14),
      transparent 32%
    ),
    #f5f6f2;
}
.accessory-final-cta h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(50px, 6vw, 90px);
  line-height: 1.01;
  letter-spacing: -0.06em;
  font-weight: 610;
}
.accessory-final-cta > div:last-child {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.accessory-final-cta strong {
  font-size: 22px;
  font-weight: 650;
}

/* Use-case archive and editorial articles */
.scene-archive-page main,
.scene-article-page main {
  padding-top: 58px;
  background: #f7f8f5;
}
.scene-archive-hero {
  position: relative;
  width: 100%;
  min-height: 360px;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  color: #fff;
  background: #0a0b0c;
}
.scene-archive-hero img,
.scene-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scene-archive-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 6, 0.8), rgba(4, 5, 6, 0.08) 70%),
    linear-gradient(0deg, rgba(4, 5, 6, 0.48), transparent 54%);
}
.scene-archive-hero-copy {
  position: absolute;
  z-index: 2;
  left: max(32px, calc((100vw - 1440px) / 2));
  bottom: clamp(40px, 6vw, 94px);
  width: min(760px, calc(100vw - 64px));
}
.scene-archive-hero-copy .section-label {
  color: rgba(255, 255, 255, 0.6);
}
.scene-archive-hero-copy h1 {
  margin: 0;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 610;
}
.scene-archive-hero-copy p:last-child {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}
.scene-archive {
  padding: 120px max(24px, calc((100vw - 1440px) / 2)) 150px;
}
.scene-archive-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  align-items: end;
  gap: 54px;
  margin-bottom: 72px;
}
.scene-archive-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(50px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.058em;
  font-weight: 610;
}
.scene-archive-heading > p {
  margin: 0 0 8px;
  color: #666c6d;
  font-size: 16px;
  line-height: 1.8;
}
.scene-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 20px;
}
.scene-archive-card {
  min-width: 0;
  display: block;
  overflow: hidden;
  color: #111415;
  background: #eef0ec;
  border-radius: 22px;
  transition:
    transform 0.32s ease,
    background 0.25s ease;
}
.scene-archive-card:hover {
  transform: translateY(-4px);
  background: #e8ebe6;
}
.scene-archive-card figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dfe2dc;
}
.scene-archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.scene-archive-card:hover img {
  transform: scale(1.025);
}
.scene-archive-card-copy {
  padding: 28px 30px 32px;
}
.scene-archive-card-copy > span {
  display: block;
  color: #767c7d;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scene-archive-card h3 {
  margin: 15px 0 32px;
  overflow: hidden;
  font-size: clamp(26px, 2.45vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 610;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.scene-archive-card b {
  font-size: 12px;
  font-weight: 650;
}
.scene-article-header {
  padding: clamp(110px, 12vw, 180px) max(24px, calc((100vw - 1120px) / 2)) 72px;
  background: #f7f8f5;
}
.scene-article-header .section-label {
  color: #74797a;
}
.scene-article-header h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(58px, 7.4vw, 118px);
  line-height: 0.98;
  letter-spacing: -0.062em;
  font-weight: 610;
}
.scene-article-header .article-deck {
  max-width: 760px;
  margin: 34px 0 0 auto;
  color: #5f6566;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.65;
}
.scene-article-cover {
  width: 100%;
  aspect-ratio: 3 / 1;
  margin: 0;
  overflow: hidden;
  background: #16191a;
}
.scene-article-body {
  padding: 112px max(24px, calc((100vw - 920px) / 2)) 140px;
  background: #fff;
}
.scene-article-body > p,
.scene-article-body > section > p {
  margin: 0 0 28px;
  color: #3f4445;
  font-size: 18px;
  line-height: 1.95;
}
.scene-article-body .article-lead {
  margin-bottom: 88px;
  color: #171a1b;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.48;
  letter-spacing: -0.035em;
}
.scene-article-body section + section {
  margin-top: 92px;
}
.scene-article-body h2 {
  margin: 0 0 34px;
  font-size: clamp(39px, 4.8vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.052em;
  font-weight: 610;
}
.scene-article-body h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.025em;
}
.scene-article-visual {
  width: min(1280px, calc(100vw - 48px));
  margin: 96px 50% 100px;
  transform: translateX(-50%);
}
.scene-article-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 22px;
}
.scene-article-visual figcaption {
  margin-top: 14px;
  color: #858a8b;
  font-size: 11px;
  line-height: 1.7;
}
.scene-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}
.scene-process article {
  min-height: 220px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f0f2ee;
  border-radius: 18px;
}
.scene-process article span {
  color: #7b8081;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.scene-process article p {
  margin: 0;
  color: #5a6061;
  font-size: 14px;
  line-height: 1.75;
}
.scene-sample {
  margin-top: 100px;
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  color: #fff;
  background: #080a0b;
  border-radius: 22px;
}
.scene-sample span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scene-sample h2 {
  margin: 12px 0 9px;
  font-size: clamp(30px, 3vw, 44px);
}
.scene-sample p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.7;
}
.scene-sample-action {
  min-width: 210px;
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b0d0e;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}
.scene-sample-mobile {
  display: none;
}
.scene-related {
  padding: 118px max(24px, calc((100vw - 1440px) / 2)) 140px;
  background: #eef0ec;
}
.scene-related > div:first-child {
  margin-bottom: 46px;
}
.scene-related h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.055em;
  font-weight: 610;
}

/* Download centre */
.downloads-page main {
  padding-top: 58px;
  overflow: visible;
  background: #f5f6f2;
}
.downloads-hero {
  min-height: 72svh;
  padding: 130px max(32px, calc((100vw - 1340px) / 2)) 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 80px;
  color: #fff;
  background:
    radial-gradient(
      circle at 76% 44%,
      rgba(108, 123, 124, 0.3),
      transparent 35%
    ),
    #070809;
}
.downloads-hero h1 {
  margin: 0;
  font-size: clamp(74px, 10vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 610;
}
.downloads-hero > div:last-child {
  padding-bottom: 10px;
}
.downloads-hero > div:last-child p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.8;
}
.download-centre {
  padding: 110px max(24px, calc((100vw - 1340px) / 2)) 150px;
}
.download-tabs-v2 {
  position: sticky;
  z-index: 6;
  top: 72px;
  width: fit-content;
  margin: 0 auto 76px;
  padding: 5px;
  display: flex;
  gap: 4px;
  background: rgba(229, 232, 226, 0.9);
  border: 1px solid rgba(21, 24, 25, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}
.download-tabs-v2 button {
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  color: #5d6263;
  background: transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.download-tabs-v2 button.active {
  color: #fff;
  background: #111415;
}
.download-tabs-v2 button:focus-visible {
  outline: 2px solid #111415;
  outline-offset: 3px;
}
.download-panel[hidden] {
  display: none;
}
.download-panel,
#samples,
#manuals,
#mobile-app {
  scroll-margin-top: 148px;
}
.download-panel-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  align-items: end;
  gap: 60px;
  margin-bottom: 64px;
}
.download-panel-heading h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 610;
}
.download-panel-heading > p {
  margin: 0 0 7px;
  color: #656b6c;
  font-size: 15px;
  line-height: 1.8;
}
.software-card {
  min-height: 520px;
  padding: clamp(42px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  background: #fff;
  border-radius: 26px;
}
.software-card + .software-card {
  margin-top: 20px;
}
.software-card.dark {
  color: #fff;
  background: #0a0c0d;
}
.software-mark {
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 26%;
  background:
    radial-gradient(
      circle at 50% 50%,
      transparent 29%,
      rgba(255, 255, 255, 0.13) 30% 31%,
      transparent 32%
    ),
    linear-gradient(145deg, #252a2b, #070809);
  box-shadow: 0 34px 70px rgba(15, 18, 18, 0.2);
}
.software-mark::before,
.software-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.software-mark::before {
  width: 38%;
  height: 38%;
  border: 2px solid rgba(255, 255, 255, 0.9);
}
.software-mark::after {
  width: 9%;
  height: 9%;
  background: #fff;
  box-shadow: 0 0 0 11px rgba(255, 255, 255, 0.12);
}
.software-mark {
  position: relative;
}
.software-copy .section-label {
  color: #747a7b;
}
.software-card.dark .software-copy .section-label {
  color: rgba(255, 255, 255, 0.43);
}
.software-copy h3 {
  margin: 0;
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.058em;
  font-weight: 610;
}
.software-copy > p {
  max-width: 620px;
  margin: 26px 0 0;
  color: #646a6b;
  font-size: 16px;
  line-height: 1.8;
}
.software-card.dark .software-copy > p {
  color: rgba(255, 255, 255, 0.58);
}
.software-meta {
  margin: 34px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: #8a8f90;
  font-size: 11px;
}
.download-channel-list {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.download-channel-list a {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 20, 21, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}
.download-channel-list a.primary {
  color: #fff;
  background: #111415;
  border-color: #111415;
}
.software-card.dark .download-channel-list a {
  border-color: rgba(255, 255, 255, 0.22);
}
.software-card.dark .download-channel-list a.primary {
  color: #101213;
  background: #fff;
  border-color: #fff;
}
.download-subsection {
  margin-top: 110px;
}
.download-subsection-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}
.download-subsection-header h3 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: -0.055em;
  font-weight: 610;
}
.download-subsection-header p {
  max-width: 470px;
  margin: 0;
  color: #6b7071;
  font-size: 14px;
  line-height: 1.8;
}
.sample-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.sample-download-card {
  min-height: 200px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #e9ece6;
  border-radius: 18px;
}
.sample-download-card > div > span {
  color: #7c8182;
  font-size: 9px;
  letter-spacing: 0.14em;
}
.sample-download-card h4 {
  margin: 14px 0 8px;
  font-size: 25px;
  letter-spacing: -0.035em;
}
.sample-download-card p {
  margin: 0;
  color: #6c7172;
  font-size: 12px;
}
.sample-download-card a {
  width: fit-content;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 650;
}
.sample-download-card a:hover,
.sample-download-card a:focus-visible,
.document-row > a:hover,
.document-row > a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.document-list {
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
}
.document-row {
  min-height: 150px;
  padding: 30px 36px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid #e4e7e1;
}
.document-row:last-child {
  border-bottom: 0;
}
.document-icon {
  width: 66px;
  height: 82px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #171a1b;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
}
.document-row h3 {
  margin: 0 0 9px;
  font-size: 24px;
  letter-spacing: -0.03em;
}
.document-row p {
  margin: 0;
  color: #737879;
  font-size: 12px;
  line-height: 1.7;
}
.document-row > a {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d5d9d2;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
}

/* Contact and dealer directory */
.contact-page main {
  padding-top: 58px;
  overflow: visible;
  background: #f3f4ef;
}
.contact-page #official,
.contact-page #dealers {
  scroll-margin-top: 78px;
}
.contact-hero {
  min-height: 72svh;
  padding: 132px max(32px, calc((100vw - 1340px) / 2)) 104px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: end;
  gap: 80px;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 38%,
      rgba(123, 139, 137, 0.28),
      transparent 34%
    ),
    #070809;
}
.contact-hero h1 {
  margin: 0;
  font-size: clamp(72px, 9.6vw, 150px);
  line-height: 0.91;
  letter-spacing: -0.07em;
  font-weight: 610;
}
.contact-hero-copy {
  max-width: 500px;
  padding-bottom: 10px;
}
.contact-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.85;
}
.contact-official,
.dealer-directory {
  padding: 120px max(24px, calc((100vw - 1340px) / 2)) 150px;
}
.contact-section-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  align-items: end;
  gap: 60px;
}
.contact-section-heading h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 610;
}
.contact-section-heading > p {
  margin: 0 0 8px;
  color: #666c6c;
  font-size: 15px;
  line-height: 1.8;
}
.official-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.official-contact-card {
  min-height: 590px;
  padding: clamp(34px, 4.4vw, 62px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(16, 20, 20, 0.045);
}
.official-contact-card:nth-child(2) {
  color: #fff;
  background: #0b0d0e;
  box-shadow: none;
}
.contact-card-index {
  margin: 0 0 46px;
  color: #848a89;
  font-size: 9px;
  letter-spacing: 0.16em;
}
.official-contact-card:nth-child(2) .contact-card-index {
  color: rgba(255, 255, 255, 0.4);
}
.official-contact-card h3 {
  max-width: 530px;
  margin: 0;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 610;
}
.official-contact-card > p:not(.contact-card-index) {
  max-width: 560px;
  margin: 24px 0 0;
  color: #6d7272;
  font-size: 14px;
  line-height: 1.8;
}
.official-contact-card:nth-child(2) > p:not(.contact-card-index) {
  color: rgba(255, 255, 255, 0.56);
}
.contact-facts {
  margin: auto 0 0;
  padding: 42px 0 0;
  display: grid;
  gap: 18px;
}
.contact-fact {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.contact-fact dt {
  color: #8b9090;
  font-size: 10px;
}
.contact-fact dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}
.official-contact-card:nth-child(2) .contact-fact dt {
  color: rgba(255, 255, 255, 0.42);
}
.contact-fact a:hover,
.contact-fact a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-action-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-action-row a {
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8dcd6;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
}
.contact-action-row a.primary {
  color: #fff;
  background: #111415;
  border-color: #111415;
}
.official-contact-card:nth-child(2) .contact-action-row a {
  border-color: rgba(255, 255, 255, 0.22);
}
.official-contact-card:nth-child(2) .contact-action-row a.primary {
  color: #111415;
  background: #fff;
  border-color: #fff;
}
.contact-social-section {
  padding: 122px max(24px, calc((100vw - 1340px) / 2)) 138px;
  color: #fff;
  background: #080a0b;
}
.contact-social-section .contact-section-heading > p {
  color: rgba(255, 255, 255, 0.55);
}
.social-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.social-contact-card {
  padding: 34px;
  background: #131617;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}
.social-contact-summary {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}
.social-symbol {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #111415;
  background: #f1f3ef;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 750;
}
.social-contact-summary h3 {
  margin: 0 0 7px;
  font-size: 23px;
  letter-spacing: -0.035em;
}
.social-contact-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}
.social-toggle {
  min-height: 42px;
  padding: 0 17px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
}
.social-details {
  margin-top: 28px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.social-details.social-details-text {
  grid-template-columns: minmax(0, 1fr);
}
.social-details[hidden] {
  display: none;
}
.social-details img {
  width: 150px;
  height: 150px;
  padding: 8px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
}
.social-details p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.7;
}
.social-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.social-detail-actions a,
.social-detail-actions button {
  min-height: 40px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
}
.dealer-directory {
  background: #f3f4ef;
}
.dealer-controls {
  position: sticky;
  z-index: 5;
  top: 70px;
  margin-bottom: 56px;
  padding: 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  background: rgba(233, 236, 230, 0.92);
  border: 1px solid rgba(18, 22, 22, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(16px);
}
.dealer-scope-switch {
  padding: 4px;
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.68);
  border-radius: 999px;
}
.dealer-scope-switch button {
  min-height: 40px;
  padding: 0 18px;
  color: #696f6e;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}
.dealer-scope-switch button.active {
  color: #fff;
  background: #111415;
}
.dealer-filter-fields {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dealer-filter-group {
  display: flex;
  gap: 10px;
}
.dealer-filter-group[hidden] {
  display: none;
}
.dealer-filter-fields label {
  position: relative;
}
.dealer-filter-fields label > span {
  position: absolute;
  left: 13px;
  top: 7px;
  color: #969b99;
  font-size: 8px;
  pointer-events: none;
}
.dealer-filter-fields select {
  min-width: 148px;
  height: 48px;
  padding: 15px 36px 3px 12px;
  color: #202424;
  background: #fff;
  border: 1px solid rgba(18, 22, 22, 0.1);
  border-radius: 12px;
  font: inherit;
  font-size: 11px;
}
.nearby-dealers {
  min-height: 46px;
  padding: 0 18px;
  color: #111415;
  background: #fff;
  border: 1px solid rgba(18, 22, 22, 0.12);
  border-radius: 999px;
  font: inherit;
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
}
.nearby-status {
  min-height: 22px;
  margin: -35px 0 30px;
  color: #6e7473;
  font-size: 11px;
}
.dealer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.dealer-grid[data-visible-count="1"] {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}
.dealer-grid[data-visible-count="2"],
.dealer-grid[data-visible-count="4"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dealer-card {
  min-height: 365px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(18, 22, 22, 0.045);
}
.dealer-card[hidden] {
  display: none;
}
.dealer-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #858a89;
  font-size: 9px;
  letter-spacing: 0.1em;
}
.dealer-card-top span:last-child {
  padding: 6px 9px;
  color: #4d5c30;
  background: #eef5df;
  border-radius: 999px;
  letter-spacing: 0;
}
.dealer-card h3 {
  margin: 34px 0 12px;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 610;
}
.dealer-area {
  margin: 0;
  color: #6f7473;
  font-size: 12px;
  line-height: 1.7;
}
.dealer-primary-info {
  margin-top: auto;
  padding-top: 34px;
  display: grid;
  gap: 12px;
}
.dealer-primary-info a {
  width: fit-content;
  color: #222626;
  font-size: 12px;
  line-height: 1.6;
}
.dealer-primary-info a:hover,
.dealer-primary-info a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.dealer-distance {
  margin: 12px 0 0;
  color: #739520;
  font-size: 10px;
  font-weight: 650;
}
.dealer-detail-toggle {
  width: fit-content;
  min-height: 42px;
  margin-top: 26px;
  padding: 0 16px;
  color: #111415;
  background: transparent;
  border: 1px solid #d7dbd5;
  border-radius: 999px;
  font: inherit;
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
}
.dealer-details {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid #e5e8e2;
}
.dealer-details[hidden] {
  display: none;
}
.dealer-details dl {
  margin: 0;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 11px 16px;
  font-size: 11px;
  line-height: 1.6;
}
.dealer-details dt {
  color: #969b99;
}
.dealer-details dd {
  margin: 0;
}
.dealer-details a:hover,
.dealer-details a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.dealer-empty {
  padding: 70px 30px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
}
.dealer-empty[hidden] {
  display: none;
}
.dealer-empty h3 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.04em;
}
.dealer-empty p {
  margin: 14px 0 24px;
  color: #737877;
}
.dealer-empty-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.dealer-empty-actions button,
.dealer-empty-actions a {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: #111415;
  border: 1px solid #111415;
  border-radius: 999px;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
}

.footer-v2 {
  padding: 72px max(32px, calc((100vw - 1440px) / 2)) 28px;
  color: #fff;
  background: #050607;
}
.footer-top {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
}
.footer-wordmark img {
  width: 146px;
}
.footer-nav {
  display: flex;
  gap: 30px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-phone {
  justify-self: end;
  font-size: 15px;
}
.footer-bottom {
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

/* Legal and system pages */
.legal-page main {
  padding-top: 58px;
  background: #f3f4ef;
}
.legal-hero {
  min-height: 68svh;
  padding: 100px max(24px, calc((100vw - 1340px) / 2)) 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 72px;
  color: #fff;
  background:
    radial-gradient(
      circle at 68% 54%,
      rgba(119, 143, 145, 0.18),
      transparent 34%
    ),
    #070809;
}
.legal-hero h1 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(70px, 10.5vw, 154px);
  font-weight: 590;
  letter-spacing: -0.07em;
  line-height: 0.86;
}
.legal-hero-copy {
  max-width: 520px;
  padding-bottom: 8px;
}
.legal-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.85;
}
.legal-hero-copy time {
  margin-top: 22px;
  display: block;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.legal-layout {
  padding: 116px max(24px, calc((100vw - 1220px) / 2)) 150px;
  display: grid;
  grid-template-columns: 230px minmax(0, 820px);
  justify-content: space-between;
  gap: 90px;
}
.legal-toc {
  position: sticky;
  top: 98px;
  align-self: start;
}
.legal-toc > span {
  margin-bottom: 18px;
  display: block;
  color: #878d8b;
  font-size: 9px;
  font-weight: 730;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.legal-toc nav {
  display: grid;
  gap: 5px;
}
.legal-toc a {
  padding: 8px 0;
  color: #6f7473;
  font-size: 12px;
  line-height: 1.4;
}
.legal-toc a:hover {
  color: #111415;
}
.legal-article {
  min-width: 0;
}
.legal-lede {
  margin: 0 0 74px;
  color: #202423;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.38;
  letter-spacing: -0.035em;
}
.legal-article section {
  padding: 54px 0;
  border-top: 1px solid rgba(18, 22, 22, 0.12);
  scroll-margin-top: 94px;
}
.legal-article h2 {
  margin: 0 0 24px;
  color: #111415;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 590;
  letter-spacing: -0.05em;
  line-height: 1.04;
}
.legal-article h3 {
  margin: 30px 0 12px;
  color: #151918;
  font-size: 17px;
}
.legal-article p,
.legal-article li {
  color: #626866;
  font-size: 14px;
  line-height: 1.9;
}
.legal-article p {
  margin: 0 0 18px;
}
.legal-article ul,
.legal-article ol {
  margin: 20px 0;
  padding-left: 1.3em;
}
.legal-article a {
  color: #111415;
  text-decoration: underline;
  text-decoration-color: rgba(17, 20, 21, 0.28);
  text-underline-offset: 3px;
}
.legal-note {
  margin-top: 28px;
  padding: 22px 24px;
  color: #343938;
  background: #e7e9e4;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.75;
}
.error-page {
  min-height: 100svh;
  padding: 100px max(24px, calc((100vw - 1260px) / 2));
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(118, 145, 147, 0.2),
      transparent 28%
    ),
    #070809;
  text-align: center;
}
.error-page-inner span {
  display: block;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.18em;
}
.error-page h1 {
  margin: 18px 0 24px;
  font-size: clamp(92px, 21vw, 250px);
  font-weight: 560;
  letter-spacing: -0.085em;
  line-height: 0.82;
}
.error-page p {
  margin: 0 auto;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.75;
}
.error-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.error-actions a {
  min-height: 46px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  color: #101314;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  font-size: 12px;
}
.error-actions a.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}

@media (max-width: 980px) {
  .legal-hero {
    grid-template-columns: 1fr;
    align-items: end;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .legal-toc {
    position: static;
  }
  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
  }
}

@media (max-width: 620px) {
  .legal-page main {
    padding-top: 58px;
  }
  .legal-hero {
    min-height: 70svh;
    padding: 98px 20px 62px;
    gap: 36px;
  }
  .legal-hero h1 {
    font-size: clamp(58px, 18vw, 82px);
    line-height: 0.92;
  }
  .legal-hero-copy p {
    font-size: 14px;
  }
  .legal-layout {
    padding: 82px 20px 110px;
  }
  .legal-toc nav {
    grid-template-columns: 1fr;
  }
  .legal-lede {
    margin-bottom: 56px;
    font-size: 25px;
  }
  .legal-article section {
    padding: 44px 0;
  }
  .legal-article p,
  .legal-article li {
    font-size: 13px;
  }
  .error-page {
    padding: 86px 20px;
  }
  .error-page p {
    font-size: 14px;
  }
  .error-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .error-actions a {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  :root {
    --page: calc(100vw - 48px);
  }
  /* Keep an opaque layer behind the mobile menu as a last line of defence
     for older WebKit builds that can composite a fixed descendant of the
     header incorrectly while the page is scrolled. */
  body.nav-open::before {
    content: "";
    position: fixed;
    z-index: 999;
    inset: 0;
    background: #070809;
    pointer-events: none;
  }
  body.nav-open .topbar {
    background: #070809;
  }
  .topbar {
    z-index: 1000;
    grid-template-columns: 1fr auto auto;
    padding: 0 20px;
  }
  .nav-toggle {
    display: block;
    grid-column: 2;
    position: relative;
    z-index: 1002;
  }
  .topbar > .wordmark,
  .topbar > .top-actions {
    position: relative;
    z-index: 1002;
  }
  .top-actions {
    grid-column: 3;
    margin-left: 4px;
  }
  .theme-toggle {
    min-height: 28px;
    padding: 4px 7px 4px 6px;
    gap: 5px;
    font-size: 9px;
  }
  .theme-toggle-swatch {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }
  .buy-link {
    display: none;
  }
  .main-nav {
    position: fixed;
    /* Make the panel itself cover the viewport, including the transparent
       header area. This avoids iOS/WebKit occasionally compositing the
       translucent panel as a see-through layer over the hero canvas. */
    inset: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    max-height: none;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: max(86px, calc(68px + env(safe-area-inset-top))) 24px 28px;
    background: #070809 !important;
    background-color: #070809 !important;
    background-image: linear-gradient(
      180deg,
      #070809 0%,
      #0b0e10 58%,
      #070809 100%
    ) !important;
    isolation: isolate;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.32s ease,
      opacity 0.24s ease;
  }
  .main-nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 22px;
  }
  .main-nav a[aria-current="page"]::after {
    display: none;
  }
  .nav-toggle.open span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .nav-toggle.open span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .hero-copy-detail {
    right: 7vw;
    width: 42vw;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .experience-stage {
    grid-template-columns: 1fr;
  }
  .demo-player {
    min-height: 58vw;
  }
  .demo-controls {
    min-height: 560px;
  }
  .product-story {
    grid-template-columns: 1fr;
  }
  .product-lens {
    min-height: 72svh;
  }
  .product-story-copy {
    padding: 90px 7vw;
  }
  .system-cta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
  .catalog-hero {
    min-height: 72svh;
    padding: 140px 32px 90px;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .catalog-hero h1 {
    font-size: clamp(58px, 10vw, 86px);
  }
  .catalog-hero > p:last-child {
    margin-left: auto;
  }
  .catalog-products {
    padding: 100px 24px 120px;
  }
  .product-feature-card {
    grid-template-columns: 1fr;
  }
  .product-feature-visual {
    order: -1;
    min-height: 520px;
  }
  .product-feature-copy {
    padding: 60px;
  }
  .catalog-support {
    grid-template-columns: 1fr;
    padding: 100px 32px;
    gap: 42px;
  }
  .catalog-support > .solid-action {
    grid-column: 1;
    margin-top: -14px;
  }
  .pdp-hero {
    grid-template-columns: 1fr;
  }
  .pdp-hero-media {
    order: -1;
    min-height: 66svh;
  }
  .pdp-hero-copy {
    padding: 82px 7vw 100px;
  }
  .pdp-panorama {
    grid-template-columns: 1fr;
  }
  .pdp-lens-visual {
    min-height: 72svh;
  }
  .pdp-section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .workflow-card {
    min-height: 330px;
  }
  .retail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .retail-card,
  .retail-card:nth-last-child(-n + 2) {
    grid-column: auto;
  }
  .retail-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
  .dealer-grid,
  .dealer-grid[data-visible-count="2"],
  .dealer-grid[data-visible-count="3"],
  .dealer-grid[data-visible-count="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dealer-grid[data-visible-count="1"] {
    grid-template-columns: minmax(0, 620px);
  }
  .dealer-grid[data-visible-count="3"] > .dealer-card:not([hidden]):last-child {
    grid-column: 1 / -1;
  }
  .accessory-hero {
    grid-template-columns: 1fr;
  }
  .accessory-hero-visual {
    min-height: 64svh;
  }
  .accessory-hero-copy {
    padding: 84px 7vw 100px;
  }
  .accessory-feature-grid {
    grid-template-columns: 1fr;
  }
  .accessory-final-cta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
  .scene-archive-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .scene-archive-heading > p {
    max-width: 620px;
  }
  .scene-article-visual {
    width: calc(100vw - 48px);
  }
  .downloads-hero {
    min-height: 68svh;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .download-panel-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .software-card {
    grid-template-columns: 1fr;
  }
  .software-mark {
    width: min(64vw, 320px);
  }
  .contact-hero,
  .contact-section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .contact-hero {
    min-height: 68svh;
    gap: 42px;
  }
  .official-contact-card {
    min-height: 560px;
  }
  .dealer-controls {
    grid-template-columns: 1fr;
  }
  .dealer-scope-switch {
    width: fit-content;
  }
  .nearby-dealers {
    width: fit-content;
  }
  .nearby-status {
    margin-top: -35px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-nav {
    display: none;
  }
}

/* Keep the mid-scroll message on the open side of the product. The camera
   enters from the right and settles left-to-centre; placing this copy on the
   left preserves a clean silhouette and avoids text being composited through
   the lens during the reveal. */
@media (min-width: 981px) {
  .hero-copy-detail {
    left: max(5vw, calc((100vw - 1440px) / 2));
    right: auto;
    width: min(36vw, 480px);
    text-align: left;
  }
  html[lang="en"] .hero-copy-detail {
    left: max(4vw, calc((100vw - 1440px) / 2));
    right: auto;
    width: min(40vw, 560px);
  }
}

@media (max-width: 620px) {
  :root {
    --radius: 16px;
  }
  .topbar {
    height: 58px;
  }
  .wordmark img {
    width: 98px;
  }
  .language {
    font-size: 10px;
  }
  .hero-sequence {
    height: 285svh;
  }
  .hero-sticky {
    min-height: 560px;
  }
  .hero-light {
    width: 165vw;
    height: 165vw;
    top: 49%;
  }
  .hero-light::after {
    width: 68%;
    height: 38%;
    left: 31%;
    top: 50%;
    opacity: 0.72;
  }
  .hero-product-wrap {
    top: 53%;
    width: 112vw;
    transform: translate(-43%, -40%) scale(0.78);
  }
  .model-loader {
    bottom: 9%;
    width: 140px;
  }
  .hero-copy-intro {
    top: 15%;
    width: calc(100vw - 32px);
  }
  .hero-copy-intro h1 {
    font-size: clamp(34px, 9.3vw, 42px);
    line-height: 1.02;
    white-space: nowrap;
  }
  .hero-copy span {
    margin-top: 14px;
    font-size: 13px;
  }
  .hero-copy-detail {
    top: auto;
    right: auto;
    left: 20px;
    bottom: 15%;
    width: 66vw;
    text-align: left;
  }
  .hero-copy-detail h2,
  .hero-copy-final h2 {
    font-size: clamp(36px, 10vw, 50px);
  }
  .hero-copy-detail p,
  .hero-copy-final p {
    margin-bottom: 13px;
    font-size: 9px;
  }
  .hero-copy-final {
    bottom: 24%;
    width: calc(100vw - 34px);
  }
  .hero-flip-candidate .hero-copy-final {
    right: 17px;
    bottom: 7%;
    width: calc(100vw - 34px);
    text-align: right;
  }
  .hero-flip-candidate .hero-copy-final h2 {
    font-size: clamp(32px, 8.6vw, 42px);
    line-height: 1.06;
  }
  .scroll-cue {
    bottom: 17px;
    font-size: 8px;
  }
  .manifesto {
    min-height: 88svh;
    padding: 100px 22px;
  }
  .manifesto h2 {
    font-size: clamp(43px, 12vw, 62px);
  }
  .manifesto > p:last-child {
    margin-top: 42px;
    font-size: 16px;
  }
  .experience {
    padding: 90px 16px;
  }
  .section-heading {
    margin-bottom: 42px;
  }
  .section-heading h2 {
    font-size: clamp(42px, 12vw, 62px);
  }
  .section-heading > p {
    font-size: 15px;
  }
  .experience-steps {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  .experience-steps li::after {
    display: none;
  }
  .experience-stage {
    min-height: 0;
  }
  .demo-player {
    min-height: 62svh;
  }
  .player-status {
    left: 20px;
    bottom: 86px;
  }
  .player-status strong {
    font-size: 44px;
  }
  .timeline {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }
  .demo-controls {
    min-height: 530px;
    padding: 18px;
  }
  .instruction {
    margin-top: 28px;
  }
  .metric-button {
    padding: 15px;
  }
  .metric-button strong {
    font-size: 16px;
  }
  .asset-note {
    line-height: 1.5;
    text-align: left;
  }
  .product-lens {
    min-height: 68svh;
  }
  .product-lens img {
    width: 88%;
  }
  .product-story-copy {
    padding: 82px 22px;
  }
  .product-story-copy h2 {
    font-size: clamp(42px, 11.5vw, 58px);
  }
  .feature-points article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .scene-section {
    padding: 90px 12px;
  }
  .scene-section .section-heading {
    padding: 0 10px;
  }
  .scene-pair {
    gap: 8px;
  }
  .scene-image {
    border-radius: 9px;
  }
  .scene-info {
    padding: 13px 2px 0;
  }
  .scene-info h3 {
    min-height: 3.4em;
    margin: 7px 0 12px;
    font-size: 17px;
  }
  .scene-info span,
  .scene-info b {
    font-size: 9px;
  }
  .system-cta {
    min-height: 78svh;
    padding: 90px 22px;
  }
  .system-cta h2 {
    font-size: clamp(43px, 11.5vw, 60px);
  }
  .system-actions {
    width: 100%;
    flex-direction: column;
  }
  .contact-cta {
    padding: 90px 22px;
  }
  .contact-cta h2 {
    font-size: clamp(42px, 11.5vw, 58px);
  }
  .catalog-hero {
    min-height: 67svh;
    padding: 110px 20px 58px;
    gap: 27px;
  }
  .catalog-hero h1 {
    font-size: clamp(46px, 13vw, 60px);
    line-height: 0.99;
  }
  .catalog-hero > p:last-child {
    font-size: 15px;
    line-height: 1.7;
  }
  .catalog-products {
    padding: 82px 12px 100px;
  }
  .catalog-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 28px;
    padding: 0 8px;
  }
  .catalog-section-head h2 {
    font-size: clamp(40px, 12vw, 54px);
  }
  .catalog-section-head .text-action {
    margin: 0;
  }
  .product-feature-card {
    min-height: 0;
    border-radius: 18px;
  }
  .product-feature-visual {
    min-height: 360px;
  }
  .product-feature-visual img {
    width: 105%;
    max-height: 390px;
    transform: translate(4%, 2%) scale(0.96);
  }
  .product-feature-copy {
    padding: 38px 25px 42px;
  }
  .product-feature-copy h3 {
    margin: 19px 0;
    font-size: clamp(40px, 11vw, 52px);
  }
  .product-feature-copy > p {
    font-size: 14px;
  }
  .product-commerce {
    margin-top: 34px;
  }
  .product-feature-copy > b {
    margin-top: 31px;
  }
  .accessories-head {
    margin-top: 86px;
  }
  .accessories-head h2 {
    font-size: 38px;
    line-height: 1.04;
  }
  .accessories-head > p {
    font-size: 13px;
  }
  .accessory-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .accessory-visual {
    min-height: 340px;
  }
  .accessory-visual img {
    width: 75%;
    max-height: 315px;
  }
  .accessory-copy {
    padding: 24px 22px 28px;
  }
  .accessory-copy h3 {
    font-size: 29px;
  }
  .accessory-copy > p {
    min-height: 0;
  }
  .catalog-support {
    padding: 86px 22px 94px;
  }
  .catalog-support h2 {
    font-size: clamp(43px, 11.5vw, 57px);
  }
  .pdp-page main {
    padding-top: 58px;
  }
  .product-subnav {
    top: 58px;
    min-height: 52px;
    padding: 0 16px;
  }
  .product-subnav > div:first-child span,
  .product-subnav-links > a:not(.subnav-buy) {
    display: none;
  }
  .product-subnav-links {
    gap: 0;
  }
  .pdp-hero {
    min-height: 0;
  }
  .pdp-hero-media {
    min-height: 58svh;
  }
  .pdp-hero-media img {
    width: 102%;
    transform: translate(6%, 3%);
  }
  .pdp-media-note {
    right: 14px;
    bottom: 14px;
  }
  .pdp-hero-copy {
    padding: 70px 22px 82px;
  }
  .pdp-hero-copy h1 {
    font-size: clamp(58px, 16vw, 72px);
  }
  .pdp-hero-copy h1 span {
    font-size: 0.55em;
  }
  .pdp-hero-copy > p:not(.section-label) {
    font-size: 15px;
  }
  .pdp-hero-actions {
    flex-direction: column;
  }
  .pdp-hero-actions a {
    width: 100%;
  }
  .pdp-statement {
    min-height: 84svh;
    padding: 100px 22px;
  }
  .pdp-statement h2 {
    font-size: clamp(47px, 13.2vw, 62px);
  }
  .pdp-statement > p:last-child {
    margin-top: 42px;
    font-size: 16px;
  }
  .pdp-lens-visual {
    min-height: 62svh;
  }
  .pdp-lens-visual img {
    width: 92%;
  }
  .pdp-panorama-copy {
    padding: 82px 22px 94px;
  }
  .pdp-panorama-copy h2 {
    font-size: clamp(44px, 12vw, 58px);
  }
  .pdp-feature-lines div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pdp-workflow,
  .pdp-scenes,
  .pdp-buy {
    padding: 90px 12px 100px;
  }
  .pdp-section-heading {
    padding: 0 10px;
    margin-bottom: 42px;
  }
  .pdp-section-heading h2 {
    font-size: clamp(44px, 12vw, 58px);
  }
  .pdp-section-heading > p {
    font-size: 14px;
  }
  .workflow-grid,
  .pdp-scene-grid,
  .retail-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .retail-card,
  .retail-card:nth-last-child(-n + 2),
  .retail-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
  .workflow-card {
    min-height: 310px;
    padding: 26px;
    border-radius: 16px;
  }
  .pdp-scene-card {
    border-radius: 16px;
  }
  .pdp-scene-copy {
    padding: 24px 22px 29px;
  }
  .pdp-specs {
    padding: 92px 22px 104px;
  }
  .spec-group {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 0;
  }
  .spec-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pdp-faq {
    padding: 92px 22px 104px;
  }
  .pdp-faq > h2 {
    margin-bottom: 40px;
    font-size: clamp(45px, 12vw, 58px);
  }
  .pdp-faq summary {
    padding: 23px 44px 23px 0;
    font-size: 20px;
  }
  .pdp-faq summary::after {
    top: 21px;
  }
  .retail-card {
    min-height: 280px;
    padding: 25px;
    border-radius: 16px;
  }
  .retail-card.has-qr {
    padding-right: 142px;
  }
  .retail-card .mobile-channel-open {
    display: inline-flex;
  }
  .channel-qr-placeholder {
    right: 22px;
    bottom: 30px;
    width: 98px;
  }
  .accessory-detail-page main {
    padding-top: 58px;
  }
  .accessory-hero-visual {
    min-height: 56svh;
  }
  .accessory-hero-visual img {
    width: 78%;
    max-height: 370px;
  }
  .accessory-hero-copy {
    padding: 70px 22px 84px;
  }
  .accessory-hero-copy h1 {
    font-size: clamp(48px, 13vw, 60px);
  }
  .accessory-hero-copy > p:not(.section-label) {
    font-size: 15px;
  }
  .accessory-intro {
    min-height: 78svh;
    padding: 96px 22px;
  }
  .accessory-intro h2 {
    font-size: clamp(45px, 12.4vw, 58px);
  }
  .accessory-intro p {
    margin-top: 40px;
    font-size: 16px;
  }
  .accessory-features {
    padding: 90px 12px 100px;
  }
  .accessory-feature-grid {
    gap: 10px;
  }
  .accessory-feature-card {
    min-height: 300px;
    padding: 26px;
    border-radius: 16px;
  }
  .accessory-spec-section {
    padding: 92px 22px 104px;
  }
  .accessory-spec-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .accessory-final-cta {
    min-height: 70svh;
    padding: 90px 22px;
  }
  .accessory-final-cta h2 {
    font-size: clamp(44px, 12vw, 58px);
  }
  .scene-archive-hero {
    min-height: 190px;
  }
  .scene-archive-hero-copy {
    left: 20px;
    bottom: 22px;
    width: calc(100vw - 40px);
  }
  .scene-archive-hero-copy .section-label,
  .scene-archive-hero-copy p:last-child {
    display: none;
  }
  .scene-archive-hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }
  .scene-archive {
    padding: 86px 10px 110px;
  }
  .scene-archive-heading {
    gap: 28px;
    margin-bottom: 44px;
    padding: 0 12px;
  }
  .scene-archive-heading h2 {
    font-size: clamp(40px, 10.8vw, 50px);
  }
  .scene-archive-heading > p {
    font-size: 14px;
  }
  .scene-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .scene-archive-card {
    border-radius: 14px;
  }
  .scene-archive-card-copy {
    padding: 15px 13px 18px;
  }
  .scene-archive-card-copy > span {
    overflow: hidden;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .scene-archive-card h3 {
    margin: 10px 0 20px;
    font-size: clamp(16px, 4.8vw, 21px);
  }
  .scene-archive-card b {
    font-size: 9px;
  }
  .scene-article-header {
    padding: 94px 20px 50px;
  }
  .scene-article-header h1 {
    font-size: clamp(45px, 13vw, 61px);
  }
  .scene-article-header .article-deck {
    margin-top: 26px;
    font-size: 16px;
  }
  .scene-article-body {
    padding: 84px 20px 108px;
  }
  .scene-article-body .article-lead {
    margin-bottom: 68px;
    font-size: clamp(25px, 7.2vw, 34px);
  }
  .scene-article-body > p,
  .scene-article-body > section > p {
    font-size: 16px;
    line-height: 1.85;
  }
  .scene-article-body section + section {
    margin-top: 72px;
  }
  .scene-article-body h2 {
    font-size: clamp(36px, 10vw, 48px);
  }
  .scene-article-visual {
    width: calc(100vw - 24px);
    margin-top: 72px;
    margin-bottom: 76px;
  }
  .scene-article-visual img {
    border-radius: 14px;
  }
  .scene-process {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .scene-process article {
    min-height: 190px;
    padding: 24px;
    border-radius: 14px;
  }
  .scene-sample {
    margin-top: 76px;
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 26px;
    border-radius: 16px;
  }
  .scene-sample-desktop {
    display: none;
  }
  .scene-sample-mobile {
    display: inline-flex;
  }
  .scene-sample-action {
    width: 100%;
  }
  .scene-related {
    padding: 86px 10px 106px;
  }
  .scene-related > div:first-child {
    padding: 0 12px;
  }
  .scene-related h2 {
    font-size: clamp(39px, 11vw, 52px);
  }
  .downloads-hero {
    min-height: 64svh;
    padding: 96px 22px 68px;
    grid-template-columns: minmax(0, 1fr);
  }
  .downloads-hero > div {
    min-width: 0;
  }
  html[lang="en"] .downloads-hero h1 {
    font-size: clamp(56px, 18vw, 78px);
  }
  .downloads-hero h1 {
    font-size: clamp(68px, 22vw, 92px);
  }
  .downloads-hero > div:last-child p {
    font-size: 15px;
  }
  .download-centre {
    padding: 82px 10px 110px;
  }
  .download-tabs-v2 {
    top: 68px;
    width: calc(100% - 12px);
    margin-bottom: 58px;
  }
  .download-tabs-v2 button {
    min-width: 0;
    padding: 0 12px;
    flex: 1;
    font-size: 10px;
    white-space: nowrap;
  }
  .download-panel-heading {
    gap: 24px;
    padding: 0 12px;
    margin-bottom: 42px;
  }
  .download-panel-heading h2 {
    font-size: clamp(43px, 12vw, 56px);
  }
  .download-panel-heading > p {
    font-size: 14px;
  }
  .software-card {
    min-height: 0;
    padding: 34px 22px 42px;
    gap: 42px;
    border-radius: 16px;
  }
  .software-mark {
    width: min(64vw, 250px);
  }
  .software-copy h3 {
    font-size: clamp(42px, 12vw, 56px);
  }
  .software-copy > p {
    font-size: 15px;
  }
  .software-meta {
    gap: 8px 16px;
  }
  .download-channel-list {
    flex-direction: column;
  }
  .download-channel-list a {
    width: 100%;
  }
  .download-subsection {
    margin-top: 82px;
  }
  .download-subsection-header {
    padding: 0 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .download-subsection-header h3 {
    font-size: clamp(39px, 11vw, 52px);
  }
  .sample-download-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .sample-download-card {
    min-height: 180px;
    padding: 24px;
    border-radius: 14px;
  }
  .document-list {
    border-radius: 16px;
  }
  .document-row {
    min-height: 0;
    padding: 24px 20px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
  }
  .document-icon {
    width: 50px;
    height: 64px;
  }
  .document-row h3 {
    font-size: 20px;
  }
  .document-row > a {
    grid-column: 2;
    width: fit-content;
  }
  .contact-hero {
    min-height: 74svh;
    padding: 110px 20px 72px;
    gap: 30px;
  }
  .contact-hero h1 {
    font-size: clamp(66px, 22vw, 96px);
  }
  .contact-hero-copy p {
    font-size: 15px;
  }
  .contact-official,
  .contact-social-section,
  .dealer-directory {
    padding: 88px 16px 104px;
  }
  .contact-section-heading {
    gap: 24px;
    margin-bottom: 44px;
    padding: 0 4px;
  }
  .contact-section-heading h2 {
    font-size: clamp(43px, 12vw, 56px);
  }
  .contact-section-heading > p {
    font-size: 14px;
  }
  .official-contact-grid,
  .social-contact-grid,
  .dealer-grid,
  .dealer-grid[data-visible-count="1"],
  .dealer-grid[data-visible-count="2"],
  .dealer-grid[data-visible-count="3"],
  .dealer-grid[data-visible-count="4"] {
    grid-template-columns: 1fr;
  }
  .dealer-grid[data-visible-count="1"] {
    justify-content: stretch;
  }
  .dealer-grid[data-visible-count="3"] > .dealer-card:not([hidden]):last-child {
    grid-column: auto;
  }
  .official-contact-card {
    min-height: 0;
    padding: 32px 24px;
    border-radius: 16px;
  }
  .contact-card-index {
    margin-bottom: 32px;
  }
  .official-contact-card h3 {
    font-size: clamp(38px, 11vw, 50px);
  }
  .contact-facts {
    margin-top: 56px;
  }
  .contact-fact {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }
  .contact-action-row {
    flex-direction: column;
  }
  .contact-action-row a {
    width: 100%;
  }
  .social-contact-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .social-contact-summary {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .social-symbol {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .social-toggle {
    grid-column: 2;
    width: fit-content;
    margin-top: 6px;
  }
  .social-details {
    grid-template-columns: 1fr;
  }
  .social-details img {
    width: min(58vw, 190px);
    height: auto;
  }
  .dealer-controls {
    top: 66px;
    padding: 10px;
    gap: 10px;
    border-radius: 14px;
  }
  .dealer-scope-switch {
    width: 100%;
  }
  .dealer-scope-switch button {
    flex: 1;
    padding: 0 11px;
  }
  .dealer-filter-fields,
  .dealer-filter-group {
    width: 100%;
  }
  .dealer-filter-group {
    flex-direction: column;
  }
  .dealer-filter-fields label,
  .dealer-filter-fields select {
    width: 100%;
  }
  .nearby-dealers {
    width: 100%;
  }
  .nearby-status {
    margin: -36px 2px 26px;
  }
  .dealer-card {
    min-height: 340px;
    padding: 26px 22px;
    border-radius: 16px;
  }
  .dealer-card h3 {
    margin-top: 26px;
    font-size: 32px;
  }
  .dealer-card-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .dealer-empty-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .dealer-empty-actions button,
  .dealer-empty-actions a {
    justify-content: center;
  }
  .footer-v2 {
    padding: 54px 20px 24px;
  }
  .footer-top {
    min-height: 110px;
    gap: 20px;
  }
  .footer-phone {
    font-size: 12px;
  }
  .footer-bottom {
    gap: 12px 20px;
  }
}

.motion-reveal {
  opacity: 0;
  translate: 0 26px;
  will-change: opacity, translate;
}
.motion-reveal.motion-reveal-ready {
  transition:
    opacity 0.72s cubic-bezier(0.22, 0.72, 0.16, 1)
      var(--motion-reveal-delay, 0ms),
    translate 0.88s cubic-bezier(0.16, 0.76, 0.18, 1)
      var(--motion-reveal-delay, 0ms);
}
.motion-reveal.motion-reveal-in {
  opacity: 1;
  translate: 0 0;
  will-change: auto;
}

@media (max-width: 620px) {
  .motion-reveal {
    translate: 0 18px;
    transition-duration: 0.62s, 0.76s;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-sequence {
    height: 100svh;
  }
  .hero-product-wrap {
    transform: translate(-50%, -38%) scale(0.88) !important;
    opacity: 1 !important;
  }
  .hero-webgl {
    display: none !important;
  }
  .product-model-webgl {
    display: none !important;
  }
  .product-model-fallback {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .hero-copy-intro {
    opacity: 1 !important;
    transform: translateX(-50%) !important;
  }
  .hero-copy-detail,
  .hero-copy-final,
  .scroll-cue {
    display: none;
  }
  .motion-reveal,
  .motion-reveal.motion-reveal-in {
    opacity: 1 !important;
    translate: none !important;
  }
  .skip-link {
    transition: none;
  }
}

/* Temporary whole-site palette preview. The existing black / paper / lime
   system remains the default; Mist switches the interface to midnight navy,
   cool paper and cyan accents while keeping the product imagery unchanged. */
html[data-site-theme="mist"] {
  --ink: #0d1a23;
  --ink-soft: #142833;
  --paper: #edf3f4;
  --paper-bright: #f8fbfb;
  --muted: #68777f;
  --line: rgba(24, 54, 65, 0.16);
  --light-line: rgba(206, 235, 239, 0.2);
  --accent: #58d8e5;
  --accent-cyan: #a5eff2;
  background: var(--ink);
}
html[data-site-theme="mist"] body {
  background: var(--paper);
}
html[data-site-theme="mist"] .topbar,
html[data-site-theme="mist"] .topbar.scrolled {
  background: rgba(13, 26, 35, 0.9);
}
html[data-site-theme="mist"] .topbar::after {
  background: rgba(181, 226, 232, 0.14);
}
html[data-site-theme="mist"] .theme-toggle {
  border-color: rgba(170, 231, 236, 0.3);
  background: rgba(89, 216, 229, 0.09);
}
html[data-site-theme="mist"] .theme-toggle:hover {
  border-color: rgba(170, 231, 236, 0.62);
  background: rgba(89, 216, 229, 0.18);
}
html[data-site-theme="mist"] .hero-sequence {
  background: #0d1a23;
}
html[data-site-theme="mist"] .hero-light {
  background: radial-gradient(
    circle,
    rgba(80, 142, 157, 0.34) 0%,
    rgba(32, 68, 80, 0.28) 28%,
    rgba(8, 18, 24, 0) 66%
  );
}
html[data-site-theme="mist"] .hero-light::before {
  background: radial-gradient(
    circle,
    rgba(186, 241, 243, 0.14),
    rgba(186, 241, 243, 0) 66%
  );
}
html[data-site-theme="mist"] .hero-light::after {
  background: radial-gradient(
    ellipse,
    rgba(108, 210, 218, 0.2) 0%,
    rgba(60, 136, 150, 0.1) 38%,
    rgba(19, 46, 56, 0) 76%
  );
}
html[data-site-theme="mist"] .experience {
  background: #0e1c25;
}
html[data-site-theme="mist"] .experience-stage {
  border-color: rgba(183, 230, 235, 0.2);
  background: #142a35;
  box-shadow: 0 50px 120px rgba(5, 25, 34, 0.42);
}
html[data-site-theme="mist"] .demo-player {
  background: #10212b;
}
html[data-site-theme="mist"] .demo-controls {
  background: #162c37;
}
html[data-site-theme="mist"] .mode-switch {
  background: #0b171f;
}
html[data-site-theme="mist"] .metric-button {
  border-color: rgba(200, 235, 238, 0.14);
  background: rgba(228, 249, 250, 0.035);
}
html[data-site-theme="mist"] .metric-button:hover {
  border-color: rgba(200, 235, 238, 0.36);
}
html[data-site-theme="mist"] .metric-button.active {
  border-color: rgba(88, 216, 229, 0.72);
  background: rgba(88, 216, 229, 0.11);
}
html[data-site-theme="mist"] .timeline-track em {
  background: rgba(88, 216, 229, 0.2);
}
html[data-site-theme="mist"] .system-cta {
  background: radial-gradient(
    circle at 65% 20%,
    #294a55,
    #102732 48%,
    #091821 100%
  );
}
html[data-site-theme="mist"] .scene-section {
  background: #e5eef0;
}
html[data-site-theme="mist"] .scene-image {
  background: #d1e0e3;
}
html[data-site-theme="mist"] .contact-cta {
  background: linear-gradient(135deg, #eef7f7 0%, #dbecef 100%);
}
html[data-site-theme="mist"] .contact-cta::before {
  background: radial-gradient(
    circle,
    rgba(88, 216, 229, 0.2),
    rgba(88, 216, 229, 0) 68%
  );
}
html[data-site-theme="mist"] .inner-page,
html[data-site-theme="mist"] .pdp-page main,
html[data-site-theme="mist"] .downloads-page main,
html[data-site-theme="mist"] .contact-page main,
html[data-site-theme="mist"] .legal-page main,
html[data-site-theme="mist"] .scene-archive-page main,
html[data-site-theme="mist"] .scene-article-page main {
  background: #eaf1f3;
}
html[data-site-theme="mist"] .catalog-hero {
  background:
    radial-gradient(
      circle at 72% 34%,
      rgba(255, 255, 255, 0.92),
      transparent 32%
    ),
    linear-gradient(145deg, #f8fbfb 0%, #edf3f4 70%, #dfeaed 100%);
}
html[data-site-theme="mist"] .catalog-hero h1 span {
  color: #83969e;
}
html[data-site-theme="mist"] .catalog-products {
  background: #e2ecee;
}
html[data-site-theme="mist"] .product-feature-card {
  background: radial-gradient(
    circle at 74% 42%,
    #38545d 0%,
    #1b3540 35%,
    #0b202b 73%
  );
  box-shadow: 0 30px 70px rgba(18, 52, 62, 0.14);
}
html[data-site-theme="mist"] .accessory-card {
  background: #f5f9f9;
}
html[data-site-theme="mist"] .accessory-visual {
  background: radial-gradient(
    circle at 50% 45%,
    #fff 0%,
    #edf5f6 58%,
    #dce9ec 100%
  );
}
html[data-site-theme="mist"] .catalog-support {
  background: #dce9ec;
}
html[data-site-theme="mist"] .channel-list span {
  border-color: rgba(22, 57, 68, 0.16);
  background: rgba(255, 255, 255, 0.56);
}
html[data-site-theme="mist"] .product-subnav {
  border-color: rgba(24, 54, 65, 0.14);
  background: rgba(238, 246, 247, 0.9);
}
html[data-site-theme="mist"] .product-subnav-links .subnav-buy {
  background: #112833;
}
html[data-site-theme="mist"] .scene-archive-hero,
html[data-site-theme="mist"] .downloads-hero,
html[data-site-theme="mist"] .contact-hero,
html[data-site-theme="mist"] .legal-hero {
  background-color: #0d1a23;
}
html[data-site-theme="mist"] .scene-archive-card {
  background: #e1ecee;
}
html[data-site-theme="mist"] .scene-archive-card:hover {
  background: #d9e8eb;
}
html[data-site-theme="mist"] .scene-archive-card figure {
  background: #d5e4e7;
}
html[data-site-theme="mist"] .scene-article-header {
  background: #edf3f4;
}
html[data-site-theme="mist"] .scene-article-body {
  background: #fbfdfd;
}
html[data-site-theme="mist"] .scene-process article {
  background: #e7f0f2;
}
html[data-site-theme="mist"] .scene-sample {
  background: #102630;
}
html[data-site-theme="mist"] .scene-related {
  background: #e1ecee;
}
html[data-site-theme="mist"] .downloads-hero,
html[data-site-theme="mist"] .contact-hero,
html[data-site-theme="mist"] .legal-hero {
  background-image: radial-gradient(
    circle at 76% 44%,
    rgba(79, 153, 167, 0.32),
    transparent 35%
  );
}
html[data-site-theme="mist"] .download-tabs-v2 {
  background: rgba(220, 235, 237, 0.92);
  border-color: rgba(22, 57, 68, 0.1);
}
html[data-site-theme="mist"] .download-tabs-v2 button.active {
  background: #102630;
}
html[data-site-theme="mist"] .software-card.dark {
  background: #102630;
}
html[data-site-theme="mist"] .software-mark {
  background:
    radial-gradient(
      circle at 50% 50%,
      transparent 29%,
      rgba(161, 232, 237, 0.16) 30% 31%,
      transparent 32%
    ),
    linear-gradient(145deg, #2a4a54, #0b1c25);
}
html[data-site-theme="mist"] .official-contact-card:nth-child(2) {
  background: #102630;
}
html[data-site-theme="mist"] .footer-v2 {
  background: #091820;
}
html[data-site-theme="mist"] .solid-action.dark {
  background: #102630;
}
html[data-site-theme="mist"] .solid-action.dark:hover {
  background: #1d3d49;
}
html[data-site-theme="mist"] body.nav-open::before,
html[data-site-theme="mist"] body.nav-open .topbar {
  background: #0d1a23;
}
html[data-site-theme="mist"] .main-nav {
  background: #0d1a23 !important;
  background-color: #0d1a23 !important;
  background-image: linear-gradient(
    180deg,
    #0d1a23 0%,
    #132a34 58%,
    #0d1a23 100%
  ) !important;
}
html[data-site-theme="mist"] .main-nav a {
  border-color: rgba(193, 231, 235, 0.16);
}
@media (min-width: 981px) {
  html[data-site-theme="mist"] .main-nav {
    background: transparent !important;
    background-image: none !important;
  }
}

/* Mono Red review palette: a strict black / white system with restrained
   racing-red accents. Product imagery and the 3D model are intentionally
   unchanged; this theme is for reviewing the website interface only. */
html[data-site-theme="mono-red"] {
  --ink: #070707;
  --ink-soft: #111111;
  --paper: #f1f1f1;
  --paper-bright: #ffffff;
  --muted: #707070;
  --line: rgba(0, 0, 0, 0.14);
  --light-line: rgba(255, 255, 255, 0.15);
  --accent: #d71920;
  --accent-cyan: #ef3a3e;
  background: var(--ink);
}
html[data-site-theme="mono-red"] body {
  color: #111111;
  background: var(--paper);
}
html[data-site-theme="mono-red"] .topbar,
html[data-site-theme="mono-red"] .topbar.scrolled {
  background: rgba(5, 5, 5, 0.92);
}
html[data-site-theme="mono-red"] .topbar::after {
  background: rgba(255, 255, 255, 0.14);
}
html[data-site-theme="mono-red"] .theme-toggle {
  border-color: rgba(255, 126, 130, 0.48);
  background: rgba(215, 25, 32, 0.12);
}
html[data-site-theme="mono-red"] .theme-toggle:hover {
  border-color: rgba(255, 160, 163, 0.82);
  background: rgba(215, 25, 32, 0.26);
}
html[data-site-theme="mono-red"] .theme-toggle.is-mono-red .theme-toggle-swatch {
  border-color: rgba(255, 126, 130, 0.9);
  background: linear-gradient(135deg, #ffffff 0 50%, #d71920 50% 100%);
}
html[data-site-theme="mono-red"] .buy-link,
html[data-site-theme="mono-red"] .hero-copy-final a,
html[data-site-theme="mono-red"] .scene-sample-action {
  color: #ffffff;
  background: #d71920;
}
html[data-site-theme="mono-red"] .buy-link:hover,
html[data-site-theme="mono-red"] .hero-copy-final a:hover,
html[data-site-theme="mono-red"] .scene-sample-action:hover {
  color: #ffffff;
  background: #ef3a3e;
}
html[data-site-theme="mono-red"] .main-nav a[aria-current="page"]::after {
  background: #d71920;
}
html[data-site-theme="mono-red"] .hero-sequence {
  background: #050505;
}
html[data-site-theme="mono-red"] .hero-light {
  background: radial-gradient(
    circle,
    rgba(128, 20, 24, 0.36) 0%,
    rgba(48, 10, 12, 0.3) 28%,
    rgba(5, 5, 5, 0) 66%
  );
}
html[data-site-theme="mono-red"] .hero-light::before {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0) 66%
  );
}
html[data-site-theme="mono-red"] .hero-light::after {
  background: radial-gradient(
    ellipse,
    rgba(215, 25, 32, 0.24) 0%,
    rgba(110, 12, 18, 0.1) 38%,
    rgba(7, 7, 7, 0) 76%
  );
}
html[data-site-theme="mono-red"] .experience {
  color: #ffffff;
  background: #070707;
}
html[data-site-theme="mono-red"] .experience-stage {
  border-color: rgba(255, 255, 255, 0.18);
  background: #111111;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.48);
}
html[data-site-theme="mono-red"] .demo-player {
  background: #0a0a0a;
}
html[data-site-theme="mono-red"] .demo-controls {
  background: #141414;
}
html[data-site-theme="mono-red"] .mode-switch {
  background: #050505;
}
html[data-site-theme="mono-red"] .mode-switch button.active {
  color: #ffffff;
  background: #d71920;
}
html[data-site-theme="mono-red"] .player-status span {
  color: #ffffff;
  background: #d71920;
}
html[data-site-theme="mono-red"] .timeline-track em {
  border-color: #d71920;
  background: rgba(215, 25, 32, 0.2);
}
html[data-site-theme="mono-red"] .metric-button.active {
  border-color: rgba(239, 58, 62, 0.88);
  background: rgba(215, 25, 32, 0.14);
}
html[data-site-theme="mono-red"] .system-cta {
  background: radial-gradient(
    circle at 65% 20%,
    #4a171a,
    #16090a 48%,
    #070707 100%
  );
}
html[data-site-theme="mono-red"] .solid-action {
  color: #ffffff;
  background: #d71920;
}
html[data-site-theme="mono-red"] .solid-action:hover {
  color: #ffffff;
  background: #ef3a3e;
}
html[data-site-theme="mono-red"] .solid-action.dark,
html[data-site-theme="mono-red"] .pdp-hero-actions .solid-action,
html[data-site-theme="mono-red"] .product-subnav-links .subnav-buy {
  color: #ffffff;
  background: #d71920;
}
html[data-site-theme="mono-red"] .solid-action.dark:hover,
html[data-site-theme="mono-red"] .pdp-hero-actions .solid-action:hover {
  color: #ffffff;
  background: #ef3a3e;
}
html[data-site-theme="mono-red"] .contact-cta {
  background: linear-gradient(135deg, #ffffff 0%, #eeeeee 100%);
}
html[data-site-theme="mono-red"] .contact-cta::before {
  background: radial-gradient(
    circle,
    rgba(215, 25, 32, 0.14),
    rgba(215, 25, 32, 0) 68%
  );
}
html[data-site-theme="mono-red"] .light-section,
html[data-site-theme="mono-red"] .product-story-copy,
html[data-site-theme="mono-red"] .scene-section,
html[data-site-theme="mono-red"] .inner-page,
html[data-site-theme="mono-red"] .pdp-page main,
html[data-site-theme="mono-red"] .downloads-page main,
html[data-site-theme="mono-red"] .contact-page main,
html[data-site-theme="mono-red"] .legal-page main,
html[data-site-theme="mono-red"] .scene-archive-page main,
html[data-site-theme="mono-red"] .scene-article-page main {
  background: #f1f1f1;
}
html[data-site-theme="mono-red"] .manifesto h2 span,
html[data-site-theme="mono-red"] .catalog-hero h1 span,
html[data-site-theme="mono-red"] .pdp-hero-copy h1 span,
html[data-site-theme="mono-red"] .pdp-statement h2 span {
  color: #969696;
}
html[data-site-theme="mono-red"] .scene-image,
html[data-site-theme="mono-red"] .catalog-products,
html[data-site-theme="mono-red"] .pdp-workflow,
html[data-site-theme="mono-red"] .scene-related,
html[data-site-theme="mono-red"] .catalog-support,
html[data-site-theme="mono-red"] .pdp-buy {
  background: #e7e7e7;
}
html[data-site-theme="mono-red"] .catalog-hero {
  background:
    radial-gradient(circle at 72% 34%, #ffffff 0%, transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #f1f1f1 72%, #e3e3e3 100%);
}
html[data-site-theme="mono-red"] .product-feature-card {
  background: radial-gradient(
    circle at 74% 42%,
    #3e1114 0%,
    #1b0809 36%,
    #070707 74%
  );
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.16);
}
html[data-site-theme="mono-red"] .accessory-card,
html[data-site-theme="mono-red"] .workflow-card,
html[data-site-theme="mono-red"] .retail-card {
  background: #ffffff;
}
html[data-site-theme="mono-red"] .accessory-visual {
  background: radial-gradient(circle at 50% 45%, #ffffff 0%, #eeeeee 58%, #dddddd 100%);
}
html[data-site-theme="mono-red"] .catalog-support {
  background: #e2e2e2;
}
html[data-site-theme="mono-red"] .channel-list span {
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.72);
}
html[data-site-theme="mono-red"] .product-subnav {
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.9);
}
html[data-site-theme="mono-red"] .product-subnav-links > a:hover,
html[data-site-theme="mono-red"] .text-action:hover,
html[data-site-theme="mono-red"] .accessory-copy a:hover,
html[data-site-theme="mono-red"] .feature-points a:hover {
  color: #d71920;
}
html[data-site-theme="mono-red"] .pdp-hero,
html[data-site-theme="mono-red"] .pdp-statement,
html[data-site-theme="mono-red"] .pdp-scenes,
html[data-site-theme="mono-red"] .pdp-faq {
  background: #ffffff;
}
html[data-site-theme="mono-red"] .pdp-hero-media {
  background: radial-gradient(circle at 52% 40%, #ffffff 0%, #e9e9e9 62%, #d9d9d9 100%);
}
html[data-site-theme="mono-red"] .pdp-panorama,
html[data-site-theme="mono-red"] .pdp-specs,
html[data-site-theme="mono-red"] .scene-sample {
  background: #080808;
}
html[data-site-theme="mono-red"] .pdp-scene-card,
html[data-site-theme="mono-red"] .software-card.dark {
  background: #101010;
}
html[data-site-theme="mono-red"] .scene-archive-hero,
html[data-site-theme="mono-red"] .downloads-hero,
html[data-site-theme="mono-red"] .contact-hero,
html[data-site-theme="mono-red"] .legal-hero {
  background-color: #080808;
  background-image: radial-gradient(
    circle at 76% 44%,
    rgba(215, 25, 32, 0.28),
    transparent 35%
  );
}
html[data-site-theme="mono-red"] .scene-archive-card,
html[data-site-theme="mono-red"] .scene-process article {
  background: #e8e8e8;
}
html[data-site-theme="mono-red"] .scene-archive-card:hover {
  background: #dedede;
}
html[data-site-theme="mono-red"] .scene-archive-card figure {
  background: #d8d8d8;
}
html[data-site-theme="mono-red"] .scene-article-header {
  background: #f1f1f1;
}
html[data-site-theme="mono-red"] .scene-article-body {
  background: #ffffff;
}
html[data-site-theme="mono-red"] .download-tabs-v2 {
  background: rgba(225, 225, 225, 0.92);
  border-color: rgba(0, 0, 0, 0.1);
}
html[data-site-theme="mono-red"] .download-tabs-v2 button.active {
  background: #d71920;
}
html[data-site-theme="mono-red"] .software-mark {
  background:
    radial-gradient(
      circle at 50% 50%,
      transparent 29%,
      rgba(255, 255, 255, 0.18) 30% 31%,
      transparent 32%
    ),
    linear-gradient(145deg, #b9181e, #3b090c);
}
html[data-site-theme="mono-red"] .download-channel-list a.primary,
html[data-site-theme="mono-red"] .retail-card a.primary,
html[data-site-theme="mono-red"] .dealer-empty-actions a.primary {
  color: #ffffff;
  background: #d71920;
  border-color: #d71920;
}
html[data-site-theme="mono-red"] .footer-v2 {
  background: #050505;
}
html[data-site-theme="mono-red"] body.nav-open::before,
html[data-site-theme="mono-red"] body.nav-open .topbar {
  background: #080808;
}
html[data-site-theme="mono-red"] .main-nav {
  background: #080808 !important;
  background-color: #080808 !important;
  background-image: linear-gradient(180deg, #080808 0%, #17090a 58%, #080808 100%) !important;
}
html[data-site-theme="mono-red"] .main-nav a {
  border-color: rgba(255, 255, 255, 0.16);
}
@media (min-width: 981px) {
  html[data-site-theme="mono-red"] .main-nav {
    background: transparent !important;
    background-image: none !important;
  }
}
