* {
  box-sizing: border-box;
}

:root {
  --industry-hero-arc-height: 58.5185%;
  --industry-hero-arc-bleed: clamp(112px, 7.8vw, 180px);
  --solutions-nav-height: 80px;
}

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

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

body.solutions-page a {
  color: inherit;
  text-decoration: none;
}

body.solutions-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.solutions-page .site-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);
}

body.solutions-page .site-nav-logo {
  justify-self: start;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

body.solutions-page .site-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

body.solutions-page .site-nav-links a {
  padding: 30px 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

body.solutions-page .site-nav-links a[aria-current="page"] {
  color: #fff;
}

body.solutions-page .site-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: 17px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
}

.industry-page {
  overflow: visible;
  background: #000;
}

.industry-hero,
.industry-overview-section,
.industry-scenario,
.industry-security,
.industry-cta {
  position: relative;
  overflow: visible;
  background: #000;
}

.industry-hero {
  height: 1080px;
}

.industry-cta-bg {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 0;
  width: 1920px;
  max-width: none;
  height: 1080px;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

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

.industry-hero-bg::before,
.industry-hero-bg::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.industry-hero-bg::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);
}

.industry-hero-bg::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%);
}

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

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

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

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

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

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

.industry-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1273px, calc(100vw - 48px));
  margin: 0 auto;
  padding-top: 200px;
  text-align: center;
}

.industry-hero-copy h1 {
  width: min(780px, 100%);
  margin: 0 auto;
  font-family: var(--font-display-cn);
  font-size: clamp(36px, 4.17vw, 60px);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.industry-hero-copy p {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
}

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

.industry-button {
  display: inline-flex;
  min-width: 120px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  padding: 16px 24px;
  color: #fff;
  font-family: var(--font-body-cn);
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.industry-button-primary:link,
.industry-button-primary:visited {
  color: #fff;
}

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

.industry-button-secondary:link,
.industry-button-secondary:visited {
  color: #fff;
}

.industry-overview-section {
  height: 1129px;
  isolation: isolate;
  --qmen-flow-glow-color: rgba(83, 66, 247, 0.55);
  --qmen-flow-core-color: #5342f7;
  --qmen-flow-glow-blur: 12px;
  --qmen-flow-core-shadow: 0 0 6px rgba(83, 66, 247, 0.85);
  --qmen-flow-glow-width: 14;
  --qmen-flow-core-width: 1.5;
  --qmen-flow-glow-dash: 36;
  --qmen-flow-core-dash: 14;
  --qmen-flow-gap: 1600;
  --qmen-flow-duration: 12s;
}

.industry-overview-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  height: 1016px;
  overflow: hidden;
  background: #000;
  pointer-events: none;
  user-select: none;
}

.industry-overview-bg::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: polygon(0 0, 18.25% 0, 21.85% 3.55%, 78.15% 3.55%, 81.75% 0, 100% 0, 100% 96.46%, 81.75% 96.46%, 78.15% 100%, 21.85% 100%, 18.25% 96.46%, 0 96.46%);
  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);
  content: "";
  pointer-events: none;
}

.industry-overview-bg-arcs {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 18.25% 0, 21.85% 3.55%, 78.15% 3.55%, 81.75% 0, 100% 0, 100% 96.46%, 81.75% 96.46%, 78.15% 100%, 21.85% 100%, 18.25% 96.46%, 0 96.46%);
}

.industry-overview-arc-primary {
  fill: #5342f7;
}

.industry-overview-arc-secondary {
  fill: #9990fb;
}

.industry-overview-arc-tertiary {
  fill: #d1cefe;
}

.industry-overview-inner {
  position: relative;
  z-index: 2;
  width: min(1660px, calc(100vw - 120px));
  height: 100%;
  margin: 0 auto;
  padding-top: 130px;
}

.industry-overview-heading {
  text-align: center;
}

.industry-overview-heading h2 {
  margin: 0;
  font-family: var(--font-display-cn);
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0;
}

.industry-overview-heading p {
  width: min(720px, 100%);
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0;
}

.industry-overview-grid {
  position: relative;
  display: grid;
  width: 100%;
  height: 684px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 280px 404px;
  margin-top: 80px;
  background: transparent;
}

.industry-overview-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.industry-overview-lines path {
  vector-effect: non-scaling-stroke;
}

.industry-overview-flow-rails {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.industry-overview-flow-glow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dashoffset: var(--qmen-line-flow-from, 0);
  animation: industry-overview-rail-flow var(--qmen-line-flow-duration, var(--qmen-flow-duration)) linear infinite;
  animation-delay: var(--qmen-line-flow-delay, 0s);
  will-change: stroke-dashoffset;
}

.industry-overview-flow-glow-bloom {
  stroke: var(--qmen-flow-glow-color);
  stroke-width: var(--qmen-flow-glow-width);
  stroke-dasharray: var(--qmen-flow-glow-dash) var(--qmen-flow-gap);
  filter: blur(var(--qmen-flow-glow-blur));
}

.industry-overview-flow-glow-core {
  stroke: var(--qmen-flow-core-color);
  stroke-width: var(--qmen-flow-core-width);
  stroke-dasharray: var(--qmen-flow-core-dash) var(--qmen-flow-gap);
  filter: drop-shadow(var(--qmen-flow-core-shadow));
}

.industry-overview-flow-path-3 {
  --qmen-line-flow-duration: 12s;
  --qmen-line-flow-delay: -5s;
  --qmen-line-flow-from: 0;
  --qmen-line-flow-to: -1600;
}

.industry-overview-flow-path-4,
.industry-overview-flow-path-5 {
  --qmen-line-flow-duration: 15s;
  --qmen-line-flow-delay: -7s;
  --qmen-line-flow-from: 0;
  --qmen-line-flow-to: -1600;
}

@keyframes industry-overview-rail-flow {
  from {
    stroke-dashoffset: var(--qmen-line-flow-to, -1600);
  }

  to {
    stroke-dashoffset: var(--qmen-line-flow-from, 0);
  }
}

.industry-overview-card {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 44px 42px 32px;
  background: transparent;
}

.industry-overview-card > *,
.industry-overview-card-capability,
.industry-overview-card-capability p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.industry-overview-card-developer {
  grid-column: 1;
  grid-row: 2;
}

.industry-overview-card-security {
  grid-column: 3;
  grid-row: 2;
}

.industry-overview-card h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 26px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0;
}

.industry-overview-card > p {
  max-width: 456px;
  margin: 16px 0 0;
  color: #cccccc;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
}

.industry-overview-card-capability {
  margin-top: 28px;
}

.industry-overview-card-capability h4 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
}

.industry-overview-card-capability p {
  max-width: 456px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0;
}
.industry-solution-flow {
  position: relative;
  overflow: hidden;
  background: #000;
  --industry-solution-flow-container: min(1660px, calc(100vw - 260px));
  --industry-solution-flow-bg-width: 1920px;
  --industry-solution-flow-bg-height: 980px;
  --industry-solution-flow-bg-glass: rgba(19, 20, 22, 0.1);
  --industry-solution-flow-bg-blur: 100px;
  --industry-solution-flow-bg-scale-y: 1;
  --industry-solution-flow-bg-stroke: rgba(255, 255, 255, 0.4);
  --industry-solution-flow-bg-stroke-width: 1;
  --industry-solution-flow-wave-primary: #5342f7;
  --industry-solution-flow-wave-primary-opacity: 1;
  --industry-solution-flow-wave-primary-y: 0px;
  --industry-solution-flow-wave-secondary: #9990fb;
  --industry-solution-flow-wave-secondary-opacity: 1;
  --industry-solution-flow-wave-secondary-y: 0px;
  --industry-solution-flow-wave-light: #d1cefe;
  --industry-solution-flow-wave-light-opacity: 1;
  --industry-solution-flow-wave-light-y: 0px;
  --industry-solution-flow-wave-scale-y: 1;
  --industry-solution-flow-glow-color: rgba(83, 66, 247, 0.55);
  --industry-solution-flow-core-color: #5342f7;
  --industry-solution-flow-glow-blur: 12px;
  --industry-solution-flow-core-shadow: 0 0 6px rgba(83, 66, 247, 0.85);
  --industry-solution-flow-glow-width: 14;
  --industry-solution-flow-core-width: 1.5;
  --industry-solution-flow-glow-dash: 36;
  --industry-solution-flow-core-dash: 14;
  --industry-solution-flow-gap: 1600;
  --industry-solution-flow-duration: 12s;
  --qmen-flow-glow-color: var(--industry-solution-flow-glow-color);
  --qmen-flow-core-color: var(--industry-solution-flow-core-color);
  --qmen-flow-glow-blur: var(--industry-solution-flow-glow-blur);
  --qmen-flow-core-shadow: var(--industry-solution-flow-core-shadow);
  --qmen-flow-glow-width: var(--industry-solution-flow-glow-width);
  --qmen-flow-core-width: var(--industry-solution-flow-core-width);
  --qmen-flow-glow-dash: var(--industry-solution-flow-glow-dash);
  --qmen-flow-core-dash: var(--industry-solution-flow-core-dash);
  --qmen-flow-gap: var(--industry-solution-flow-gap);
  --qmen-flow-duration: var(--industry-solution-flow-duration);
  height: 980px;
  padding: 130px 0;
  isolation: isolate;
}

.industry-scenario-research + .industry-solution-flow-security {
  margin-top: 198px;
}

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

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

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

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

.industry-solution-flow-bg__blur {
  z-index: 2;
  overflow: hidden;
  background: var(--industry-solution-flow-bg-glass);
  -webkit-backdrop-filter: blur(var(--industry-solution-flow-bg-blur));
  backdrop-filter: blur(var(--industry-solution-flow-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");
}

.industry-solution-flow-bg__wave {
  transform-box: fill-box;
  transform-origin: 50% 100%;
}

.industry-solution-flow-bg__wave--primary {
  fill: var(--industry-solution-flow-wave-primary);
  opacity: var(--industry-solution-flow-wave-primary-opacity);
  transform: translateY(var(--industry-solution-flow-wave-primary-y));
}

.industry-solution-flow-bg__wave--secondary {
  fill: var(--industry-solution-flow-wave-secondary);
  opacity: var(--industry-solution-flow-wave-secondary-opacity);
  transform: translateY(var(--industry-solution-flow-wave-secondary-y));
}

.industry-solution-flow-bg__wave--light {
  fill: var(--industry-solution-flow-wave-light);
  opacity: var(--industry-solution-flow-wave-light-opacity);
  transform: translateY(var(--industry-solution-flow-wave-light-y));
}

.industry-solution-flow-bg__stroke {
  z-index: 3;
}

.industry-solution-flow-bg__stroke path {
  fill: none;
  stroke: var(--industry-solution-flow-bg-stroke);
  stroke-width: var(--industry-solution-flow-bg-stroke-width);
  vector-effect: non-scaling-stroke;
}
.industry-solution-flow-security .industry-solution-flow-bg__stroke {
  display: none;
}

.industry-solution-flow-security + .industry-cta::before {
  content: none;
  display: none;
}

.industry-cta::after {
  content: none;
  display: none;
}

.industry-scenario-medical::after,
.industry-scenario-research::before,
.industry-scenario-research::after {
  content: none;
  display: none;
}
.industry-scenario-medical::before {
  content: none;
  display: none;
}

.industry-overview-section .industry-overview-bg::before {
  box-shadow: none;
}


.industry-solution-flow-bg__stroke-flow {
  --qmen-line-flow-duration: 12s;
  --qmen-line-flow-from: 0;
  --qmen-line-flow-to: -1600;
}

.industry-solution-flow-container {
  position: relative;
  z-index: 2;
  width: var(--industry-solution-flow-container);
  margin: 0 auto;
}

.industry-solution-flow-inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.industry-solution-flow-heading {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  word-break: break-word;
}

.industry-solution-flow-kicker {
  margin: 0 0 24px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.industry-solution-flow-heading h2 {
  margin: 0;
  font-family: var(--font-display-cn);
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0;
}

.industry-solution-flow-heading p:not(.industry-solution-flow-kicker) {
  width: 100%;
  margin: 16px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
}

.industry-solution-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.industry-solution-flow-card {
  position: relative;
  min-width: 0;
  height: 360px;
}

.industry-solution-flow-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.industry-solution-flow-frame-border-svg {
  overflow: visible;
}

.industry-solution-flow-frame-border-line,
.industry-solution-flow-frame-border-glow {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.industry-solution-flow-frame-border-line {
  stroke: rgba(209, 206, 254, 0.86);
  stroke-width: 1;
}

.industry-solution-flow-frame-border-glow {
  --industry-solution-flow-line-flow-duration: var(--industry-solution-flow-duration);
  --industry-solution-flow-line-flow-from: 0;
  --industry-solution-flow-line-flow-to: -1600;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dashoffset: var(--industry-solution-flow-line-flow-from, 0);
  animation: industry-solution-flow-line-flow var(--industry-solution-flow-line-flow-duration, var(--industry-solution-flow-duration)) linear infinite;
  animation-delay: var(--industry-solution-flow-line-flow-delay, 0s);
  will-change: stroke-dashoffset;
}

.industry-solution-flow-card:nth-child(4n + 1) .industry-solution-flow-frame-border-glow {
  --industry-solution-flow-line-flow-duration: 9s;
  --industry-solution-flow-line-flow-delay: 0s;
}

.industry-solution-flow-card:nth-child(4n + 2) .industry-solution-flow-frame-border-glow {
  --industry-solution-flow-line-flow-duration: 11s;
  --industry-solution-flow-line-flow-delay: -2s;
}

.industry-solution-flow-card:nth-child(4n + 3) .industry-solution-flow-frame-border-glow {
  --industry-solution-flow-line-flow-duration: 13s;
  --industry-solution-flow-line-flow-delay: -4s;
}

.industry-solution-flow-frame-border-glow-bloom {
  stroke: var(--industry-solution-flow-glow-color);
  stroke-width: var(--industry-solution-flow-glow-width);
  stroke-dasharray: var(--industry-solution-flow-glow-dash) var(--industry-solution-flow-gap);
  opacity: 1;
  filter: blur(var(--industry-solution-flow-glow-blur));
}

.industry-solution-flow-frame-border-glow-core {
  stroke: var(--industry-solution-flow-core-color);
  stroke-width: var(--industry-solution-flow-core-width);
  stroke-dasharray: var(--industry-solution-flow-core-dash) var(--industry-solution-flow-gap);
  opacity: 1;
  filter: drop-shadow(var(--industry-solution-flow-core-shadow));
}

.industry-solution-flow-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 10px;
  padding: 54px 36px 48px;
}

.industry-solution-flow-card h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.industry-solution-flow-card p {
  margin: 0;
  color: #ccc;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
}

.industry-solution-flow-card p span {
  color: #fff;
  font-weight: 700;
}

@keyframes industry-solution-flow-line-flow {
  from {
    stroke-dashoffset: var(--industry-solution-flow-line-flow-to, -1000);
  }

  to {
    stroke-dashoffset: var(--industry-solution-flow-line-flow-from, 0);
  }
}
.industry-scenario {
  height: 886px;
  overflow: visible;
}

.industry-scenario-medical {
  margin-top: 0;
}

.industry-scenario-research {
  height: 845px;
  margin-top: 247px;
}

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

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

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

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

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

.industry-scenario::before,
.industry-scenario::after,
.industry-security::before,
.industry-security::after,
.industry-cta::before,
.industry-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 4;
  width: 1920px;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.industry-scenario::before,
.industry-security::before,
.industry-cta::before {
  top: 0;
}

.industry-scenario::after,
.industry-security::after,
.industry-cta::after {
  bottom: 0;
}

.industry-cta::after {
  content: none;
  display: none;
}

.industry-scenario-bg {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 0;
  width: 1920px;
  max-width: none;
  height: 1173px;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: top center;
  pointer-events: none;
  user-select: none;
}

.industry-scenario-research .industry-scenario-bg {
  top: -193px;
}

.industry-scenario-bg-reverse {
  height: 2017px;
}

.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;
}

.industry-detail-visual-left {
  left: calc((100vw - 1660px) / 2);
  top: 82px;
  transform: scaleX(-1);
  transform-origin: 50% 50%;
}

.industry-detail-visual-left .industry-detail-shot {
  transform: translateY(-50%) scaleX(-1);
}

.industry-detail-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;
}

.industry-detail-visual .industry-detail-shot {
  left: calc((100% - 82.4%) / 2);
  top: 50%;
  right: auto;
  z-index: 3;
  width: 82.4%;
  height: 394px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  transform: translateY(-50%);
}

.industry-detail-visual .industry-detail-shot .switch-visual-current {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-detail-visual-left .industry-detail-shot {
  transform: translateY(-50%) scaleX(-1);
}

.industry-scenario-copy {
  position: absolute;
  top: 300px;
  z-index: 2;
  width: 744px;
  transform: none;
}

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

.industry-scenario-copy-right {
  left: calc((100vw - 1660px) / 2 + 916px);
  top: 233px;
}

.industry-switch-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.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-body-cn);
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  min-width: 0;
  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);
}

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

.industry-switch-trigger span:first-child {
  display: block;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

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

.industry-switch-plus::before,
.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);
}

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

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

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

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

.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);
}

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

.industry-switch-trigger {
  margin: 0;
  font-family: var(--font-body-cn);
  letter-spacing: 0;
}

.industry-switch-detail-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 500;
  line-height: 44px;
}

.industry-combo-block {
  margin-top: 24px;
}

.industry-combo-block h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.industry-combo-block p {
  width: min(560px, 100%);
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.industry-scenario-copy,
.industry-switch-item,
.industry-switch-detail,
.industry-switch-detail-inner,
.industry-combo-block {
  min-width: 0;
}

.industry-switch-detail-inner > p,
.industry-combo-block p {
  white-space: normal;
  overflow-wrap: anywhere;
}

.industry-security {
  height: 844px;
}

.industry-visual-switch {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.industry-visual-switch::before {
  content: "";
  position: absolute;
  left: calc((100vw - 1660px) / 2 + 870px);
  top: 290px;
  z-index: 1;
  width: 560px;
  height: 360px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 54% 52%, rgba(150, 66, 255, 0.7) 0%, rgba(81, 103, 245, 0.35) 36%, rgba(81, 103, 245, 0) 72%);
  filter: blur(24px);
  opacity: 0.72;
  transform: translateZ(0);
}

.industry-visual-switch-left::before {
  left: calc((100vw - 1660px) / 2 + 120px);
  top: 302px;
}

.industry-state-shot {
  position: absolute;
  top: 293px;
  right: calc((100vw - 1660px) / 2);
  z-index: 2;
  display: flex;
  width: 684px;
  height: 451px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.26);
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.industry-state-shot .switch-visual-current {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  transform-origin: 50% 54%;
  transition:
    opacity 620ms ease,
    filter 520ms ease,
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.industry-state-shot .switch-visual-current.is-exiting,
.industry-state-shot .switch-visual-current.is-entering {
  opacity: 0;
  filter: blur(6px);
  transform: scale(0.985);
}

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

.industry-visual-switch-left .industry-state-shot {
  left: calc((100vw - 1660px) / 2 + 60px);
  right: auto;
  width: 684px;
  height: 474px;
}

.industry-state-shot .switch-visual-current {
  border-radius: 20px;
}

.industry-security-inner {
  position: relative;
  z-index: 2;
  width: 1659px;
  height: 844px;
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 160px;
}

.industry-security-heading {
  padding-left: 34px;
}

.industry-security-heading h2 {
  width: 1120px;
  margin: 0;
  font-family: var(--font-display-cn);
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
}

.industry-security-heading p {
  width: 1296px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
}

.industry-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 553px);
  height: 360px;
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.industry-security-card {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(19, 20, 22, 0.18);
}

.industry-security-card:last-child {
  border-right: 0;
}

.industry-security-card h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 26px;
  font-weight: 500;
  line-height: 40px;
}

.industry-security-card p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
}

.industry-security-card .industry-security-fit {
  margin-top: 8px;
  line-height: 28px;
}

.industry-cta {
  height: 980px;
  margin-top: 110px;
}

.industry-cta-bg.industry-line-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  transform: none;
  background: #000;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.industry-line-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: none;
  opacity: 0.68;
}

.industry-cta-bg.industry-line-bg::before,
.industry-cta-bg.industry-line-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.industry-cta-bg.industry-line-bg::before {
  top: 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.84) 48%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.84) 48%, rgba(0, 0, 0, 0) 100%);
}

.industry-cta-bg.industry-line-bg::after {
  bottom: 0;
  height: 300px;
  background:
    radial-gradient(ellipse 32% 86% at 0% 100%, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.56) 46%, rgba(0, 0, 0, 0) 74%),
    radial-gradient(ellipse 32% 86% at 100% 100%, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.56) 46%, rgba(0, 0, 0, 0) 74%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0) 100%);
}

.industry-cta-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 1056px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.industry-cta-copy h2 {
  margin: 0;
  font-family: var(--font-display-cn);
  font-size: 76px;
  font-weight: 700;
  line-height: 116px;
  white-space: nowrap;
}

.industry-cta-copy p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}

.industry-cta .industry-actions {
  margin-top: 52px;
}

.industry-copyright {
  position: absolute;
  left: 60px;
  bottom: 36px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

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

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

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

.industry-footer-section .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;
}

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

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

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

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

.industry-footer-section .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%);
}

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

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

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

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

.industry-footer-section .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%);
}

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

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

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

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

.industry-footer-section .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);
}

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

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

.industry-footer-section .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;
}

.product-reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1680px) {
  .industry-scenario-copy-left {
    left: max(48px, calc((100vw - 1660px) / 2));
  }

  .industry-scenario-copy-right {
    left: max(48px, calc(100vw - 874px));
  }
}

@media (max-width: 1023px) {
  .industry-scenario-medical,
  .industry-scenario-research,
  .industry-scenario-research + .industry-solution-flow-security,
  .industry-cta {
    margin-top: 0;
  }

  body.solutions-page .site-nav {
    padding: 0 28px;
  }

  body.solutions-page .site-nav-links a {
    padding: 30px 14px;
  }

  .industry-hero,
  .industry-overview-section,
  .industry-scenario,
  .industry-security,
  .industry-cta,
  .industry-footer-section {
    height: auto;
    min-height: 760px;
  }

  .industry-hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .industry-hero-copy,
  .industry-overview-inner,
  .industry-cta-copy {
    width: calc(100vw - 48px);
  }

  .industry-overview-section {
    min-height: 0;
  }

  .industry-overview-bg {
    bottom: 0;
    height: auto;
    min-height: 100%;
  }

  .industry-overview-inner {
    height: auto;
    padding: 96px 0;
  }

  .industry-overview-heading p {
    font-size: 20px;
    line-height: 34px;
  }

  .industry-overview-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    margin-top: 56px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: transparent;
  }

  .industry-overview-card,
  .industry-overview-card-developer,
  .industry-overview-card-security {
    grid-column: auto;
    grid-row: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    padding: 32px;
  }

  .industry-overview-card-security {
    border-bottom: 0;
  }

  .industry-overview-lines,
  .industry-overview-flow-rails {
    display: none;
  }

  .industry-hero-copy h1,
  .industry-cta-copy h2 {
    width: auto;
    white-space: normal;
  }

  .industry-scenario-copy-left,
  .industry-scenario-copy-right {
    position: relative;
    left: auto;
    top: auto;
    width: min(744px, calc(100vw - 48px));
    margin-left: 48px;
    padding: 160px 0 96px;
    transform: none;
  }

  .industry-security-inner {
    width: calc(100vw - 48px);
    height: auto;
    padding: 96px 0;
  }

  .industry-security-heading,
  .industry-security-heading h2,
  .industry-security-heading p {
    width: auto;
    padding-left: 0;
  }

  .industry-security-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .industry-security-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  .industry-security-card:last-child {
    border-bottom: 0;
  }

  .industry-footer-section {
    min-height: 980px;
    padding: 280px 24px 80px;
  }

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

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

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

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

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

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

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

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

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

}

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

  body.solutions-page .site-nav-links {
    grid-column: 1 / -1;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .industry-hero-copy {
    padding-top: 180px;
  }

  .industry-hero-copy h1 {
    font-size: 36px;
    line-height: 50px;
  }

  .industry-hero-copy p,
  .industry-overview-heading p,
  .industry-security-heading p,
  .industry-cta-copy p {
    font-size: 16px;
    line-height: 30px;
  }

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

  .industry-overview-inner {
    padding: 84px 0;
  }

  .industry-overview-heading h2 {
    font-size: 32px;
    line-height: 46px;
  }

  .industry-overview-grid {
    margin-top: 40px;
  }

  .industry-overview-card,
  .industry-overview-card-developer,
  .industry-overview-card-security {
    padding: 28px 24px;
  }

  .industry-overview-card h3 {
    font-size: 24px;
    line-height: 34px;
  }

  .industry-overview-card > p {
    font-size: 16px;
    line-height: 30px;
  }

  .industry-scenario-copy-left,
  .industry-scenario-copy-right {
    margin-left: 24px;
    width: calc(100vw - 48px);
  }

  .industry-switch-trigger {
    font-size: 26px;
    line-height: 36px;
  }

  .industry-switch-detail-inner > p {
    font-size: 16px;
    line-height: 32px;
  }

  .industry-combo-block p {
    width: auto;
  }

  .industry-security-heading h2 {
    font-size: 30px;
    line-height: 44px;
  }

  .industry-cta-copy {
    width: calc(100vw - 48px);
  }

  .industry-cta-copy h2 {
    font-size: 38px;
    line-height: 56px;
  }

  .industry-copyright {
    left: 24px;
    right: 24px;
    text-align: center;
  }

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

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

@media (max-width: 1440px) {
  .industry-solution-flow {
    --industry-solution-flow-container: min(1180px, calc(100vw - 96px));
    --industry-solution-flow-bg-scale-y: 1.2;
    height: auto;
    min-height: 900px;
  }

  .industry-solution-flow-heading p:not(.industry-solution-flow-kicker) {
    font-size: 21px;
    line-height: 38px;
  }

  .industry-solution-flow-card {
    height: 390px;
  }

  .industry-solution-flow-card-content {
    padding: 46px 28px 40px;
  }

  .industry-solution-flow-card p {
    font-size: 14px;
    line-height: 26px;
  }
}

@media (max-width: 1023px) {
  .industry-scenario {
    height: auto;
    min-height: 0;
    padding: 96px 0;
    overflow: visible;
  }

  .industry-scenario-medical {
    padding-bottom: 0;
  }

  .industry-scenario-research {
    padding-top: 0;
  }

  .industry-scenario-research[data-scroll-story] {
    height: auto;
    min-height: 0;
  }

  .industry-scenario-medical[data-scroll-story],
  .industry-scenario-research[data-scroll-story] {
    height: auto;
    min-height: 0;
  }

  .industry-scenario[data-scroll-story] .industry-scenario-sticky {
    position: relative;
    top: auto;
    display: grid;
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .industry-scenario[data-scroll-story] .industry-detail-visual {
    position: relative;
    left: auto;
    top: auto;
    order: 1;
    width: min(100% - 48px, 760px);
    height: auto;
    aspect-ratio: 830 / 801;
    margin: 0 auto;
    transform: none;
  }

  .industry-detail-visual-left {
    transform: none;
  }

  .industry-detail-visual qmen-glass-visual {
    left: -52.65%;
    top: -35.75%;
    width: 170.36%;
    height: auto;
    --qgv-width: 100%;
  }

  .industry-detail-visual .industry-detail-shot {
    left: calc((100% - 82.4%) / 2);
    top: 50%;
    width: 82.4%;
    height: auto;
    box-sizing: border-box;
    padding: clamp(4px, 1.2vw, 10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: clamp(12px, 3.6vw, 30px);
    aspect-ratio: 684 / 394;
    background: rgba(255, 255, 255, 0.26);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transform: translateY(-50%);
  }

  .industry-detail-visual .industry-detail-shot .switch-visual-current {
    width: 100%;
    height: 100%;
    border-radius: clamp(8px, 2.4vw, 20px);
    object-fit: cover;
  }

  .industry-scenario-copy-left,
  .industry-scenario-copy-right {
    position: relative;
    left: auto;
    top: auto;
    order: 2;
    width: min(744px, calc(100vw - 48px));
    margin: 0 auto;
    padding-top: 0;
    transform: none;
  }

  .industry-scenario-research .industry-scenario-copy-right {
    margin-top: 0;
  }

  .industry-solution-flow {
    --industry-solution-flow-container: min(920px, calc(100vw - 64px));
    --industry-solution-flow-bg-scale-y: 1.35;
    height: auto;
    min-height: 860px;
  }

  .industry-solution-flow-grid {
    grid-template-columns: 1fr;
  }

  .industry-solution-flow-card {
    width: min(100%, 640px);
    height: 336px;
    margin: 0 auto;
  }

  .industry-solution-flow-card-content {
    padding: 54px 40px 42px;
  }

  .industry-solution-flow-card p {
    font-size: 15px;
    line-height: 28px;
  }
}

@media (max-width: 900px) {
  .industry-solution-flow {
    --industry-solution-flow-container: min(100% - 40px, 680px);
    --industry-solution-flow-bg-scale-y: 1.65;
    padding: 96px 0;
  }

  .industry-solution-flow-heading h2 {
    font-size: clamp(30px, 7vw, 40px);
    line-height: 1.35;
  }

  .industry-solution-flow-heading p:not(.industry-solution-flow-kicker) {
    font-size: 18px;
    line-height: 34px;
  }

  .industry-solution-flow-inner {
    gap: 56px;
  }

  .industry-solution-flow-grid {
    gap: 40px;
  }

  .industry-solution-flow-card {
    height: auto;
    min-height: 0;
    aspect-ratio: 532 / 360;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .industry-solution-flow-frame {
    display: block;
  }

  .industry-solution-flow-card-content {
    padding: 44px 32px;
  }
}

@media (max-width: 560px) {
  .industry-solution-flow {
    --industry-solution-flow-container: calc(100vw - 32px);
  }

  .industry-solution-flow-grid {
    justify-items: center;
  }

  .industry-solution-flow-card {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .industry-solution-flow-frame {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .industry-solution-flow-card-content {
    justify-content: center;
    padding: 36px 28px;
  }

  .industry-solution-flow-card p {
    font-size: 14px;
    line-height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-switch-trigger,
  .industry-switch-plus,
  .industry-switch-detail,
  .industry-state-shot {
    transition-duration: 1ms;
  }

  .industry-solution-flow-frame-border-glow,
  .industry-solution-flow-bg__stroke-flow,
  .industry-overview-flow-glow {
    animation: none;
    will-change: auto;
  }
}

/* Responsive layout corrections: keep decorative bleed isolated from content. */
@media (min-width: 1024px) and (max-width: 1440px) {
  .industry-overview-inner,
  .industry-solution-flow-container {
    width: min(100% - 96px, 1320px);
  }

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

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

  .industry-detail-visual {
    width: min(54vw, 760px);
    max-width: calc(100% - 96px);
    aspect-ratio: 830 / 800;
  }

  .industry-scenario-medical .industry-detail-visual {
    right: 48px;
    left: auto;
  }

  .industry-scenario-research .industry-detail-visual-left {
    right: auto;
    left: 48px;
  }

  .industry-scenario-copy {
    top: clamp(190px, 28vh, 260px);
    width: min(54vw, 700px);
    min-width: 0;
  }

  .industry-scenario-copy-left {
    left: 48px;
  }

  .industry-scenario-copy-right {
    right: 48px;
    left: auto;
  }

  .industry-scenario-copy::before {
    position: absolute;
    inset: -24px -36px;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0) 72%);
    pointer-events: none;
    content: "";
  }

  .industry-scenario-copy-left::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.84) 72%, rgba(0, 0, 0, 0) 100%);
  }

  .industry-scenario-copy-right::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.84) 28%, rgba(0, 0, 0, 0.94) 100%);
  }

  .industry-solution-flow {
    --industry-solution-flow-container: min(100% - 96px, 1320px);
    min-height: 790px;
  }

  .industry-solution-flow-grid {
    --security-group-scale: calc((100vw - 96px) / 1660px);
    width: 1660px;
    height: 360px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    transform: scale(var(--security-group-scale));
    transform-origin: top left;
    margin-bottom: calc((var(--security-group-scale) - 1) * 360px);
  }

  .industry-solution-flow-card {
    height: 360px;
  }

  .industry-solution-flow-card-content {
    padding: 54px 36px 48px;
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .industry-overview-section {
    height: auto;
    min-height: 0;
  }

  .industry-overview-bg {
    bottom: 0;
    height: auto;
    min-height: 100%;
  }

  .industry-overview-inner {
    height: auto;
    padding: 100px 0;
  }

  .industry-overview-grid {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 0;
    background: transparent;
  }

  .industry-overview-card,
  .industry-overview-card-developer,
  .industry-overview-card-security {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
    background: transparent;
    padding: 34px 32px;
  }

  .industry-overview-card:nth-of-type(-n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .industry-overview-card:nth-of-type(1),
  .industry-overview-card:nth-of-type(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }

  .industry-overview-card-security {
    grid-column: 1 / -1;
  }

  .industry-overview-lines,
  .industry-overview-flow-rails {
    display: none;
  }
}

@media (max-width: 1023px) {
  .industry-page,
  .industry-scenario-sticky,
  .industry-scenario-copy,
  .industry-detail-visual,
  .industry-switch-trigger,
  .industry-solution-flow-container,
  .industry-solution-flow-grid,
  .industry-solution-flow-card {
    min-width: 0;
  }

  .industry-scenario {
    overflow: visible;
  }

  .industry-scenario-sticky {
    width: min(100% - 48px, 920px);
    margin-inline: auto;
  }

  .industry-scenario-copy-left,
  .industry-scenario-copy-right {
    width: 100%;
  }

  .industry-detail-visual {
    width: min(100%, 760px);
  }

  .industry-switch-trigger {
    gap: 24px;
  }

  .industry-switch-trigger span:first-child {
    flex: 1 1 auto;
  }
}

@media (max-width: 767px) {
  .industry-hero-copy,
  .industry-overview-inner,
  .industry-scenario-sticky,
  .industry-solution-flow-container,
  .industry-cta-copy {
    width: min(100% - 32px, 680px);
  }

  .industry-hero-copy {
    padding-top: 150px;
  }

  .industry-hero-copy p {
    overflow-wrap: anywhere;
  }

  .industry-actions {
    width: 100%;
  }

  .industry-button {
    max-width: 100%;
  }

  .industry-overview-card,
  .industry-overview-card-developer,
  .industry-overview-card-security {
    padding: 26px 20px;
  }

  .industry-switch-trigger {
    gap: 16px;
    font-size: clamp(22px, 7vw, 26px);
  }

  .industry-switch-plus {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .industry-detail-visual qmen-glass-visual {
    overflow: visible;
  }

  .industry-cta-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
}

/* Responsively-compatible laptop layout: avoid CSS unit division in scale(). */
@media (min-width: 1024px) and (max-width: 1440px) {
  .industry-detail-visual {
    width: min(700px, calc(50vw - 36px));
  }

  .industry-detail-visual .industry-detail-shot {
    height: auto;
    aspect-ratio: 684 / 394;
  }

  .industry-scenario-copy {
    width: min(620px, calc(44vw - 24px));
    isolation: auto;
  }

  .industry-scenario-copy::before,
  .industry-scenario-copy-left::before,
  .industry-scenario-copy-right::before {
    content: none;
    display: none;
  }

  .industry-solution-flow-grid {
    width: 100%;
    height: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 1.93vw, 32px);
    margin-bottom: 0;
    transform: none;
  }

  .industry-solution-flow-card {
    width: auto;
    height: auto;
    aspect-ratio: 532 / 360;
  }

  .industry-solution-flow-card-content {
    padding: clamp(34px, 3vw, 46px) clamp(24px, 2.3vw, 32px) 32px;
  }
}

/* Keep every horizontal industry scenario vertically centered at desktop widths. */
@media (min-width: 1024px) {
  .industry-scenario[data-scroll-story] .industry-scenario-sticky,
  .industry-detail-visual {
    overflow: visible;
  }

  .industry-scenario[data-scroll-story] .industry-detail-visual,
  .industry-scenario-copy {
    top: 50%;
    transform: translateY(-50%);
  }

  .industry-detail-visual-left {
    transform: translateY(-50%);
  }

  .industry-detail-visual-left qmen-glass-visual {
    transform: scaleX(-1);
    transform-origin: 60.2546% 50%;
  }

  .industry-detail-visual-left .industry-detail-shot {
    transform: translateY(-50%);
  }
}

/* Responsive footer spacing; preserve the 1920px artboard positions. */
@media (min-width: 1024px) and (max-width: 1440px) {
  .industry-footer-section .about-footer-columns {
    left: 430px;
    right: 326px;
    width: auto;
    transform: none;
  }
}

@media (max-width: 767px) {
  body.solutions-page .industry-hero-copy,
  body.solutions-page .industry-overview-inner,
  body.solutions-page .industry-scenario-sticky,
  body.solutions-page .industry-cta-copy {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding-right: var(--page-gutter-mobile);
    padding-left: var(--page-gutter-mobile);
    box-sizing: border-box;
  }

  body.solutions-page .industry-scenario-copy-left,
  body.solutions-page .industry-scenario-copy-right,
  body.solutions-page .industry-switch-detail-inner {
    width: 100%;
    margin-left: 0;
  }

  body.solutions-page .industry-solution-flow {
    padding-right: var(--page-gutter-mobile);
    padding-left: var(--page-gutter-mobile);
  }

  body.solutions-page .industry-solution-flow-container {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }
}

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

  body.solutions-page .industry-scenario-copy-left,
  body.solutions-page .industry-scenario-copy-right,
  body.solutions-page .industry-switch-detail-inner {
    width: 100%;
    margin-left: 0;
  }

  body.solutions-page .industry-solution-flow {
    padding-right: var(--page-gutter-tablet);
    padding-left: var(--page-gutter-tablet);
  }

  body.solutions-page .industry-solution-flow-container {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }
}
