:root {
  color-scheme: dark;
  --about-width: 1920;
  --about-container: min(1660px, calc(100vw - 260px));
  --about-page-x: clamp(40px, 6.7708vw, 130px);
  --about-hero-arc-height: 58.5185%;
  --about-hero-arc-bleed: clamp(112px, 7.8vw, 180px);
  --about-purple: #5342f7;
  --about-lavender: #d1cefe;
  --about-body: #fff;
  --about-muted: #ccc;
  --about-dim: #e6e6e6;
  --about-gradient: linear-gradient(90deg, #5342f7 0%, #d1cefe 100%);
  --gradient-reveal-fill: var(--about-gradient);
  --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;
  --about-font-body: var(--font-body-cn);
  --about-font-display: var(--font-display-cn);
}

* {
  box-sizing: border-box;
}

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

body.about-page {
  min-height: 100vh;
  color: var(--about-body);
  font-family: var(--about-font-body);
  background: #000;
  text-rendering: geometricPrecision;
}

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

body.about-page img {
  display: block;
}

.about-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  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);
}

.about-logo {
  justify-self: start;
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  white-space: nowrap;
}

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

.about-nav-links a {
  padding: 30px 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

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

.about-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);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
}

.about-main {
  position: relative;
  overflow: visible;
  background: #000;
}

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

.about-hero,
.about-position,
.about-split-section,
.about-tech,
.about-experience,
.about-identity,
.about-cta,
.about-footer-section {
  position: relative;
  overflow: hidden;
  background: #000;
}

.about-hero {
  height: 100vh;
  height: 100dvh;
  padding-top: 200px;
}

.about-hero::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-hero-arcs {
  position: absolute;
  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;
  pointer-events: none;
}

.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-section-bg,
.about-experience-bg,
.about-cta-bg {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 0;
  width: 1920px;
  max-width: none;
  height: 100%;
  transform: translateX(-50%);
  object-fit: fill;
  pointer-events: none;
  user-select: none;
}

.about-hero::after,
.about-position::before,
.about-tech::before,
.about-identity::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.about-hero::after {
  z-index: 1;
  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-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1273px, calc(100vw - 48px));
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}

.about-hero-copy h1,
.about-section-copy h2,
.about-identity-copy h2,
.about-cta-copy h2 {
  margin: 0;
  background: var(--about-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--about-font-display);
  font-weight: 700;
}

.about-hero-copy h1 {
  font-size: 60px;
  line-height: 80px;
  white-space: nowrap;
}

.about-hero-copy p {
  width: 100%;
  margin: -16px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
}

.about-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-button,
.about-pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  white-space: nowrap;
}

.about-button {
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.about-button-primary {
  border-color: #5946cf;
  background: rgba(89, 70, 207, 0.6);
}

.about-button-gradient {
  border-color: #5342f7;
  background: linear-gradient(0deg, rgba(83, 66, 247, 0.4) 0%, rgba(45, 36, 105, 0) 100%);
}

.about-button-secondary,
.about-pill {
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.2);
}

.about-pill {
  padding: 16px 24px;
  border-radius: 33px;
}

.about-position {
  height: 1090px;
  margin-top: 0;
  overflow: visible;
}

.about-main .about-position {
  overflow: visible;
}

.about-position::before {
  background: linear-gradient(180deg, #000 0%, #03030a 42%, #000 100%);
}

.about-position-inner {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 680px) minmax(640px, 830px);
  align-items: center;
  justify-content: center;
  gap: 110px;
}

.about-section-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  word-break: break-word;
}

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

.about-section-copy h2 {
  font-size: 40px;
  line-height: 60px;
}

.about-position-copy h2 {
  font-size: 30px;
  line-height: 40px;
  white-space: nowrap;
}

.about-section-copy p:not(.about-kicker) {
  margin: 24px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
}

.about-position-copy p:not(.about-kicker) {
  color: var(--about-dim);
  font-size: 20px;
  line-height: 44px;
}

.about-position-visual {
  position: relative;
  isolation: isolate;
  width: min(830px, 100%);
  max-width: 100%;
  height: auto;
  aspect-ratio: 830 / 800;
  margin-right: 0;
  justify-self: center;
  transform: translateY(46px);
}

.about-position-glass-visual {
  position: absolute;
  left: -52.65%;
  top: -35.75%;
  z-index: 2;
  width: 170.36%;
  aspect-ratio: 1414 / 1086;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.about-position-glass-visual qmen-glass-visual {
  display: block;
  width: 100%;
  height: 100%;
  --qgv-width: 100%;
  --qgv-background: transparent;
  --qgv-root-glow: none;
  --qgv-glass-blur: 100px;
}

.about-product-shot {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: flex;
  width: min(684px, 82.41%);
  height: auto;
  aspect-ratio: 684 / 394;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, -50%);
}

.about-product-shot img {
  display: block;
  width: 100%;
  height: 100%;
  /* The SVG already owns its rounded clipping and inset stroke. Avoid a
     second, identical radius here, which clips the stroke's antialiasing. */
  border-radius: 0;
  object-fit: contain;
}

.about-split-section {
  height: 1960px;
}

.about-why {
  height: auto;
  min-height: 100vh;
  padding: 0;
  overflow: visible;
  isolation: isolate;
}

.about-line-section,
.northline-mask-shell {
  isolation: isolate;
}

.line-pattern-bg,
.northline-mask-background {
  --northline-mask-line-rgb: 255, 255, 255;
  --northline-mask-cell-size: 60;
  --northline-mask-source-width: 1920;
  --northline-mask-stroke-opacity: 0.2;
  --northline-mask-stroke-width: 1;
  --northline-mask-dot-opacity: 0.2;
  --northline-ripple-base-opacity: 0.01;
  --northline-ripple-ring-opacity: 0.82;
  --northline-ripple-core-opacity: 0.12;
  --northline-ripple-duration: 12000;
  --northline-ripple-interval: 4800;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  margin-bottom: -100vh;
  overflow: hidden;
  background: #000;
  contain: paint;
  backface-visibility: hidden;
  pointer-events: none;
}

.northline-mask-background,
.northline-mask-background * {
  pointer-events: none;
}

.about-line-content,
.northline-mask-content {
  position: relative;
  z-index: 2;
}

@supports (height: 100dvh) {
  .line-pattern-bg,
  .northline-mask-background {
    height: 100dvh;
    margin-bottom: -100dvh;
  }
}

.about-grid-video-bg {
  background: #000;
}

.northline-background__grid-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

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

.about-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 710px) minmax(620px, 830px);
  gap: clamp(72px, 6.2vw, 120px);
  align-items: start;
  padding: 120px 0 160px;
}

.about-why-left {
  position: relative;
  min-width: 0;
  align-self: stretch;
}

.about-why-sticky {
  position: sticky;
  top: 120px;
  max-width: 712px;
  padding-top: 0;
}

.about-card-stack.about-why-right {
  width: min(830px, 100%);
  justify-self: end;
  gap: 96px;
  padding-bottom: 120px;
}

.about-notch-card.about-why-card {
  width: 100%;
}

.about-belief {
  height: auto;
  min-height: 100vh;
  padding: 0;
  overflow: visible;
  isolation: isolate;
}

.about-belief-layout {
  display: grid;
  grid-template-columns: minmax(620px, 830px) minmax(0, 710px);
  gap: clamp(56px, 3.125vw, 60px);
  align-items: start;
  padding: 120px 0 160px;
}

.about-card-stack.about-belief-left {
  width: min(830px, 100%);
  gap: 96px;
  padding-bottom: 120px;
}

.about-notch-card.about-belief-card {
  width: 100%;
}

.about-belief-right {
  position: relative;
  min-width: 0;
  align-self: stretch;
}

.about-belief-sticky {
  position: sticky;
  top: 120px;
  max-width: 712px;
  padding-top: 0;
}

.about-split-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 830px;
  gap: 118px;
  align-items: start;
}

.about-belief .about-split-inner {
  grid-template-columns: 830px minmax(0, 1fr);
  gap: 60px;
}

.about-split-copy {
  padding-top: 24px;
}

.about-split-copy-left {
  max-width: 712px;
}

.about-split-copy-right {
  max-width: 770px;
}

.about-card-stack {
  display: flex;
  width: 830px;
  flex-direction: column;
  gap: 80px;
}

.about-notch-card {
  position: relative;
  width: 830px;
  height: 520px;
  overflow: visible;
}

.about-notch-frame,
.about-tech-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.frame-border-svg {
  overflow: visible;
}

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

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

.qmen-flow-glow-path,
.frame-border-glow,
.about-identity .qmen-flow-light-bg .flow-glow,
.about-identity .qmen-flow-light-bg .flow-core {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dashoffset: var(--qmen-line-flow-from, 0);
  animation: qmen-line-flow var(--qmen-line-flow-duration, var(--qmen-flow-duration)) linear infinite;
  animation-delay: var(--qmen-line-flow-delay, 0s);
  will-change: stroke-dashoffset;
}

.frame-border-glow {
  --qmen-line-flow-duration: var(--qmen-flow-duration);
  --qmen-line-flow-from: 0;
  --qmen-line-flow-to: -1600;
}

.about-notch-card:nth-child(4n + 1) .frame-border-glow,
.about-tech-card:nth-child(4n + 1) .frame-border-glow {
  --qmen-line-flow-duration: 9s;
  --qmen-line-flow-delay: 0s;
}

.about-notch-card:nth-child(4n + 2) .frame-border-glow,
.about-tech-card:nth-child(4n + 2) .frame-border-glow {
  --qmen-line-flow-duration: 11s;
  --qmen-line-flow-delay: -2s;
}

.about-notch-card:nth-child(4n + 3) .frame-border-glow,
.about-tech-card:nth-child(4n + 3) .frame-border-glow {
  --qmen-line-flow-duration: 13s;
  --qmen-line-flow-delay: -4s;
}

.about-notch-card:nth-child(4n + 4) .frame-border-glow,
.about-tech-card:nth-child(4n + 4) .frame-border-glow {
  --qmen-line-flow-duration: 15s;
  --qmen-line-flow-delay: -6s;
}

.qmen-flow-glow,
.frame-border-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);
  opacity: 1;
  filter: blur(var(--qmen-flow-glow-blur));
}

.qmen-flow-glow-core,
.frame-border-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);
  opacity: 1;
  filter: drop-shadow(var(--qmen-flow-core-shadow));
}

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

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

.about-notch-card::before {
  content: none;
}

.about-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 80px;
}

.about-notch-card-tall .about-card-content {
  justify-content: center;
}

.about-card-content h3 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
}

.about-card-content p {
  margin: 0;
  color: var(--about-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 38px;
}

.about-tech {
  --about-tech-bg-width: 1920px;
  --about-tech-bg-height: 980px;
  --about-tech-bg-glass: rgba(19, 20, 22, 0.1);
  --about-tech-bg-blur: 100px;
  --about-tech-bg-scale-y: 1;
  --about-tech-bg-stroke: rgba(255, 255, 255, 0.4);
  --about-tech-bg-stroke-width: 1;
  --about-tech-wave-primary: #5342f7;
  --about-tech-wave-primary-opacity: 1;
  --about-tech-wave-primary-y: 0px;
  --about-tech-wave-secondary: #9990fb;
  --about-tech-wave-secondary-opacity: 1;
  --about-tech-wave-secondary-y: 0px;
  --about-tech-wave-light: #d1cefe;
  --about-tech-wave-light-opacity: 1;
  --about-tech-wave-light-y: 0px;
  --about-tech-wave-scale-y: 1;
  height: 980px;
  padding: 160px 0;
  isolation: isolate;
}

.about-tech::before {
  content: none;
}

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

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

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

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

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

.about-tech-bg__wave {
  transform-box: fill-box;
  transform-origin: 50% 100%;
}

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

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

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

.about-tech-bg__stroke {
  z-index: 3;
}

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

.about-tech-inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-tech-heading {
  width: 100%;
}

.about-tech-heading p:not(.about-kicker) {
  width: 100%;
  margin-top: 16px;
}

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

.about-tech-card {
  position: relative;
  min-width: 0;
  height: 306px;
}

.about-tech-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 40px;
}

.about-tech-card h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
}

.about-tech-card p {
  margin: 0;
  color: var(--about-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 38px;
}

.about-experience {
  height: 662px;
  padding: 160px 0;
}

.about-experience-bg {
  height: 662px;
}

.about-ripple-bg.northline-mask-background {
  position: absolute;
  left: 50%;
  top: 0;
  right: auto;
  z-index: 0;
  width: 1920px;
  max-width: none;
  height: 100%;
  margin-bottom: 0;
  transform: translateX(-50%);
}

.about-experience-copy {
  width: 100%;
}

.about-experience-copy p:not(.about-kicker) {
  margin-top: 16px;
}

.about-identity {
  height: 692px;
  overflow: visible;
  padding: 160px 0;
}

.about-identity .qmen-flow-light-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
  user-select: none;
}

.about-identity .qmen-flow-light-bg svg {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  display: block;
  width: max(100%, 1920px);
  height: auto;
  aspect-ratio: 1920 / 1226;
  max-width: none;
  transform: translate(-50%, calc(-50% + 224px));
  overflow: visible;
}

.about-identity .qmen-flow-light-bg path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.about-identity .qmen-flow-light-bg .base-line {
  stroke: rgba(209, 206, 254, 0.4);
  stroke-width: 1;
}

.about-identity .qmen-flow-light-bg .flow-glow,
.about-identity .qmen-flow-light-bg .flow-core {
  --qmen-line-flow-from: 0;
  --qmen-line-flow-to: -1600;
}

.about-identity .qmen-flow-light-bg .flow-glow {
  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));
}

.about-identity .qmen-flow-light-bg .flow-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));
}

.about-identity .qmen-flow-light-bg .flow-path-1 {
  --qmen-line-flow-duration: 9s;
  --qmen-line-flow-delay: 0s;
  --qmen-line-flow-rest-offset: -180;
}

.about-identity .qmen-flow-light-bg .flow-path-2 {
  --qmen-line-flow-duration: 11s;
  --qmen-line-flow-delay: -2s;
  --qmen-line-flow-rest-offset: -520;
}

.about-identity .qmen-flow-light-bg .flow-path-3 {
  --qmen-line-flow-duration: 13s;
  --qmen-line-flow-delay: -4s;
  --qmen-line-flow-rest-offset: -820;
}

.about-identity .qmen-flow-light-bg .flow-path-4 {
  --qmen-line-flow-duration: 15s;
  --qmen-line-flow-delay: -6s;
  --qmen-line-flow-rest-offset: -1160;
}

.about-identity-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  text-align: center;
}

.about-identity-copy h2 {
  font-size: 76px;
  line-height: 116px;
  white-space: nowrap;
}

.about-identity-copy p {
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
}

.about-cta {
  height: 1060px;
  overflow: visible;
  padding-top: 380px;
}

.about-cta-bg {
  width: 2000px;
  height: 100%;
}

.about-cta-bg.about-ripple-bg {
  --northline-mask-source-width: 2000;
  --northline-mask-offset-x: 40;
  --northline-mask-offset-y: 40;
}

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

/* Only soften the line-pattern edges here; the preserved 60px grid itself is unchanged. */
.about-cta-bg::before {
  top: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.64) 42%, 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.82) 48%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.82) 48%, rgba(0, 0, 0, 0) 100%);
}

.about-cta-bg::after {
  bottom: 0;
  height: 260px;
  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.48) 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%);
}

.about-cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}

.about-cta-copy h2 {
  margin: 0;
  font-size: 76px;
  line-height: 116px;
  white-space: nowrap;
}

.about-cta-copy p {
  margin: -32px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}

.about-footer-section {
  height: 980px;
  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-footer-home-bg-overlay {
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-footer-home-bg-overlay {
  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%);
}

.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: 1680px) {
  :root {
    --about-container: min(1660px, calc(100vw - 160px));
    --about-page-x: 80px;
  }

  .about-split-inner {
    gap: 70px;
  }

  .about-position-inner {
    grid-template-columns: minmax(0, 640px) minmax(520px, 760px);
    gap: 80px;
  }

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

  .about-cta-copy h2 {
    font-size: 64px;
    line-height: 96px;
  }
}

@media (max-width: 1440px) {
  :root {
    --about-container: min(1180px, calc(100vw - 96px));
  }

  .about-nav {
    padding: 0 40px;
  }

  .about-nav-links a {
    padding: 30px 22px;
  }

  .about-hero {
    height: 100vh;
    height: 100dvh;
    padding-top: 180px;
  }

  .about-hero-copy h1 {
    font-size: 52px;
    line-height: 70px;
  }

  .about-hero-copy p,
  .about-section-copy p:not(.about-kicker),
  .about-identity-copy p,
  .about-cta-copy p {
    font-size: 21px;
    line-height: 38px;
  }

  .about-position {
    height: 920px;
  }

  .about-position-inner {
    grid-template-columns: minmax(0, 520px) minmax(420px, 620px);
    gap: 36px;
  }

  .about-position-copy h2 {
    white-space: normal;
  }

  .about-position-copy p:not(.about-kicker) {
    font-size: 18px;
    line-height: 38px;
  }

  .about-position-visual {
    width: min(620px, 100%);
    transform: none;
  }

  .about-split-section {
    height: auto;
    min-height: 1740px;
    padding-bottom: 120px;
  }

  .about-why {
    min-height: 100vh;
    padding: 0;
  }

  .about-why-layout {
    grid-template-columns: minmax(0, 520px) minmax(460px, 620px);
    gap: 56px;
    padding: 116px 0 148px;
  }

  .about-why-sticky {
    top: 112px;
  }

  .about-card-stack.about-why-right {
    width: 100%;
    gap: 72px;
    padding-bottom: 96px;
  }

  .about-belief {
    min-height: 100vh;
    padding: 0;
  }

  .about-belief-layout {
    grid-template-columns: minmax(460px, 620px) minmax(0, 520px);
    gap: 56px;
    padding: 116px 0 148px;
  }

  .about-belief-sticky {
    top: 112px;
  }

  .about-card-stack.about-belief-left {
    width: 100%;
    gap: 72px;
    padding-bottom: 96px;
  }

  .about-split-inner,
  .about-belief .about-split-inner {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 620px);
    gap: 56px;
  }

  .about-belief .about-split-inner {
    grid-template-columns: minmax(460px, 620px) minmax(0, 1fr);
  }

  .about-card-stack,
  .about-notch-card {
    width: 100%;
  }

  .about-notch-card {
    height: 440px;
  }

  .about-card-content {
    padding: 64px;
  }

  .about-card-content h3 {
    font-size: 26px;
    line-height: 36px;
  }

  .about-card-content p,
  .about-tech-card p {
    font-size: 16px;
    line-height: 32px;
  }

  .about-tech {
    --about-tech-bg-scale-y: 1.35;
    height: auto;
    min-height: 860px;
  }

  .about-tech-card-content {
    padding: 28px 32px;
  }

  .about-tech-card {
    height: 250px;
  }

  .about-identity-copy h2,
  .about-cta-copy h2 {
    font-size: 56px;
    line-height: 82px;
  }

  .about-footer-columns {
    left: 54%;
    width: 560px;
  }
}

@media (max-width: 1023px) {
  :root {
    --about-container: min(920px, calc(100vw - 64px));
  }

  .about-nav {
    height: 72px;
    padding: 0 28px;
  }

  .about-nav-links a {
    padding: 26px 14px;
    font-size: 13px;
  }

  .about-hero-copy h1 {
    font-size: 44px;
    line-height: 60px;
    white-space: normal;
  }

  .about-hero-copy p {
    width: min(880px, 100%);
  }

  .about-position {
    height: auto;
    min-height: 1100px;
    padding: 120px 0 80px;
  }

  .about-position-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .about-position-copy {
    width: 100%;
  }

  .about-position-visual {
    width: min(100%, 760px);
    aspect-ratio: 830 / 800;
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }

  .about-product-shot {
    left: 50%;
    top: 50%;
    width: min(684px, 82.41%);
    height: auto;
  }

  .about-split-inner,
  .about-belief .about-split-inner {
    display: flex;
    flex-direction: column;
  }

  .about-why {
    min-height: 0;
    padding: 0;
  }

  .about-why-layout {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 104px 0 120px;
  }

  .about-why-left {
    align-self: auto;
  }

  .about-why-sticky {
    position: relative;
    top: auto;
    max-width: 100%;
  }

  .about-card-stack.about-why-right {
    width: 100%;
    gap: 56px;
    padding-bottom: 0;
  }

  .about-belief {
    min-height: 0;
    padding: 0;
  }

  .about-belief-layout {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 104px 0 120px;
  }

  .about-card-stack.about-belief-left {
    order: 2;
    width: 100%;
    gap: 56px;
    padding-bottom: 0;
  }

  .about-belief-right {
    order: 1;
    align-self: auto;
  }

  .about-belief-sticky {
    position: relative;
    top: auto;
    max-width: 100%;
  }

  .about-split-copy-left,
  .about-split-copy-right {
    max-width: 100%;
  }

  .about-card-stack {
    width: 100%;
  }

  .about-notch-card {
    max-width: 830px;
    margin: 0 auto;
  }

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

  .about-tech-card {
    max-width: 640px;
    margin: 0 auto;
  }

  .about-experience,
  .about-identity {
    height: auto;
    min-height: 560px;
  }

  .about-cta-copy h2 {
    max-width: calc(100vw - 64px);
    white-space: normal;
  }

  .about-footer-columns {
    left: 44%;
    width: 460px;
    grid-template-columns: repeat(2, minmax(90px, 1fr));
    row-gap: 36px;
  }
}

@media (max-width: 900px) {
  :root {
    --about-container: min(100% - 40px, 680px);
  }

  .about-nav {
    grid-template-columns: auto 1fr auto;
    height: auto;
    min-height: 72px;
    padding: 14px 20px;
    gap: 14px;
  }

  .about-nav-links {
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .about-nav-links::-webkit-scrollbar {
    display: none;
  }

  .about-nav-links a {
    padding: 12px 0;
  }

  .about-nav-download {
    width: 76px;
  }

  .about-hero {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    padding: 150px 20px 120px;
  }

  .about-section-bg,
  .about-experience-bg,
  .about-cta-bg {
    width: 100%;
    min-width: 900px;
  }

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

  .about-hero-copy h1 {
    font-size: clamp(34px, 8vw, 44px);
    line-height: 1.25;
  }

  .about-hero-copy p,
  .about-section-copy p:not(.about-kicker),
  .about-identity-copy p,
  .about-cta-copy p {
    font-size: 18px;
    line-height: 34px;
  }

  .about-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .about-pill {
    max-width: 100%;
    white-space: normal;
    line-height: 18px;
    text-align: center;
  }

  .about-position {
    min-height: 960px;
    padding-top: 96px;
  }

  .about-section-copy h2,
  .about-position-copy h2 {
    font-size: clamp(30px, 7vw, 40px);
    line-height: 1.35;
  }

  .about-position-visual {
    height: auto;
    transform: none;
  }

  .about-split-section {
    min-height: 0;
    padding: 96px 0;
  }

  .about-why {
    padding: 0;
  }

  .about-why-layout {
    padding: 88px 0 104px;
  }

  .about-belief {
    padding: 0;
  }

  .about-belief-layout {
    padding: 88px 0 104px;
  }

  .about-card-stack {
    gap: 40px;
  }

  .about-card-stack.about-why-right {
    gap: 40px;
  }

  .about-card-stack.about-belief-left {
    gap: 40px;
  }

  .about-notch-card {
    width: 100%;
    height: 440px;
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .about-notch-frame {
    display: block;
  }

  .about-card-content {
    padding: 48px;
  }

  .about-card-content h3 {
    font-size: 24px;
    line-height: 34px;
  }

  .about-card-content p {
    font-size: 16px;
    line-height: 30px;
  }

  .about-tech {
    --about-tech-bg-scale-y: 1.65;
    padding: 96px 0;
  }

  .about-tech-card {
    height: auto;
    min-height: 0;
    aspect-ratio: 532 / 306;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .about-tech-frame {
    display: block;
  }

  .about-tech-card-content {
    padding: 44px 32px;
  }

  .about-experience {
    padding: 96px 0;
  }

  .about-identity {
    padding: 96px 0;
  }

  .about-identity-copy {
    gap: 40px;
  }

  .about-identity-copy h2,
  .about-cta-copy h2 {
    font-size: clamp(38px, 8vw, 56px);
    line-height: 1.25;
    white-space: normal;
  }

  .about-cta {
    height: auto;
    min-height: 760px;
    padding: 220px 20px 140px;
  }

  .about-cta-copy p {
    margin-top: -24px;
  }

  .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: 560px) {
  :root {
    --about-container: calc(100vw - 32px);
  }

  .about-notch-card {
    width: min(100%, 524px);
    height: auto;
    aspect-ratio: 524 / 830;
  }

  .about-notch-frame {
    inset: auto;
    top: 50%;
    left: 50%;
    width: 158.396%;
    height: 63.133%;
    transform: translate(-50%, -50%) rotate(var(--about-mobile-frame-rotation, 90deg)) scaleX(var(--about-mobile-frame-scale-x, 1));
    transform-origin: center;
  }

  .about-notch-card:nth-child(2) {
    --about-mobile-frame-rotation: -90deg;
  }

  .about-notch-card:nth-child(3) {
    --about-mobile-frame-rotation: 90deg;
    --about-mobile-frame-scale-x: -1;
  }

  .about-tech-card {
    width: 100%;
    height: 280px;
    aspect-ratio: auto;
  }

  .about-tech-frame {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

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

  .about-nav-links {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
  }

  .about-hero {
    padding-top: 150px;
  }

  .about-hero-copy {
    gap: 36px;
  }

  .about-position-visual {
    height: auto;
    transform: none;
  }

  .about-card-content {
    padding: 36px 28px;
  }

  .about-tech-card-content {
    gap: 8px;
    padding: 28px 24px;
  }

  .about-tech-card h3 {
    font-size: 16px;
    line-height: 26px;
  }

  .about-tech-card p {
    font-size: 15px;
    line-height: 26px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .frame-border-glow {
    animation: none;
  }

  .about-identity .qmen-flow-light-bg .flow-glow,
  .about-identity .qmen-flow-light-bg .flow-core {
    animation: none;
    stroke-dashoffset: var(--qmen-line-flow-rest-offset, 0);
    will-change: auto;
  }
}

/* Unified phone and tablet content gutters. Wide rails remain decorative and clipped. */
@media (max-width: 767px) {
  .about-hero-copy,
  .about-container {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding-right: var(--page-gutter-mobile);
    padding-left: var(--page-gutter-mobile);
    box-sizing: border-box;
  }

  .about-hero-track,
  .about-position-visual-track {
    pointer-events: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .about-hero-copy,
  .about-container {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding-right: var(--page-gutter-tablet);
    padding-left: var(--page-gutter-tablet);
    box-sizing: border-box;
  }

  .about-hero-track,
  .about-position-visual-track {
    pointer-events: none;
  }
}

/* Match the responsive visual-first treatment used by the product and solutions pages. */
@media (max-width: 1023px) {
  .about-position-copy {
    order: 2;
  }

  .about-position-visual {
    order: 1;
  }

}
