:root {
  --ink: #0d1b34;
  --muted: #65738d;
  --blue: #1268f3;
  --blue-deep: #0751cf;
  --cyan: #48c4ff;
  --line: #dbe7f6;
  --soft: #f4f8fd;
  --red: #df1f2d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family:
    PingFang SC,
    Microsoft YaHei,
    Inter,
    Arial,
    sans-serif;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto minmax(270px, 1fr);
  align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
  background: #ffffffe0;
  border-bottom: 1px solid rgba(219, 231, 246, 0.8);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.logo-link {
  justify-self: start;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.brand-logo {
  width: 28px;
  height: 36px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(26, 38, 104, 0.15));
}
.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #171a22;
}
.brand-divider {
  width: 1px;
  height: 18px;
  background: #cbd5e3;
  margin-left: 2px;
}
.brand-product {
  color: #637089;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 14px;
  color: #43516a;
}
.nav-links a {
  position: relative;
  padding: 28px 0;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: 0.25s;
  transform: translate(-50%);
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-links a:hover:after {
  width: 20px;
}
.nav-links .main-site-link {
  color: var(--blue);
  font-weight: 700;
}
.nav-links .main-site-link span {
  margin-left: 3px;
  font-size: 11px;
}
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 11px 17px;
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
  transition: 0.25s;
}
.header-cta span {
  color: #78d7ff;
  margin-left: 8px;
}
.header-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  width: 40px;
  height: 40px;
  padding: 9px;
}
.menu-button span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
}
.hero {
  position: relative;
  min-height: 890px;
  padding: 166px clamp(28px, 7vw, 112px) 0;
  overflow: hidden;
  background: linear-gradient(122deg, #f9fcff, #f3f8ff 49%, #edf6ff);
}
.hero-grid,
.demo-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(75, 135, 210, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 135, 210, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 86%);
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.hero-glow-one {
  width: 610px;
  height: 610px;
  right: 6%;
  top: 100px;
  background: radial-gradient(circle, #3eb4ff2b, #3eb4ff00 69%);
}
.hero-glow-two {
  width: 500px;
  height: 500px;
  left: -240px;
  top: 200px;
  background: radial-gradient(circle, #3271ff1a, #3271ff00 70%);
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: 42%;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--blue-deep);
  background: #ffffffbf;
  border: 1px solid #cfe3fb;
  border-radius: 99px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 30px #1e5faa12;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2aa4ff;
  box-shadow: 0 0 0 5px #2aa4ff1c;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px #2aa4ff00;
  }
}
.hero h1 {
  margin: 28px 0 24px;
  font-size: clamp(36px, 3.3vw, 54px);
  line-height: 1.2;
  letter-spacing: -0.045em;
  font-weight: 800;
  white-space: nowrap;
}
.hero h1 span {
  display: inline-block;
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-style: italic;
  padding-right: 0.05em;
  text-shadow: 0 10px 28px rgba(18, 104, 243, 0.14);
}
.hero-lead {
  max-width: 580px;
  color: #53647f;
  font-size: 17px;
  line-height: 1.95;
  margin: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}
.primary-button,
.secondary-button {
  min-height: 50px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s;
}
.primary-button {
  border: 0;
  background: linear-gradient(135deg, var(--blue), #438df7);
  color: #fff;
  box-shadow: 0 14px 28px #1268f33d;
}
.play-mini {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 8px;
  margin-right: 9px;
}
.secondary-button {
  border: 1px solid #c7d9ee;
  background: #ffffffbf;
  color: #25405f;
}
.secondary-button span {
  margin-left: 22px;
  color: var(--blue);
}
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-3px);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #78869a;
  font-size: 12px;
  margin-top: 28px;
}
.hero-trust i {
  width: 3px;
  height: 3px;
  background: #9db0c7;
  border-radius: 50%;
}
.hero-visual-scene {
  --hero-rx: 0deg;
  --hero-ry: -2deg;
  --hero-x: 0px;
  --hero-y: 0px;
  position: absolute;
  z-index: 2;
  width: 58%;
  max-width: 880px;
  height: 580px;
  right: -30px;
  top: 130px;
  perspective: 1300px;
  animation: sceneFloat 6s ease-in-out infinite;
}
@keyframes sceneFloat {
  50% {
    translate: 0 -9px;
  }
}
.hero-visual {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #ffffffe8, #eff8ffd1);
  border: 1px solid rgba(169, 210, 247, 0.9);
  border-radius: 18px;
  box-shadow:
    0 35px 90px #1a4d8c33,
    0 0 0 1px #ffffffbf inset,
    0 0 70px #36a1ff1a;
  overflow: hidden;
  transform: translate3d(var(--hero-x), var(--hero-y), 0)
    rotateX(var(--hero-rx)) rotateY(var(--hero-ry));
  transform-style: preserve-3d;
  transition: transform 0.14s ease-out;
  will-change: transform;
}
.scene-aura {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}
.aura-one {
  width: 430px;
  height: 430px;
  right: -60px;
  top: -70px;
  background: radial-gradient(circle, #2dabff3d, #2dabff00 68%);
  animation: auraPulse 4s ease-in-out infinite;
}
.aura-two {
  width: 300px;
  height: 300px;
  left: -115px;
  bottom: -75px;
  background: radial-gradient(
    circle,
    rgba(34, 104, 244, 0.18),
    transparent 70%
  );
  animation: auraPulse 5s ease-in-out infinite reverse;
}
@keyframes auraPulse {
  50% {
    scale: 1.12;
    opacity: 0.62;
  }
}
.swarm-orbit {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  border: 1px dashed rgba(49, 147, 235, 0.22);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-outer {
  width: 108%;
  height: 122%;
  translate: -50% -50%;
  animation: swarmSpin 28s linear infinite;
}
.orbit-inner {
  width: 88%;
  height: 104%;
  translate: -50% -50%;
  animation: swarmSpin 20s linear infinite reverse;
}
@keyframes swarmSpin {
  to {
    rotate: 360deg;
  }
}
.swarm-node {
  position: absolute;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #f6fcfff0;
  border: 1px solid rgba(112, 190, 248, 0.55);
  box-shadow:
    0 7px 22px #1268b426,
    0 0 15px #47b4ff24;
  color: #2279db;
  font-size: 9px;
  font-weight: 800;
  animation: counterSpin 28s linear infinite;
}
.orbit-inner .swarm-node {
  animation-duration: 20s;
  animation-direction: reverse;
}
.sn-1 {
  left: 8%;
  top: 12%;
}
.sn-2 {
  right: 8%;
  top: 18%;
}
.sn-3 {
  right: 1%;
  bottom: 19%;
}
.sn-4 {
  left: -13px;
  bottom: 26%;
}
.sn-5 {
  right: 12%;
  top: -14px;
}
@keyframes counterSpin {
  to {
    rotate: -360deg;
  }
}
.data-stream {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(52, 159, 245, 0.5),
    transparent
  );
  pointer-events: none;
}
.stream-one {
  width: 44%;
  right: -8%;
  top: 21%;
  rotate: -12deg;
}
.stream-two {
  width: 36%;
  left: -11%;
  bottom: 22%;
  rotate: 16deg;
}
.data-stream i {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #59c9ff;
  box-shadow: 0 0 12px #35a9ff;
  animation: dataTravel 3.2s linear infinite;
}
.data-stream i:nth-child(2) {
  animation-delay: -0.8s;
}
.data-stream i:nth-child(3) {
  animation-delay: -1.6s;
}
.data-stream i:nth-child(4) {
  animation-delay: -2.4s;
}
@keyframes dataTravel {
  0% {
    left: 0;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  to {
    left: 100%;
    opacity: 0;
  }
}
.scan-sweep {
  position: absolute;
  z-index: 8;
  left: 0;
  right: 0;
  height: 78px;
  top: -95px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(69, 182, 255, 0.08),
    rgba(69, 182, 255, 0.2),
    rgba(69, 182, 255, 0.04),
    transparent
  );
  border-bottom: 1px solid rgba(88, 197, 255, 0.55);
  box-shadow: 0 8px 22px #3bb3ff14;
  pointer-events: none;
  animation: scanSweep 5.2s ease-in-out infinite;
}
@keyframes scanSweep {
  0%,
  12% {
    translate: 0 0;
    opacity: 0;
  }
  22% {
    opacity: 0.9;
  }
  68% {
    opacity: 0.7;
  }
  82%,
  to {
    translate: 0 680px;
    opacity: 0;
  }
}
.window-bar {
  height: 46px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #e3edf8;
  background: #fafdffeb;
  border-radius: 18px 18px 0 0;
}
.window-dots {
  display: flex;
  gap: 6px;
}
.window-dots i {
  width: 7px;
  height: 7px;
  background: #d2dfed;
  border-radius: 50%;
}
.window-dots i:first-child {
  background: #75c8ff;
}
.window-title {
  font-size: 11px;
  color: #75839a;
  letter-spacing: 0.05em;
}
.window-status {
  justify-self: end;
  font-size: 10px;
  color: #65819a;
}
.window-status span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #2ccb8d;
  border-radius: 50%;
  margin-right: 4px;
}
.app-shell {
  height: calc(100% - 46px);
  display: flex;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
}
.app-side {
  width: 105px;
  flex: 0 0 105px;
  padding: 16px 11px;
  background: linear-gradient(#0e2f66, #0b254f);
  color: #ffffffa6;
}
.mini-brand {
  width: 28px;
  height: 34px;
  margin: 1px 0 17px 5px;
  display: grid;
  place-items: center;
}
.mini-brand img {
  width: 23px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.18));
}
.side-item {
  height: 42px;
  padding: 0 9px;
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 10px;
  border-radius: 7px;
  margin: 4px 0;
}
.side-item span {
  width: 19px;
  font: 700 9px Arial;
  text-align: center;
}
.side-item.active {
  color: #fff;
  background: linear-gradient(90deg, #3992ff6b, #3992ff1f);
}
.app-main {
  flex: 1;
  min-width: 0;
  padding: 22px 23px;
  background: #f5f9fe;
}
.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-heading small,
.app-heading strong {
  display: block;
}
.app-heading small {
  color: #8394ab;
  font-size: 8px;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}
.app-heading strong {
  font-size: 17px;
}
.app-heading button {
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  padding: 8px 13px;
}
.agent-track {
  height: 68px;
  margin: 17px 0 12px;
  border-radius: 10px;
  background: linear-gradient(100deg, #eaf4ff, #f3f9ff);
  border: 1px solid #d7e8fb;
  display: flex;
  align-items: center;
  padding: 10px 13px;
}
.agent-avatar {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #1268f3, #53c8ff);
  box-shadow: 0 8px 16px #1268f338;
  font: 800 12px Arial;
}
.agent-copy {
  flex: 1;
  margin-left: 11px;
}
.agent-copy strong,
.agent-copy span {
  display: block;
}
.agent-copy strong {
  font-size: 11px;
  margin-bottom: 6px;
}
.agent-copy span {
  font-size: 8px;
  color: #73869e;
}
.live-chip {
  padding: 6px 8px;
  border-radius: 99px;
  color: #178760;
  background: #e6f8f1;
  font-size: 8px;
}
.live-chip i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2ccb8d;
  margin-right: 4px;
}
.audit-pipeline {
  position: relative;
  height: 38px;
  margin: -2px 0 10px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dfebf7;
  border-radius: 8px;
  background: #ffffffb8;
  overflow: hidden;
}
.audit-pipeline:before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, #7cbcf5, #c6def6, #78baf5);
}
.audit-pipeline > b {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 45px;
  height: 2px;
  translate: 0 -50%;
  background: linear-gradient(90deg, transparent, #19a5ff, transparent);
  filter: drop-shadow(0 0 5px #34aaff);
  animation: pipelinePulse 3.3s linear infinite;
}
.audit-pipeline span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fffffff0;
  padding: 0 5px;
  color: #8294aa;
  font-size: 6px;
}
.audit-pipeline span i {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f3ff;
  color: #438bd7;
  font: 700 6px Arial;
  font-style: normal;
}
.audit-pipeline span.active {
  color: #176ed8;
  font-weight: 700;
}
.audit-pipeline span.active i {
  background: #1979e8;
  color: #fff;
  box-shadow:
    0 0 0 4px #1b7eeb1a,
    0 0 12px #1b7eeb40;
  animation: pipelineNode 1.8s ease-in-out infinite;
}
@keyframes pipelinePulse {
  0% {
    left: 5%;
  }
  to {
    left: 88%;
  }
}
@keyframes pipelineNode {
  50% {
    box-shadow:
      0 0 0 7px #1b7eeb00,
      0 0 16px #1b7eeb66;
  }
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 11px;
}
.dashboard-grid article {
  background: #fff;
  border: 1px solid #e4edf7;
  border-radius: 10px;
  padding: 13px;
  box-shadow: 0 6px 18px #28538209;
}
.card-label {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
}
.card-label span {
  color: #5c9aff;
  font-size: 7px;
  font-weight: 500;
}
.risk-score {
  display: flex;
  align-items: end;
  gap: 9px;
  margin: 12px 0 10px;
}
.risk-score strong {
  font: 800 35px Arial;
  color: #163e72;
}
.risk-score span {
  margin-bottom: 5px;
  font-size: 8px;
  color: #ef5059;
  background: #fff0f1;
  border-radius: 4px;
  padding: 3px 5px;
}
.risk-line {
  height: 45px;
  display: flex;
  gap: 6px;
  align-items: end;
  border-bottom: 1px solid #e8eff7;
}
.risk-line i {
  width: 9%;
  background: linear-gradient(#3c9bff, #b9ddff);
  border-radius: 3px 3px 0 0;
}
.risk-line i:nth-child(1) {
  height: 36%;
}
.risk-line i:nth-child(2) {
  height: 48%;
}
.risk-line i:nth-child(3) {
  height: 42%;
}
.risk-line i:nth-child(4) {
  height: 68%;
}
.risk-line i:nth-child(5) {
  height: 58%;
}
.risk-line i:nth-child(6) {
  height: 84%;
}
.risk-line i:nth-child(7) {
  height: 75%;
}
.radar-visual {
  width: 94px;
  height: 94px;
  position: relative;
  margin: 14px auto 6px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle,
      transparent 0 17px,
      rgba(108, 159, 220, 0.22) 18px 19px
    ),
    linear-gradient(45deg, transparent 49%, #dfebf7 50%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, #dfebf7 50%, transparent 51%);
}
.radar-visual i {
  position: absolute;
  inset: 21px 14px 18px 23px;
  background: #2889ff4a;
  clip-path: polygon(50% 0, 100% 28%, 78% 100%, 20% 80%, 0 30%);
}
.radar-visual b {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  left: 46px;
  top: 18px;
}
.radar-legend {
  display: flex;
  justify-content: center;
  gap: 11px;
  color: #798ba3;
  font-size: 7px;
}
.radar-legend i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 3px;
}
.radar-legend .high {
  background: #ef535e;
}
.radar-legend .mid {
  background: #f7aa43;
}
.dashboard-grid .wide-card {
  grid-column: 1 / -1;
  padding-bottom: 8px;
}
.finding-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0 6px;
  border-bottom: 1px solid #edf2f7;
}
.finding-row:last-child {
  border: 0;
}
.finding-row b {
  color: #a3b1c4;
  font: 700 9px Arial;
}
.finding-row div {
  flex: 1;
}
.finding-row strong,
.finding-row span {
  display: block;
}
.finding-row strong {
  font-size: 9px;
}
.finding-row span {
  font-size: 7px;
  color: #8999ad;
  margin-top: 3px;
}
.finding-row em {
  font-style: normal;
  font-size: 7px;
  color: #e94350;
  background: #fff0f1;
  padding: 3px 5px;
  border-radius: 4px;
}
.finding-row em.medium {
  color: #d98b22;
  background: #fff7e9;
}
.floating-note {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(169, 211, 247, 0.82);
  background: #ffffffd6;
  box-shadow:
    0 14px 38px #1a4d8c2e,
    0 0 22px #41abff14;
  border-radius: 11px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: noteFloat 4s ease-in-out infinite;
}
.floating-note > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, #eaf6ff, #dcefff);
  color: var(--blue);
  font: 800 10px Arial;
  box-shadow: 0 0 16px #36a1ff1a;
}
.floating-note small,
.floating-note strong {
  display: block;
}
.floating-note small {
  font-size: 7px;
  color: #8b9caf;
}
.floating-note strong {
  font-size: 9px;
  margin-top: 4px;
}
.note-one {
  left: -42px;
  bottom: 90px;
}
.note-two {
  right: 14px;
  bottom: -29px;
  animation-delay: -2s;
}
@keyframes noteFloat {
  50% {
    transform: translateY(-8px) translate(3px);
  }
}
.live-intelligence {
  position: absolute;
  z-index: 7;
  right: -18px;
  top: 70px;
  min-width: 132px;
  padding: 10px 12px 10px 30px;
  border: 1px solid rgba(103, 194, 255, 0.45);
  border-radius: 9px;
  background: #072c5bde;
  color: #fff;
  box-shadow:
    0 15px 35px #05275033,
    0 0 28px #2fa0ff26;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.live-intelligence > i {
  position: absolute;
  left: 12px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #47d7a3;
  box-shadow: 0 0 0 5px #47d7a31f;
  animation: pulse 1.7s infinite;
}
.live-intelligence span,
.live-intelligence strong {
  display: block;
}
.live-intelligence span {
  font: 700 6px Arial;
  letter-spacing: 0.12em;
  color: #70cfff;
}
.live-intelligence strong {
  font-size: 8px;
  margin-top: 5px;
}
.hero-metrics {
  position: absolute;
  left: clamp(28px, 7vw, 112px);
  right: clamp(28px, 7vw, 112px);
  bottom: 0;
  z-index: 4;
  height: 118px;
  padding: 0 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: #ffffffd4;
  border: 1px solid #dbe8f6;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -10px 45px #2d5c960d;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.hero-metrics div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border-right: 1px solid #e0eaf5;
}
.hero-metrics div:last-child {
  border: 0;
}
.hero-metrics strong {
  font: 700 32px Arial;
  color: #183f74;
}
.hero-metrics sup {
  font-size: 14px;
  color: var(--blue);
  margin-left: 2px;
}
.hero-metrics span {
  font-size: 11px;
  color: #75869b;
  margin-top: 8px;
}
.section {
  padding: 120px clamp(28px, 7vw, 112px);
}
.section-head {
  max-width: 720px;
}
.section-head .eyebrow,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--blue);
  font: 700 11px Arial;
  letter-spacing: 0.16em;
}
.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--blue);
}
.section-head h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}
.section-head > p:last-child {
  margin: 0;
  color: #6c7d94;
  font-size: 15px;
  line-height: 1.9;
}
.capabilities-section {
  background: #fff;
}
.capability-layout {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
}
.capability-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.capability-item {
  width: 100%;
  min-height: 100px;
  border: 1px solid #e1e9f3;
  background: #fff;
  border-radius: 12px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: 0.25s;
}
.capability-item:hover {
  border-color: #9ec6f8;
  transform: translate(4px);
}
.capability-item.active {
  border-color: var(--blue);
  background: linear-gradient(100deg, #f2f8ff, #fff);
  box-shadow: 0 12px 30px #185eb617;
}
.cap-index {
  font: 700 12px Arial;
  color: #91a1b5;
  margin-right: 16px;
}
.capability-item.active .cap-index {
  color: var(--blue);
}
.cap-text {
  flex: 1;
}
.cap-text strong,
.cap-text small {
  display: block;
}
.cap-text strong {
  font-size: 16px;
  margin-bottom: 8px;
}
.cap-text small {
  font-size: 11px;
  color: #8290a3;
}
.cap-arrow {
  font-size: 19px;
  color: #b1bdca;
}
.capability-item.active .cap-arrow {
  color: var(--blue);
  transform: translate(3px);
}
@media (min-width: 1101px) {
  .capability-layout {
    align-items: stretch;
  }
  .capability-list {
    height: 100%;
    align-self: stretch;
  }
  .capability-item {
    flex: 1;
    min-height: 0;
  }
}
.capability-stage {
  min-width: 0;
  border-radius: 16px;
  background: linear-gradient(145deg, #0d3269, #092756);
  padding: 24px;
  color: #fff;
  box-shadow: 0 28px 60px #0e3a6f33;
  animation: reveal 0.35s ease-out;
}
.stage-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #b8cee8;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.stage-topline em {
  font-style: normal;
  color: #74e3bc;
  font: 700 9px Arial;
}
.stage-topline em i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #37d99b;
  margin-right: 5px;
}
.stage-workspace {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr 1.05fr 0.9fr;
  align-items: stretch;
  padding: 24px 0 18px;
}
.file-column,
.result-column {
  background: #ffffff0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
}
.stage-title {
  font-size: 10px;
  color: #a9c2df;
  margin-bottom: 13px;
}
.file-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.file-row > span {
  width: 29px;
  height: 29px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #40a1ff21;
  color: #77c6ff;
  font: 700 8px Arial;
}
.file-row div {
  flex: 1;
  min-width: 0;
}
.file-row strong,
.file-row small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-row strong {
  font-size: 9px;
  font-weight: 500;
}
.file-row small {
  font-size: 7px;
  color: #7f9cbd;
  margin-top: 4px;
}
.file-row > i {
  font-style: normal;
  color: #6f89a7;
}
.file-row > i.done {
  color: #4cdeaa;
}
.process-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.process-orbit {
  position: relative;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
}
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(91, 183, 255, 0.25);
  border-radius: 50%;
  animation: spin 10s linear infinite;
}
.orbit-a {
  inset: 14px;
}
.orbit-b {
  inset: 0;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 17s;
}
.process-core {
  position: relative;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background: radial-gradient(circle at 35% 30%, #4acbff, #1676eb 65%, #0a4eb8);
  box-shadow: 0 0 35px #2395ff73;
  font: 800 27px Arial;
}
.process-core span {
  font: 500 8px Microsoft YaHei;
  margin-top: 6px;
  color: #dceeff;
}
.orbit-node {
  position: absolute;
  width: 9px;
  height: 9px;
  background: #78d6ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #78d6ff;
}
.n1 {
  left: 22px;
  top: 52px;
}
.n2 {
  right: 18px;
  bottom: 52px;
}
.n3 {
  left: 56px;
  bottom: 13px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.process-status {
  width: 75%;
  font-size: 8px;
  color: #9fc2e6;
  text-align: center;
}
.process-status > span {
  display: block;
  height: 3px;
  background: #ffffff1a;
  border-radius: 5px;
  margin-top: 8px;
  overflow: hidden;
}
.process-status > span i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #2a9bff, #55e1ca);
  transition: width 0.5s;
}
.result-metric {
  padding: 15px 13px;
  background: #1a7feb26;
  border-radius: 8px;
}
.result-metric small,
.result-metric strong,
.result-metric span {
  display: block;
}
.result-metric small {
  font-size: 8px;
  color: #88bbec;
}
.result-metric strong {
  font: 700 27px Arial;
  margin: 9px 0 7px;
}
.result-metric span {
  font-size: 7px;
  line-height: 1.5;
  color: #9fb8d3;
}
.mini-bars {
  height: 96px;
  display: flex;
  align-items: end;
  gap: 7px;
  padding: 13px 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mini-bars i {
  flex: 1;
  min-width: 4px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#4ec9ff, #247cf0);
  opacity: 0.78;
}
.stage-description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}
.stage-description p {
  max-width: 62%;
  margin: 0;
  color: #b9cbe0;
  font-size: 10px;
  line-height: 1.7;
}
.stage-description div {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.stage-description span {
  font-size: 8px;
  color: #a6d4ff;
  background: #4aabff1c;
  border: 1px solid rgba(107, 190, 255, 0.15);
  padding: 6px 7px;
  border-radius: 5px;
}
@keyframes reveal {
  0% {
    opacity: 0.6;
    transform: translateY(6px);
  }
}
.visual-panel {
  min-height: 370px;
  display: grid;
  grid-template-columns: 1fr 1.08fr 0.94fr;
  gap: 12px;
  padding: 20px 0 18px;
}
.visual-card {
  position: relative;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(129, 189, 248, 0.16);
  border-radius: 11px;
  background: linear-gradient(155deg, #ffffff12, #ffffff09);
  overflow: hidden;
}
.visual-title {
  height: 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.visual-title > span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #3ca0ff26;
  color: #7bc9ff;
  font: 700 7px Arial;
}
.visual-title > strong {
  font-size: 9px;
  font-weight: 600;
}
.visual-title > em {
  margin-left: auto;
  font-style: normal;
  font-size: 6px;
  color: #8ec8f7;
}
.visual-title > em.running-dot:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: #4ee1b0;
  box-shadow: 0 0 0 4px #4ee1b01a;
  animation: pulse 1.7s infinite;
}
.source-group {
  margin-top: 13px;
}
.source-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.source-group-head strong {
  font-size: 8px;
}
.source-group-head span {
  font-size: 6px;
  color: #68d7ff;
}
.source-chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.source-chip {
  height: 40px;
  display: grid;
  grid-template-columns: 27px 1fr auto;
  gap: 6px;
  align-items: center;
  padding: 6px 7px;
  border-radius: 7px;
  background: #08265161;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.source-chip i {
  width: 27px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font: 700 6px Arial;
  font-style: normal;
}
.source-chip.structured i {
  color: #73c9ff;
  background: #2c91f529;
}
.source-chip.unstructured i {
  color: #7ae4c2;
  background: #31cb9d21;
}
.source-chip span {
  font-size: 7px;
  white-space: nowrap;
}
.source-chip b {
  font-size: 8px;
  color: #4fe0ad;
}
.source-divider {
  position: relative;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.source-divider:before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(84, 193, 255, 0.35),
    transparent
  );
}
.source-divider span {
  position: relative;
  padding: 0 7px;
  background: #123d74;
  color: #7eafd9;
  font-size: 5px;
}
.recognition-panel {
  display: flex;
  flex-direction: column;
}
.document-preview {
  margin-top: 12px;
  border: 1px solid rgba(111, 179, 240, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: #031a3d6b;
}
.document-toolbar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  background: #2167b42e;
}
.document-toolbar span {
  font-size: 7px;
}
.document-toolbar i {
  font-style: normal;
  font-size: 6px;
  color: #87a9c8;
}
.document-paper {
  position: relative;
  width: 76%;
  height: 220px;
  margin: 12px auto;
  background: #f5f8fc;
  border-radius: 3px;
  box-shadow: 0 10px 24px #0003;
  overflow: hidden;
}
.paper-heading {
  width: 52%;
  height: 7px;
  margin: 18px 14px 13px;
  background: #91a9c1;
  border-radius: 2px;
}
.paper-line {
  height: 3px;
  margin: 7px 14px;
  background: #d4dee8;
  border-radius: 2px;
}
.paper-line.long {
  width: 75%;
}
.paper-line.medium {
  width: 58%;
}
.field-box {
  position: absolute;
  left: 14px;
  right: 14px;
  padding: 7px 8px;
  border: 1px solid rgba(34, 147, 244, 0.62);
  border-radius: 4px;
  background: #e1f2ffe6;
  color: #214567;
}
.field-box span,
.field-box b {
  display: block;
}
.field-box span {
  font-size: 5px;
  color: #4c88bc;
}
.field-box b {
  margin-top: 4px;
  font-size: 7px;
}
.field-company {
  top: 74px;
}
.field-amount {
  top: 121px;
  right: 46px;
}
.field-date {
  top: 168px;
  left: 50px;
}
.scan-beam {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  top: 30px;
  background: linear-gradient(90deg, transparent, #35baff, transparent);
  box-shadow: 0 0 10px #35baff;
  animation: documentScan 3.2s ease-in-out infinite;
}
@keyframes documentScan {
  50% {
    top: 202px;
  }
}
.recognition-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.recognition-steps span {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #7e9fbe;
  font-size: 5px;
}
.recognition-steps i {
  width: 13px;
  height: 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font: 700 5px Arial;
  font-style: normal;
  background: #ffffff14;
}
.recognition-steps .done {
  color: #62dcb5;
}
.recognition-steps .done i {
  background: #37d29d29;
}
.recognition-steps .active {
  color: #78cfff;
}
.recognition-steps .active i {
  background: #237fdc;
  color: #fff;
  box-shadow: 0 0 0 4px #2c8de51f;
}
.schema-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 12px 0;
}
.schema-summary div {
  padding: 9px;
  border-radius: 7px;
  background: #257edd24;
}
.schema-summary small,
.schema-summary strong,
.schema-summary span {
  display: block;
}
.schema-summary small {
  font-size: 6px;
  color: #86add1;
}
.schema-summary strong {
  font: 700 17px Arial;
  margin: 5px 0 3px;
}
.schema-summary span {
  font-size: 5px;
  color: #67dbb4;
}
.schema-table {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  overflow: hidden;
}
.schema-head,
.schema-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr auto;
  gap: 5px;
  align-items: center;
  padding: 8px;
}
.schema-head {
  background: #368be01f;
  font-size: 5px;
  color: #83a8cc;
}
.schema-row {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  font-size: 6px;
}
.schema-row span:nth-child(2) {
  font: 6px Arial;
  color: #80c9ff;
}
.schema-row b {
  color: #56d9ac;
  font-size: 5px;
  font-weight: 500;
}
.normalize-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 13px;
  color: #8eb5d6;
  font-size: 6px;
}
.normalize-flow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4adeaa;
  box-shadow: 0 0 8px #4adeaa;
}
.normalize-flow b {
  color: #4ebaff;
}
.model-list-panel {
  display: flex;
  flex-direction: column;
}
.model-task {
  position: relative;
  margin-top: 12px;
}
.model-task > div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.model-task i {
  font-style: normal;
  color: #6da8dc;
  font: 700 6px Arial;
}
.model-task strong {
  flex: 1;
  font-size: 7px;
  font-weight: 500;
}
.model-task em {
  font-style: normal;
  font-size: 5px;
  padding: 3px 5px;
  border-radius: 3px;
}
.model-task em.high {
  color: #ff9299;
  background: #f44b5b21;
}
.model-task em.medium {
  color: #ffd081;
  background: #f4a43621;
}
.model-task em.normal {
  color: #7fd3ff;
  background: #3ba1f021;
}
.model-task > span {
  display: block;
  height: 3px;
  margin-top: 7px;
  border-radius: 4px;
  background: #ffffff12;
  overflow: hidden;
}
.model-task > span b {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #278af0, #4ad6ff);
}
.model-task > small {
  position: absolute;
  right: 0;
  bottom: -10px;
  color: #7196bb;
  font: 5px Arial;
}
.model-scope {
  margin-top: auto;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(110deg, #1d78dc2e, #2bc6e614);
}
.model-scope span,
.model-scope strong,
.model-scope small {
  display: block;
}
.model-scope span {
  font-size: 6px;
  color: #8cb0d2;
}
.model-scope strong {
  font: 700 23px Arial;
  margin: 5px 0;
}
.model-scope small {
  font-size: 6px;
  color: #67dcba;
}
.relation-canvas {
  position: relative;
  height: 270px;
  margin-top: 10px;
}
.relation-canvas svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.relation-canvas path {
  fill: none;
  stroke: #59a4e440;
  stroke-width: 1;
}
.relation-canvas .risk-path {
  stroke: #f26c78;
  stroke-width: 1.6;
  stroke-dasharray: 5 5;
  animation: riskDash 5s linear infinite;
}
@keyframes riskDash {
  to {
    stroke-dashoffset: -40;
  }
}
.relation-node {
  position: absolute;
  width: 62px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.relation-node span {
  width: 37px;
  height: 37px;
  margin: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111, 190, 250, 0.34);
  border-radius: 50%;
  background: linear-gradient(145deg, #174a88, #10366b);
  color: #8bd5ff;
  font: 700 9px Arial;
  box-shadow: 0 0 16px #31a0ff21;
}
.relation-node strong {
  display: block;
  margin-top: 5px;
  font-size: 6px;
  font-weight: 500;
  white-space: nowrap;
}
.relation-node i {
  position: absolute;
  right: -5px;
  top: -3px;
  padding: 2px 4px;
  border-radius: 3px;
  background: #f05866;
  color: #fff;
  font-size: 5px;
  font-style: normal;
}
.relation-node.core-node {
  left: 50%;
  top: 49%;
}
.relation-node.core-node span {
  width: 55px;
  height: 55px;
  border: 0;
  background: radial-gradient(circle at 35% 30%, #4acbff, #1676eb 65%, #0a4eb8);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 0 28px #2493f87a;
}
.relation-node.node-a {
  left: 19%;
  top: 22%;
}
.relation-node.node-b {
  left: 83%;
  top: 20%;
}
.relation-node.node-c {
  left: 16%;
  top: 75%;
}
.relation-node.node-d {
  left: 85%;
  top: 77%;
}
.relation-node.risk span {
  border-color: #f45c698c;
  box-shadow: 0 0 18px #f45c692e;
  color: #ff9da5;
}
.analysis-pulse {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #69d5ff;
  box-shadow: 0 0 9px #69d5ff;
  animation: nodeTravel 3.4s ease-in-out infinite;
}
.pulse-one {
  left: 48%;
  top: 47%;
}
.pulse-two {
  left: 51%;
  top: 50%;
  animation-delay: -1.7s;
}
@keyframes nodeTravel {
  50% {
    translate: 98px -72px;
  }
}
.relation-legend {
  display: flex;
  justify-content: center;
  gap: 14px;
  color: #7f9fbe;
  font-size: 5px;
}
.relation-legend i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 4px;
  background: #58baf0;
}
.relation-legend i.risk {
  background: #f26472;
}
.risk-overview {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  margin: 12px 0;
}
.risk-ring {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#f05b67 0 20%, #f3a440 20% 52%, #34a3ed 52% 100%);
  position: relative;
}
.risk-ring:after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #123b72;
}
.risk-ring span {
  position: relative;
  z-index: 2;
  text-align: center;
}
.risk-ring strong,
.risk-ring small {
  display: block;
}
.risk-ring strong {
  font: 800 24px Arial;
}
.risk-ring small {
  font-size: 5px;
  color: #8cafcf;
}
.risk-counts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.risk-counts span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 5px;
  color: #9bb5cf;
  font-size: 6px;
}
.risk-counts i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.risk-counts i.high {
  background: #f15a67;
}
.risk-counts i.mid {
  background: #f3a33f;
}
.risk-counts i.low {
  background: #36a7ef;
}
.risk-counts strong {
  font: 700 10px Arial;
  color: #fff;
}
.risk-findings > div {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}
.risk-findings b {
  color: #5f90be;
  font: 700 6px Arial;
}
.risk-findings span {
  flex: 1;
}
.risk-findings strong,
.risk-findings small {
  display: block;
}
.risk-findings strong {
  font-size: 7px;
}
.risk-findings small {
  font-size: 5px;
  color: #7b9cbc;
  margin-top: 3px;
}
.risk-findings em {
  font-style: normal;
  font-size: 6px;
  color: #ff8c95;
  background: #f04d5b21;
  padding: 3px 5px;
  border-radius: 3px;
}
.risk-findings em.medium {
  color: #ffc56d;
  background: #f5a63621;
}
.evidence-panel {
  display: flex;
  flex-direction: column;
}
.evidence-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  background: #07244b66;
}
.evidence-card > i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #2d92f12b;
  color: #71c7ff;
  font: 700 6px Arial;
  font-style: normal;
}
.evidence-card > div {
  flex: 1;
  min-width: 0;
}
.evidence-card small,
.evidence-card strong {
  display: block;
}
.evidence-card small {
  font-size: 5px;
  color: #7fa3c5;
}
.evidence-card strong {
  margin-top: 3px;
  font-size: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.evidence-card > span {
  font: 700 7px Arial;
  color: #67d9b5;
}
.evidence-chain {
  position: absolute;
  left: 25px;
  top: 57px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(#3faff5, #4bdbb5);
}
.evidence-chain span {
  position: absolute;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62cafc;
}
.evidence-chain span:nth-child(1) {
  top: 12%;
}
.evidence-chain span:nth-child(2) {
  top: 37%;
}
.evidence-chain span:nth-child(3) {
  top: 62%;
}
.evidence-chain span:nth-child(4) {
  top: 87%;
}
.report-document-panel {
  display: flex;
  flex-direction: column;
}
.report-document {
  position: relative;
  flex: 1;
  margin-top: 12px;
}
.report-page {
  position: absolute;
  z-index: 3;
  inset: 0 14px 6px 5px;
  padding: 13px;
  border-radius: 4px;
  background: #f7f9fc;
  color: #173854;
  box-shadow: 0 10px 25px #0003;
}
.report-page-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dbe5ef;
}
.report-page-head > i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #1d7bdd;
  color: #fff;
  font: 800 7px Arial;
  font-style: normal;
}
.report-page-head > div {
  flex: 1;
}
.report-page-head strong,
.report-page-head small {
  display: block;
}
.report-page-head strong {
  font-size: 7px;
}
.report-page-head small {
  font-size: 4px;
  color: #8da0b1;
  margin-top: 3px;
}
.report-page-head > span {
  font-size: 5px;
  color: #8ba0b5;
}
.report-section-title {
  margin: 11px 0 7px;
  font-size: 7px;
  font-weight: 700;
}
.report-chart {
  height: 74px;
  display: flex;
  align-items: end;
  gap: 5px;
  padding: 7px;
  border-left: 1px solid #d8e3ed;
  border-bottom: 1px solid #d8e3ed;
  background: linear-gradient(rgba(32, 124, 218, 0.05) 1px, transparent 1px);
  background-size: 100% 18px;
}
.report-chart i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(#48bef4, #1976d6);
}
.report-insight {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 8px;
  border-radius: 5px;
  background: #fff0f1;
  border: 1px solid #ffd7da;
}
.report-insight > b {
  font-size: 5px;
  color: #fff;
  background: #ee5260;
  padding: 3px 4px;
  border-radius: 3px;
}
.report-insight span {
  flex: 1;
}
.report-insight strong,
.report-insight small {
  display: block;
}
.report-insight strong {
  font-size: 6px;
}
.report-insight small {
  font-size: 4px;
  color: #8d6f74;
  margin-top: 3px;
}
.report-lines i {
  display: block;
  height: 3px;
  margin-top: 7px;
  background: #dce5ec;
  border-radius: 2px;
}
.report-lines i:nth-child(2) {
  width: 82%;
}
.report-lines i:nth-child(3) {
  width: 62%;
}
.page-stack {
  position: absolute;
  inset: 8px 6px -1px 13px;
  border-radius: 4px;
  background: #dce8f3;
  transform: rotate(1deg);
}
.stack-two {
  inset: 13px 0 -5px 20px;
  background: #c8dae9;
  transform: rotate(2deg);
}
.report-progress {
  margin-top: 8px;
}
.report-progress > span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: #ffffff14;
  overflow: hidden;
}
.report-progress > span i {
  display: block;
  width: 86%;
  height: 100%;
  background: linear-gradient(90deg, #2b99f5, #4bdbc0);
  animation: reportGrow 1.4s ease-out;
}
@keyframes reportGrow {
  0% {
    width: 20%;
  }
}
.report-progress small {
  display: block;
  margin-top: 6px;
  color: #83a6c8;
  font-size: 5px;
  text-align: center;
}
.delivery-metric {
  margin: 12px 0;
  padding: 13px;
  border-radius: 8px;
  background: linear-gradient(120deg, #1f7ee340, #2cc7da1a);
}
.delivery-metric small,
.delivery-metric strong,
.delivery-metric span {
  display: block;
}
.delivery-metric small {
  font-size: 6px;
  color: #8db4d7;
}
.delivery-metric strong {
  font: 800 27px Arial;
  margin: 5px 0;
}
.delivery-metric strong em {
  font: 500 8px Microsoft YaHei;
  font-style: normal;
  margin-left: 3px;
}
.delivery-metric span {
  font-size: 5px;
  color: #9ab9d3;
}
.delivery-files > div {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}
.delivery-files i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #2892ef24;
  color: #75c8ff;
  font: 700 6px Arial;
  font-style: normal;
}
.delivery-files span {
  flex: 1;
  min-width: 0;
}
.delivery-files strong,
.delivery-files small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.delivery-files strong {
  font-size: 6px;
}
.delivery-files small {
  font-size: 5px;
  color: #7698ba;
  margin-top: 3px;
}
.delivery-files b {
  color: #54dbb0;
  font-size: 8px;
}
.delivery-checks {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 11px;
}
.delivery-checks span {
  padding: 4px 5px;
  border-radius: 4px;
  background: #2fa2f51a;
  color: #8ecbfa;
  font-size: 5px;
}
.scenarios-section {
  background: var(--soft);
}
.section-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}
.section-counter {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 5px;
}
.section-counter strong {
  font: 700 54px Arial;
  color: #d9e6f5;
}
.section-counter span {
  font-size: 10px;
  color: #7e8fa5;
  line-height: 1.6;
}
.scenario-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 65px;
  border-bottom: 1px solid #ccdaea;
}
.scenario-tabs button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 64px;
  border: 0;
  background: transparent;
  color: #718198;
  font-size: 13px;
  cursor: pointer;
}
.scenario-tabs button span {
  font: 700 9px Arial;
  color: #a2afbf;
}
.scenario-tabs button:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 3px;
  background: var(--blue);
  transition: 0.3s;
  transform: translate(-50%);
}
.scenario-tabs button.active {
  color: var(--blue);
  font-weight: 700;
}
.scenario-tabs button.active span {
  color: var(--blue);
}
.scenario-tabs button.active:after {
  width: 60%;
}
.scenario-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 500px;
  margin-top: 40px;
  background: #fff;
  border: 1px solid #dce7f3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 70px #2a568917;
  animation: reveal 0.35s ease;
}
.scenario-copy {
  padding: 60px 52px;
  background: linear-gradient(145deg, #fff, #f6faff);
  border-right: 1px solid #e4edf6;
}
.scenario-label {
  display: inline-flex;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.1em;
  background: #eaf4ff;
  border: 1px solid #d7eaff;
  border-radius: 99px;
  padding: 7px 10px;
}
.scenario-copy h3 {
  font-size: 34px;
  margin: 22px 0 18px;
}
.scenario-copy > p {
  font-size: 14px;
  color: #6b7b91;
  line-height: 1.9;
  margin: 0;
}
.scenario-result {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 33px 0;
  padding: 16px;
  border: 1px solid #dbe8f5;
  border-radius: 10px;
  background: #fff;
}
.scenario-result > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, #1268f3, #55c9ff);
  color: #fff;
  font: 800 11px Arial;
}
.scenario-result small,
.scenario-result strong {
  display: block;
}
.scenario-result small {
  color: #8a99ad;
  font-size: 9px;
  margin-bottom: 5px;
}
.scenario-result strong {
  font-size: 11px;
  line-height: 1.5;
}
.scenario-copy > button {
  border: 0;
  background: none;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}
.scenario-copy > button span {
  margin-left: 12px;
}
.scenario-screen {
  position: relative;
  margin: 32px;
  border-radius: 11px;
  border: 1px solid #dce8f4;
  background: #f5f9fd;
  box-shadow: 0 15px 35px #244f7d1f;
  overflow: visible;
}
.screen-header {
  height: 43px;
  padding: 0 15px;
  background: #0d3269;
  color: #c5daef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  border-radius: 11px 11px 0 0;
}
.screen-header div {
  display: flex;
  gap: 5px;
}
.screen-header i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3e86d2;
}
.screen-body {
  padding: 18px;
}
.screen-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #e2ebf5;
  border-radius: 8px;
  padding: 13px;
}
.screen-summary small,
.screen-summary strong {
  display: block;
}
.screen-summary small {
  font-size: 7px;
  color: #91a0b2;
  margin-bottom: 5px;
}
.screen-summary strong {
  font-size: 10px;
}
.screen-summary > span {
  font-size: 8px;
  color: var(--blue);
  background: #eaf4ff;
  padding: 6px 8px;
  border-radius: 4px;
}
.screen-chart {
  position: relative;
  height: 178px;
  background: #fff;
  border: 1px solid #e2ebf5;
  border-radius: 8px;
  margin-top: 11px;
  padding: 13px;
  overflow: hidden;
}
.chart-heading {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
}
.chart-heading small {
  font-size: 7px;
  color: #95a4b6;
}
.chart-gridlines {
  position: absolute;
  inset: 40px 13px 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.chart-gridlines i {
  border-top: 1px dashed #e3ebf4;
}
.chart-bars {
  position: absolute;
  inset: 44px 20px 15px 26px;
  display: flex;
  align-items: end;
  gap: 10px;
}
.chart-bars div {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 5px;
}
.chart-bars i {
  width: 55%;
  min-width: 8px;
  background: linear-gradient(#32a6ff, #9ed4ff);
  border-radius: 3px 3px 0 0;
  animation: grow 0.65s ease-out;
}
.chart-bars div:nth-child(5) i {
  background: linear-gradient(#ff8e93, #ef4d59);
}
.chart-bars span {
  font: 7px Arial;
  color: #9aa8b9;
}
@keyframes grow {
  0% {
    height: 0;
  }
}
.screen-findings {
  margin-top: 11px;
}
.screen-finding {
  height: 51px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  background: #fff;
  border: 1px solid #e2ebf5;
  border-radius: 7px;
  margin-top: 7px;
}
.screen-finding > span {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 5px;
  color: #e94753;
  background: #fff0f1;
  font-size: 8px;
}
.screen-finding div {
  flex: 1;
}
.screen-finding strong,
.screen-finding small {
  display: block;
}
.screen-finding strong {
  font-size: 8px;
}
.screen-finding small {
  font-size: 6px;
  color: #91a0b1;
  margin-top: 4px;
}
.screen-finding b {
  font-size: 7px;
  color: var(--blue);
}
.screen-finding.secondary > span {
  color: #d88a22;
  background: #fff5e8;
}
.agent-bubble {
  position: absolute;
  right: -20px;
  bottom: 25px;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 10px 13px;
  background: #fffffff2;
  border: 1px solid #d6e5f5;
  border-radius: 10px;
  box-shadow: 0 13px 30px #1c4b7e26;
}
.agent-bubble > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font: 800 9px Arial;
}
.agent-bubble strong,
.agent-bubble small {
  display: block;
}
.agent-bubble strong {
  font-size: 8px;
}
.agent-bubble small {
  font-size: 6px;
  color: #8d9caf;
  margin-top: 4px;
}
.scenario-visual {
  min-height: 420px;
  padding: 16px;
  display: grid;
  gap: 11px;
  color: #1d3650;
}
.scenario-visual-title {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4edf6;
}
.scenario-visual-title strong {
  font-size: 9px;
}
.scenario-visual-title span {
  font-size: 6px;
  color: #8498ac;
}
.scenario-visual > div,
.scenario-visual > aside {
  min-width: 0;
  border: 1px solid #e0e9f3;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 6px 18px #2a548209;
}
.portrait-visual {
  grid-template-columns: 155px 1fr;
}
.portrait-company-list {
  padding: 12px;
}
.portrait-company {
  height: 66px;
  margin-top: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #edf2f7;
  border-radius: 7px;
  background: #fafcff;
}
.portrait-company.active {
  border-color: #9bc9f7;
  background: #edf6ff;
  box-shadow: 0 6px 14px #2377cc14;
}
.portrait-company > i {
  font: 700 6px Arial;
  color: #9aabbd;
  font-style: normal;
}
.portrait-company > span {
  flex: 1;
  min-width: 0;
}
.portrait-company strong,
.portrait-company small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.portrait-company strong {
  font-size: 7px;
}
.portrait-company small {
  margin-top: 4px;
  font-size: 5px;
  color: #8798aa;
}
.portrait-company > b {
  font: 700 11px Arial;
}
.portrait-company > b.high {
  color: #e84f5c;
}
.portrait-company > b.medium {
  color: #e99a30;
}
.portrait-company > b.normal {
  color: #3e9ddd;
}
.portrait-dashboard {
  padding: 14px;
}
.portrait-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #e4edf6;
}
.portrait-head small,
.portrait-head strong {
  display: block;
}
.portrait-head small {
  font-size: 5px;
  color: #8398ac;
}
.portrait-head strong {
  font-size: 9px;
  margin-top: 5px;
}
.portrait-head > span {
  font-size: 6px;
  color: #e7535e;
  background: #fff0f1;
  border: 1px solid #ffdce0;
  border-radius: 4px;
  padding: 6px 8px;
}
.portrait-score-row {
  display: grid;
  grid-template-columns: 145px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}
.portrait-score {
  position: relative;
  width: 132px;
  height: 132px;
  margin: auto;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: conic-gradient(#ec5964 0 82%, #e7eef5 82%);
  box-shadow: inset 0 0 0 12px #fff;
}
.portrait-score:after {
  content: "";
  position: absolute;
  inset: 21px;
  border-radius: 50%;
  background: #f7fbff;
}
.portrait-score > * {
  position: relative;
  z-index: 2;
}
.portrait-score strong {
  font: 800 31px Arial;
  color: #173d67;
}
.portrait-score small {
  font-size: 5px;
  color: #8297aa;
  margin-top: 3px;
}
.portrait-score em {
  margin-top: 6px;
  padding: 3px 6px;
  border-radius: 4px;
  background: #fff0f1;
  color: #eb5260;
  font-size: 6px;
  font-style: normal;
}
.portrait-dimensions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.portrait-dimensions > div > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portrait-dimensions b {
  font-size: 7px;
}
.portrait-dimensions em {
  font: 700 7px Arial;
  color: #316fa7;
  font-style: normal;
}
.portrait-dimensions > div > i {
  display: block;
  height: 5px;
  margin-top: 6px;
  border-radius: 5px;
  background: #e9f0f7;
  overflow: hidden;
}
.portrait-dimensions > div > i b {
  display: block;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, #2384e6, #57c6ef);
  animation: portraitGrow 0.7s ease-out;
}
@keyframes portraitGrow {
  0% {
    width: 0;
  }
}
.portrait-risk-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.portrait-risk-tags span {
  padding: 6px 8px;
  border-radius: 5px;
  color: #d64b57;
  background: #fff1f2;
  border: 1px solid #ffdde0;
  font-size: 6px;
}
.tender-visual {
  grid-template-columns: 1.08fr 0.92fr;
}
.tender-overview,
.bid-relation-panel {
  padding: 13px;
}
.tender-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 12px;
}
.tender-metrics div {
  padding: 9px;
  border: 1px solid #e4ecf5;
  border-radius: 7px;
  background: #f9fcff;
}
.tender-metrics small,
.tender-metrics strong,
.tender-metrics span {
  display: block;
}
.tender-metrics small {
  font-size: 5px;
  color: #8799ab;
}
.tender-metrics strong {
  font: 700 15px Arial;
  margin: 5px 0 2px;
  color: #174a7b;
}
.tender-metrics span {
  font-size: 5px;
  color: #51a5dd;
}
.bid-chart {
  position: relative;
  height: 250px;
  margin-top: 12px;
  padding: 30px 9px 18px;
  display: flex;
  align-items: end;
  gap: 8px;
  border: 1px solid #e5edf5;
  border-radius: 7px;
  background: linear-gradient(#eff6fc 1px, transparent 1px);
  background-size: 100% 49px;
}
.bid-reference {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 61px;
  border-top: 1px dashed #ef8b51;
}
.bid-reference span {
  position: absolute;
  right: 0;
  top: -12px;
  font-size: 5px;
  color: #df783c;
  background: #fff;
  padding-left: 4px;
}
.bid-bar {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 5px;
}
.bid-bar i {
  width: 62%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#3aa8ed, #83cff7);
  animation: grow 0.65s ease-out;
}
.bid-bar.risk i {
  background: linear-gradient(#f58b92, #e94f5d);
}
.bid-bar span {
  font-size: 5px;
  color: #8497a9;
}
.risk-text {
  color: #e45460 !important;
}
.bid-network {
  position: relative;
  height: 330px;
}
.bid-network svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bid-network path {
  fill: none;
  stroke: #bdd5e9;
  stroke-width: 1;
}
.bid-network .alert-line {
  stroke: #ed6671;
  stroke-dasharray: 5 4;
  animation: riskDash 5s linear infinite;
}
.bid-node {
  position: absolute;
  width: 64px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.bid-node > span {
  width: 38px;
  height: 38px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #b8d9f3;
  background: #eaf5ff;
  color: #2889d8;
  font: 700 9px Arial;
  box-shadow: 0 4px 13px #2170b11a;
}
.bid-node > strong {
  display: block;
  margin-top: 5px;
  font-size: 6px;
  white-space: nowrap;
}
.bid-node > i {
  position: absolute;
  right: -13px;
  top: -6px;
  padding: 2px 4px;
  border-radius: 3px;
  color: #fff;
  background: #eb5662;
  font-size: 5px;
  font-style: normal;
}
.bid-node.center {
  left: 50%;
  top: 50%;
}
.bid-node.center > span {
  width: 55px;
  height: 55px;
  background: linear-gradient(145deg, #1977df, #50bff4);
  color: #fff;
  border: 0;
  font-size: 13px;
  box-shadow: 0 0 0 9px #2387dd14;
}
.bid-node.bidder-a {
  left: 18%;
  top: 17%;
}
.bid-node.bidder-b {
  left: 82%;
  top: 18%;
}
.bid-node.bidder-c {
  left: 18%;
  top: 81%;
}
.bid-node.bidder-d {
  left: 82%;
  top: 80%;
}
.bid-node.alert > span {
  border-color: #f1a1a8;
  color: #e0505c;
  background: #fff1f2;
}
.engineering-visual {
  display: flex;
  flex-direction: column;
}
.engineering-top {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.engineering-top > div {
  padding: 10px 12px;
  border: 1px solid #e2eaf3;
  border-radius: 8px;
  background: #fff;
}
.engineering-top small,
.engineering-top strong,
.engineering-top span {
  display: inline-block;
}
.engineering-top small {
  display: block;
  font-size: 5px;
  color: #8798aa;
}
.engineering-top strong {
  margin-top: 6px;
  font: 700 17px Arial;
  color: #164777;
}
.engineering-top span {
  font-size: 5px;
  color: #6d8aa4;
  margin-left: 3px;
}
.engineering-top > div.alert {
  border-color: #ffd5d9;
  background: #fff7f7;
}
.engineering-top > div.alert strong {
  color: #e4515d;
}
.engineering-main {
  flex: 1;
  display: grid !important;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 10px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.progress-comparison,
.change-order-panel {
  padding: 13px;
  border: 1px solid #e0e9f3;
  border-radius: 9px;
  background: #fff;
}
.curve-chart {
  position: relative;
  height: 280px;
  margin-top: 12px;
  padding-bottom: 30px;
  overflow: hidden;
}
.curve-grid {
  position: absolute;
  inset: 8px 5px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.curve-grid i {
  border-top: 1px dashed #dfe8f1;
}
.curve-chart svg {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  width: calc(100% - 16px);
  height: 220px;
  overflow: visible;
}
.curve-chart polyline {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.curve-chart .plan-line {
  stroke: #278ce2;
}
.curve-chart .pay-line {
  stroke: #f1943f;
}
.curve-chart .risk-point {
  fill: #e8505c;
  stroke: #fff;
  stroke-width: 3;
  animation: pulse 1.7s infinite;
}
.curve-legend {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 4px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 5px;
  color: #7f93a5;
}
.curve-legend span i {
  display: inline-block;
  width: 13px;
  height: 3px;
  margin-right: 4px;
  background: #278ce2;
}
.curve-legend span:nth-child(2) i {
  background: #f1943f;
}
.curve-legend em {
  margin-left: auto;
  color: #e24e5b;
  font-style: normal;
}
.change-order {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 15px 0;
  border-bottom: 1px solid #e7eef5;
}
.change-order:last-child {
  border: 0;
}
.change-order > i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #fff0f1;
  color: #e74c58;
  font-size: 7px;
  font-style: normal;
}
.change-order > span {
  flex: 1;
  min-width: 0;
}
.change-order strong,
.change-order small {
  display: block;
}
.change-order strong {
  font-size: 6px;
}
.change-order small {
  font-size: 5px;
  color: #8b9cad;
  margin-top: 4px;
}
.change-order > b {
  font-size: 5px;
  color: #338bd4;
}
.supply-visual {
  grid-template-columns: 1.15fr 0.85fr;
}
.supplier-network-panel,
.supplier-analysis-panel {
  padding: 13px;
}
.supplier-network {
  position: relative;
  height: 350px;
}
.supplier-network svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.supplier-network path {
  fill: none;
  stroke: #bdd5e8;
  stroke-width: 1;
}
.supplier-network path.danger {
  stroke: #ea6370;
  stroke-width: 1.6;
  stroke-dasharray: 5 4;
  animation: riskDash 5s linear infinite;
}
.supplier-node {
  position: absolute;
  width: 70px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.supplier-node > span {
  width: 42px;
  height: 42px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid #b9daf3;
  background: #edf7ff;
  color: #2c89d1;
  font: 700 10px Arial;
}
.supplier-node > strong {
  display: block;
  margin-top: 5px;
  font-size: 6px;
  white-space: nowrap;
}
.supplier-node > i {
  position: absolute;
  right: -15px;
  top: -5px;
  padding: 2px 4px;
  border-radius: 3px;
  background: #e9505c;
  color: #fff;
  font-size: 5px;
  font-style: normal;
}
.supplier-node.source {
  left: 50%;
  top: 50%;
}
.supplier-node.source > span {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 17px;
  background: linear-gradient(145deg, #1777df, #53c2f2);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 0 0 9px #1e80d814;
}
.supplier-node.sup-a {
  left: 17%;
  top: 18%;
}
.supplier-node.sup-b {
  left: 83%;
  top: 17%;
}
.supplier-node.sup-c {
  left: 17%;
  top: 82%;
}
.supplier-node.account {
  left: 83%;
  top: 81%;
}
.supplier-node.danger > span {
  color: #e6535f;
  border-color: #f1adb3;
  background: #fff1f2;
}
.concentration-card {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}
.concentration-ring {
  position: relative;
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#278fe2 0 71.4%, #e8f0f7 71.4%);
}
.concentration-ring:after {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
}
.concentration-ring > span {
  position: relative;
  z-index: 2;
  text-align: center;
}
.concentration-ring strong,
.concentration-ring small {
  display: block;
}
.concentration-ring strong {
  font: 700 16px Arial;
  color: #174b77;
}
.concentration-ring small {
  font-size: 5px;
  color: #8799aa;
  margin-top: 4px;
}
.concentration-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.concentration-card > div:last-child span {
  display: flex;
  align-items: center;
  font-size: 6px;
  color: #6f8398;
}
.concentration-card > div:last-child i {
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #2c91df;
}
.concentration-card > div:last-child b {
  margin-left: auto;
  color: #2d79b5;
}
.supplier-alert {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 25px;
  padding: 12px;
  border: 1px solid #ffd9dc;
  border-radius: 8px;
  background: #fff4f5;
}
.supplier-alert > i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ec5663;
  color: #fff;
  font: 800 10px Arial;
  font-style: normal;
}
.supplier-alert > span {
  flex: 1;
}
.supplier-alert strong,
.supplier-alert small {
  display: block;
}
.supplier-alert strong {
  font-size: 7px;
}
.supplier-alert small {
  font-size: 5px;
  color: #9c7276;
  margin-top: 5px;
  line-height: 1.5;
}
.ask-visual {
  grid-template-columns: 1fr 1fr;
}
.ask-conversation,
.ask-result {
  padding: 13px;
}
.question-bubble,
.answer-bubble {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
}
.question-bubble > span,
.answer-bubble > span {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #dceefe;
  color: #237bc7;
  font: 700 8px Arial;
}
.question-bubble p {
  margin: 0;
  padding: 10px;
  border-radius: 2px 9px 9px;
  background: #eaf4fd;
  color: #395b78;
  font-size: 7px;
  line-height: 1.6;
}
.thinking-track {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin: 15px 0;
  padding: 10px 6px;
  border-radius: 7px;
  background: #f5f9fd;
}
.thinking-track span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #8196a9;
  font-size: 5px;
  text-align: center;
}
.thinking-track i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font: 700 5px Arial;
  font-style: normal;
  background: #e4edf5;
}
.thinking-track span.done i {
  background: #e1f7ef;
  color: #24a372;
}
.thinking-track span.active i {
  background: #2387df;
  color: #fff;
  box-shadow: 0 0 0 5px #2387df1a;
}
.answer-bubble > span {
  background: linear-gradient(145deg, #197ae1, #53c5f3);
  color: #fff;
}
.answer-bubble > div {
  padding: 10px;
  border: 1px solid #dce9f5;
  border-radius: 2px 9px 9px;
  background: #fff;
}
.answer-bubble strong {
  font-size: 7px;
}
.answer-bubble p {
  font-size: 6px;
  color: #6c8194;
  line-height: 1.7;
  margin: 6px 0 0;
}
.ask-input {
  height: 38px;
  margin-top: 14px;
  padding: 0 8px 0 11px;
  display: flex;
  align-items: center;
  border: 1px solid #d9e6f2;
  border-radius: 7px;
  background: #fff;
}
.ask-input span {
  flex: 1;
  color: #9aaaba;
  font-size: 6px;
}
.ask-input b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #2386dc;
  color: #fff;
}
.ask-chart {
  margin-top: 13px;
  padding: 11px;
  border: 1px solid #e3ebf3;
  border-radius: 7px;
  background: #fafcff;
}
.ask-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ask-chart-head span {
  font-size: 7px;
}
.ask-chart-head b {
  font: 700 9px Arial;
  color: #e7515e;
}
.ask-bars {
  height: 142px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 18px;
  padding: 15px 25px 0;
  border-bottom: 1px solid #dce6ef;
}
.ask-bars > div {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 5px;
}
.ask-bars i {
  width: 68%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#39aaf0, #2785dc);
  animation: grow 0.65s ease-out;
}
.ask-bars > div:last-child i {
  background: linear-gradient(#f47f89, #e94f5c);
}
.ask-bars span {
  font: 6px Arial;
  color: #8295a8;
}
.ask-evidence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 10px;
}
.ask-evidence > span {
  padding: 7px;
  border: 1px solid #e4ecf4;
  border-radius: 6px;
  background: #fff;
}
.ask-evidence i {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #e9f4fd;
  color: #2782ca;
  font: 700 5px Arial;
  font-style: normal;
}
.ask-evidence b,
.ask-evidence em {
  display: block;
}
.ask-evidence b {
  font-size: 5px;
  margin-top: 5px;
}
.ask-evidence em {
  font-size: 4px;
  color: #8d9eae;
  font-style: normal;
  margin-top: 3px;
}
.ask-risk {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid #ffd7da;
  border-radius: 7px;
  background: #fff2f3;
}
.ask-risk > i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #e94e5a;
  color: #fff;
  font-size: 6px;
  font-style: normal;
}
.ask-risk > span {
  flex: 1;
}
.ask-risk strong,
.ask-risk small {
  display: block;
}
.ask-risk strong {
  font-size: 6px;
}
.ask-risk small {
  font-size: 5px;
  color: #987277;
  margin-top: 3px;
}
.ask-risk > b {
  font-size: 5px;
  color: #d64a56;
}
.demo-section {
  position: relative;
  min-height: 690px;
  padding: 110px clamp(28px, 7vw, 112px);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 7vw;
  align-items: center;
  background: linear-gradient(135deg, #0c2f64, #09244f);
  color: #fff;
  overflow: hidden;
}
.demo-section:before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  right: 5%;
  top: 5%;
  background: radial-gradient(
    circle,
    rgba(43, 158, 255, 0.22),
    transparent 67%
  );
}
.eyebrow.light {
  position: relative;
  color: #6ed0ff;
}
.eyebrow.light span {
  background: #6ed0ff;
}
.demo-copy {
  position: relative;
  z-index: 2;
}
.demo-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.3;
  margin: 20px 0 23px;
  letter-spacing: -0.04em;
}
.demo-copy > p:not(.eyebrow) {
  color: #aec4df;
  line-height: 1.9;
  font-size: 14px;
}
.demo-chapters {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.demo-chapters span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #b7cbe2;
  font-size: 9px;
}
.demo-chapters i {
  font: 700 8px Arial;
  color: #5fc7ff;
  border: 1px solid rgba(95, 199, 255, 0.25);
  border-radius: 4px;
  padding: 4px;
}
.demo-player {
  position: relative;
  z-index: 2;
  min-height: 430px;
  border: 1px solid rgba(133, 198, 255, 0.25);
  border-radius: 16px;
  background: #041c4199;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 30px 70px #000a2247;
  transition: 0.3s;
  text-align: left;
}
.demo-player:hover {
  transform: translateY(-5px);
  border-color: #85c6ff80;
}
.player-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(38, 139, 255, 0.23),
    transparent 60%
  );
}
.player-ui {
  position: absolute;
  inset: 24px 24px 51px;
  border: 1px solid rgba(123, 190, 255, 0.18);
  border-radius: 11px;
  background: linear-gradient(145deg, #113a6fd6, #082650b3);
}
.player-top {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 8px;
  color: #9db9d6;
}
.player-top em {
  font-style: normal;
  color: #6ed0ff;
  border: 1px solid rgba(110, 208, 255, 0.25);
  border-radius: 4px;
  padding: 4px 7px;
}
.player-graph {
  position: relative;
  height: calc(100% - 42px);
}
.player-graph svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.player-graph path {
  stroke: #318add;
  stroke-width: 1.2;
  stroke-dasharray: 5 5;
  fill: none;
  animation: dash 12s linear infinite;
}
@keyframes dash {
  to {
    stroke-dashoffset: -100;
  }
}
.center-agent {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background: radial-gradient(circle at 35% 30%, #60d7ff, #1778e8 65%, #084ca8);
  box-shadow: 0 0 42px #2794ff73;
  font: 800 25px Arial;
}
.center-agent small {
  font: 500 7px Microsoft YaHei;
  color: #d2eaff;
  margin-top: 5px;
}
.agent-node {
  position: absolute;
  z-index: 2;
  min-width: 100px;
  padding: 9px 10px;
  border: 1px solid rgba(102, 181, 255, 0.25);
  border-radius: 7px;
  background: #0e386aeb;
  color: #b8d2eb;
  font-size: 8px;
}
.agent-node i {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: #369dff2e;
  color: #6acbff;
  font: 700 7px Arial;
  margin-right: 7px;
}
.node-1 {
  left: 5%;
  top: 12%;
}
.node-2 {
  right: 5%;
  top: 12%;
}
.node-3 {
  left: 5%;
  bottom: 12%;
}
.node-4 {
  right: 5%;
  bottom: 12%;
}
.play-button {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fffffff2;
  color: var(--blue);
  box-shadow:
    0 0 0 12px #ffffff14,
    0 16px 35px #0003;
  transition: 0.3s;
}
.play-button span {
  margin-left: 4px;
}
.demo-player:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
}
.player-bottom {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #b4c9df;
}
.player-bottom em {
  font-style: normal;
  color: #67caff;
}
.advantages-section {
  background: #fff;
}
.advantages-section .section-head {
  text-align: center;
  margin: 0 auto;
}
.advantages-section .eyebrow {
  justify-content: center;
}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 65px;
}
.advantage-card {
  position: relative;
  min-height: 300px;
  border: 1px solid #e0e9f3;
  border-radius: 13px;
  padding: 27px;
  background: #fff;
  overflow: hidden;
  transition: 0.3s;
}
.advantage-card:before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #edf6ff;
  transition: 0.3s;
}
.advantage-card:hover {
  transform: translateY(-7px);
  border-color: #a7cef9;
  box-shadow: 0 20px 45px #265c971a;
}
.advantage-card:hover:before {
  transform: scale(1.25);
  background: #e4f2ff;
}
.advantage-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.advantage-top > span {
  font: 700 10px Arial;
  color: #9ba9ba;
}
.advantage-top > i {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eaf5ff, #f7fbff);
  color: var(--blue);
  font: 800 13px Arial;
  font-style: normal;
}
.advantage-card h3 {
  position: relative;
  margin: 47px 0 17px;
  font-size: 17px;
}
.advantage-card p {
  position: relative;
  color: #77879c;
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}
.advantage-line {
  position: absolute;
  left: 27px;
  right: 27px;
  bottom: 25px;
  height: 2px;
  background: #edf2f7;
}
.advantage-line i {
  display: block;
  width: 28%;
  height: 100%;
  background: var(--blue);
  transition: 0.3s;
}
.advantage-card:hover .advantage-line i {
  width: 100%;
}
.closing-section {
  position: relative;
  margin: 0 clamp(28px, 4.5vw, 72px) 55px;
  min-height: 430px;
  border-radius: 20px;
  padding: 80px clamp(35px, 7vw, 100px);
  display: flex;
  align-items: center;
  background: linear-gradient(125deg, #eff7ff, #e6f3ff);
  overflow: hidden;
}
.closing-section:before,
.closing-section:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(46, 137, 229, 0.12);
  border-radius: 50%;
}
.closing-section:before {
  width: 500px;
  height: 500px;
  right: -120px;
  top: -160px;
}
.closing-section:after {
  width: 310px;
  height: 310px;
  right: -25px;
  top: -65px;
}
.closing-orb {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 230px;
  height: 230px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #65d4ff, #1c78e5 62%, #0a4baa);
  box-shadow: 0 26px 60px #186cd240;
  color: #fff;
  font: 800 50px Arial;
}
.closing-orb i {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(35, 127, 224, 0.25);
  inset: -35px;
  animation: spin 16s linear infinite;
}
.closing-orb i:last-child {
  inset: -70px;
  animation-direction: reverse;
  animation-duration: 22s;
}
.closing-copy {
  position: relative;
  z-index: 2;
}
.closing-copy > p {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
}
.closing-copy h2 {
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.38;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
}
.closing-copy .closing-cta {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 14px 19px;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}
.closing-copy .closing-cta span {
  color: #6fd0ff;
  margin-left: 16px;
}
.closing-foot {
  position: absolute;
  left: clamp(35px, 7vw, 100px);
  right: clamp(35px, 7vw, 100px);
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  color: #8597ad;
  font-size: 9px;
}
footer {
  height: 100px;
  padding: 0 clamp(28px, 7vw, 112px);
  display: flex;
  align-items: center;
  border-top: 1px solid #e3eaf3;
  color: #8491a2;
  font-size: 10px;
}
footer .brand {
  transform: scale(0.84);
  transform-origin: left center;
}
footer p {
  margin: auto;
}
footer > a {
  color: var(--blue);
}
.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #05132ab8;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.22s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
}
.demo-modal {
  position: relative;
  width: min(1080px, 94vw);
  max-height: 92vh;
  overflow: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 90px #00000047;
}
.modal-close {
  position: absolute;
  z-index: 5;
  right: 16px;
  top: 13px;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: #0720468c;
  color: #fff;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}
.modal-stage {
  position: relative;
  min-height: 500px;
  padding: 18px;
  background: linear-gradient(140deg, #0d3268, #081f45);
  color: #fff;
  border-radius: 18px 18px 0 0;
}
.modal-stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 50px;
}
.modal-stage-top .brand-name {
  color: #fff;
}
.modal-stage-top .brand-product,
.modal-stage-top > span {
  color: #9db9d7;
  font-size: 9px;
}
.modal-stage-top .brand-mark {
  box-shadow: none;
}
.modal-visual {
  position: relative;
  min-height: 385px;
  margin-top: 16px;
  border: 1px solid rgba(116, 181, 248, 0.16);
  border-radius: 11px;
  background: radial-gradient(circle at center, #1875de40, #051b3e59 62%);
  padding: 25px;
}
.modal-agent {
  text-align: center;
  margin: 8px auto 18px;
}
.modal-agent > span {
  width: 64px;
  height: 64px;
  margin: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #48c8ff, #176ee0);
  box-shadow: 0 0 30px #3dabff59;
  font: 800 18px Arial;
}
.modal-agent strong,
.modal-agent small {
  display: block;
}
.modal-agent strong {
  font-size: 15px;
  margin-top: 13px;
}
.modal-agent small {
  font-size: 8px;
  color: #91b2d4;
  margin-top: 6px;
}
.modal-nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.modal-nodes > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(102, 167, 232, 0.16);
  border-radius: 8px;
  background: #1137669e;
  color: #7998b9;
  transition: 0.35s;
}
.modal-nodes > div.active {
  border-color: #50c6ff75;
  background: #1771cc57;
  color: #fff;
  box-shadow: 0 8px 23px #0000001f;
}
.modal-nodes span {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 6px;
  background: #429cf521;
  font: 700 8px Arial;
}
.modal-nodes strong {
  font-size: 8px;
}
.modal-nodes i {
  margin-left: auto;
  color: #54dfa9;
  font-style: normal;
  font-size: 9px;
}
.modal-output {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin: 28px auto 0;
  padding: 16px;
  width: 80%;
  border: 1px solid rgba(112, 178, 240, 0.13);
  border-radius: 9px;
  background: #061e426b;
}
.modal-output > div {
  text-align: center;
}
.modal-output small,
.modal-output strong {
  display: block;
}
.modal-output small {
  font-size: 7px;
  color: #8ba9c8;
}
.modal-output strong {
  font: 700 21px Arial;
  margin-top: 6px;
  color: #6fd2ff;
}
.modal-output > i {
  width: 1px;
  height: 30px;
  background: #ffffff14;
}
.modal-controls {
  height: 43px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 6px;
}
.control-play {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 10px;
  cursor: pointer;
}
.control-track {
  height: 3px;
  flex: 1;
  background: #ffffff1f;
  border-radius: 4px;
  overflow: hidden;
}
.control-track i {
  display: block;
  height: 100%;
  background: #53c7ff;
  transition: width 0.45s;
}
.modal-controls > span {
  font: 8px Arial;
  color: #91abc8;
}
.modal-info {
  padding: 24px 30px 30px;
}
.modal-info > span {
  color: var(--blue);
  font-size: 9px;
  letter-spacing: 0.1em;
}
.modal-info h3 {
  font-size: 20px;
  margin: 10px 0;
}
.modal-info p {
  margin: 0;
  color: #77879a;
  font-size: 11px;
}
.contact-modal {
  position: relative;
  width: min(580px, 94vw);
  border-radius: 18px;
  padding: 42px;
  background: #fff;
  max-height: 92vh;
  overflow: auto;
}
.dark-close {
  background: #f1f5f9;
  border-color: #e4eaf1;
  color: #536176;
}
.contact-intro > span {
  font: 700 9px Arial;
  color: var(--blue);
  letter-spacing: 0.14em;
}
.contact-intro h3 {
  font-size: 29px;
  margin: 10px 0 12px;
}
.contact-intro p {
  font-size: 12px;
  color: #7a899c;
  line-height: 1.7;
  margin: 0 40px 27px 0;
}
.contact-modal form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact-modal label {
  font-size: 10px;
  color: #5f6e82;
}
.contact-modal input,
.contact-modal select {
  width: 100%;
  height: 44px;
  margin-top: 7px;
  border: 1px solid #dce5ef;
  border-radius: 7px;
  padding: 0 12px;
  background: #f9fbfd;
  font-size: 11px;
  outline: none;
}
.contact-modal input:focus,
.contact-modal select:focus {
  border-color: #80b5f5;
  background: #fff;
}
.contact-modal form > button {
  grid-column: 1/-1;
  height: 47px;
  margin-top: 7px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.contact-modal form > button span {
  margin-left: 13px;
}
.success-state {
  text-align: center;
  padding: 25px 5px;
}
.success-state > span {
  width: 62px;
  height: 62px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e6f8f0;
  color: #20a871;
  font-size: 28px;
}
.success-state h3 {
  font-size: 24px;
  margin: 19px 0 10px;
}
.success-state p {
  color: #748398;
  font-size: 12px;
  line-height: 1.7;
}
.success-state button {
  margin-top: 15px;
  border: 0;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  padding: 11px 28px;
  cursor: pointer;
  font-size: 11px;
}
.customer-service-backdrop {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 24px;
  background: #071a373d;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.2s ease;
}
.customer-service-panel {
  width: min(430px, calc(100vw - 32px));
  height: min(690px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(77, 145, 218, 0.2);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px #082a554d;
  animation: chatRise 0.28s cubic-bezier(0.2, 0.75, 0.2, 1);
}
@keyframes chatRise {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
}
.customer-service-header {
  height: 62px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 18px;
  color: #fff;
  background: linear-gradient(115deg, #126fd4, #2ca6ef);
}
.customer-service-header > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 9px;
  row-gap: 2px;
}
.customer-service-status {
  grid-row: 1/3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #77efba;
  box-shadow: 0 0 0 5px #77efba2e;
}
.customer-service-header strong {
  font-size: 14px;
  letter-spacing: 0.02em;
}
.customer-service-header small {
  font-size: 9px;
  color: #ffffffc7;
}
.customer-service-header button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: #ffffff1f;
  color: #fff;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}
.customer-service-header button:hover {
  background: #ffffff3d;
}
.customer-service-frame {
  width: 100%;
  flex: 1;
  border: 0;
  background: #fff;
}
@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .nav-links {
    display: none;
  }
  .header-cta {
    margin-right: 50px;
  }
  .menu-button {
    display: block;
    position: absolute;
    right: 24px;
  }
  .nav-links.open {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #dfe8f2;
    padding: 10px 28px 18px;
    box-shadow: 0 15px 30px #204b7a17;
  }
  .nav-links.open a {
    padding: 13px 0;
  }
  .nav-links a:after {
    display: none;
  }
  .hero {
    min-height: 1200px;
    padding-top: 140px;
  }
  .hero-copy {
    width: 72%;
  }
  .hero-visual-scene {
    top: 610px;
    width: 86%;
    right: -2%;
  }
  .hero-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
  .capability-layout {
    grid-template-columns: 1fr;
  }
  .capability-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .capability-item {
    min-height: 120px;
  }
  .cap-text small {
    line-height: 1.5;
  }
  .stage-workspace {
    min-height: 300px;
  }
  .scenario-panel {
    grid-template-columns: 0.7fr 1.3fr;
  }
  .scenario-copy {
    padding: 45px 35px;
  }
  .scenario-screen {
    margin: 25px 24px;
  }
  .advantage-grid {
    grid-template-columns: 1fr 1fr;
  }
  .closing-orb {
    opacity: 0.28;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 66px;
    padding: 0 18px;
  }
  .brand-product,
  .brand-divider {
    display: none;
  }
  .brand-name {
    font-size: 18px;
  }
  .header-cta {
    display: none;
  }
  .menu-button {
    right: 12px;
  }
  .nav-links.open {
    top: 66px;
  }
  .hero {
    min-height: 1130px;
    padding: 112px 20px 0;
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(23px, 7vw, 28px);
    line-height: 1.28;
  }
  .hero-lead {
    font-size: 14px;
    line-height: 1.8;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .primary-button,
  .secondary-button {
    width: 100%;
  }
  .hero-trust {
    font-size: 10px;
    gap: 7px;
    flex-wrap: wrap;
  }
  .hero-visual-scene {
    top: 565px;
    right: -235px;
    width: 820px;
    scale: 0.76;
    transform-origin: left top;
    animation: none;
  }
  .hero-visual {
    transform: none;
  }
  .hero-metrics {
    left: 20px;
    right: 20px;
    height: 200px;
    grid-template-columns: 1fr 1fr;
    padding: 15px;
  }
  .hero-metrics div:nth-child(2) {
    border-right: 0;
  }
  .hero-metrics div {
    min-height: 78px;
  }
  .hero-metrics strong {
    font-size: 27px;
  }
  .hero-metrics span {
    font-size: 9px;
  }
  .section {
    padding: 85px 20px;
  }
  .section-head h2 {
    font-size: 34px;
  }
  .capability-layout {
    margin-top: 38px;
  }
  .capability-list {
    grid-template-columns: 1fr;
  }
  .capability-item {
    min-height: 82px;
  }
  .capability-stage {
    padding: 15px;
  }
  .stage-workspace,
  .visual-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .visual-card {
    min-height: 330px;
  }
  .source-panel {
    min-height: auto;
  }
  .process-column {
    min-height: 210px;
  }
  .result-column {
    min-height: 190px;
  }
  .stage-description {
    align-items: start;
    flex-direction: column;
  }
  .stage-description p {
    max-width: 100%;
  }
  .stage-description div {
    justify-content: flex-start;
  }
  .section-row {
    align-items: start;
    flex-direction: column;
  }
  .section-counter {
    display: none;
  }
  .scenario-tabs {
    margin-top: 35px;
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 1px;
  }
  .scenario-tabs button {
    flex: 0 0 auto;
    padding: 0 16px;
  }
  .scenario-panel {
    grid-template-columns: 1fr;
  }
  .scenario-copy {
    padding: 35px 25px;
  }
  .scenario-screen {
    min-height: 440px;
    margin: 0 12px 30px;
  }
  .scenario-visual {
    grid-template-columns: 1fr !important;
    padding: 12px 12px 65px;
  }
  .portrait-score-row,
  .engineering-main,
  .concentration-card {
    grid-template-columns: 1fr;
  }
  .engineering-top {
    grid-template-columns: 1fr 1fr;
  }
  .portrait-company-list {
    display: none;
  }
  .portrait-head {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
  .bid-network,
  .supplier-network {
    height: 300px;
  }
  .agent-bubble {
    right: 10px;
  }
  .scenario-copy h3 {
    font-size: 29px;
  }
  .demo-section {
    padding: 85px 20px;
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .demo-player {
    min-height: 340px;
  }
  .agent-node {
    min-width: 84px;
  }
  .demo-chapters {
    grid-template-columns: 1fr;
  }
  .player-ui {
    inset: 14px 14px 48px;
  }
  .advantage-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .advantage-card {
    min-height: 250px;
  }
  .closing-section {
    margin: 0 14px 30px;
    min-height: 500px;
    padding: 55px 24px;
    align-items: start;
  }
  .closing-copy h2 {
    font-size: 35px;
  }
  .closing-orb {
    right: -70px;
    top: auto;
    bottom: -55px;
    width: 200px;
    height: 200px;
    transform: none;
  }
  .closing-foot {
    left: 24px;
    right: 24px;
    flex-direction: column;
    gap: 5px;
  }
  .closing-copy h2 br {
    display: none;
  }
  footer {
    padding: 0 20px;
  }
  footer p {
    display: none;
  }
  .demo-modal {
    width: 96vw;
  }
  .modal-stage {
    padding: 12px;
  }
  .modal-stage-top > span {
    display: none;
  }
  .modal-nodes {
    grid-template-columns: 1fr 1fr;
  }
  .modal-output {
    width: 100%;
    gap: 12px;
  }
  .modal-info {
    padding: 20px;
  }
  .contact-modal {
    padding: 32px 22px;
  }
  .contact-modal form {
    grid-template-columns: 1fr;
  }
  .contact-modal form > button {
    grid-column: auto;
  }
  .customer-service-backdrop {
    padding: 0;
  }
  .customer-service-panel {
    width: 100vw;
    height: 100dvh;
    max-width: none;
    max-height: none;
    border: 0;
    border-radius: 0;
  }
  .customer-service-header {
    height: 58px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .hero-visual {
    transform: none !important;
  }
}
.demo-section {
  min-height: 760px;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 5.5vw;
  background:
    radial-gradient(
      circle at 73% 45%,
      rgba(19, 112, 214, 0.27),
      transparent 34%
    ),
    linear-gradient(135deg, #0c2f64, #08234d);
}
.demo-player {
  min-height: 510px;
  background: #03183ab8;
  box-shadow:
    0 34px 85px #00081c5c,
    inset 0 0 0 1px #6abdff0a;
}
.demo-player:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 15%,
    rgba(81, 191, 255, 0.06) 45%,
    transparent 70%
  );
  translate: -100% 0;
  animation: playerSweep 7s ease-in-out infinite;
}
@keyframes playerSweep {
  45%,
  to {
    translate: 130% 0;
  }
}
.player-ui {
  inset: 20px 20px 50px;
  background: linear-gradient(145deg, #0f3970e0, #051f45d1);
  box-shadow: inset 0 0 38px #39a0ff0d;
}
.player-top {
  height: 40px;
  padding: 0 13px;
  font-size: 7px;
  letter-spacing: 0.03em;
}
.player-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6ed0ff;
  font: 700 6px Arial;
  letter-spacing: 0.08em;
}
.player-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #48d8a2;
  box-shadow: 0 0 0 4px #48d8a21a;
  animation: pulse 1.6s infinite;
}
.player-graph {
  height: calc(100% - 72px);
  overflow: hidden;
}
.player-graph:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90, 159, 225, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 159, 225, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
}
.player-graph svg {
  z-index: 0;
}
.player-graph path {
  stroke: #3191e28f;
  stroke-width: 1;
  stroke-dasharray: 4 5;
  filter: drop-shadow(0 0 3px rgba(47, 158, 255, 0.32));
  animation: dash 9s linear infinite;
}
.player-input-stack {
  position: absolute;
  z-index: 2;
  left: 2%;
  top: 8%;
  bottom: 8%;
  width: 19%;
  padding: 12px 10px;
  border: 1px solid rgba(104, 183, 250, 0.16);
  border-radius: 8px;
  background: #082a57c7;
}
.player-input-stack > small,
.player-output-stack > small {
  display: block;
  color: #5ec5ff;
  font: 700 6px Arial;
  letter-spacing: 0.13em;
}
.player-input-stack > strong {
  display: block;
  margin: 6px 0 9px;
  color: #d9ebfb;
  font-size: 7px;
}
.player-input-stack > span {
  position: relative;
  height: 36px;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #9db9d4;
  font-size: 6px;
}
.player-input-stack > span:after {
  content: "";
  position: absolute;
  left: -10px;
  width: 2px;
  height: 22px;
  background: #38aaf3;
  opacity: 0;
  animation: inputScan 4.8s ease-in-out infinite;
}
.player-input-stack > span:nth-of-type(2):after {
  animation-delay: -1.2s;
}
.player-input-stack > span:nth-of-type(3):after {
  animation-delay: -2.4s;
}
.player-input-stack > span:nth-of-type(4):after {
  animation-delay: -3.6s;
}
@keyframes inputScan {
  12%,
  25% {
    opacity: 1;
    box-shadow: 0 0 10px #39b9ff;
  }
  35%,
  to {
    opacity: 0;
  }
}
.player-input-stack span i {
  width: 25px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #2d91ea24;
  color: #62caff;
  font: 700 5px Arial;
  font-style: normal;
}
.player-input-stack span b {
  color: #65d9b2;
  font: 600 5px Arial;
}
.player-orchestrator {
  position: absolute;
  z-index: 2;
  left: 26%;
  top: 50%;
  width: 23%;
  height: 88%;
  translate: 0 -50%;
  display: grid;
  place-items: center;
}
.player-orchestrator:before,
.player-orchestrator:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 72%;
  background: linear-gradient(
    transparent,
    rgba(86, 181, 255, 0.28),
    transparent
  );
}
.player-orchestrator:before {
  left: 11%;
}
.player-orchestrator:after {
  right: 11%;
}
.orchestrator-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(77, 181, 255, 0.3);
  animation: orchestratorSpin 14s linear infinite;
}
.ring-one {
  width: 125px;
  height: 125px;
}
.ring-two {
  width: 92px;
  height: 92px;
  animation-direction: reverse;
  animation-duration: 9s;
  border-style: solid;
  border-color: #499ff82b;
}
@keyframes orchestratorSpin {
  to {
    rotate: 360deg;
  }
}
.player-orchestrator .center-agent {
  width: 76px;
  height: 76px;
  font-size: 18px;
  box-shadow:
    0 0 0 8px #2589e81a,
    0 0 36px #2794ff80;
  animation: coreBreath 2.4s ease-in-out infinite;
}
@keyframes coreBreath {
  50% {
    box-shadow:
      0 0 0 14px #2589e800,
      0 0 48px #2794ffa6;
  }
}
.player-orchestrator .center-agent small {
  font-size: 5px;
}
.orchestrator-label {
  position: absolute;
  bottom: 7%;
  color: #73bce9;
  font-size: 5px;
  white-space: nowrap;
}
.player-agent-cloud {
  position: absolute;
  z-index: 2;
  inset: 7% 16% 7% 52%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 6px;
}
.player-agent-cloud .agent-node {
  position: relative;
  inset: auto;
  min-width: 0;
  padding: 5px 7px;
  display: grid;
  grid-template-columns: 28px 1fr 6px;
  align-items: center;
  gap: 5px;
  border-color: #5eb1f838;
  background: linear-gradient(120deg, #104178e6, #0a3164e0);
  font-size: 6px;
  overflow: hidden;
}
.player-agent-cloud .agent-node:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(83, 190, 255, 0.12),
    transparent
  );
  translate: -110% 0;
  animation: agentSweep 5s ease-in-out infinite;
}
.player-agent-cloud .agent-node:nth-child(2n):after {
  animation-delay: -2.5s;
}
@keyframes agentSweep {
  35%,
  to {
    translate: 120% 0;
  }
}
.player-agent-cloud .agent-node i {
  width: 27px;
  height: 20px;
  margin: 0;
  border-radius: 4px;
  font-size: 4px;
}
.player-agent-cloud .agent-node span {
  color: #c2d8ec;
  white-space: nowrap;
}
.player-agent-cloud .agent-node b {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #43d7a0;
  box-shadow: 0 0 8px #43d7a0a6;
  animation: nodeBlink 2s ease-in-out infinite;
}
.player-agent-cloud .agent-node:nth-child(2) b {
  animation-delay: -0.3s;
}
.player-agent-cloud .agent-node:nth-child(3) b {
  animation-delay: -0.6s;
}
.player-agent-cloud .agent-node:nth-child(4) b {
  animation-delay: -0.9s;
}
.player-agent-cloud .agent-node:nth-child(5) b {
  animation-delay: -1.2s;
}
.player-agent-cloud .agent-node:nth-child(6) b {
  animation-delay: -1.5s;
}
.player-agent-cloud .agent-node:nth-child(7) b {
  animation-delay: -1.8s;
}
@keyframes nodeBlink {
  50% {
    opacity: 0.25;
    scale: 0.7;
  }
}
.player-output-stack {
  position: absolute;
  z-index: 2;
  right: 1.5%;
  top: 12%;
  bottom: 12%;
  width: 13%;
  padding: 11px 8px;
  border: 1px solid rgba(99, 182, 248, 0.18);
  border-radius: 8px;
  background: #072652d1;
}
.player-output-stack > div {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.player-output-stack > div:last-child {
  border: 0;
}
.player-output-stack span,
.player-output-stack strong {
  display: block;
}
.player-output-stack span {
  color: #86a7c7;
  font-size: 5px;
}
.player-output-stack strong {
  margin-top: 4px;
  color: #73d5ff;
  font: 700 13px Arial;
}
.flow-particle {
  position: absolute;
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #69d6ff;
  box-shadow: 0 0 12px #33adff;
  animation: flowAcross 4.2s linear infinite;
}
.particle-one {
  left: 20%;
  top: 28%;
}
.particle-two {
  left: 42%;
  top: 62%;
  animation-delay: -1.4s;
}
.particle-three {
  left: 68%;
  top: 46%;
  animation-delay: -2.8s;
}
@keyframes flowAcross {
  0% {
    translate: -25px 0;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  to {
    translate: 90px 0;
    opacity: 0;
  }
}
.player-telemetry {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #86a9c9;
  font-size: 5px;
}
.player-telemetry span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.player-telemetry span i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #48d8a2;
  box-shadow: 0 0 6px #48d8a2;
}
.player-telemetry b {
  margin-left: auto;
  color: #63c9ff;
  font: 600 5px Arial;
}
.play-button {
  left: 37.5%;
  top: 48%;
  width: 44px;
  height: 44px;
  box-shadow:
    0 0 0 8px #ffffff12,
    0 12px 26px #00000038;
}
.play-button small {
  display: none;
}
.play-button span {
  font-size: 9px;
}
.demo-player:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}
.demo-modal {
  width: min(1180px, 96vw);
}
.modal-stage {
  min-height: 650px;
}
.modal-visual {
  min-height: 525px;
  padding: 18px;
  background:
    radial-gradient(circle at 43% 43%, #197ee83b, #051b3e5e 54%),
    linear-gradient(rgba(60, 142, 221, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 142, 221, 0.035) 1px, transparent 1px);
  background-size:
    auto,
    28px 28px,
    28px 28px;
}
.modal-project-head {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid rgba(105, 178, 242, 0.14);
  border-radius: 9px;
  background: #092a579e;
}
.modal-project-head small,
.modal-project-head strong,
.modal-project-head span {
  display: block;
}
.modal-project-head small {
  color: #5ec8ff;
  font: 700 6px Arial;
  letter-spacing: 0.13em;
}
.modal-project-head strong {
  margin-top: 5px;
  font-size: 11px;
}
.modal-project-head > div > span {
  margin-top: 4px;
  color: #7899b9;
  font-size: 6px;
}
.modal-project-stats {
  display: flex;
  gap: 9px;
}
.modal-project-stats span {
  min-width: 78px;
  padding: 7px 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  color: #7f9fbe;
  font-size: 5px;
}
.modal-project-stats b {
  color: #70d2ff;
  font: 700 12px Arial;
  margin-bottom: 3px;
}
.modal-workbench {
  display: grid;
  grid-template-columns: 170px 230px 1fr;
  gap: 10px;
  margin-top: 10px;
}
.modal-source-rail,
.modal-orchestration,
.modal-nodes {
  min-height: 330px;
  border: 1px solid rgba(102, 169, 232, 0.13);
  border-radius: 9px;
  background: #08254e8c;
}
.modal-source-rail {
  padding: 13px 10px;
}
.modal-source-rail > small {
  display: block;
  margin-bottom: 9px;
  color: #69c8f5;
  font-size: 6px;
}
.modal-source-rail > div {
  height: 42px;
  display: grid;
  grid-template-columns: 29px 1fr 12px;
  align-items: center;
  gap: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  color: #7898b8;
  font-size: 6px;
  transition: 0.35s;
}
.modal-source-rail > div i {
  width: 27px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #378fe121;
  color: #55bcf2;
  font: 700 5px Arial;
  font-style: normal;
}
.modal-source-rail > div b {
  opacity: 0;
  color: #51dca8;
}
.modal-source-rail > div.on {
  color: #d9ecfb;
}
.modal-source-rail > div.on i {
  background: #32a1f13d;
  box-shadow: 0 0 14px #32a1f129;
}
.modal-source-rail > div.on b {
  opacity: 1;
}
.modal-orchestration {
  position: relative;
  padding: 15px;
  overflow: hidden;
}
.modal-orchestration:before,
.modal-orchestration:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(77, 173, 249, 0.17);
  left: 50%;
  top: 37%;
  translate: -50% -50%;
  animation: orchestratorSpin 16s linear infinite;
}
.modal-orchestration:before {
  width: 180px;
  height: 180px;
}
.modal-orchestration:after {
  width: 135px;
  height: 135px;
  animation-direction: reverse;
  animation-duration: 11s;
}
.modal-agent {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 17px auto 15px;
}
.modal-agent > span {
  position: relative;
}
.modal-agent > span i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  right: -7px;
  top: 4px;
  background: #46d7a3;
  box-shadow: 0 0 0 5px #46d7a31a;
  opacity: 0.45;
}
.modal-agent.running > span i {
  opacity: 1;
  animation: pulse 1.6s infinite;
}
.modal-agent > small {
  font: 700 6px Arial;
  letter-spacing: 0.12em;
  color: #61caff;
  margin-top: 12px;
}
.modal-agent > strong {
  min-height: 20px;
  font-size: 11px;
  margin-top: 7px;
}
.modal-agent > p {
  min-height: 38px;
  margin: 7px 4px 0;
  color: #82a3c2;
  font-size: 6px;
  line-height: 1.7;
}
.modal-log-stream {
  position: relative;
  z-index: 2;
  margin-top: 23px;
  padding: 8px;
  border: 1px solid rgba(95, 171, 237, 0.1);
  border-radius: 7px;
  background: #041b3db3;
}
.modal-log-stream span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  color: #7898b8;
  font-size: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.modal-log-stream span:last-child {
  border: 0;
}
.modal-log-stream i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #52c5fa;
  box-shadow: 0 0 6px #52c5fa;
}
.modal-nodes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px;
}
.modal-nodes > div {
  min-height: 44px;
  padding: 6px 7px;
  display: grid;
  grid-template-columns: 25px 1fr 25px;
  gap: 7px;
}
.modal-nodes > div > span {
  width: 23px;
  height: 23px;
}
.modal-nodes > div > div {
  min-width: 0;
}
.modal-nodes strong,
.modal-nodes small {
  display: block;
}
.modal-nodes strong {
  font-size: 6px;
}
.modal-nodes small {
  margin-top: 4px;
  color: #617f9f;
  font-size: 5px;
}
.modal-nodes > div.complete {
  border-color: #46d6a038;
  background: #1e73672e;
  color: #ccece1;
}
.modal-nodes > div.complete span {
  background: #3eca9529;
  color: #57d9a8;
}
.modal-nodes > div.active {
  border-color: #50c6ff8c;
  background: #1771cc63;
  box-shadow: 0 0 22px #2b97f529;
}
.modal-nodes > div.active span {
  background: #1c81eb;
  color: #fff;
  box-shadow: 0 0 0 4px #2489e81c;
}
.modal-nodes > div.active i {
  color: #69d4ff;
  font: 700 5px Arial;
  animation: nodeBlink 1s infinite;
}
.modal-output {
  width: 100%;
  margin: 10px auto 0;
  padding: 11px;
  gap: 24px;
}
@media (max-width: 1100px) {
  .demo-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .demo-copy {
    max-width: 720px;
  }
  .demo-player {
    min-height: 520px;
  }
}
@media (max-width: 760px) {
  .demo-section {
    min-height: auto;
    padding: 85px 20px;
    grid-template-columns: 1fr;
  }
  .demo-player {
    min-height: 530px;
  }
  .player-ui {
    inset: 14px 12px 49px;
  }
  .player-top {
    padding: 0 9px;
  }
  .player-top > span {
    max-width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .player-input-stack {
    width: 25%;
    padding: 10px 6px;
  }
  .player-input-stack > strong {
    font-size: 6px;
  }
  .player-input-stack > span {
    grid-template-columns: 24px 1fr;
  }
  .player-input-stack span b {
    display: none;
  }
  .player-orchestrator {
    left: 28%;
    width: 28%;
  }
  .ring-one {
    width: 98px;
    height: 98px;
  }
  .ring-two {
    width: 73px;
    height: 73px;
  }
  .player-orchestrator .center-agent {
    width: 62px;
    height: 62px;
  }
  .orchestrator-label {
    font-size: 4px;
  }
  .player-agent-cloud {
    left: 57%;
    right: 2%;
    grid-template-columns: 1fr;
  }
  .player-agent-cloud .agent-node:nth-child(n + 5) {
    display: none;
  }
  .player-output-stack {
    display: none;
  }
  .player-telemetry {
    gap: 8px;
  }
  .player-telemetry span:nth-child(2) {
    display: none;
  }
  .play-button {
    left: 42%;
    top: 48%;
  }
  .demo-modal {
    width: 96vw;
  }
  .modal-stage {
    min-height: auto;
  }
  .modal-visual {
    min-height: auto;
    padding: 10px;
  }
  .modal-project-head {
    height: auto;
    padding: 11px;
  }
  .modal-project-stats {
    display: none;
  }
  .modal-workbench {
    grid-template-columns: 1fr;
  }
  .modal-source-rail {
    display: none;
  }
  .modal-orchestration {
    min-height: 285px;
  }
  .modal-nodes {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }
  .modal-nodes > div {
    min-height: 45px;
  }
  .modal-output {
    gap: 8px;
  }
  .modal-output > i {
    display: none;
  }
  .modal-output > div:nth-of-type(4) {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .demo-player:before,
  .player-input-stack > span:after,
  .player-agent-cloud .agent-node:after,
  .flow-particle,
  .orchestrator-ring,
  .modal-orchestration:before,
  .modal-orchestration:after {
    animation: none !important;
  }
}
.advantages-section {
  background: linear-gradient(180deg, #f5f8fc, #edf4fb);
}
.advantages-section .section-head > p:last-child {
  color: #6f8199;
}
.advantage-card {
  border-color: #cbdbea;
  background: linear-gradient(145deg, #fff, #f7faff);
  box-shadow: 0 14px 38px #1c437312;
}
.advantage-card:before {
  right: -62px;
  top: -66px;
  width: 170px;
  height: 170px;
  background: linear-gradient(145deg, #194d96, #0b2d60 72%);
  box-shadow: 0 18px 45px #072b5b3d;
}
.advantage-card:nth-child(2):before {
  background: linear-gradient(145deg, #1268d7, #083672 75%);
}
.advantage-card:nth-child(3):before {
  background: linear-gradient(145deg, #174b91, #092855 75%);
}
.advantage-card:nth-child(4):before {
  background: linear-gradient(145deg, #1162bd, #072b5f 75%);
}
.advantage-card:hover {
  border-color: #7eaee4;
  box-shadow: 0 24px 55px #12437c26;
}
.advantage-card:hover:before {
  background: linear-gradient(145deg, #1676dd, #082d63 76%);
  box-shadow: 0 22px 55px #072b5b57;
}
.advantage-top > span {
  color: #6681a3;
}
.advantage-top > i {
  border: 1px solid rgba(153, 211, 255, 0.35);
  background: linear-gradient(145deg, #2185eb, #0a4da9);
  color: #fff;
  box-shadow:
    0 10px 24px #052b6247,
    inset 0 1px #ffffff3d;
}
.advantage-line {
  background: #d7e4f1;
}
.advantage-line i {
  background: linear-gradient(90deg, #1268f3, #44c1ff);
}

/* Capability 04: enterprise-grade security */
.security-capability {
  grid-template-columns: 1fr 1.08fr 0.94fr;
}
.security-domain-panel,
.security-core-panel,
.security-trace-panel {
  min-height: 370px;
}
.domain-boundary {
  position: relative;
  margin-top: 13px;
  padding: 13px 11px 11px;
  border: 1px dashed rgba(91, 188, 255, 0.45);
  border-radius: 9px;
  background:
    linear-gradient(rgba(50, 144, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 144, 232, 0.045) 1px, transparent 1px),
    rgba(3, 25, 58, 0.42);
  background-size: 18px 18px;
}
.domain-boundary:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 9px;
  pointer-events: none;
  box-shadow:
    inset 0 0 28px rgba(39, 151, 255, 0.1),
    0 0 24px rgba(20, 123, 218, 0.08);
}
.domain-heading {
  margin-bottom: 11px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.domain-heading small,
.domain-heading strong {
  display: block;
}
.domain-heading small {
  color: #66c8ff;
  font: 600 5px Arial;
  letter-spacing: 0.12em;
}
.domain-heading strong {
  margin-top: 4px;
  font-size: 10px;
}
.domain-system {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  margin-bottom: 7px;
  padding: 6px 8px;
  border: 1px solid rgba(122, 193, 255, 0.12);
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(21, 89, 163, 0.36), rgba(7, 36, 76, 0.34));
}
.domain-system i {
  width: 29px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(49, 159, 255, 0.16);
  color: #7bd0ff;
  font: 700 6px Arial;
  font-style: normal;
}
.domain-system span {
  font-size: 7px;
}
.domain-system b {
  color: #50dfae;
  font-size: 8px;
}
.domain-gateway {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: 11px;
  padding: 9px;
  border: 1px solid rgba(73, 218, 179, 0.24);
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(20, 134, 115, 0.2), rgba(11, 52, 83, 0.48));
}
.domain-gateway > i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(57, 222, 170, 0.14);
  color: #59e1b5;
  font-style: normal;
  font-size: 9px;
}
.domain-gateway span strong,
.domain-gateway span small {
  display: block;
}
.domain-gateway span strong {
  font-size: 7px;
}
.domain-gateway span small {
  margin-top: 3px;
  color: #80a8ca;
  font-size: 5px;
}
.domain-gateway > b {
  color: #5be5bb;
  font: 700 5px Arial;
  letter-spacing: 0.06em;
}
.security-core-panel {
  display: flex;
  flex-direction: column;
}
.security-shield-wrap {
  position: relative;
  flex: 1;
  min-height: 240px;
  display: grid;
  place-items: center;
}
.shield-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(79, 189, 255, 0.22);
  transform: translate(-50%, -50%);
}
.shield-ring-a {
  width: 190px;
  height: 190px;
  border-style: dashed;
  animation: spin 18s linear infinite;
}
.shield-ring-b {
  width: 152px;
  height: 152px;
  box-shadow:
    0 0 35px rgba(40, 151, 255, 0.12),
    inset 0 0 35px rgba(40, 151, 255, 0.08);
}
.security-shield {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  clip-path: polygon(50% 0, 92% 18%, 86% 70%, 50% 100%, 14% 70%, 8% 18%);
  background: linear-gradient(155deg, #3cbaff, #1369da 55%, #064aaf);
  filter: drop-shadow(0 14px 22px rgba(3, 89, 184, 0.48));
}
.security-shield:before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: -1;
  clip-path: inherit;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(1, 62, 145, 0.15));
}
.security-shield span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
  box-shadow: 0 0 18px rgba(119, 220, 255, 0.34);
  font-size: 18px;
}
.security-shield strong {
  font-size: 11px;
}
.security-shield small {
  margin-top: 4px;
  color: #c6ecff;
  font: 600 4px Arial;
  letter-spacing: 0.08em;
}
.shield-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #8de1ff;
  border-radius: 50%;
  background: #0e3a72;
  box-shadow: 0 0 12px #52c8ff;
  animation: pulse 1.9s infinite;
}
.shield-node.node-a {
  left: 14%;
  top: 26%;
}
.shield-node.node-b {
  right: 13%;
  top: 42%;
  animation-delay: 0.5s;
}
.shield-node.node-c {
  left: 24%;
  bottom: 15%;
  animation-delay: 1s;
}
.security-status {
  display: flex;
  justify-content: space-between;
  color: #8fb6d8;
  font-size: 6px;
}
.security-status strong {
  color: #5de3ba;
  font: 700 7px Arial;
}
.security-progress {
  height: 3px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.security-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2e9cff, #45e1b4);
  box-shadow: 0 0 10px #3fc4df;
  animation: security-scan 2.8s ease-in-out infinite;
}
.security-controls {
  margin-top: 13px;
}
.security-controls > div {
  display: grid;
  grid-template-columns: 31px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 51px;
  padding: 7px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.security-controls i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(46, 157, 255, 0.16);
  color: #7acfff;
  font: 700 5px Arial;
  font-style: normal;
}
.security-controls span strong,
.security-controls span small {
  display: block;
}
.security-controls span strong {
  font-size: 7px;
}
.security-controls span small {
  margin-top: 4px;
  color: #7f9fbe;
  font-size: 5px;
}
.security-controls b {
  color: #54dfb1;
  font-size: 8px;
}
.security-log {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 9px;
  border: 1px solid rgba(84, 214, 176, 0.18);
  border-radius: 7px;
  background: rgba(23, 129, 110, 0.12);
}
.security-log > i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #4fe0ad;
  box-shadow: 0 0 0 4px rgba(79, 224, 173, 0.09);
  animation: pulse 1.7s infinite;
}
.security-log strong,
.security-log small {
  display: block;
}
.security-log strong {
  font-size: 6px;
}
.security-log small {
  margin-top: 3px;
  color: #77a4c4;
  font-size: 5px;
}
@keyframes security-scan {
  0%,
  100% {
    transform: translateX(-12%);
    opacity: 0.76;
  }
  50% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media (max-width: 1100px) {
  .capability-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 760px) {
  .capability-list {
    grid-template-columns: 1fr;
  }
  .security-domain-panel,
  .security-core-panel,
  .security-trace-panel {
    min-height: 280px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .shield-ring-a,
  .shield-node,
  .security-progress i,
  .security-log > i {
    animation: none !important;
  }
}
