﻿:root {
  color-scheme: dark;
  --product-nav-height: 80px;
  --product-hero-arc-height: 58.5185%;
  --product-hero-arc-bleed: clamp(112px, 7.8vw, 180px);
  --product-title-hero-size: 60px;
  --product-title-hero-line: 80px;
  --product-title-section-size: 40px;
  --product-title-section-line: 60px;
  --product-title-switch-size: 30px;
  --product-title-switch-line: 40px;
  --product-title-cta-size: 64px;
  --product-title-cta-line: 92px;
  --product-body-large-size: 24px;
  --product-body-large-line: 44px;
  --product-body-switch-size: 20px;
  --product-body-switch-line: 44px;
  --product-card-title-size: 24px;
  --product-card-title-line: 34px;
  --product-card-body-size: 16px;
  --product-card-body-line: 26px;
  font-family: var(--font-body-cn);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  overflow-x: clip;
  overflow-y: visible;
  background: #000;
}

body.product-page {
  min-height: 100vh;
  height: auto;
  color: #fff;
  font-family: var(--font-body-cn);
}

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

img {
  display: block;
}

.product-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  width: 100%;
  height: 80px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 60px;
  background: rgba(19, 20, 22, 0.2);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.product-logo {
  justify-self: start;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}

.product-nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  white-space: nowrap;
}

.product-nav-links a {
  padding: 30px 24px;
}

.product-nav-links a[aria-current="page"] {
  font-weight: 400;
}

.product-nav-download {
  display: inline-flex;
  width: 80px;
  height: 34px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  line-height: 12px;
}

.product-page-main {
  position: relative;
  width: 100%;
  overflow: visible;
  background: #000;
}

.product-section {
  position: relative;
  overflow: hidden;
  background: #000;
}

.product-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.product-bg-layer-set {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.product-hero-layer-set {
  bottom: auto;
  height: 100%;
}

.product-bg-layer {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.product-hero-layer-set::before,
.product-hero-layer-set::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.product-hero-layer-set::before {
  z-index: 1;
  background: rgba(19, 20, 22, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
}

.product-hero-layer-set::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.76) 24%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 78%),
    radial-gradient(circle at 50% 12%, rgba(83, 66, 247, 0.18), transparent 38%);
}

.product-hero-arcs {
  position: absolute;
  left: calc(0px - var(--product-hero-arc-bleed));
  right: calc(0px - var(--product-hero-arc-bleed));
  bottom: 0;
  z-index: 0;
  height: var(--product-hero-arc-height);
  overflow: hidden;
  pointer-events: none;
}

.product-hero-arc {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.product-hero-arc path {
  vector-effect: non-scaling-stroke;
}

.product-hero-arc-primary {
  fill: #5342f7;
}

.product-hero-arc-secondary {
  fill: #9990fb;
}

.product-hero-arc-tertiary {
  fill: #d1cefe;
}

.product-section-content {
  position: relative;
  z-index: 3;
}

.product-hero {
  height: 1262px;
}

.product-hero-bg {
  left: 50vw;
  width: 1920px;
  height: 1262px;
  transform: translateX(-50%);
}

.product-hero-content {
  width: min(1920px, 100vw);
  height: 1262px;
  margin: 0 auto;
  padding-top: 200px;
}

.product-hero-copy {
  width: min(1273px, calc(100vw - 48px));
  margin: 0 auto;
  text-align: center;
}

.product-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display-cn);
  font-size: var(--product-title-hero-size);
  font-weight: 700;
  line-height: var(--product-title-hero-line);
  white-space: nowrap;
}

.product-hero-copy p {
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-body-cn);
  font-size: var(--product-body-large-size);
  font-weight: 400;
  line-height: var(--product-body-large-line);
}

.product-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

.product-button {
  display: inline-flex;
  width: 120px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  font-family: var(--font-body-cn);
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
}

.product-button-primary {
  border: 1px solid #5946cf;
  background: rgba(89, 70, 207, 0.6);
}

.product-button-secondary {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
}

.product-hero-shot {
  width: 1146px;
  height: 652px;
  margin: 142px auto 0;
}

.product-hero-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-overview {
  height: 460px;
  padding-top: 80px;
  background: #000;
}

.product-overview-heading,
.product-overview-grid,
.product-feature-content {
  width: min(1660px, calc(100vw - 260px));
  margin: 0 auto;
}

.product-overview-heading {
  height: 120px;
  text-align: center;
}

.product-overview-heading h2 {
  margin: 0;
  font-family: var(--font-display-cn);
  font-weight: 700;
  letter-spacing: 0;
}

.product-overview-heading h2 {
  font-size: var(--product-title-section-size);
  line-height: var(--product-title-section-line);
}

.product-overview-heading p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body-cn);
  font-size: var(--product-body-large-size);
  font-weight: 400;
  line-height: var(--product-body-large-line);
}

.product-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.product-overview-card {
  display: flex;
  height: 120px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.product-overview-icon {
  display: grid;
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 20px;
}

.product-overview-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.product-overview-card h3 {
  margin: 0;
  font-family: var(--font-body-cn);
  font-size: var(--product-card-title-size);
  font-weight: 400;
  line-height: var(--product-card-title-line);
}

.product-overview-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-body-cn);
  font-size: var(--product-card-body-size);
  font-weight: 400;
  line-height: var(--product-card-body-line);
}

.product-feature {
  height: 980px;
}

.product-section-bg-contained {
  left: 50vw;
  top: -193px;
  width: 1920px;
  height: 1173px;
  transform: translateX(-50%);
  object-fit: contain;
}

.product-bg-24-base {
  left: 50%;
  top: 598px;
  z-index: 0;
  width: 1660px;
  height: 382px;
  transform: translateX(-50%);
}

.product-bg-24-glass {
  left: 50%;
  top: 180px;
  z-index: 1;
  width: 1660px;
  height: 800px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(36px);
  backdrop-filter: blur(36px);
  transform: translateX(-50%);
}

.product-bg-24-stars {
  left: calc(50% - 564px);
  top: -193px;
  z-index: 2;
  width: 1414px;
  height: 793px;
}

.product-bg-24-stroke {
  left: 50%;
  top: 180px;
  z-index: 3;
  width: 1660px;
  height: 800px;
  transform: translateX(-50%);
}

.product-feature-content {
  display: grid;
  height: 980px;
  grid-template-columns: 744px 684px;
  justify-content: space-between;
  padding: 0 60px;
}

.product-feature-agent .product-feature-content {
  padding-top: 283px;
}

.product-feature-agent .product-feature-copy {
  padding-top: 184px;
}

.product-feature-copy h2 {
  font-size: 40px;
  line-height: 60px;
  white-space: nowrap;
}

.product-feature-copy p {
  width: 744px;
  margin: 16px 0 0;
  font-family: var(--font-body-cn);
  font-size: 24px;
  font-weight: 400;
  line-height: 44px;
}

.product-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.product-tag-list span {
  display: inline-flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #fff;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-body-cn);
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

.product-feature-shot {
  margin: 0;
}

.product-feature-shot-agent {
  width: 684px;
  height: 594px;
}

.product-feature-shot img {
  width: 100%;
  height: 100%;
}

.product-divider {
  position: absolute;
  left: 50%;
  z-index: 4;
  width: 1920px;
  max-width: none;
  height: 1px;
  transform: translateX(-50%);
  pointer-events: none;
}

.product-divider-top {
  top: 0;
}

.product-divider-bottom {
  bottom: 0;
}

.product-wide-showcase,
.product-cta {
  min-height: 980px;
}

.product-devices {
  --device-content-width: min(1660px, calc(100vw - 120px));
  --device-rail-left: calc((100% - var(--device-content-width)) / 2);
  --product-devices-bg-width: 1920px;
  --product-devices-bg-height: 980px;
  --product-devices-bg-glass: rgba(19, 20, 22, 0.1);
  --product-devices-bg-blur: 100px;
  --product-devices-bg-scale-y: 1;
  --product-devices-bg-stroke: rgba(255, 255, 255, 0.4);
  --product-devices-bg-stroke-width: 1;
  --product-devices-wave-primary: #5342f7;
  --product-devices-wave-primary-opacity: 1;
  --product-devices-wave-primary-y: 0px;
  --product-devices-wave-secondary: #9990fb;
  --product-devices-wave-secondary-opacity: 1;
  --product-devices-wave-secondary-y: 0px;
  --product-devices-wave-light: #d1cefe;
  --product-devices-wave-light-opacity: 1;
  --product-devices-wave-light-y: 0px;
  --product-devices-wave-scale-y: 1;
  min-height: 980px;
  isolation: isolate;
}

.product-devices .device-section-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: none;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.product-devices .device-section-rail-left {
  left: var(--device-rail-left);
}

.product-devices .device-section-rail-right {
  left: calc(var(--device-rail-left) + var(--device-content-width) - 1px);
}

.product-devices::before,
.product-devices::after {
  position: absolute;
  left: 50%;
  z-index: 2;
  width: 1920px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(-50%);
  pointer-events: none;
  content: none;
}

.product-devices::before {
  top: 0;
}

.product-devices::after {
  bottom: 0;
}

.product-devices .product-divider {
  display: none;
}

.product-devices-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.product-devices-bg__stage {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: var(--product-devices-bg-width);
  height: var(--product-devices-bg-height);
  max-width: none;
  transform: translateX(-50%) scaleY(var(--product-devices-bg-scale-y));
  transform-origin: 50% 100%;
}

.product-devices-bg__base,
.product-devices-bg__blur,
.product-devices-bg__stroke {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.product-devices-bg__base {
  z-index: 1;
  transform: scaleY(var(--product-devices-wave-scale-y));
  transform-origin: 50% 100%;
}

.product-devices-bg__blur {
  z-index: 2;
  overflow: hidden;
  background: var(--product-devices-bg-glass);
  -webkit-backdrop-filter: blur(var(--product-devices-bg-blur));
  backdrop-filter: blur(var(--product-devices-bg-blur));
  -webkit-clip-path: path("M402.147 30.346C407.253 34.0221 413.385 36 419.676 36H1500.32C1506.61 36 1512.75 34.0221 1517.85 30.346L1552.15 5.65397C1557.25 1.9779 1563.39 0 1569.68 0H1920V980H1569.68C1563.39 980 1557.25 978.022 1552.15 974.346L1517.85 949.654C1512.75 945.978 1506.61 944 1500.32 944H419.676C413.385 944 407.253 945.978 402.147 949.654L367.853 974.346C362.747 978.022 356.615 980 350.324 980H0V0H350.324C356.615 0 362.747 1.9779 367.853 5.65397L402.147 30.346Z");
  clip-path: path("M402.147 30.346C407.253 34.0221 413.385 36 419.676 36H1500.32C1506.61 36 1512.75 34.0221 1517.85 30.346L1552.15 5.65397C1557.25 1.9779 1563.39 0 1569.68 0H1920V980H1569.68C1563.39 980 1557.25 978.022 1552.15 974.346L1517.85 949.654C1512.75 945.978 1506.61 944 1500.32 944H419.676C413.385 944 407.253 945.978 402.147 949.654L367.853 974.346C362.747 978.022 356.615 980 350.324 980H0V0H350.324C356.615 0 362.747 1.9779 367.853 5.65397L402.147 30.346Z");
}

.product-devices-bg__wave {
  transform-box: fill-box;
  transform-origin: 50% 100%;
}

.product-devices-bg__wave--primary {
  fill: var(--product-devices-wave-primary);
  opacity: var(--product-devices-wave-primary-opacity);
  transform: translateY(var(--product-devices-wave-primary-y));
}

.product-devices-bg__wave--secondary {
  fill: var(--product-devices-wave-secondary);
  opacity: var(--product-devices-wave-secondary-opacity);
  transform: translateY(var(--product-devices-wave-secondary-y));
}

.product-devices-bg__wave--light {
  fill: var(--product-devices-wave-light);
  opacity: var(--product-devices-wave-light-opacity);
  transform: translateY(var(--product-devices-wave-light-y));
}

.product-devices-bg__stroke {
  z-index: 3;
}

.product-devices-bg__stroke path {
  fill: none;
  stroke: var(--product-devices-bg-stroke);
  stroke-width: var(--product-devices-bg-stroke-width);
  vector-effect: non-scaling-stroke;
}

.product-wide-showcase {
  --product-workflow-stage-width: min(1694px, max(760px, calc(100vw - 226px)));
  --product-workflow-frame-width: calc(var(--product-workflow-stage-width) * 0.90909);
  --product-workflow-glass-top: 24px;
  --product-workflow-frame-left-offset: calc(var(--product-workflow-stage-width) * -0.01004);
  --product-workflow-frame-top: calc(var(--product-workflow-glass-top) + var(--product-workflow-stage-width) * 0.25561);
  isolation: isolate;
  overflow: visible;
}

/* Tighten the 1920px desktop composition: 157px copy-to-frame gap -> ~78px. */
@media (min-width: 1681px) {
  .product-wide-showcase {
    --product-workflow-glass-top: -55px;
  }
}

.product-switch-section {
  overflow: hidden;
  min-height: 980px;
  --product-design-origin-x: max(0px, calc((100vw - 1920px) / 2));
}

.product-switch-section[data-scroll-story] {
  overflow: visible;
}

.product-agent-switch[data-scroll-story] {
  height: 150vh;
  height: 150dvh;
}

.product-task-switch[data-scroll-story] {
  height: 150vh;
  height: 150dvh;
}

.product-switch-section .product-split-content {
  position: static;
  z-index: auto;
  display: grid;
  width: min(1660px, calc(100vw - 260px));
  min-height: 980px;
  grid-template-columns: minmax(0, 744px) minmax(520px, 830px);
  gap: 86px;
  align-items: center;
  margin: 0 auto;
}

.product-switch-section[data-scroll-story] .product-split-content {
  position: sticky;
  top: var(--product-nav-height);
  height: calc(100vh - var(--product-nav-height));
  height: calc(100dvh - var(--product-nav-height));
}

.product-switch-copy {
  position: relative;
  z-index: 2;
}

.product-switch-visual {
  position: relative;
  z-index: 1;
  width: 830px;
  max-width: 100%;
  aspect-ratio: 830 / 800;
  isolation: isolate;
  pointer-events: none;
  user-select: none;
}

.product-switch-visual qmen-glass-visual {
  position: absolute;
  left: -52.65%;
  top: -35.75%;
  width: 170.36%;
  height: auto;
  max-width: none;
  --qgv-width: 100%;
  --qgv-background: transparent;
  --qgv-root-glow: none;
}

.product-stage-shot {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(684px, 82.41%);
  height: auto;
  margin: 0;
  overflow: visible;
  background: transparent;
  transform: translate(-50%, -50%);
}

.product-stage-shot-wide {
  width: min(786px, 94.7%);
}

.product-stage-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.switch-visual-current {
  opacity: 1;
  transition:
    opacity 320ms ease,
    filter 320ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.switch-visual-current.is-exiting {
  opacity: 0;
  filter: blur(8px);
  transform: scale(0.985);
}

.switch-visual-current.is-entering {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.015);
}

.switch-visual-current.is-entered {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.product-agent-switch .product-switch-copy {
  min-height: 326px;
  transform: translateY(8px);
}

.product-task-switch .product-switch-copy {
  min-height: 414px;
  transform: translateY(8px);
}

.product-switch-panel {
  display: block;
  min-height: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.product-wide-heading h2,
.product-devices-heading h2,
.product-cta-copy h2 {
  margin: 0;
  font-family: var(--font-display-cn);
  font-weight: 700;
  letter-spacing: 0;
}

.product-switch-trigger {
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 24px 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    color 220ms ease,
    min-height 820ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-switch-panel.is-active .product-switch-trigger {
  min-height: auto;
  align-items: flex-start;
  padding-bottom: 16px;
  color: #fff;
}

.product-switch-trigger > span:first-child {
  margin: 0;
  font-family: var(--font-display-cn);
  font-size: var(--product-title-switch-size);
  font-weight: 700;
  line-height: var(--product-title-switch-line);
  letter-spacing: 0;
  white-space: nowrap;
}

.product-switch-plus {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin-left: 24px;
  transition:
    opacity 240ms ease,
    transform 320ms ease;
}

.product-switch-plus::before,
.product-switch-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.86);
}

.product-switch-plus::after {
  width: 1px;
  height: 14px;
}

.product-switch-panel.is-active .product-switch-plus {
  opacity: 0;
  transform: rotate(45deg) scale(0.82);
}

.product-switch-panel-wrap {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-switch-panel.is-active .product-switch-panel-wrap {
  grid-template-rows: 1fr;
}

.product-switch-panel-inner {
  min-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    padding-bottom 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-switch-panel.is-active .product-switch-panel-inner {
  padding-bottom: 24px;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 120ms;
}

.product-switch-panel p {
  width: min(744px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body-cn);
  font-size: var(--product-body-switch-size);
  font-weight: 400;
  line-height: var(--product-body-switch-line);
}

.product-switch-tabs {
  display: none;
  margin-top: 0;
}

.product-switch-tab {
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font: inherit;
  font-family: var(--font-display-cn);
  font-size: var(--product-title-switch-size);
  font-weight: 700;
  line-height: var(--product-title-switch-line);
  text-align: left;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.product-switch-tab.is-active {
  display: none;
}

.product-switch-tab::after {
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  margin-left: 24px;
  background: url("./assets/product-capabilities/long-2/device-arrow.svg") center / contain no-repeat;
  opacity: 0.75;
}

.product-switch-trigger:focus-visible,
.product-switch-tab:focus-visible,
.product-device-card a:focus-visible,
.product-button:focus-visible {
  outline: 2px solid rgba(94, 117, 234, 0.9);
  outline-offset: 4px;
}

.product-page .industry-scenario {
  position: relative;
  height: 886px;
  overflow: visible;
}

.product-page .industry-scenario-medical {
  margin-top: 96px;
}

.product-page .industry-scenario-research {
  height: 845px;
  margin-top: 96px;
}

.product-page .industry-scenario-medical[data-scroll-story] {
  height: 150vh;
  height: 150dvh;
}

.product-page .industry-scenario-research[data-scroll-story] {
  height: 150vh;
  height: 150dvh;
}

.product-page .industry-scenario-sticky {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-page .industry-scenario[data-scroll-story] .industry-scenario-sticky {
  position: sticky;
  top: var(--product-nav-height);
  height: calc(100vh - var(--product-nav-height));
  height: calc(100dvh - var(--product-nav-height));
  overflow: visible;
}

.product-page .industry-scenario::before,
.product-page .industry-scenario::after {
  content: none;
  display: none;
}

.product-page .industry-scenario[data-scroll-story] .industry-detail-visual {
  top: calc((100vh - var(--product-nav-height) - 800px) / 2);
  top: calc((100dvh - var(--product-nav-height) - 800px) / 2);
}

.product-page .industry-detail-visual {
  position: absolute;
  left: calc((100vw - 1660px) / 2 + 803px);
  top: 86px;
  z-index: 1;
  width: 830px;
  height: auto;
  aspect-ratio: 830 / 800;
  isolation: isolate;
  overflow: visible;
  pointer-events: none;
  user-select: none;
  transform: none;
}

.product-page .industry-detail-visual qmen-glass-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 832 / 802;
  --qgv-width: 100%;
  --qgv-background: transparent;
  --qgv-root-glow: none;
}

.product-page .industry-detail-visual .industry-detail-shot {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(684px, 82.41%);
  height: auto;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.product-page .industry-detail-visual .industry-detail-shot.product-stage-shot-wide {
  width: min(786px, 94.7%);
}

.product-page .industry-detail-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.product-page .industry-scenario-copy {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 744px;
  transform: translateY(-50%);
}

.product-page .industry-scenario-copy-left {
  left: calc((100vw - 1660px) / 2);
}

.product-page .industry-switch-item {
  display: block;
  min-height: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.product-page .industry-switch-trigger {
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 24px 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font: inherit;
  font-family: var(--font-display-cn);
  font-size: var(--product-title-switch-size);
  font-weight: 700;
  line-height: var(--product-title-switch-line);
  letter-spacing: 0;
  text-align: left;
  transition:
    color 220ms ease,
    min-height 820ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-page .industry-switch-item.is-active .industry-switch-trigger {
  min-height: auto;
  align-items: flex-start;
  padding-bottom: 16px;
  color: #fff;
  cursor: default;
}

.product-page .industry-switch-trigger > span:first-child {
  display: block;
  margin: 0;
  white-space: nowrap;
}

.product-page .industry-switch-plus {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin-left: 24px;
  transition:
    opacity 240ms ease,
    transform 320ms ease;
}

.product-page .industry-switch-plus::before,
.product-page .industry-switch-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.86);
}

.product-page .industry-switch-plus::after {
  width: 1px;
  height: 14px;
}

.product-page .industry-switch-item.is-active .industry-switch-plus {
  opacity: 0;
  transform: rotate(45deg) scale(0.82);
}

.product-page .industry-switch-detail {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-page .industry-switch-item.is-active .industry-switch-detail {
  grid-template-rows: 1fr;
}

.product-page .industry-switch-detail-inner {
  min-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    padding-bottom 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-page .industry-switch-item.is-active .industry-switch-detail-inner {
  padding-bottom: 24px;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 120ms;
}

.product-page .industry-switch-detail-inner > p {
  width: min(744px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body-cn);
  font-size: var(--product-body-switch-size);
  font-weight: 400;
  line-height: var(--product-body-switch-line);
}

.product-page .industry-switch-detail-inner .product-tag-list {
  margin-top: 24px;
}

.product-wide-content {
  width: min(1660px, calc(100vw - 260px));
  min-height: 980px;
  margin: 0 auto;
  padding-top: 120px;
}

.product-workflow-glass {
  position: absolute;
  left: 50%;
  top: var(--product-workflow-glass-top);
  z-index: 1;
  display: block;
  width: var(--product-workflow-stage-width);
  max-width: none;
  height: auto;
  contain: layout;
  overflow: visible;
  --qgs-width: var(--product-workflow-stage-width);
  transform: translateX(-50%);
  transform-origin: top center;
  pointer-events: none;
  user-select: none;
}
.product-wide-heading {
  position: relative;
  z-index: 4;
  width: 100%;
  text-align: center;
}

.product-wide-heading h2 {
  color: #fff;
  font-size: var(--product-title-section-size);
  line-height: var(--product-title-section-line);
}

html body.product-page .product-wide-heading .gradient-reveal-title,
html body.product-page .product-devices-heading .gradient-reveal-title {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.product-wide-heading p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body-cn);
  font-size: var(--product-body-large-size);
  font-weight: 400;
  line-height: var(--product-body-large-line);
}

.product-wide-frame {
  position: absolute;
  left: calc(50% + var(--product-workflow-frame-left-offset));
  top: var(--product-workflow-frame-top);
  z-index: 3;
  width: var(--product-workflow-frame-width);
  height: auto;
  aspect-ratio: 1540 / 440;
  margin: 0;
  overflow: visible;
  transform: translateX(-50%);
  transform-origin: top center;
}

.product-wide-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-devices-content {
  width: var(--device-content-width);
  min-height: 704px;
  margin: 0 auto;
  padding-top: 80px;
}

.product-devices-heading {
  padding-left: 34px;
}

.product-devices-heading h2 {
  width: 440px;
  font-size: var(--product-title-section-size);
  line-height: var(--product-title-section-line);
}

.product-devices-heading p {
  width: min(1241px, calc(100vw - 96px));
  max-width: 100%;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body-cn);
  font-size: var(--product-body-large-size);
  font-weight: 400;
  line-height: var(--product-body-large-line);
  white-space: normal;
}

.product-device-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  height: clamp(440px, calc((var(--device-content-width) / 3) * 1.18554), 656px);
  margin-top: 44px;
}

.product-device-grid::before,
.product-device-grid::after {
  content: none;
}

.product-device-grid .device-structure-line {
  position: absolute;
  z-index: 5;
  display: block;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.4);
}

.product-device-grid .device-line-top,
.product-device-grid .device-line-bottom {
  left: 0;
  width: 100%;
  height: 1px;
}

.product-device-grid .device-line-left,
.product-device-grid .device-line-right,
.product-device-grid .device-divider-1,
.product-device-grid .device-divider-2 {
  top: 0;
  width: 1px;
  height: 100%;
}

.product-device-grid .device-line-top {
  top: 0;
}

.product-device-grid .device-line-bottom {
  bottom: 0;
}

.product-device-grid .device-line-left {
  left: 0;
}

.product-device-grid .device-line-right {
  right: 0;
}

.product-device-grid .device-divider-1 {
  left: 33.333333%;
}

.product-device-grid .device-divider-2 {
  left: 66.666667%;
}

.product-device-card {
  position: relative;
  display: flex;
  height: clamp(440px, calc((var(--device-content-width) / 3) * 1.18554), 656px);
  min-width: 0;
  box-sizing: border-box;
  flex-direction: column;
  overflow: visible;
  padding: 24px 0 0 24px;
  border: 0;
  background: transparent;
}

.product-device-card:last-child {
  border-right: 0;
}

.product-device-card::after {
  content: none;
}

.product-device-copy {
  position: relative;
  z-index: 3;
}

.product-device-copy h3 {
  margin: 0;
  font-family: var(--font-body-cn);
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
}

.product-device-copy p {
  margin: 8px 0 0;
  color: #ccc;
  font-family: var(--font-body-cn);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.product-device-copy a {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: #5e75ea;
  font-family: var(--font-body-cn);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.product-device-copy a::after {
  content: "";
  width: 24px;
  height: 24px;
  margin-left: 8px;
  background: url("./assets/product-capabilities/long-2/device-arrow.svg") center / contain no-repeat;
}

.product-device-card figure {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 529.333px;
  max-height: calc(100% - 160px);
  box-sizing: border-box;
  height: auto;
  aspect-ratio: 530 / 480;
  flex: 0 0 auto;
  margin: auto auto 0;
  overflow: hidden;
}

.product-device-card figure::before {
  content: none;
}

.product-device-card figure img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.product-cta {
  min-height: 980px;
  isolation: isolate;
}

.product-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  background: #000;
  filter: none;
}

.product-cta-content {
  display: flex;
  min-height: 980px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 380px 60px 64px;
  text-align: center;
}

.product-cta-copy {
  width: min(1474px, calc(100vw - 120px));
  margin: 0 auto;
}

.product-cta-copy h2 {
  margin: 0;
  font-size: var(--product-title-cta-size);
  line-height: var(--product-title-cta-line);
  white-space: nowrap;
}

.product-cta-copy p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body-cn);
  font-size: var(--product-body-large-size);
  font-weight: 400;
  line-height: 24px;
}

.product-cta .product-actions {
  margin-top: 44px;
}

.about-footer-section {
  --about-hero-arc-height: 58.5185%;
  --about-hero-arc-bleed: clamp(112px, 7.8vw, 180px);
  --about-font-body: var(--font-body-cn);
  position: relative;
  height: 980px;
  overflow: hidden;
  background: #000;
}

.about-footer-section::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(19, 20, 22, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  pointer-events: none;
  content: "";
}

.about-footer-arcs,
.about-footer-home-bg-overlay {
  position: absolute;
  pointer-events: none;
}

.about-footer-arcs {
  left: calc(0px - var(--about-hero-arc-bleed));
  right: calc(0px - var(--about-hero-arc-bleed));
  bottom: 0;
  z-index: 0;
  height: var(--about-hero-arc-height);
  overflow: hidden;
}

.about-hero-arc {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.about-hero-arc path {
  vector-effect: non-scaling-stroke;
}

.about-hero-arc-primary {
  fill: #5342f7;
}

.about-hero-arc-secondary {
  fill: #9990fb;
}

.about-hero-arc-tertiary {
  fill: #d1cefe;
}

.about-footer-home-bg-overlay {
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.76) 24%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 78%),
    radial-gradient(circle at 50% 12%, rgba(83, 66, 247, 0.18), transparent 38%);
}

.about-footer-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.about-footer-brand {
  position: absolute;
  left: 60px;
  top: 364px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}

.about-footer-brand h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: Inter, var(--about-font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}

.about-footer-brand p,
.about-footer-brand a {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  white-space: nowrap;
}

.about-footer-columns {
  position: absolute;
  left: 50%;
  top: 365px;
  display: grid;
  width: 656px;
  grid-template-columns: 42px 73px 84px 98px;
  justify-content: space-between;
  transform: translateX(-50%);
}

.about-footer-column {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}

.about-footer-column h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: Inter, var(--about-font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  white-space: nowrap;
}

.about-footer-column a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  white-space: nowrap;
}

.about-footer-qr {
  position: absolute;
  right: 60px;
  top: 364px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 68px;
}

.about-footer-qr-frame {
  display: flex;
  width: 218px;
  height: 218px;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.about-footer-qr img {
  width: 206px;
  height: 206px;
  border-radius: 4px;
  object-fit: contain;
}

.about-footer-qr p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
}

.about-footer-copyright {
  position: absolute;
  left: 60px;
  bottom: 36px;
  max-width: calc(100vw - 120px);
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

@media (max-width: 1440px) {
  .about-footer-columns {
    left: 54%;
    width: 560px;
  }
}

@media (min-width: 1366px) and (max-width: 1536px) {
  .product-wide-content--workflow {
    width: min(1260px, calc(100vw - 96px));
  }

  .product-wide-content--workflow .product-wide-heading p {
    white-space: nowrap;
  }
}

@media (min-width: 1500px) {
  .product-devices-heading p {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .about-footer-section {
    height: auto;
    min-height: 980px;
    padding: 280px 24px 80px;
  }

  .about-footer-content {
    display: grid;
    gap: 42px;
    width: min(680px, 100%);
    height: auto;
    margin: 0 auto;
  }

  .about-footer-brand,
  .about-footer-columns,
  .about-footer-qr,
  .about-footer-copyright {
    position: relative;
    inset: auto;
    transform: none;
  }

  .about-footer-brand {
    gap: 18px;
  }

  .about-footer-brand h2 {
    margin-bottom: 8px;
  }

  .about-footer-columns {
    left: auto;
    top: auto;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 48px;
  }

  .about-footer-column {
    gap: 18px;
  }

  .about-footer-column h3 {
    margin-bottom: 6px;
  }

  .about-footer-qr {
    align-items: flex-start;
    gap: 16px;
  }

  .about-footer-copyright {
    white-space: normal;
  }

}

@media (max-width: 480px) {
  .product-hero .product-actions {
    align-items: center;
  }

  .about-footer-columns {
    grid-template-columns: 1fr;
  }

  .about-footer-brand p,
  .about-footer-brand a {
    white-space: normal;
    line-height: 22px;
  }
}

@media (min-width: 1660px) {
  .product-devices {
    --device-rail-left: calc((100vw - 1660px) / 2);
  }

  .product-overview-heading,
  .product-overview-grid,
  .product-feature-content,
  .product-split-content,
  .product-wide-content {
    margin-left: calc((100vw - 1660px) / 2);
    margin-right: 0;
  }
}

@media (max-width: 1440px) {
  .product-split-content,
  .product-wide-content {
    width: min(1180px, calc(100vw - 80px));
  }

  .product-devices {
    --device-content-width: min(1320px, calc(100vw - 120px));
  }

  .product-devices-content {
    width: var(--device-content-width);
  }

  .product-split-content {
    grid-template-columns: minmax(0, 1fr) minmax(480px, 0.95fr);
    gap: 48px;
  }

  .product-wide-content--workflow {
    width: min(1260px, calc(100vw - 96px));
  }

  .product-cta-copy h2 {
    font-size: 60px;
    line-height: 92px;
  }
}

@media (max-width: 1600px) {
  .product-hero-copy h1 {
    font-size: 52px;
    line-height: 72px;
  }

  .product-hero-copy p,
  .product-overview-heading p,
  .product-feature-copy p {
    font-size: 20px;
    line-height: 36px;
  }

  .product-overview-heading h2,
  .product-feature-copy h2 {
    font-family: var(--font-display-cn);
    font-size: 36px;
    line-height: 52px;
  }

  .product-wide-heading h2,
  .product-devices-heading h2 {
    font-family: var(--font-display-cn);
    font-size: 36px;
    line-height: 52px;
  }
}

@media (max-width: 1280px) {
  .product-nav {
    padding: 0 28px;
  }

  .product-nav-links a {
    padding: 24px 14px;
  }

  .product-overview-heading,
  .product-overview-grid,
  .product-feature-content {
    width: min(1120px, calc(100vw - 48px));
  }

  .product-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 72px;
  }

  .product-overview-heading {
    height: auto;
  }

  .product-overview {
    height: auto;
    min-height: 460px;
    padding-bottom: 80px;
    overflow: visible;
  }

  .product-feature-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 1023px) {
  .product-split-switch,
  .product-wide-showcase,
  .product-devices,
  .product-cta {
    min-height: auto;
  }

  .product-wide-showcase {
    --product-workflow-stage-width: min(960px, calc(100vw - 48px));
    --product-workflow-frame-width: calc(var(--product-workflow-stage-width) * 0.90909);
    --product-workflow-stage-height: calc(var(--product-workflow-stage-width) * 0.55136);
    --product-workflow-frame-top-offset: calc(var(--product-workflow-stage-height) * 0.39936);
    --product-workflow-glass-center-x: calc(var(--product-workflow-stage-width) * 0.01004);
    --product-workflow-glass-center-y: calc((var(--product-workflow-frame-width) * 0.285714 - var(--product-workflow-stage-height) * 0.59957) / 2);
    --product-workflow-glass-top: 190px;
    --product-workflow-frame-left-offset: calc(var(--product-workflow-stage-width) * -0.01004);
    display: flex;
    flex-direction: column;
    overflow: visible;
    padding: 96px 0;
  }

  .product-devices {
    --device-content-width: min(960px, calc(100vw - 48px));
    --product-devices-bg-scale-y: 2.55;
  }

  .product-split-content,
  .product-wide-content,
  .product-devices-content {
    width: min(960px, calc(100vw - 48px));
  }

  .product-split-content {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 96px 0;
  }

  .product-switch-section {
    min-height: auto;
  }

  .product-switch-section[data-scroll-story] {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .product-page [data-product-switch][data-feature-accordion] {
    overflow-anchor: none;
  }

  .product-switch-section .product-split-content {
    min-height: auto;
  }

  .product-switch-section[data-scroll-story] .product-split-content {
    position: static;
    top: auto;
    height: auto;
  }

  .product-page .industry-scenario,
  .product-page .industry-scenario-medical[data-scroll-story],
  .product-page .industry-scenario-research[data-scroll-story] {
    height: auto;
    min-height: auto;
    margin-top: 0;
    overflow: visible;
  }

  .product-page .industry-scenario-sticky,
  .product-page .industry-scenario[data-scroll-story] .industry-scenario-sticky {
    position: static;
    top: auto;
    display: grid;
    width: min(960px, calc(100vw - 48px));
    height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    margin: 0 auto;
    padding: 96px 0;
  }

  .product-page .industry-scenario-copy,
  .product-page .industry-scenario-copy-left {
    position: relative;
    left: auto;
    top: auto;
    order: 2;
    width: 100%;
    transform: none;
  }

  .product-page .industry-scenario[data-scroll-story] .industry-detail-visual,
  .product-page .industry-detail-visual {
    position: relative;
    left: auto;
    top: auto;
    order: 1;
    width: min(830px, 100%);
    margin: 0 auto;
  }

  .product-switch-copy {
    min-height: 0;
  }

  .product-wide-content,
  .product-devices-content {
    min-height: auto;
    padding: 96px 0;
  }

  .product-wide-content--workflow {
    order: 1;
    padding: 0;
  }

  .product-workflow-glass {
    position: relative;
    left: auto;
    top: auto;
    order: 2;
    margin: 0 auto;
    transform: translate(var(--product-workflow-glass-center-x), var(--product-workflow-glass-center-y));
  }

  .product-wide-frame {
    position: relative;
    left: auto;
    top: auto;
    order: 3;
    width: var(--product-workflow-frame-width);
    margin: calc(var(--product-workflow-frame-top-offset) - var(--product-workflow-stage-height)) auto 0;
    transform: none;
  }

  .product-device-grid {
    width: min(553px, 100%);
    grid-template-columns: 1fr;
    height: auto;
    gap: 0;
    margin: 44px auto 0;
  }

  .product-device-grid .device-structure-line {
    display: none;
  }

  .product-devices-heading p {
    width: 100%;
    white-space: normal;
  }

  .product-device-card {
    height: auto;
    aspect-ratio: 553.333 / 656;
    min-height: 0;
    overflow: hidden;
    padding: 24px 0 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .product-device-card + .product-device-card {
    margin-top: -1px;
  }

  /* Keep only the mobile card's own right edge. This line starts and ends
     with the final card instead of running through the whole section. */
  .product-device-card:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
  }

  .product-device-card figure {
    width: 100%;
    max-width: calc(100% - 24px);
    max-height: none;
    flex: 1 1 auto;
    min-height: 0;
    margin: 24px 0 0;
    border-top-left-radius: 30px;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .product-device-card figure img {
    width: 100%;
    max-width: 100%;
  }

  .product-cta-content {
    min-height: 760px;
    padding: 240px 32px 48px;
  }
}

@media (max-width: 1023px) {
  .product-hero {
    height: auto;
    min-height: auto;
  }

  .product-hero-content {
    width: min(960px, calc(100vw - 48px));
    height: auto;
    padding: 140px 0 0;
  }

  .product-hero-copy {
    width: 100%;
  }

  .product-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(34px, 5.4vw, 46px);
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .product-hero-shot {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 72px auto 0;
  }

  .product-hero-shot img {
    width: 100%;
    height: auto;
  }

  .product-devices .device-section-rail {
    display: none;
  }

  .product-switch-trigger > span:first-child,
  .product-page .industry-switch-trigger > span:first-child,
  .product-switch-tab {
    font-family: var(--font-body-cn);
    font-weight: 400;
    font-size: 26px;
    line-height: 36px;
    white-space: normal;
  }

  .product-switch-panel p,
  .product-page .industry-switch-detail-inner > p,
  .product-wide-heading p,
  .product-devices-heading p {
    font-size: 18px;
    line-height: 32px;
  }

  .product-cta-copy h2 {
    font-size: 46px;
    line-height: 68px;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .product-nav {
    height: auto;
    min-height: 72px;
    grid-template-columns: 1fr auto;
    row-gap: 12px;
    padding: 14px 20px;
  }

  .product-nav-links {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .product-hero,
  .product-overview,
  .product-feature {
    height: auto;
    min-height: auto;
  }

  .product-hero-content,
  .product-feature-content {
    height: auto;
    padding: 120px 20px 0;
  }

  .product-hero-copy h1,
  .product-feature-copy h2 {
    font-family: var(--font-display-cn);
    font-size: 34px;
    line-height: 1.35;
    white-space: normal;
  }

  .product-hero-copy p,
  .product-feature-copy p,
  .product-overview-heading p {
    width: auto;
    font-size: 15px;
    line-height: 1.8;
  }

  .product-hero-shot,
  .product-feature-shot-agent {
    width: 100%;
    height: auto;
  }

  .product-hero-shot img,
  .product-feature-shot img {
    height: auto;
  }

  .product-overview {
    padding: 72px 20px;
  }

  .product-overview-heading,
  .product-overview-grid,
  .product-feature-content {
    width: calc(100vw - 40px);
  }

  .product-overview-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 48px;
  }

  .product-split-content,
  .product-wide-content,
  .product-devices-content {
    width: calc(100vw - 40px);
  }

  .product-split-content,
  .product-wide-content,
  .product-devices-content {
    padding: 72px 0;
  }

  .product-wide-content--workflow {
    padding: 0;
  }

  .product-switch-panel {
    min-height: auto;
  }

  .product-switch-trigger > span:first-child,
  .product-switch-tab,
  .product-wide-heading h2,
  .product-devices-heading h2 {
    font-family: var(--font-body-cn);
    font-weight: 400;
    font-size: 28px;
    line-height: 38px;
  }

  .product-switch-tab {
    min-height: 72px;
  }

  .product-switch-tab::after {
    width: 24px;
    height: 24px;
  }

  .product-devices-heading {
    padding-left: 0;
  }

  .product-devices {
    --product-devices-bg-scale-y: 2.25;
  }

  .product-device-card {
    /* Phone cards must grow with their content. The tablet rule above keeps
       every card at the desktop 553:656 ratio, which leaves too little room
       for the screenshot and visibly crops it on narrow viewports. */
    aspect-ratio: auto;
    padding: 24px 16px 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }

  .product-device-card + .product-device-card {
    margin-top: -1px;
  }

  .product-device-card figure {
    width: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: 530 / 480;
    flex: none;
    margin: 24px 0 0;
    border-radius: 0;
  }

  .product-device-card figure img {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .product-device-copy p,
  .product-device-copy a {
    font-size: 16px;
    line-height: 26px;
  }

  .product-cta-content {
    min-height: 680px;
    padding: 210px 20px 32px;
  }

  .product-cta-copy h2 {
    font-family: var(--font-display-cn);
    font-size: 34px;
    line-height: 48px;
  }

  .product-cta-copy p {
    font-size: 15px;
    line-height: 26px;
  }

  .product-cta .product-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Keep the desktop switch stories inside narrower laptop viewports. */
@media (min-width: 1024px) and (max-width: 1440px) {
  .product-devices {
    --product-devices-edge-gap: clamp(156px, calc(440px - 19.8vw), 204px);
  }

  .product-devices-content {
    min-height: auto;
    padding: var(--product-devices-edge-gap) 0;
  }

  .product-page .industry-scenario-research {
    margin-top: 0;
  }

  .product-page .industry-scenario-research[data-scroll-story] .industry-detail-visual {
    top: 24px;
  }

  .product-page .industry-scenario[data-scroll-story] .industry-scenario-sticky {
    overflow: visible;
  }

  .product-page .industry-scenario[data-scroll-story] .industry-detail-visual {
    top: max(12px, calc((100dvh - var(--product-nav-height) - 720px) / 2));
  }

  .product-page #product-task-switch.industry-scenario-research[data-scroll-story] .industry-detail-visual {
    top: 24px;
  }

  .product-page .industry-detail-visual {
    right: 48px;
    left: auto;
    width: min(700px, calc(50vw - 36px));
    max-width: calc(100% - 96px);
    aspect-ratio: 830 / 800;
  }

  .product-page .industry-scenario-copy,
  .product-page .industry-scenario-copy-left {
    left: 48px;
    width: min(620px, calc(44vw - 24px));
    min-width: 0;
  }

  .product-page .industry-scenario-copy::before {
    content: none;
    display: none;
  }

  .product-page .industry-switch-item,
  .product-page .industry-switch-trigger,
  .product-page .industry-switch-detail,
  .product-page .industry-switch-detail-inner,
  .product-page .product-tag-list {
    min-width: 0;
  }

  .product-page .industry-switch-trigger {
    gap: 20px;
  }

  .product-page .industry-switch-trigger > span:first-child {
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .product-page .industry-switch-plus {
    margin-left: 0;
  }

  .product-page .industry-switch-detail-inner > p,
  .product-page .product-tag-list {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 480px) {
  .product-split-content,
  .product-wide-content,
  .product-devices-content {
    width: calc(100vw - 32px);
  }

  .product-switch-trigger > span:first-child,
  .product-switch-tab,
  .product-wide-heading h2,
  .product-devices-heading h2 {
    font-family: var(--font-body-cn);
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
  }

  .product-switch-panel p,
  .product-wide-heading p,
  .product-devices-heading p {
    font-size: 15px;
    line-height: 28px;
  }

  .product-tag-list {
    gap: 10px;
  }

  .product-tag-list span {
    height: 28px;
    padding: 0 12px;
    font-size: 12px;
  }

  .product-device-card {
    padding: 20px 16px 0;
  }

  .product-device-card figure {
    width: 100%;
    margin-top: 20px;
    border-radius: 0;
  }

  .product-devices {
    --product-devices-bg-scale-y: 2.05;
  }

  .product-device-card figure img {
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-switch-panel,
  .product-device-card,
  .product-device-card figure img {
    transition: none;
  }
}

/* Unified phone and tablet content gutters. Visual/background layers remain full width. */
@media (max-width: 767px) {
  .product-hero-content,
  .product-overview-heading,
  .product-overview-grid,
  .product-page .industry-scenario-sticky,
  .product-wide-content,
  .product-devices-content,
  .product-cta-content {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding-right: var(--page-gutter-mobile);
    padding-left: var(--page-gutter-mobile);
    box-sizing: border-box;
  }

  .product-overview {
    padding-right: 0;
    padding-left: 0;
  }

  .product-page .industry-switch-detail-inner {
    width: 100%;
    max-width: none;
  }

  body.product-page .industry-scenario[data-scroll-story] .industry-scenario-sticky {
    width: 100%;
    max-width: none;
    padding-right: var(--page-gutter-mobile);
    padding-left: var(--page-gutter-mobile);
    box-sizing: border-box;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .product-hero-content,
  .product-overview-heading,
  .product-overview-grid,
  .product-page .industry-scenario-sticky,
  .product-wide-content,
  .product-devices-content,
  .product-cta-content {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding-right: var(--page-gutter-tablet);
    padding-left: var(--page-gutter-tablet);
    box-sizing: border-box;
  }

  .product-page .industry-switch-detail-inner {
    width: 100%;
    max-width: none;
  }

  body.product-page .industry-scenario[data-scroll-story] .industry-scenario-sticky {
    width: 100%;
    max-width: none;
    padding-right: var(--page-gutter-tablet);
    padding-left: var(--page-gutter-tablet);
    box-sizing: border-box;
  }
}





