:root {
  --bg: #030303;
  --panel: #070707;
  --panel-strong: #0d0d0d;
  --line: rgba(255, 255, 255, 0.15);
  --line-strong: rgba(255, 255, 255, 0.42);
  --text: #f6f7f7;
  --muted: rgba(246, 247, 247, 0.68);
  --faint: rgba(246, 247, 247, 0.38);
  --glow: rgba(190, 222, 255, 0.38);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 64% 18%, rgba(100, 122, 145, 0.16), transparent 30rem),
    linear-gradient(180deg, #000 0%, #040404 46%, #020202 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
}

.page-shell::before {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: screen;
  opacity: 0.2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: 220px minmax(360px, 1fr) 220px;
  align-items: center;
  width: min(100%, var(--max));
  min-height: 88px;
  padding: 0 clamp(24px, 4vw, 48px);
  transform: translateX(-50%);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42), transparent);
}

.brand {
  display: inline-block;
  width: max-content;
  color: transparent;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  background:
    repeating-linear-gradient(
      180deg,
      #fff 0,
      #fff 5px,
      transparent 5px,
      transparent 10px
    );
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
}

.brand--small {
  font-size: clamp(31px, 3.35vw, 44px);
  line-height: 0.86;
  background:
    repeating-linear-gradient(
      180deg,
      #fff 0,
      #fff 2px,
      transparent 2px,
      transparent 4px
    );
  -webkit-background-clip: text;
  background-clip: text;
}

.brand--hero {
  margin: 0 0 36px;
  font-size: clamp(58px, 11vw, 142px);
}

.brand--hero-cn,
body[data-lang="zh"] .brand--hero {
  letter-spacing: 0.08em;
}


.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 3vw, 46px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.nav-links a,
.site-footer a {
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}


.nav-links a[aria-current="page"] {
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
}

.company-page-main {
  padding-top: 88px;
}

.nav-links a:hover,
.site-footer a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.55);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}

.pill-link,
.lang-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  white-space: nowrap;
}

.pill-link {
  min-width: 126px;
  padding: 0 22px;
  color: #fff;
  font-size: 14px;
}

.lang-button {
  min-width: 52px;
  padding: 0 16px;
  border-color: transparent;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition:
    color 180ms ease,
    text-shadow 180ms ease,
    transform 180ms ease;
}

.lang-button:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

.lang-button::after {
  display: block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.hero-section {
  position: relative;
  min-height: 640px;
  height: clamp(640px, 58vw, 780px);
  max-height: 820px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.hero-section::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, transparent, #030303 80%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(740px, calc(100% - 48px));
  padding-top: clamp(104px, 9.5vw, 148px);
  margin-left: clamp(24px, 4vw, 58px);
}

.hero-content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  margin: 28px 0 46px;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.primary-button,
.secondary-button {
  gap: 14px;
  min-width: 162px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.primary-button {
  border-color: #fff;
  background: #fff;
  color: #050505;
  box-shadow:
    0 0 24px rgba(255, 255, 255, 0.22),
    inset 0 -8px 18px rgba(0, 0, 0, 0.09);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.primary-button:hover,
.secondary-button:hover,
.pill-link:hover {
  transform: translateY(-2px);
}

.play-dot {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.play-dot::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  content: "";
  transform: translate(-35%, -50%);
}

.flow-labels {
  position: absolute;
  right: clamp(12px, 2vw, 32px);
  bottom: clamp(118px, 12vw, 172px);
  left: clamp(500px, 50vw, 730px);
  z-index: 2;
  display: grid;
  grid-template-columns: 0.86fr 1.1fr 0.9fr;
  gap: clamp(18px, 3vw, 54px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  transform: translateX(clamp(20px, 2.8vw, 48px));
}

.flow-labels span:nth-child(2) {
  text-align: center;
  font-size: inherit;
  font-weight: inherit;
}

.flywheel-section,
.products-section,
.scale-section {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 56px);
}

.flywheel-section {
  padding-top: 44px;
  padding-bottom: 58px;
}

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

.section-heading h2,
.products-section h2,
.scale-section h2 {
  margin: 0;
  font-size: clamp(31px, 3.1vw, 44px);
  font-weight: 500;
  line-height: 1.18;
}

.scale-section h2 {
  max-width: 560px;
}

.keep-line {
  white-space: nowrap;
}

.section-heading p,
.scale-section p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.flywheel {
  position: relative;
  --node-size: clamp(164px, 14vw, 190px);
  width: min(700px, 100%);
  aspect-ratio: 1;
  margin: 22px auto 0;
}

.orbit-ring {
  position: absolute;
  inset: 23%;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-ring--outer {
  inset: 15%;
  border: 0;
}

.orbit-ring--inner {
  inset: 34%;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  animation: orbitSpinReverse 14s linear infinite;
}

.cycle-arrows {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: rgba(210, 218, 226, 0.58);
  pointer-events: none;
  overflow: visible;
  transform-origin: 50% 50%;
  animation: cycleRotate 16s linear infinite;
}

.cycle-arc {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  marker-end: url("#cycle-arrowhead");
  filter: drop-shadow(0 0 7px rgba(210, 218, 226, 0.18));
}

.flywheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  transform: translate(-50%, -50%);
}

.flywheel-center::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 58%),
    conic-gradient(from 90deg, transparent, rgba(255, 255, 255, 0.28), transparent, rgba(167, 202, 236, 0.18), transparent);
  animation: orbitSpin 9s linear infinite;
}

.flywheel-center span {
  position: relative;
  display: block;
}

.wheel-node {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--node-size);
  height: var(--node-size);
  min-width: var(--node-size);
  min-height: var(--node-size);
  max-width: var(--node-size);
  max-height: var(--node-size);
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.16), transparent 44%),
    rgba(8, 8, 8, 0.94);
  box-shadow:
    0 0 42px rgba(255, 255, 255, 0.09),
    inset 0 0 36px rgba(255, 255, 255, 0.075);
  text-align: center;
  animation: nodePulse 4.8s ease-in-out infinite;
}

.wheel-node--top {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.wheel-node--left {
  bottom: 8%;
  left: -1%;
  animation-delay: 0.8s;
}

.wheel-node--right {
  right: -1%;
  bottom: 8%;
  animation-delay: 1.6s;
}

.wheel-node span {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 700;
}

.wheel-node strong {
  display: block;
  max-width: 100%;
  color: #fff;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 700;
  line-height: 1.14;
}

.wheel-node strong em {
  display: inline-block;
  font-style: normal;
  font-size: 0.86em;
  line-height: 1.08;
}

.wheel-node small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 700;
}

.wheel-node p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.35;
}

.products-section {
  padding-top: 8px;
  padding-bottom: 30px;
}

.products-section h2 {
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 374px;
  padding: 34px 32px 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 38%),
    rgba(7, 7, 7, 0.86);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.025);
}

.product-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  pointer-events: none;
}

.product-card--vortex .product-visual {
  opacity: 0.78;
}

.product-card > :not(.product-visual):not(a):not(.disabled-link) {
  position: relative;
  z-index: 1;
}

.product-number {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
}

.product-title-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 13px;
}

.product-logo {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.96;
}

.product-logo svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.product-logo path,
.product-logo circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.product-logo--eva .logo-sweep {
  transform-origin: 24px 24px;
  animation: radarSweep 2.6s linear infinite;
}

.product-logo--eva .logo-core {
  animation: logoPulse 1.9s ease-in-out infinite;
}

.product-logo--guard .logo-shield {
  animation: shieldGlow 2.2s ease-in-out infinite;
}

.product-logo--guard .logo-check {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: checkDraw 2.4s ease-in-out infinite;
}

.product-logo--enhance .logo-upgrade {
  animation: upgradeLift 1.9s ease-in-out infinite;
}

.product-logo--enhance .logo-spark {
  animation: logoPulse 1.7s ease-in-out infinite;
}

@keyframes radarSweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoPulse {
  0%, 100% {
    opacity: 0.42;
  }
  50% {
    opacity: 1;
  }
}

@keyframes shieldGlow {
  0%, 100% {
    opacity: 0.62;
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.34));
  }
}

@keyframes checkDraw {
  0%, 28% {
    stroke-dashoffset: 24;
  }
  54%, 100% {
    stroke-dashoffset: 0;
  }
}

@keyframes upgradeLift {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-3px);
  }
}

.product-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(27px, 2.6vw, 38px);
  font-weight: 400;
}

.product-card p,
.product-card li,
.product-card a {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
}

.product-card p {
  margin: 0 0 29px;
  font-size: 16px;
}

.product-card ul {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-card li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
}

.product-card li::before {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0 1.4px, transparent 1.8px),
    #050505;
  box-shadow:
    inset 0 0 0 3px #050505,
    0 0 10px rgba(255, 255, 255, 0.08);
}

.product-card > a,
.product-card > .disabled-link {
  position: absolute;
  right: auto;
  bottom: 30px;
  left: 32px;
  z-index: 1;
  display: inline-flex;
  gap: 13px;
  align-items: center;
  color: #fff;
  font-size: 14px;
}

.scale-section {
  display: grid;
  grid-template-columns: minmax(520px, 0.98fr) minmax(0, 1.42fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: 42px;
  padding-bottom: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 124px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.015);
}

.metrics-grid div {
  display: grid;
  place-items: center;
  align-content: center;
  min-width: 0;
  padding: 20px 12px;
  text-align: center;
}

.metrics-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.metrics-grid dt {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  line-height: 1;
}

.metrics-grid dd {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}


.company-section {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 82px) clamp(24px, 4vw, 56px) 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.company-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 34%);
}

.company-hero {
  max-width: 1280px;
  padding-top: 10px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-hero h2 {
  margin: 0 auto;
  color: #fff;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.company-copy {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin: 24px auto 0;
  text-align: center;
}

.company-copy p,
.company-section p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.company-copy p,
.company-section p,
.company-card h4,
.company-card span,
.timeline strong,
.timeline span,
.timeline em {
  margin-block: 0;
}

.company-block {
  margin-top: clamp(44px, 5vw, 68px);
}

.company-block > h3,
.challenge-intro h3,
.approach-intro h3,
.company-split h3,
.mission-bar h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.company-card-grid {
  display: grid;
  gap: 18px;
}

.company-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.company-card {
  position: relative;
  min-height: 156px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012) 42%, transparent),
    rgba(10, 10, 10, 0.82);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.02);
}

.company-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 58%);
}

.company-number {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
}

.company-card h4 {
  max-width: 300px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.company-card p {
  margin-top: 13px;
  font-size: 13px;
}

.company-card--compact {
  min-height: 190px;
  padding-top: 72px;
}

.card-icon {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.03),
    0 0 18px rgba(255, 255, 255, 0.04);
}

.card-icon::before,
.card-icon::after {
  position: absolute;
  content: "";
}

.card-icon--shield::before {
  width: 17px;
  height: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.82);
  clip-path: polygon(50% 0, 92% 17%, 82% 72%, 50% 100%, 18% 72%, 8% 17%);
}

.card-icon--shield::after {
  width: 6px;
  height: 10px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
  transform: rotate(40deg) translate(-1px, -1px);
}

.card-icon--database::before {
  width: 18px;
  height: 20px;
  border: 1.4px solid rgba(255, 255, 255, 0.78);
  border-radius: 50% / 18%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)) 50% 35% / 16px 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.38)) 50% 63% / 16px 1px no-repeat;
}

.card-icon--database::after {
  top: 8px;
  width: 18px;
  height: 7px;
  border: 1.4px solid rgba(255, 255, 255, 0.78);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.card-icon--network::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    -9px 8px 0 rgba(255, 255, 255, 0.74),
    9px 8px 0 rgba(255, 255, 255, 0.74),
    0 -9px 0 rgba(255, 255, 255, 0.74);
}

.card-icon--network::after {
  width: 22px;
  height: 20px;
  background:
    linear-gradient(34deg, transparent 46%, rgba(255, 255, 255, 0.42) 48% 52%, transparent 54%),
    linear-gradient(-34deg, transparent 46%, rgba(255, 255, 255, 0.42) 48% 52%, transparent 54%),
    linear-gradient(90deg, transparent 47%, rgba(255, 255, 255, 0.32) 49% 51%, transparent 53%);
}

.card-icon--agent::before {
  width: 18px;
  height: 15px;
  border: 1.4px solid rgba(255, 255, 255, 0.82);
  border-radius: 7px;
  background:
    radial-gradient(circle at 35% 48%, rgba(255, 255, 255, 0.86) 0 1.6px, transparent 2px),
    radial-gradient(circle at 65% 48%, rgba(255, 255, 255, 0.86) 0 1.6px, transparent 2px);
}

.card-icon--agent::after {
  top: 6px;
  width: 1.5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 -4px 0 rgba(255, 255, 255, 0.72);
}

.card-icon--devices::before {
  width: 18px;
  height: 20px;
  border: 1.4px solid rgba(255, 255, 255, 0.78);
  border-radius: 4px;
  transform: translate(-3px, 1px);
}

.card-icon--devices::after {
  width: 12px;
  height: 16px;
  border: 1.4px solid rgba(255, 255, 255, 0.62);
  border-radius: 3px;
  transform: translate(6px, -3px);
  background: rgba(255, 255, 255, 0.04);
}

.card-icon--embodied::before {
  width: 18px;
  height: 18px;
  border: 1.4px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 2px, transparent 2.4px),
    linear-gradient(90deg, transparent 46%, rgba(255, 255, 255, 0.36) 48% 52%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(255, 255, 255, 0.36) 48% 52%, transparent 54%);
}

.card-icon--embodied::after {
  width: 26px;
  height: 26px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.company-split {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.company-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.disabled-link {
  cursor: default;
  pointer-events: none;
  opacity: 0.62;
}

.approach-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 2.5fr);
  gap: clamp(24px, 3.2vw, 42px);
  align-items: stretch;
}

.approach-intro p {
  max-width: 300px;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.55;
}

.approach-intro .company-link {
  margin-top: 54px;
}

.approach-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.approach-card {
  min-height: 280px;
  padding: 0 28px 28px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.055), transparent 16%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012) 42%, transparent),
    rgba(9, 10, 10, 0.88);
}

.approach-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0.22;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 0.75px, transparent 1.2px) 0 0 / 15px 15px,
    radial-gradient(circle, rgba(167, 210, 255, 0.3) 0 0.7px, transparent 1.2px) 7px 9px / 23px 23px;
  mask-image: radial-gradient(ellipse at 86% 58%, #000 0 18%, transparent 52%);
}

.approach-card::after {
  top: 18px;
  left: 24px;
  right: auto;
  width: 66px;
  height: 66px;
  border: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05) 46%, transparent 70%);
}

.approach-card h4,
.approach-card p {
  position: relative;
  z-index: 1;
}

.approach-card h4 {
  max-width: 300px;
  margin-top: 118px;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 700;
  line-height: 1.16;
}

.approach-card p {
  max-width: 300px;
  margin-top: 24px;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.55;
}

.approach-card .card-icon {
  position: absolute;
  z-index: 1;
  top: 28px;
  left: 28px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.035),
    0 0 28px rgba(255, 255, 255, 0.08);
}

.approach-card .card-icon--shield::before {
  width: 25px;
  height: 30px;
  border-width: 2px;
}

.approach-card .card-icon--shield::after {
  width: 8px;
  height: 13px;
  border-width: 2px;
}

.approach-card .card-icon--database::before {
  width: 28px;
  height: 32px;
  border-width: 2px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)) 50% 35% / 24px 1.5px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)) 50% 63% / 24px 1.5px no-repeat;
}

.approach-card .card-icon--database::after {
  top: 12px;
  width: 28px;
  height: 10px;
  border-width: 2px;
}

.approach-card .card-icon--network::before {
  width: 6px;
  height: 6px;
  box-shadow:
    -14px 11px 0 rgba(255, 255, 255, 0.74),
    14px 11px 0 rgba(255, 255, 255, 0.74),
    0 -14px 0 rgba(255, 255, 255, 0.74);
}

.approach-card .card-icon--network::after {
  width: 34px;
  height: 30px;
}

.approach-card--defense::before {
  mask-image: radial-gradient(ellipse at 104% 55%, #000 0 17%, transparent 50%);
}

.approach-card--data::before {
  mask-image: radial-gradient(ellipse at 62% 54%, #000 0 23%, transparent 56%);
}

.approach-card--model::before {
  mask-image: linear-gradient(132deg, transparent 0 50%, #000 72%, transparent 100%);
}

.challenge-block {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) 42px minmax(0, 2.35fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: stretch;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.challenge-intro p {
  max-width: 260px;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}

.timeline-rail {
  position: relative;
  display: grid;
  align-content: space-between;
  justify-items: center;
  padding: 7px 0;
}

.timeline-rail::before {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 50%;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72) 14%, rgba(255, 255, 255, 0.62) 86%, transparent);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.42);
  transform: translateX(-50%);
}

.timeline-rail span {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.16),
    0 0 18px rgba(255, 255, 255, 0.85);
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline div {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(190px, 0.95fr) minmax(160px, 0.8fr) 46px minmax(180px, 0.8fr);
  gap: clamp(18px, 2.4vw, 42px);
  align-items: center;
  min-height: 64px;
  color: rgba(255, 255, 255, 0.72);
}

.timeline div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline strong,
.timeline span,
.timeline em {
  font-style: normal;
}

.timeline strong {
  color: #fff;
  font-size: clamp(19px, 1.7vw, 26px);
  font-weight: 500;
}

.timeline span,
.timeline em {
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.35;
}

.timeline em {
  color: #fff;
  font-weight: 600;
}

.timeline i {
  display: block;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 2px, transparent 2px 5px);
}

.timeline i::after {
  display: block;
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-top: 1.5px solid rgba(255, 255, 255, 0.78);
  border-right: 1.5px solid rgba(255, 255, 255, 0.78);
  content: "";
  transform: translateY(-4px) rotate(45deg);
}

.timeline-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.84);
}

.timeline-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.timeline-icon svg path,
.timeline-icon svg rect,
.timeline-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.timeline-icon svg circle {
  fill: currentColor;
  stroke: none;
}

.timeline-icon::before,
.timeline-icon::after {
  position: absolute;
  content: "";
}

.timeline-icon:has(svg)::before,
.timeline-icon:has(svg)::after {
  display: none;
}

.timeline-icon--people::before {
  top: 7px;
  left: 5px;
  width: 9px;
  height: 9px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
  box-shadow: 14px 0 0 -1.8px #030303, 14px 0 0 0 currentColor;
}

.timeline-icon--people::after {
  top: 19px;
  left: 2px;
  width: 26px;
  height: 12px;
  border: 1.8px solid currentColor;
  border-bottom: 0;
  border-radius: 15px 15px 0 0;
}

.team-backgrounds {
  display: grid;
  gap: 18px;
}

.team-background-group h4 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.logo-cloud span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
}

.logo-mark {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(1.35);
  opacity: 0.92;
}

.logo-mark--school {
  width: 28px;
  height: 28px;
  padding: 2px;
  border-radius: 50%;
  filter: none;
  background: rgba(255, 255, 255, 0.08);
}

.logo-more {
  letter-spacing: 0.16em;
}

.company-section-intro {
  max-width: 285px;
}

.company-section-intro p {
  max-width: 265px;
  margin: 0;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.company-split--leadership,
.company-split--vision {
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 2.15fr);
  gap: clamp(30px, 4vw, 58px);
}

.company-split--leadership {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.company-split--vision {
  position: relative;
  padding-bottom: 32px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.company-split--vision::after {
  position: absolute;
  right: -78px;
  bottom: -62px;
  z-index: 0;
  width: 380px;
  height: 230px;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.45px);
  background-size: 11px 11px;
  opacity: 0.32;
  mask-image: radial-gradient(ellipse at 76% 64%, #000 0 34%, transparent 72%);
  transform: perspective(430px) rotateX(64deg) rotateZ(-22deg);
}

.company-split--vision > * {
  position: relative;
  z-index: 1;
}

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

.leader-card,
.vision-card {
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018) 58%, rgba(255, 255, 255, 0.004)),
    rgba(8, 10, 12, 0.88);
  box-shadow:
    inset 0 0 32px rgba(255, 255, 255, 0.025),
    0 0 0 1px rgba(255, 255, 255, 0.015);
}

.leader-card::after,
.vision-card::after {
  display: none;
}

.leader-card {
  min-height: 180px;
  padding: 24px 30px;
}

.leader-card h4 {
  font-size: clamp(16px, 1.25vw, 18px);
}

.leader-role {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.leader-points {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.leader-points li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.35;
}

.leader-points li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.78) 0 1.5px, transparent 2px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.16);
}

.leader-points li::after {
  position: absolute;
  top: calc(0.1em + 4px);
  left: 4px;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.vision-flow {
  min-width: 0;
}

.vision-grid {
  display: grid;
  gap: 18px;
}

.vision-grid--flow {
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: stretch;
}

.vision-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  padding: 22px 34px 24px;
  text-align: center;
}

.vision-stage {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vision-card h4 {
  max-width: 230px;
  min-height: 42px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.25;
  text-align: center;
}

.vision-card p {
  align-self: stretch;
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.42;
  text-align: left;
}

.vision-icon,
.vision-device-row {
  color: rgba(255, 255, 255, 0.82);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.14));
}

.vision-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 12px 0 4px;
  place-items: center;
}

.vision-icon svg,
.vision-device {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.vision-icon path,
.vision-device path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.vision-device-row {
  display: flex;
  width: min(100%, 156px);
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 11px 0 3px;
}

.vision-device {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.vision-arrow {
  display: grid;
  align-self: center;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 26px;
  font-weight: 400;
  transform: translateY(-6px);
}

.vision-timeline {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  gap: 18px;
  margin-top: 16px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.vision-timeline::before {
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.2));
}

.vision-timeline span {
  position: relative;
}

.vision-timeline span:nth-child(1) {
  grid-column: 1;
}

.vision-timeline span:nth-child(2) {
  grid-column: 3;
}

.vision-timeline span:nth-child(3) {
  grid-column: 5;
}

.vision-timeline span::before {
  position: absolute;
  top: -17px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.12),
    0 0 16px rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.mission-bar {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.4fr) auto;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.mission-bar p {
  font-size: 15px;
}

.mission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.mission-actions .primary-button,
.mission-actions .secondary-button {
  min-width: 128px;
}

.site-footer {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(100%, var(--max));
  min-height: 92px;
  padding: 0 clamp(24px, 4vw, 56px);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
  white-space: nowrap;
}

.footer-icp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-icp[hidden] {
  display: none;
}

.footer-icp-icon {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 20px;
  object-fit: contain;
}

.footer-icp a {
  color: inherit;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(22px, 3vw, 42px);
  font-size: 13px;
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes cycleRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    box-shadow:
      0 0 42px rgba(255, 255, 255, 0.09),
      inset 0 0 36px rgba(255, 255, 255, 0.075);
  }
  50% {
    box-shadow:
      0 0 58px rgba(190, 222, 255, 0.22),
      inset 0 0 42px rgba(255, 255, 255, 0.1);
  }
}

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

  .nav-links {
    display: none;
  }

  .hero-section {
    min-height: 620px;
    height: 680px;
  }

  .flow-labels {
    right: 18px;
    bottom: 104px;
    left: clamp(310px, 45vw, 470px);
    font-size: 11px;
    transform: translateX(12px);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 330px;
  }

  .scale-section,
  .company-split,
  .mission-bar,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .company-card-grid--three,
  .leadership-grid,
  .vision-grid--flow {
    grid-template-columns: 1fr;
  }

  .approach-block,
  .approach-card-grid {
    grid-template-columns: 1fr;
  }

  .approach-card {
    min-height: 240px;
  }


  .challenge-block {
    grid-template-columns: minmax(180px, 0.6fr) 32px minmax(0, 1.9fr);
    gap: 24px;
  }

  .timeline div {
    grid-template-columns: 76px minmax(130px, 1fr) minmax(88px, 0.7fr) 34px minmax(130px, 0.9fr);
    gap: 16px;
  }

  .timeline-icon {
    width: 30px;
    height: 30px;
  }


  .vision-arrow {
    min-height: 20px;
    transform: rotate(90deg);
  }

  .vision-timeline {
    display: none;
  }

  .logo-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mission-actions {
    justify-content: flex-start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (min-width: 861px) and (max-width: 1040px) {
  .company-split--leadership,
  .company-split--vision {
    grid-template-columns: minmax(180px, 0.5fr) minmax(0, 2fr);
    gap: 26px;
  }

  .leadership-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .leader-card {
    padding: 22px 24px;
  }

  .vision-grid--flow {
    grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr);
    gap: 14px;
  }

  .vision-card {
    padding-inline: 26px;
  }

  .vision-arrow {
    min-height: 0;
    transform: translateY(-6px);
  }

  .vision-timeline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .company-page-main {
    padding-top: 72px;
  }

  .site-header {
    min-height: 72px;
    padding-inline: 18px;
  }

  .brand--small {
    font-size: 27px;
    background:
      repeating-linear-gradient(
        180deg,
        #fff 0,
        #fff 1.5px,
        transparent 1.5px,
        transparent 3px
      );
    -webkit-background-clip: text;
    background-clip: text;
  }

  .header-actions {
    gap: 10px;
  }

  .pill-link {
    display: none;
  }

  .hero-section {
    min-height: 640px;
    height: auto;
    padding-bottom: 150px;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-top: 86px;
    margin-left: 18px;
  }

  .brand--hero {
    margin-bottom: 28px;
    font-size: clamp(54px, 19vw, 92px);
  }

  .hero-content h1 {
    font-size: clamp(35px, 10vw, 52px);
  }

  .hero-copy {
    margin-bottom: 30px;
  }

  .hero-actions {
    gap: 14px;
  }

  .primary-button,
  .secondary-button {
    min-width: 148px;
    padding-inline: 20px;
  }

  .flow-labels {
    right: 18px;
    bottom: 72px;
    left: 18px;
    gap: 12px;
    font-size: 10px;
    transform: none;
  }

  .flow-labels span:nth-child(2) {
    font-size: 13px;
  }

  .flywheel-section,
  .products-section,
  .scale-section,
  .company-section,
  .site-footer {
    padding: 28px 18px;
  }

  .company-section {
    padding-top: 52px;
  }

  .company-hero h2 {
    font-size: clamp(31px, 8.5vw, 44px);
    white-space: normal;
  }

  .company-card {
    padding: 22px;
  }

  .company-card--compact {
    min-height: 160px;
    padding-top: 64px;
  }

  .approach-card {
    min-height: 230px;
    padding: 0 22px 24px;
  }

  .approach-card h4 {
    margin-top: 100px;
  }

  .approach-card .card-icon {
    top: 24px;
    left: 22px;
  }


  .vision-card {
    min-height: auto;
    padding: 22px;
  }

  .leader-card {
    min-height: 160px;
  }

  .challenge-block {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .timeline-rail {
    display: none;
  }

  .timeline div {
    grid-template-columns: 72px 1fr;
    gap: 10px 16px;
    padding: 14px 0;
  }

  .timeline i,
  .timeline-icon {
    display: none;
  }

  .timeline em {
    grid-column: 2;
  }

  .logo-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-actions {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

.legal-page-main {
  padding-top: 98px;
}

.legal-section {
  position: relative;
  width: min(100%, var(--max));
  min-height: calc(100vh - 190px);
  padding: clamp(34px, 5vw, 72px) clamp(24px, 4vw, 56px) clamp(52px, 7vw, 92px);
  margin: 0 auto;
}

.legal-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.08), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 32%);
}

.legal-document {
  max-width: 760px;
}

.legal-document .eyebrow {
  margin-bottom: 10px;
}

.legal-document h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.legal-updated {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-intro,
.legal-article p,
.legal-article li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.62;
}

.legal-intro {
  max-width: 700px;
  margin: 18px 0 30px;
}

.legal-list {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: legal-section;
}

.legal-article {
  position: relative;
  padding-left: 34px;
  counter-increment: legal-section;
}

.legal-article::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 700;
  content: counter(legal-section) ".";
}

.legal-article h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.legal-article p {
  margin: 0;
}

.legal-article ul {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  margin: 8px 0 0;
}

.legal-article a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .legal-page-main {
    padding-top: 76px;
  }

  .legal-section {
    padding-inline: 18px;
  }

  .legal-article {
    padding-left: 28px;
  }
}



.careers-page-main {
  min-height: 100vh;
  padding-top: 104px;
}

.careers-section {
  width: min(100%, var(--max));
  padding: 0 clamp(24px, 4vw, 56px);
  margin: 0 auto;
}

.careers-section .eyebrow {
  margin-bottom: 34px;
}

.careers-why {
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.careers-why h1,
.careers-roles h2,
.careers-contact h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.16;
}

.careers-reasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 86px);
  margin-top: 28px;
}

.careers-reasons article {
  max-width: 350px;
}

.careers-reasons span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.careers-reasons h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 700;
  line-height: 1.3;
}

.careers-reasons p,
.roles-table-row--descriptions > div,
.careers-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.65;
}

.careers-reasons p + p {
  margin-top: 16px;
}

.careers-roles {
  padding-top: 44px;
}

.roles-table {
  display: grid;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.roles-table-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.roles-table-row + .roles-table-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.roles-table-row > div {
  min-height: 92px;
  padding: 22px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.roles-table-row > div:first-child {
  border-left: 0;
}

.roles-table-row--titles > div {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  line-height: 1.35;
}

.roles-table-row--descriptions > div {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.careers-contact {
  padding: 44px 0 48px;
}

.careers-contact a {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: rgba(157, 218, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
}

.careers-contact a::before {
  width: 16px;
  height: 11px;
  margin-right: 8px;
  border: 1px solid currentColor;
  border-radius: 2px;
  content: "";
  background: linear-gradient(32deg, transparent 44%, currentColor 46% 53%, transparent 55%);
}

.careers-contact p {
  margin-top: 14px;
}

@media (max-width: 1040px) {
  .careers-reasons {
    grid-template-columns: 1fr;
  }

  .roles-table {
    overflow-x: auto;
  }

  .roles-table-row {
    min-width: 900px;
  }
}

@media (max-width: 720px) {
  .careers-page-main {
    padding-top: 84px;
  }

  .careers-section {
    padding-inline: 18px;
  }
}

.why-card {
  min-height: 172px;
  padding: 26px 22px 28px;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.07), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014) 44%, transparent),
    rgba(9, 10, 10, 0.9);
}

.why-card::after {
  display: none;
}

.why-card .company-number {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
}

.why-card h4 {
  max-width: 245px;
  min-height: 2.5em;
  font-size: 15px;
  line-height: 1.3;
}

.why-card p {
  max-width: min(100%, 420px);
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(11px, 0.92vw, 13px);
  line-height: 1.5;
}

.why-icon {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 42px;
  height: 42px;
  opacity: 0.46;
  pointer-events: none;
}

.why-card--cube .why-icon {
  background:
    linear-gradient(30deg, transparent 43%, rgba(255,255,255,0.72) 45% 48%, transparent 50%) 50% 50% / 32px 32px no-repeat,
    linear-gradient(150deg, transparent 43%, rgba(255,255,255,0.72) 45% 48%, transparent 50%) 50% 50% / 32px 32px no-repeat,
    linear-gradient(90deg, transparent 47%, rgba(255,255,255,0.62) 49% 51%, transparent 53%) 50% 50% / 28px 32px no-repeat;
}

.why-card--cube .why-icon::before,
.why-card--cube .why-icon::after {
  position: absolute;
  inset: 8px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.72);
  transform: rotate(30deg) skewY(-30deg) scaleY(0.86);
}

.why-card--cube .why-icon::after {
  transform: rotate(-30deg) skewY(30deg) scaleY(0.86);
}

.why-card--globe .why-icon {
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, rgba(255, 255, 255, 0.52) 49% 51%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(255, 255, 255, 0.52) 49% 51%, transparent 53%);
}

.why-card--globe .why-icon::before,
.why-card--globe .why-icon::after {
  position: absolute;
  inset: 4px 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
}

.why-card--globe .why-icon::after {
  inset: 12px 4px;
}

.why-card--shield .why-icon::before {
  position: absolute;
  inset: 4px 8px;
  content: "";
  border: 1.5px solid rgba(255, 255, 255, 0.76);
  clip-path: polygon(50% 0, 92% 17%, 82% 72%, 50% 100%, 18% 72%, 8% 17%);
}

.why-card--shield .why-icon::after {
  position: absolute;
  top: 15px;
  left: 19px;
  width: 6px;
  height: 10px;
  content: "";
  border-right: 1.5px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.72);
  transform: rotate(40deg);
}

.approach-block {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.55fr);
  gap: clamp(28px, 4vw, 56px);
}

.approach-intro p {
  max-width: 470px;
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.58;
}

.approach-intro .company-link {
  margin-top: 38px;
}

.approach-card-grid {
  gap: clamp(12px, 1.35vw, 18px);
}

.approach-card {
  min-height: 238px;
  padding: 0 22px 24px;
}

.approach-card h4 {
  margin-top: 106px;
  font-size: clamp(16px, 1.05vw, 19px);
}

.approach-card p {
  margin-top: 18px;
  font-size: clamp(12px, 0.88vw, 14px);
  line-height: 1.5;
}

.approach-card .card-icon {
  top: 24px;
  left: 22px;
  width: 48px;
  height: 48px;
}

@media (max-width: 1040px) {
  .approach-block {
    grid-template-columns: 1fr;
  }

  .approach-intro p {
    max-width: 620px;
  }

  .approach-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .why-card {
    min-height: 160px;
    padding: 22px;
  }

  .why-icon {
    top: 20px;
    right: 22px;
    width: 36px;
    height: 36px;
  }

  .approach-card-grid {
    grid-template-columns: 1fr;
  }
}

.why-card--cube .why-icon {
  opacity: 0.5;
  background: none;
}

.why-card--cube .why-icon::before {
  position: absolute;
  inset: 7px;
  content: "";
  background:
    linear-gradient(30deg, transparent 48%, rgba(255,255,255,0.72) 49% 51%, transparent 52%),
    linear-gradient(150deg, transparent 48%, rgba(255,255,255,0.72) 49% 51%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,0.58) 49% 51%, transparent 52%),
    linear-gradient(30deg, transparent 48%, rgba(255,255,255,0.44) 49% 51%, transparent 52%),
    linear-gradient(150deg, transparent 48%, rgba(255,255,255,0.44) 49% 51%, transparent 52%);
  background-position:
    50% 0,
    50% 0,
    50% 50%,
    50% 100%,
    50% 100%;
  background-size:
    28px 20px,
    28px 20px,
    26px 27px,
    28px 20px,
    28px 20px;
  background-repeat: no-repeat;
  border: 1.2px solid rgba(255, 255, 255, 0.68);
  transform: rotate(30deg) skewY(-30deg) scaleY(0.86);
}

.why-card--cube .why-icon::after {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1.2px solid rgba(255, 255, 255, 0.56);
  transform: rotate(-30deg) skewY(30deg) scaleY(0.86);
}

.why-card--shield .why-icon,
.card-icon--shield {
  --shield-line: rgba(255, 255, 255, 0.78);
  --shield-check: rgba(255, 255, 255, 0.72);
}

.why-card--shield .why-icon::before,
.card-icon--shield::before {
  position: absolute;
  content: "";
  border: 0;
  background: var(--shield-line);
  clip-path: polygon(
    50% 0,
    92% 17%,
    82% 72%,
    50% 100%,
    18% 72%,
    8% 17%,
    50% 0,
    50% 9%,
    18% 22%,
    27% 67%,
    50% 88%,
    73% 67%,
    82% 22%,
    50% 9%,
    50% 0
  );
}

.why-card--shield .why-icon::before {
  inset: 4px 8px;
}

.card-icon--shield::before {
  width: 17px;
  height: 20px;
}

.why-card--shield .why-icon::after,
.card-icon--shield::after {
  position: absolute;
  content: "";
  border-color: var(--shield-check);
}

.approach-card .card-icon--shield::before {
  width: 25px;
  height: 30px;
}

.why-icon {
  width: 34px;
  height: 34px;
  opacity: 0.42;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.why-card--cube .why-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23d8d8d8' stroke-width='1.15' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M16 3 27 9 16 15 5 9 16 3Z'/%3E%3Cpath d='M5 9v13l11 7V15L5 9Z'/%3E%3Cpath d='M27 9v13l-11 7V15l11-6Z'/%3E%3Cpath d='M10.5 6.1 21.5 12.1M21.5 6.1 10.5 12.1M5 22l11-6.5L27 22'/%3E%3C/svg%3E");
}

.why-card--cube .why-icon::before,
.why-card--cube .why-icon::after,
.why-card--shield .why-icon::before,
.why-card--shield .why-icon::after {
  display: none;
}

.why-card--globe .why-icon {
  width: 34px;
  height: 34px;
}

.why-card--shield .why-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23d8d8d8' stroke-width='1.7' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M16 3.5 26 8v8.3c0 5.9-4.1 10.2-10 12.2C10.1 26.5 6 22.2 6 16.3V8l10-4.5Z'/%3E%3Cpath d='m12.1 15.9 2.8 2.8 5.4-7'/%3E%3C/svg%3E");
}

.approach-card .card-icon--shield {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23f4f4f4' stroke-width='1.8' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M16 3.5 26 8v8.3c0 5.9-4.1 10.2-10 12.2C10.1 26.5 6 22.2 6 16.3V8l10-4.5Z'/%3E%3Cpath d='m12.1 15.9 2.8 2.8 5.4-7'/%3E%3C/svg%3E") center / 30px 30px no-repeat,
    rgba(255, 255, 255, 0.08);
}

.approach-card .card-icon--shield::before,
.approach-card .card-icon--shield::after {
  display: none;
}
