:root {
  color-scheme: dark;
  --bg: #020203;
  --bg-raised: #070909;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.065);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --ink: #f3f6f7;
  --muted: #9aa2ab;
  --dim: #626d75;
  --green: #12e06b;
  --green-high: #4cff97;
  --green-soft: rgba(18, 224, 107, 0.12);
  --amber: #f6a723;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --container: 1380px;
  --radius: 12px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

html[data-lang="zh"] body {
  letter-spacing: 0.018em;
  line-height: 1.68;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

::selection {
  background: rgba(18, 224, 107, 0.3);
  color: white;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--green);
  color: #021409;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-background {
  position: fixed;
  z-index: -10;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg);
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.32;
}

.ambient-a {
  top: -480px;
  left: 36%;
  width: 900px;
  height: 760px;
  background: rgba(18, 224, 107, 0.38);
}

.ambient-b {
  top: 42vh;
  right: -420px;
  width: 700px;
  height: 900px;
  background: rgba(20, 100, 90, 0.12);
}

.grid-plane {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0, transparent 38%, black 65%, transparent 100%);
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 140px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(18, 224, 107, 0.8);
}

.section-index {
  margin-right: 16px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
}

.section-index::after {
  content: "/";
  margin-left: 5px;
}

.section-heading {
  margin-bottom: 64px;
}

.section-heading h2,
.workflow-copy h2,
.trust-header h2 {
  margin: 22px 0 0;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading h2 em,
.workflow-copy h2 em,
.trust-header h2 em {
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.section-heading > p,
.workflow-copy > p,
.trust-header > p {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 72px;
  align-items: end;
}

.section-heading.split > p {
  margin-bottom: 4px;
}

html[data-lang="zh"] .section-heading h2,
html[data-lang="zh"] .workflow-copy h2,
html[data-lang="zh"] .trust-header h2 {
  letter-spacing: -0.025em;
  line-height: 1.1;
}

html[data-lang="zh"] .section-heading > p,
html[data-lang="zh"] .workflow-copy > p,
html[data-lang="zh"] .trust-header > p {
  letter-spacing: 0.025em;
  line-height: 2.05;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 180ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 220ms var(--ease),
    background 220ms var(--ease);
}

.button::before {
  position: absolute;
  content: "";
  inset: -1px;
  transform: translateX(-110%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: transform 700ms var(--ease);
}

.button:hover::before {
  transform: translateX(110%) skewX(-18deg);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  background: linear-gradient(135deg, var(--green-high), var(--green));
  box-shadow:
    0 12px 38px -16px rgba(18, 224, 107, 0.8),
    inset 0 1px rgba(255, 255, 255, 0.55);
  color: #021108;
}

.button-primary:hover {
  box-shadow:
    0 16px 48px -14px rgba(18, 224, 107, 0.9),
    inset 0 1px rgba(255, 255, 255, 0.65);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.button-small {
  min-height: 38px;
  padding-inline: 16px;
  font-size: 13px;
}

.button-large {
  min-height: 52px;
  padding-inline: 24px;
  font-size: 14px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition:
    background 250ms ease,
    border-color 250ms ease;
}

.site-header.scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(2, 2, 3, 0.78);
  backdrop-filter: blur(22px) saturate(130%);
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 48px), 1460px);
  min-height: 72px;
  margin-inline: auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 24px -10px rgba(18, 224, 107, 0.9);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 8px;
}

.nav-links > a,
.nav-trigger {
  position: relative;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-links > a::after,
.nav-trigger::after {
  position: absolute;
  bottom: 4px;
  left: 12px;
  width: calc(100% - 24px);
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--green), transparent);
  transition: transform 240ms var(--ease);
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-trigger:hover,
.nav-group.open .nav-trigger,
.nav-group:focus-within .nav-trigger {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.025);
}

.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-trigger:hover::after,
.nav-group.open .nav-trigger::after,
.nav-group:focus-within .nav-trigger::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.nav-group::after {
  position: absolute;
  top: 100%;
  right: -18px;
  left: -18px;
  height: 16px;
  content: "";
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-trigger:focus-visible {
  outline: 1px solid rgba(18, 224, 107, 0.55);
  outline-offset: 2px;
}

.nav-chevron {
  margin-top: -3px;
  color: var(--dim);
  font-size: 13px;
  transition: transform 200ms var(--ease);
}

.nav-group.open .nav-chevron,
.nav-group:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.product-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 14px);
  left: -18px;
  display: grid;
  width: 246px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  grid-template-columns: 1fr;
  gap: 2px;
  transform: translateY(-7px) scale(0.985);
  transform-origin: top left;
  background: rgba(7, 9, 9, 0.74);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.48),
    inset 0 1px rgba(255, 255, 255, 0.035);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease);
  backdrop-filter: blur(26px) saturate(125%);
  -webkit-backdrop-filter: blur(26px) saturate(125%);
}

.product-menu::before {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
}

.nav-group:hover .product-menu,
.nav-group:focus-within .product-menu,
.nav-group.open .product-menu {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.product-menu-intro {
  display: none;
}

.product-menu-intro span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.product-menu-intro p {
  margin: 0;
  color: var(--dim);
  font-size: 10px;
}

.product-menu > a {
  display: flex;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  align-items: center;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.product-menu > a:hover,
.product-menu > a.active {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.055);
}

.product-menu > a > b {
  display: none;
}

.product-menu > a > span {
  display: block;
}

.product-menu strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 540;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}

.product-menu small {
  display: none;
}

.product-menu > a.active strong {
  color: var(--green-high);
}

.nav-actions {
  display: flex;
  margin-left: 8px;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: flex;
  gap: 5px;
  padding: 6px;
  border: 0;
  background: transparent;
  color: var(--dim);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
}

.language-switch .language-active {
  color: var(--green);
}

.deck-link {
  color: var(--muted);
  font-size: 13px;
  transition: color 180ms ease;
}

.deck-link:hover {
  color: var(--ink);
}

.menu-toggle,
.mobile-nav-actions {
  display: none;
}

.hero {
  display: grid;
  min-height: 100svh;
  padding-top: 144px;
  padding-bottom: 90px;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 110px;
  right: -90px;
  width: 54%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(18, 224, 107, 0.28), transparent);
}

.hero-orbit {
  position: absolute;
  top: -110px;
  right: -250px;
  width: 880px;
  height: 880px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(255, 255, 255, 0.01),
    0 0 0 240px rgba(255, 255, 255, 0.008);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 17%;
  border: 1px dashed rgba(18, 224, 107, 0.12);
  animation: orbit 50s linear infinite;
}

.hero-orbit::after {
  top: 26%;
  left: 8%;
  width: 7px;
  height: 7px;
  background: var(--green);
  box-shadow: 0 0 28px 8px rgba(18, 224, 107, 0.4);
}

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

.hero-layout {
  display: grid;
  grid-template-columns: minmax(530px, 0.95fr) minmax(610px, 1.05fr);
  gap: 34px;
  align-items: center;
}

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

.hero-copy h1 {
  margin: 24px 0 0;
  font-size: clamp(64px, 6.3vw, 94px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

html[data-lang="zh"] .hero-copy h1 {
  font-size: clamp(58px, 4.4vw, 70px);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.hero-copy h1 .hero-line {
  display: block;
  white-space: nowrap;
}

.hero-copy h1 .accent {
  color: transparent;
  background: linear-gradient(120deg, #fff 10%, #aab3b1 55%, #4cff97 112%);
  background-clip: text;
}

.hero-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(234, 240, 238, 0.6);
}

html[data-lang="zh"] .hero-copy h2 {
  margin-top: 18px;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.55;
  color: rgba(234, 240, 238, 0.58);
}

.hero-description {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

html[data-lang="zh"] .hero-description {
  margin-top: 24px;
  letter-spacing: 0.025em;
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.play-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  font-size: 7px;
}

.hero-metrics {
  display: flex;
  margin-top: 36px;
  gap: 0;
}

.hero-metrics > div {
  display: grid;
  min-width: 132px;
  padding-right: 22px;
  border-right: 1px solid var(--line-soft);
}

.hero-metrics > div + div {
  padding-left: 22px;
}

.hero-metrics > div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.hero-metrics span {
  margin-top: 4px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: 700px;
  perspective: 1800px;
  transform-style: preserve-3d;
}

.visual-halo {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -10%;
  left: 12%;
  height: 45%;
  border-radius: 50%;
  background: rgba(18, 224, 107, 0.13);
  filter: blur(70px);
}

.command-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  background: rgba(5, 7, 7, 0.9);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.07),
    0 45px 100px -42px rgba(0, 0, 0, 0.95),
    0 0 120px -75px rgba(18, 224, 107, 0.7);
  transform: rotateY(-8deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform 200ms ease-out;
}

.shine-card::after {
  position: absolute;
  z-index: 10;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: radial-gradient(
    500px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.075),
    transparent 42%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.shine-card:hover::after {
  opacity: 1;
}

.window-topbar {
  display: grid;
  height: 37px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line-soft);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.07em;
}

.window-brand,
.runner-state {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mini-mark {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  overflow: hidden;
  border-radius: 5px;
}

.mini-mark img,
.rail-logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.runner-state span,
.live-chip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.window-dots {
  display: flex;
  justify-self: end;
  gap: 5px;
}

.window-dots i,
.browser-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.hero-console {
  display: grid;
  min-height: 480px;
  grid-template-columns: 46px 1fr 152px;
}

.console-rail {
  display: flex;
  padding: 10px 0;
  border-right: 1px solid var(--line-soft);
  align-items: center;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.014);
}

.rail-logo,
.rail-avatar {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 8px;
}

.rail-logo {
  margin-bottom: 8px;
  overflow: hidden;
}

.console-rail .icon {
  width: 14px;
  height: 14px;
  padding: 6px;
  box-sizing: content-box;
  border-radius: 6px;
  color: #59635e;
}

.console-rail .icon.active {
  background: var(--green-soft);
  color: var(--green);
}

.rail-avatar {
  margin-top: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.console-main {
  min-width: 0;
  padding: 20px 18px 15px;
}

.console-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.micro-label {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.console-heading h3 {
  margin: 3px 0 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.live-chip {
  display: flex;
  padding: 5px 8px;
  border: 1px solid rgba(18, 224, 107, 0.2);
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 6px;
}

.console-grid {
  display: grid;
  margin-top: 14px;
  grid-template-columns: minmax(0, 1.42fr) minmax(145px, 0.58fr);
  gap: 10px;
}

.intel-card,
.alert-card,
.smart-money-card,
.employee-strip {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.intel-card {
  padding: 14px;
}

.card-kicker {
  display: flex;
  justify-content: space-between;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.card-kicker b {
  color: var(--green);
  font-weight: 500;
}

.card-kicker b.amber {
  color: var(--amber);
}

.intel-card h4 {
  margin: 12px 0 4px;
  font-size: 13px;
  font-weight: 600;
}

.intel-card p,
.alert-card p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.7;
}

.signal-chart {
  position: relative;
  height: 112px;
  margin-top: 8px;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

.signal-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  filter: drop-shadow(0 0 5px rgba(18, 224, 107, 0.5));
  animation: draw 2.2s var(--ease) 0.4s forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.chart-value {
  position: absolute;
  top: 12px;
  right: 8px;
  display: grid;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}

.chart-value small {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.08em;
}

.intel-footer {
  display: flex;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  align-items: center;
  justify-content: space-between;
  color: var(--dim);
  font-size: 7px;
}

.intel-footer button,
.alert-card button,
.dispatch-button {
  display: flex;
  padding: 0;
  border: 0;
  align-items: center;
  gap: 4px;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 7px;
}

.intel-footer .icon {
  width: 9px;
}

.console-side {
  display: grid;
  gap: 10px;
}

.alert-card,
.smart-money-card {
  padding: 12px;
}

.alert-title {
  display: flex;
  margin: 13px 0 6px;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 600;
}

.alert-title .icon {
  width: 16px;
  color: var(--amber);
}

.alert-card button {
  margin-top: 13px;
  color: #eacb92;
}

.money-flow {
  display: flex;
  margin-top: 13px;
  align-items: center;
  gap: 8px;
}

.token-ball {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(18, 224, 107, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #4cff97, #063d20 50%, #06110a 51%);
  color: white;
  font-family: var(--mono);
  font-size: 8px;
}

.money-flow div {
  display: grid;
  min-width: 0;
}

.money-flow strong {
  font-size: 9px;
}

.money-flow small {
  color: var(--dim);
  font-size: 6px;
}

.money-flow .up {
  margin-left: auto;
  color: var(--green);
  font-family: var(--mono);
  font-size: 8px;
}

.address-row {
  display: flex;
  margin-top: 15px;
  align-items: center;
}

.address-row i,
.address-row span {
  display: grid;
  width: 20px;
  height: 20px;
  margin-left: -4px;
  place-items: center;
  border: 2px solid #0a0c0c;
  border-radius: 50%;
  background: linear-gradient(135deg, #293833, #0f1613);
}

.address-row i:first-child {
  margin-left: 0;
}

.address-row span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 5px;
}

.employee-strip {
  margin-top: 10px;
  padding: 10px 12px;
}

.employee-strip-heading {
  display: flex;
  justify-content: space-between;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.employee-strip-heading b {
  color: var(--green);
  font-weight: 500;
}

.squad-row {
  display: grid;
  margin-top: 8px;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.squad-row > span {
  position: relative;
  display: grid;
  height: 33px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
}

.squad-row > span::after {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 3px;
  height: 3px;
  content: "";
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 5px var(--green);
}

.task-feed {
  padding: 17px 13px;
  border-left: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.012);
}

.task-feed-title {
  display: flex;
  margin-bottom: 18px;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.task-feed-title i {
  color: var(--dim);
  font-style: normal;
}

.timeline-item {
  position: relative;
  display: grid;
  min-height: 70px;
  grid-template-columns: 28px 10px 1fr;
  gap: 4px;
  color: var(--dim);
}

.timeline-item::before {
  position: absolute;
  top: 13px;
  bottom: -4px;
  left: 32px;
  width: 1px;
  content: "";
  background: var(--line-soft);
}

.timeline-item:last-of-type::before {
  display: none;
}

.timeline-item time {
  font-family: var(--mono);
  font-size: 6px;
}

.timeline-item > span {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  border: 2px solid #0a0c0c;
  border-radius: 50%;
  background: #414744;
}

.timeline-item.done > span,
.timeline-item.active > span {
  background: var(--green);
  box-shadow: 0 0 8px rgba(18, 224, 107, 0.7);
}

.timeline-item b,
.timeline-item small {
  display: block;
}

.timeline-item b {
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
}

.timeline-item.done b,
.timeline-item.active b {
  color: var(--ink);
}

.timeline-item small {
  margin-top: 3px;
  font-size: 6px;
}

.timeline-item.active small {
  color: var(--green);
}

.dispatch-button {
  width: 100%;
  min-height: 30px;
  border: 1px dashed rgba(18, 224, 107, 0.25);
  border-radius: 5px;
  justify-content: center;
  background: rgba(18, 224, 107, 0.04);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(8, 11, 10, 0.82);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 18px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  animation: float 4.5s ease-in-out infinite;
}

.floating-chip-a {
  right: -8px;
  bottom: 55px;
  align-items: center;
  gap: 10px;
}

.floating-chip-b {
  top: 84px;
  left: -28px;
  display: grid;
  animation-delay: -2s;
}

.floating-chip b,
.floating-chip small,
.floating-chip strong {
  display: block;
}

.floating-chip b {
  font-size: 10px;
}

.floating-chip small {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 6px;
}

.floating-chip strong {
  margin-top: 3px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
}

.pulse-ring {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 0 6px rgba(18, 224, 107, 0.08),
    0 0 16px var(--green);
}

@keyframes float {
  50% {
    transform: translateY(-8px);
  }
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: flex;
  transform: translateX(-50%);
  align-items: center;
  gap: 10px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.14em;
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue span::after {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  content: "";
  background: var(--green);
  animation: scrollline 2s ease-in-out infinite;
}

@keyframes scrollline {
  to {
    top: 100%;
  }
}

.signal-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.012);
}

.marquee-track {
  display: flex;
  width: max-content;
  padding: 14px 0;
  align-items: center;
  gap: 28px;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.marquee-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.product-section {
  overflow: hidden;
}

.product-section::after {
  position: absolute;
  z-index: -1;
  right: 5%;
  bottom: 12%;
  width: 500px;
  height: 500px;
  content: "";
  border-radius: 50%;
  background: rgba(18, 224, 107, 0.05);
  filter: blur(100px);
}

.product-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: #050707;
  box-shadow:
    0 50px 130px -65px #000,
    0 0 120px -90px rgba(18, 224, 107, 0.8);
  transform-style: preserve-3d;
  transition: transform 200ms ease-out;
}

.product-browserbar {
  display: grid;
  height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line-soft);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.018);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-address {
  display: flex;
  padding: 6px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
}

.product-browserbar .runner-state {
  justify-self: end;
  color: var(--green);
  font-family: var(--mono);
  font-size: 7px;
}

.dashboard-shell {
  display: grid;
  min-height: 810px;
  grid-template-columns: 178px 1fr;
}

.dashboard-sidebar {
  display: flex;
  padding: 20px 14px;
  border-right: 1px solid var(--line-soft);
  flex-direction: column;
  background: rgba(255, 255, 255, 0.012);
}

.dashboard-brand {
  display: flex;
  margin-bottom: 30px;
  padding: 0 7px;
  align-items: center;
  gap: 9px;
}

.dashboard-brand strong {
  font-size: 12px;
}

.nav-group-label {
  margin: 0 10px 9px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.14em;
}

.dashboard-sidebar > a:not(.dashboard-brand) {
  position: relative;
  display: flex;
  min-height: 39px;
  padding: 0 10px;
  border-radius: 6px;
  align-items: center;
  gap: 10px;
  color: var(--dim);
  font-size: 9px;
}

.dashboard-sidebar > a:not(.dashboard-brand).active {
  background: linear-gradient(90deg, rgba(18, 224, 107, 0.13), transparent);
  color: var(--ink);
}

.dashboard-sidebar > a.active::before {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 0;
  width: 2px;
  content: "";
  border-radius: 3px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.dashboard-sidebar .icon {
  width: 14px;
}

.dashboard-sidebar > a.active .icon {
  color: var(--green);
}

.dashboard-sidebar > a i {
  display: grid;
  width: 17px;
  height: 17px;
  margin-left: auto;
  place-items: center;
  border-radius: 4px;
  background: rgba(18, 224, 107, 0.1);
  color: var(--green);
  font-family: var(--mono);
  font-size: 6px;
  font-style: normal;
}

.sidebar-employer {
  display: flex;
  margin-top: auto;
  padding: 11px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.025);
}

.sidebar-employer > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 6px;
  background: rgba(18, 224, 107, 0.1);
  color: var(--green);
  font-size: 9px;
}

.sidebar-employer div {
  display: grid;
}

.sidebar-employer b {
  font-size: 8px;
}

.sidebar-employer small {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 5px;
}

.dashboard-main {
  padding: 27px 28px 25px;
  background-image: radial-gradient(circle at 80% 0, rgba(18, 224, 107, 0.045), transparent 28%);
}

.dashboard-greeting {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.dashboard-greeting h3 {
  margin: 3px 0 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.dashboard-greeting p {
  margin: 3px 0 0;
  color: var(--dim);
  font-size: 8px;
}

.dashboard-greeting button {
  display: flex;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(18, 224, 107, 0.25);
  border-radius: 6px;
  align-items: center;
  gap: 7px;
  background: rgba(18, 224, 107, 0.08);
  color: var(--green);
  cursor: pointer;
  font-size: 8px;
}

.dashboard-greeting button span {
  font-size: 15px;
  font-weight: 300;
}

.kpi-grid {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.kpi-grid article {
  position: relative;
  min-height: 116px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.kpi-grid article > span,
.kpi-grid article > small {
  display: block;
  color: var(--dim);
  font-size: 7px;
}

.kpi-grid strong {
  display: block;
  margin-top: 7px;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.kpi-grid article > small {
  margin-top: 3px;
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.08em;
}

.kpi-grid article > small.positive {
  color: var(--green);
}

.kpi-grid article > svg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35px;
}

.kpi-grid article > svg path {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
}

.mini-avatars {
  display: flex;
  position: absolute;
  right: 12px;
  bottom: 12px;
}

.mini-avatars i,
.mini-avatars b {
  display: grid;
  width: 22px;
  height: 22px;
  margin-left: -4px;
  place-items: center;
  border: 2px solid #0a0c0c;
  border-radius: 50%;
  background: #14241b;
  color: var(--green);
  font-family: var(--mono);
  font-size: 5px;
  font-style: normal;
}

.mini-avatars b {
  background: #151918;
  color: var(--muted);
}

.bar-cluster {
  position: absolute;
  right: 13px;
  bottom: 12px;
  display: flex;
  height: 30px;
  align-items: end;
  gap: 3px;
}

.bar-cluster i {
  width: 4px;
  height: var(--bar, 40%);
  border-radius: 1px;
  background: rgba(18, 224, 107, 0.2);
}

.bar-cluster i:nth-child(2) {
  height: 70%;
}
.bar-cluster i:nth-child(3) {
  height: 50%;
}
.bar-cluster i:nth-child(4) {
  height: 85%;
}
.bar-cluster i:nth-child(5) {
  height: 60%;
}
.bar-cluster i:nth-child(6) {
  height: 95%;
  background: var(--green);
}
.bar-cluster i:nth-child(7) {
  height: 78%;
}

.risk-rings {
  position: absolute;
  right: 16px;
  bottom: 15px;
  width: 34px;
  height: 34px;
  border: 3px solid rgba(246, 167, 35, 0.16);
  border-top-color: var(--amber);
  border-radius: 50%;
  transform: rotate(30deg);
}

.risk-rings::before {
  position: absolute;
  inset: 5px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-right-color: rgba(246, 167, 35, 0.6);
  border-radius: 50%;
}

.dashboard-content-grid {
  display: grid;
  margin-top: 10px;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.65fr);
  gap: 10px;
}

.daily-intel,
.schedule-panel,
.task-board {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.panel-heading {
  display: flex;
  min-height: 46px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
  justify-content: space-between;
}

.panel-heading > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-heading b {
  font-size: 9px;
  font-weight: 500;
}

.panel-heading button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dim);
  cursor: pointer;
  font-size: 7px;
}

.intel-feature {
  display: grid;
  min-height: 182px;
  padding: 18px;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
}

.feature-tag {
  color: var(--green);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.feature-copy h4 {
  margin: 8px 0 6px;
  font-size: 14px;
  font-weight: 600;
}

.feature-copy p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.75;
}

.confidence {
  display: grid;
  margin-top: 16px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--dim);
  font-size: 6px;
}

.confidence > div {
  height: 4px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
}

.confidence i {
  display: block;
  width: 87%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 4px;
  background: var(--green);
  box-shadow: 0 0 8px rgba(18, 224, 107, 0.6);
  transition: transform 1.5s var(--ease);
}

.is-visible .confidence i,
.is-visible .row-progress i {
  transform: scaleX(1);
}

.confidence b {
  color: var(--green);
  font-family: var(--mono);
  font-size: 8px;
}

.radar-viz {
  position: relative;
  width: 126px;
  height: 126px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(18, 224, 107, 0.18);
  border-radius: 50%;
  background: repeating-radial-gradient(
      circle,
      transparent 0 19px,
      rgba(18, 224, 107, 0.1) 20px 20.5px
    ), linear-gradient(90deg, transparent 49.5%, rgba(18, 224, 107, 0.1) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(18, 224, 107, 0.1) 50%, transparent 50.5%);
}

.radar-sweep {
  position: absolute;
  inset: -1px 50% 50% -1px;
  transform-origin: bottom right;
  background: linear-gradient(35deg, transparent 50%, rgba(18, 224, 107, 0.16));
  animation: sweep 5s linear infinite;
}

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

.radar-viz .point {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px 2px rgba(18, 224, 107, 0.55);
}

.radar-viz .p1 {
  top: 30%;
  left: 65%;
}
.radar-viz .p2 {
  top: 65%;
  left: 29%;
}
.radar-viz .p3 {
  top: 48%;
  left: 79%;
}

.radar-viz strong {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--green);
  font-family: var(--mono);
  font-size: 8px;
}

.intel-list {
  border-top: 1px solid var(--line-soft);
}

.intel-list > div {
  display: grid;
  min-height: 55px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line-soft);
  grid-template-columns: 32px 8px 1fr auto;
  align-items: center;
  gap: 8px;
}

.intel-list > div:last-child {
  border-bottom: 0;
}

.intel-list time {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 6px;
}

.type-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.type-dot.green {
  background: var(--green);
}
.type-dot.amber {
  background: var(--amber);
}

.intel-list p,
.intel-list b,
.intel-list small {
  display: block;
  margin: 0;
}

.intel-list b {
  font-size: 8px;
  font-weight: 500;
}

.intel-list small {
  margin-top: 2px;
  color: var(--dim);
  font-size: 6px;
}

.intel-list em {
  color: var(--green);
  font-size: 6px;
  font-style: normal;
}

.schedule-list {
  padding: 10px 14px;
}

.schedule-row {
  position: relative;
  display: grid;
  min-height: 58px;
  grid-template-columns: 32px 9px 1fr 16px;
  align-items: start;
  gap: 7px;
}

.schedule-row::before {
  position: absolute;
  top: 14px;
  bottom: -3px;
  left: 36px;
  width: 1px;
  content: "";
  background: var(--line-soft);
}

.schedule-row:last-child::before {
  display: none;
}

.schedule-row time,
.schedule-row > i {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 6px;
  font-style: normal;
}

.schedule-row > span {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  border: 2px solid #090b0b;
  border-radius: 50%;
  background: #3f4643;
}

.schedule-row.done > span,
.schedule-row.active > span {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.schedule-row b,
.schedule-row small {
  display: block;
}

.schedule-row b {
  font-size: 8px;
  font-weight: 500;
}

.schedule-row small {
  color: var(--dim);
  font-size: 6px;
}

.schedule-row.active small,
.schedule-row.done > i {
  color: var(--green);
}

.row-progress {
  width: 100%;
  height: 2px;
  margin-top: 5px;
  overflow: hidden;
  background: var(--line-soft);
}

.row-progress i {
  display: block;
  width: 68%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: transform 1.5s var(--ease) 0.2s;
}

.task-board {
  margin-top: 10px;
}

.board-columns {
  display: grid;
  padding: 14px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.board-columns > div > header {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 7px;
}

.board-columns > div > header i {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 5px;
  font-style: normal;
}

.board-columns article {
  padding: 11px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease;
}

.board-columns article:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 224, 107, 0.22);
}

.board-columns article > small {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 5px;
}

.board-columns article > b {
  display: block;
  margin-top: 6px;
  font-size: 7px;
  font-weight: 500;
}

.board-columns article footer {
  display: flex;
  margin-top: 13px;
  align-items: center;
  justify-content: space-between;
}

.badge {
  padding: 2px 5px;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 5px;
}

.badge.running,
.badge.ready {
  background: rgba(18, 224, 107, 0.09);
  color: var(--green);
}

.badge.review {
  background: rgba(86, 139, 255, 0.1);
  color: #7da0ff;
}

.badge.risk {
  background: rgba(246, 167, 35, 0.1);
  color: var(--amber);
}

.board-columns article footer em {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: #132119;
  color: var(--green);
  font-family: var(--mono);
  font-size: 5px;
  font-style: normal;
}

.product-caption {
  display: grid;
  margin-top: 22px;
  grid-template-columns: auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 12px;
}

.product-caption span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.product-caption p {
  margin: 0;
  color: var(--dim);
  font-size: 9px;
}

.employees-section {
  border-top: 1px solid var(--line-soft);
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.employee-card {
  position: relative;
  min-height: 360px;
  padding: 23px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.018));
  transition:
    transform 260ms var(--ease),
    border-color 260ms ease,
    background 260ms ease;
}

.employee-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: rgba(18, 224, 107, 0.42);
  background: linear-gradient(145deg, rgba(18, 224, 107, 0.065), rgba(255, 255, 255, 0.024));
}

.employee-card.feature-employee {
  grid-column: span 2;
  background: radial-gradient(circle at 80% 30%, rgba(18, 224, 107, 0.09), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.employee-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.employee-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(18, 224, 107, 0.2);
  border-radius: 8px;
  background: rgba(18, 224, 107, 0.08);
  color: var(--green);
  transition:
    box-shadow 260ms ease,
    transform 260ms var(--ease);
}

.employee-card:hover .employee-icon {
  transform: scale(1.05);
  box-shadow: 0 0 26px -8px rgba(18, 224, 107, 0.8);
}

.employee-state {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.employee-state i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.employee-code {
  display: block;
  margin-top: 26px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.employee-card h3 {
  margin: 8px 0 0;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

html[data-lang="zh"] .employee-card h3 {
  letter-spacing: 0.02em;
  line-height: 1.38;
}

.employee-card > small {
  color: #78827c;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.employee-card > p {
  max-width: 340px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

html[data-lang="zh"] .employee-card > p {
  letter-spacing: 0.025em;
  line-height: 1.95;
}

.employee-task {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  min-height: 56px;
  padding: 10px 12px;
  border-top: 1px solid var(--line-soft);
  grid-template-columns: 1fr auto;
  align-items: center;
  transition: border-color 220ms ease;
}

.employee-task span,
.employee-task b {
  display: block;
}

.employee-task span {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.employee-task b {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 500;
}

.employee-task button {
  display: flex;
  padding: 6px 8px;
  transform: translateX(8px);
  border: 1px solid rgba(18, 224, 107, 0.25);
  border-radius: 5px;
  align-items: center;
  gap: 5px;
  opacity: 0;
  background: rgba(18, 224, 107, 0.08);
  color: var(--green);
  cursor: pointer;
  font-size: 7px;
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease);
}

.employee-card:hover .employee-task button,
.employee-card:focus-within .employee-task button {
  transform: translateX(0);
  opacity: 1;
}

.employee-task .icon {
  width: 10px;
}

.employee-visual {
  position: absolute;
  top: 94px;
  right: 28px;
  width: 42%;
  height: 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 25px 25px;
}

.employee-visual > span {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
}

.employee-visual svg {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 70px;
}

.employee-visual svg path {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
}

.employee-visual strong {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
}

.workflow-section {
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 40%);
}

.workflow-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 110px;
  align-items: start;
}

.workflow-copy {
  position: sticky;
  top: 150px;
}

.workflow-copy blockquote {
  display: flex;
  margin: 52px 0 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 14px;
}

.workflow-copy blockquote > span {
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}

.workflow-copy blockquote p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
}

.workflow-copy blockquote strong {
  color: var(--ink);
}

.workflow-timeline {
  position: relative;
}

.workflow-line {
  position: absolute;
  top: 28px;
  bottom: 70px;
  left: 78px;
  width: 1px;
  overflow: hidden;
  background: var(--line);
}

.workflow-line i {
  display: block;
  width: 100%;
  height: var(--workflow-progress, 20%);
  background: linear-gradient(var(--green), rgba(18, 224, 107, 0.1));
  box-shadow: 0 0 10px rgba(18, 224, 107, 0.5);
  transition: height 500ms var(--ease);
}

.workflow-item {
  position: relative;
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: 54px 30px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
}

.workflow-item time {
  padding-top: 20px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 9px;
}

.workflow-node {
  position: relative;
  z-index: 1;
  display: grid;
  width: 13px;
  height: 13px;
  margin-top: 18px;
  place-items: center;
  border: 3px solid var(--bg-raised);
  border-radius: 50%;
  background: #3b413f;
  transition:
    background 200ms ease,
    box-shadow 200ms ease;
}

.workflow-item.active .workflow-node {
  background: var(--green);
  box-shadow: 0 0 18px rgba(18, 224, 107, 0.7);
}

.workflow-card {
  padding: 20px 22px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.022);
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    background 220ms ease;
}

.workflow-item.active .workflow-card,
.workflow-item:hover .workflow-card {
  transform: translateX(5px);
  border-color: rgba(18, 224, 107, 0.24);
  background: linear-gradient(100deg, rgba(18, 224, 107, 0.05), rgba(255, 255, 255, 0.02));
}

.workflow-card header {
  display: flex;
  justify-content: space-between;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.workflow-card header b {
  color: var(--green);
  font-weight: 500;
}

.workflow-card h3 {
  margin: 8px 0 15px;
  font-size: 18px;
  font-weight: 550;
  letter-spacing: -0.03em;
}

html[data-lang="zh"] .workflow-card h3 {
  letter-spacing: 0.025em;
  line-height: 1.45;
}

.workflow-card dl {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.workflow-card dl > div {
  padding-top: 9px;
  border-top: 1px solid var(--line-soft);
}

.workflow-card dt {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.workflow-card dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 8px;
}

html[data-lang="zh"] .workflow-card dd {
  letter-spacing: 0.02em;
  line-height: 1.75;
}

.trust-section {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  background: #030404;
}

.trust-grid-background {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background-image: linear-gradient(rgba(18, 224, 107, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 224, 107, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 75%);
}

.trust-header {
  position: relative;
  max-width: 850px;
  margin: 0 auto 62px;
  text-align: center;
}

.trust-header h2 {
  font-size: clamp(46px, 6vw, 82px);
}

.trust-header > p {
  margin-inline: auto;
}

.trust-console {
  position: relative;
  border: 1px solid rgba(18, 224, 107, 0.16);
  border-radius: 11px;
  background: rgba(6, 9, 7, 0.84);
  box-shadow:
    0 0 100px -65px rgba(18, 224, 107, 0.8),
    inset 0 1px rgba(255, 255, 255, 0.04);
}

.trust-statusbar {
  display: flex;
  min-height: 44px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(18, 224, 107, 0.12);
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.trust-statusbar span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
}

.trust-statusbar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px var(--green);
}

.trust-statusbar small {
  color: var(--dim);
  font-size: 6px;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-cards article {
  min-height: 290px;
  padding: 32px 30px;
  border-right: 1px solid var(--line-soft);
  transition: background 220ms ease;
}

.trust-cards article:last-child {
  border-right: 0;
}

.trust-cards article:hover {
  background: rgba(18, 224, 107, 0.025);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green);
}

.trust-icon .icon {
  width: 25px;
  height: 25px;
}

.trust-icon i {
  color: #33413a;
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
}

.trust-cards h3 {
  margin: 42px 0 0;
  font-size: 21px;
  font-weight: 550;
}

html[data-lang="zh"] .trust-cards h3 {
  letter-spacing: 0.025em;
  line-height: 1.4;
}

.trust-cards p {
  min-height: 64px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

html[data-lang="zh"] .trust-cards p {
  letter-spacing: 0.025em;
  line-height: 2;
}

.trust-cards article > small {
  display: block;
  margin-top: 30px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.trust-bottomline {
  display: grid;
  min-height: 115px;
  padding: 0 30px;
  border-top: 1px solid rgba(18, 224, 107, 0.12);
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 17px;
  background: linear-gradient(90deg, rgba(18, 224, 107, 0.06), transparent 48%);
}

.trust-bottomline > .icon {
  width: 30px;
  height: 30px;
  color: var(--green);
}

.trust-bottomline div {
  display: grid;
}

.trust-bottomline span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.trust-bottomline strong {
  margin-top: 5px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

html[data-lang="zh"] .trust-bottomline strong {
  letter-spacing: 0.015em;
  line-height: 1.45;
}

.trust-bottomline p {
  margin: 0;
  color: var(--dim);
  font-size: 9px;
  line-height: 1.8;
  text-align: right;
}

.roadmap-section {
  overflow: hidden;
}

.roadmap-section::before {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: -35%;
  left: -10%;
  height: 55%;
  content: "";
  background: radial-gradient(ellipse at center, rgba(18, 224, 107, 0.09), transparent 65%);
}

.roadmap-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}

.road-line {
  position: absolute;
  top: 22px;
  right: 15%;
  left: 0;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.road-line i {
  display: block;
  width: 37%;
  height: 1px;
  background: linear-gradient(90deg, var(--green), rgba(18, 224, 107, 0.3));
  box-shadow: 0 0 12px var(--green);
  animation: roadscan 4s ease-in-out infinite alternate;
}

@keyframes roadscan {
  to {
    transform: translateX(160%);
  }
}

.road-stage {
  position: relative;
}

.road-node {
  position: relative;
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: space-between;
}

.road-node span {
  position: relative;
  z-index: 2;
  width: 11px;
  height: 11px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: #4a514e;
  box-shadow: 0 0 0 1px var(--line);
}

.road-stage.current .road-node span {
  background: var(--green);
  box-shadow: 0 0 16px rgba(18, 224, 107, 0.8);
}

.road-node b {
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--mono);
  font-size: 38px;
  font-weight: 500;
}

.road-time {
  display: block;
  margin-top: 30px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.road-stage h3 {
  min-height: 60px;
  margin: 12px 0 0;
  font-size: 25px;
  font-weight: 550;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

html[data-lang="zh"] .road-stage h3 {
  letter-spacing: 0.02em;
  line-height: 1.42;
}

.road-stage p {
  min-height: 88px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.85;
}

html[data-lang="zh"] .road-stage p {
  letter-spacing: 0.025em;
  line-height: 2;
}

.road-stage ul {
  margin: 25px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--line-soft);
  list-style: none;
}

.road-stage li {
  position: relative;
  margin: 9px 0;
  padding-left: 14px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.06em;
}

.road-stage li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: var(--green);
}

.workstream-section {
  position: relative;
  padding: 156px 0 170px;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  background: radial-gradient(circle at 50% 56%, rgba(18, 224, 107, 0.075), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.008), transparent 24%), #020303;
}

.workstream-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 82%, transparent);
  pointer-events: none;
}

.workstream-section .section-heading {
  margin-bottom: 76px;
}

.workstream-stage {
  --stream-x: 50%;
  --stream-y: 50%;
  position: relative;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  overflow: hidden;
  background: rgba(2, 4, 4, 0.48);
  isolation: isolate;
}

.workstream-stage::before {
  position: absolute;
  z-index: 0;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(18, 224, 107, 0.15),
    rgba(18, 224, 107, 0.045) 34%,
    transparent 68%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  left: var(--stream-x);
  top: var(--stream-y);
}

.workstream-stage:hover::before {
  opacity: 1;
}

.workstream-stage::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(18, 224, 107, 0.16), transparent);
  box-shadow: 0 0 22px rgba(18, 224, 107, 0.1);
  pointer-events: none;
}

.workstream-glow {
  position: absolute;
  z-index: 0;
  top: 21%;
  left: 50%;
  width: 48%;
  height: 58%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(18, 224, 107, 0.065);
  filter: blur(110px);
  pointer-events: none;
}

.workstream-meta,
.workstream-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.workstream-meta {
  min-height: 46px;
  margin-bottom: 18px;
}

.workstream-meta > span,
.workstream-meta > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.workstream-meta > span {
  color: var(--green);
}

.workstream-meta i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.workstream-meta b {
  font-weight: 500;
}

.flow-lane {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 18px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.flow-lane + .flow-lane {
  margin-top: -6px;
}

.flow-track,
.flow-set {
  display: flex;
  width: max-content;
  gap: 14px;
}

.flow-track {
  will-change: transform;
}

.flow-lane-forward .flow-track {
  animation: flow-forward 68s linear infinite;
}

.flow-lane-reverse .flow-track {
  transform: translateX(calc(-50% - 7px));
  animation: flow-reverse 74s linear infinite;
}

@keyframes flow-forward {
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes flow-reverse {
  to {
    transform: translateX(0);
  }
}

.flow-lane:has(.flow-card:hover) .flow-track {
  animation-play-state: paused;
}

.flow-card {
  --card-x: 50%;
  --card-y: 50%;
  position: relative;
  display: flex;
  width: clamp(300px, 24vw, 356px);
  min-height: 238px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  flex: 0 0 auto;
  flex-direction: column;
  overflow: hidden;
  background: rgba(7, 9, 9, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  transition:
    transform 260ms var(--ease),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
  backdrop-filter: blur(14px);
}

.flow-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(
    240px circle at var(--card-x) var(--card-y),
    rgba(18, 224, 107, 0.15),
    transparent 64%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.flow-card::after {
  position: absolute;
  top: 0;
  right: 16%;
  left: 16%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(76, 255, 151, 0.52), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.flow-card:hover {
  z-index: 4;
  border-color: rgba(18, 224, 107, 0.34);
  transform: translateY(-4px);
  background: rgba(7, 14, 10, 0.82);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(18, 224, 107, 0.07),
    inset 0 1px rgba(76, 255, 151, 0.08);
}

.flow-card:hover::before,
.flow-card:hover::after {
  opacity: 1;
}

.flow-card-featured {
  border-color: rgba(18, 224, 107, 0.2);
  background: linear-gradient(135deg, rgba(18, 224, 107, 0.07), rgba(7, 9, 9, 0.74) 58%);
}

.flow-card > header,
.flow-card > div,
.flow-card > footer {
  position: relative;
  z-index: 1;
}

.flow-card > header {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: space-between;
}

.flow-icon {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(18, 224, 107, 0.2);
  border-radius: 7px;
  place-items: center;
  color: var(--green);
  background: rgba(18, 224, 107, 0.055);
}

.flow-icon .icon {
  width: 16px;
  height: 16px;
}

.flow-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.flow-state i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.flow-state.risk {
  color: var(--amber);
}

.flow-state.waiting {
  color: #b8c0c5;
}

.flow-card > div {
  margin-top: 22px;
}

.flow-owner {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.flow-card h3 {
  margin: 8px 0 10px;
  font-size: 22px;
  font-weight: 570;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

html[data-lang="zh"] .flow-card h3 {
  letter-spacing: 0.025em;
  line-height: 1.48;
}

.flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

html[data-lang="zh"] .flow-card p {
  letter-spacing: 0.025em;
  line-height: 1.95;
}

.flow-card > footer {
  display: flex;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  align-items: center;
  justify-content: space-between;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
}

.flow-card > footer strong {
  color: #748078;
  font-weight: 500;
}

.workstream-bottom {
  min-height: 58px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(18, 224, 107, 0.13);
  background: rgba(2, 8, 4, 0.56);
  font-size: 12px;
}

.workstream-bottom i {
  height: 1px;
  flex: 1;
  margin-inline: 28px;
  background: linear-gradient(
    90deg,
    rgba(18, 224, 107, 0.05),
    var(--green),
    rgba(18, 224, 107, 0.05)
  );
  box-shadow: 0 0 12px rgba(18, 224, 107, 0.3);
}

.workstream-bottom strong {
  color: var(--green);
  font-weight: 500;
}

.final-cta {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: radial-gradient(ellipse at 50% 100%, rgba(18, 224, 107, 0.2), transparent 48%),
    linear-gradient(180deg, #030404, #020303);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.final-cta::before {
  right: 7%;
  bottom: -270px;
  left: 7%;
  height: 560px;
  transform: perspective(500px) rotateX(62deg);
  background-image: linear-gradient(rgba(18, 224, 107, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 224, 107, 0.13) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to top, black, transparent 78%);
}

.final-cta::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 30px 4px rgba(18, 224, 107, 0.4);
}

.cta-scanline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(18, 224, 107, 0.26), transparent);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 760px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.final-cta h2 {
  margin: 26px 0 0;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

html[data-lang="zh"] .final-cta h2 {
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.final-cta h2 em {
  color: transparent;
  background: linear-gradient(110deg, #fff 5%, #9ca7a3 52%, var(--green-high) 120%);
  background-clip: text;
  font-style: normal;
}

.final-cta-inner > p {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0.06em;
}

.final-actions {
  display: flex;
  margin-top: 36px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.text-link {
  display: flex;
  margin-left: 12px;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.text-link .icon {
  width: 14px;
  color: var(--green);
  transition: transform 180ms ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.cta-terminal {
  position: absolute;
  right: 0;
  bottom: 35px;
  left: 0;
  display: grid;
  height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(18, 224, 107, 0.12);
  grid-template-columns: 1fr 1fr 1fr 80px;
  align-items: center;
  background: rgba(2, 8, 4, 0.68);
  color: #577060;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-align: left;
}

.cta-terminal i {
  justify-self: end;
  width: 60px;
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(18, 224, 107, 0.12);
}

.cta-terminal i::after {
  display: block;
  width: 35%;
  height: 100%;
  content: "";
  background: var(--green);
  animation: terminal-load 2.6s ease-in-out infinite alternate;
}

@keyframes terminal-load {
  to {
    width: 100%;
  }
}

.site-footer {
  padding: 70px 0 25px;
  background: #020303;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
}

.footer-main > div:first-child > p {
  margin: 20px 0 0;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links span {
  margin-bottom: 6px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-legal {
  display: grid;
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
}

.footer-legal p {
  max-width: 820px;
  margin: 0;
  color: #505a53;
  font-size: 10px;
  line-height: 1.9;
}

.footer-legal span {
  color: #465049;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition:
    opacity 800ms var(--ease),
    transform 800ms var(--ease),
    filter 800ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.employee-grid .reveal:nth-child(2),
.trust-cards article:nth-child(2) {
  transition-delay: 80ms;
}
.employee-grid .reveal:nth-child(3),
.trust-cards article:nth-child(3) {
  transition-delay: 140ms;
}
.employee-grid .reveal:nth-child(4),
.trust-cards article:nth-child(4) {
  transition-delay: 200ms;
}

@media (max-width: 1280px) {
  .hero-layout {
    grid-template-columns: minmax(390px, 0.8fr) minmax(570px, 1.2fr);
    gap: 25px;
  }

  .hero-visual {
    width: 700px;
  }

  .hero-copy h1 {
    font-size: clamp(62px, 7vw, 88px);
  }

  .nav-links {
    gap: 0;
  }

  .nav-links > a {
    padding-inline: 9px;
  }

  .nav-trigger {
    padding-inline: 9px;
  }

  .dashboard-shell {
    min-height: 750px;
  }
}

@media (max-width: 1100px) {
  .nav-shell {
    width: min(calc(100% - 32px), 1460px);
  }

  .nav-links,
  .nav-actions .deck-link {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    place-items: center;
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
  }

  .menu-toggle .menu-close {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-close {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] .menu-open {
    display: none;
  }

  .nav-links.open {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: flex;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    align-items: stretch;
    flex-direction: column;
    background: rgba(5, 7, 7, 0.97);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(24px);
  }

  .nav-links.open > a {
    padding: 13px 12px;
    font-size: 14px;
  }

  .nav-links.open .nav-group {
    width: 100%;
  }

  .nav-links.open .nav-group::after {
    display: none;
  }

  .nav-links.open .nav-trigger {
    width: 100%;
    padding: 13px 12px;
    justify-content: space-between;
    font-size: 14px;
    text-align: left;
  }

  .nav-links.open .product-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 5px;
    border: 0;
    border-left: 1px solid rgba(18, 224, 107, 0.2);
    border-radius: 0;
    grid-template-columns: 1fr;
    transform: none;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: none;
  }

  .nav-links.open .nav-group.open .product-menu {
    display: grid;
  }

  .nav-links.open .product-menu-intro {
    display: none;
  }

  .nav-links.open .product-menu > a {
    min-height: auto;
    padding: 11px 12px;
  }

  .mobile-nav-actions {
    display: flex;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
    gap: 10px;
  }

  .mobile-nav-actions > a:first-child {
    padding: 11px 14px;
    color: var(--muted);
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 155px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-copy h1 {
    font-size: clamp(76px, 11vw, 112px);
  }

  .hero-visual {
    width: 100%;
  }

  .command-window {
    transform: none;
  }

  .floating-chip-b {
    left: 30px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading.split {
    grid-template-columns: 1fr 360px;
  }

  .dashboard-shell {
    min-width: 1050px;
  }

  .product-stage {
    overflow-x: auto;
  }

  .product-browserbar {
    min-width: 1050px;
  }

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

  .employee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-layout {
    gap: 55px;
  }

  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-cards article:nth-child(2) {
    border-right: 0;
  }

  .trust-cards article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 92px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .workflow-copy h2,
  .trust-header h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nav-actions .button {
    display: none;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 125px;
    padding-bottom: 70px;
  }

  .hero::before,
  .hero-orbit {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 13.5vw, 58px);
    line-height: 0.9;
  }

  html[data-lang="zh"] .hero-copy h1 {
    font-size: clamp(36px, 10vw, 46px);
    letter-spacing: -0.02em;
    line-height: 1.08;
  }

  .hero-copy h2 {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-metrics > div {
    min-width: 0;
    padding-right: 10px;
  }

  .hero-metrics > div + div {
    padding-left: 12px;
  }

  .hero-metrics strong {
    font-size: 17px;
  }

  .hero-metrics span {
    font-size: 5px;
  }

  .hero-visual {
    width: 720px;
    transform: scale(0.54);
    transform-origin: left top;
    margin-bottom: -230px;
  }

  .command-window {
    transform: none !important;
  }

  .floating-chip-a {
    right: 10px;
  }

  .floating-chip-b {
    left: 12px;
  }

  .product-caption {
    display: none;
  }

  .product-stage {
    margin-right: -18px;
    margin-left: -18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

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

  .employee-card.feature-employee {
    grid-column: auto;
  }

  .employee-visual {
    display: none;
  }

  .workflow-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .workflow-copy {
    position: static;
  }

  .workflow-line {
    left: 53px;
  }

  .workflow-item {
    grid-template-columns: 34px 20px 1fr;
    gap: 6px;
  }

  .workflow-card {
    padding: 17px;
  }

  .workflow-card dl {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .workflow-card dl > div {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 8px;
  }

  .trust-header {
    text-align: left;
  }

  .trust-cards {
    grid-template-columns: 1fr;
  }

  .trust-cards article {
    min-height: 245px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .trust-cards article:last-child {
    border-bottom: 0;
  }

  .trust-bottomline {
    padding: 24px;
    grid-template-columns: 34px 1fr;
  }

  .trust-bottomline p {
    grid-column: 1 / -1;
    text-align: left;
  }

  .roadmap-track {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .road-line {
    top: 0;
    bottom: 0;
    left: 5px;
    width: 1px;
    height: auto;
  }

  .road-line i {
    width: 1px;
    height: 35%;
  }

  .road-stage {
    padding: 0 0 36px 32px;
  }

  .road-node {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 11px;
    transform: translateX(-32px);
  }

  .road-node b {
    display: none;
  }

  .road-time {
    margin-top: 0;
  }

  .road-stage h3,
  .road-stage p {
    min-height: 0;
  }

  .workstream-section {
    padding: 108px 0 116px;
  }

  .workstream-section .section-heading {
    margin-bottom: 52px;
  }

  .workstream-stage {
    padding: 22px 0 28px;
  }

  .flow-lane {
    mask-image: linear-gradient(90deg, transparent, black 2%, black 98%, transparent);
  }

  .workstream-meta {
    min-height: 72px;
    margin-bottom: 14px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .workstream-meta > div {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 9px;
  }

  .flow-lane-forward .flow-track {
    animation-duration: 54s;
  }

  .flow-lane-reverse .flow-track {
    animation-duration: 60s;
  }

  .flow-card {
    width: 296px;
    min-height: 250px;
    padding: 20px;
    backdrop-filter: blur(8px);
  }

  .workstream-bottom {
    min-height: 86px;
    padding: 16px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .workstream-bottom i {
    width: 100%;
    flex: 0 0 100%;
    order: 2;
    margin: 0;
  }

  .workstream-bottom strong {
    order: 3;
  }

  .final-cta,
  .final-cta-inner {
    min-height: 680px;
  }

  .final-cta h2 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .final-actions {
    width: 100%;
    flex-direction: column;
  }

  .final-actions .button {
    width: 100%;
  }

  .text-link {
    margin: 12px 0 0;
  }

  .cta-terminal {
    right: 18px;
    left: 18px;
    height: auto;
    min-height: 48px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cta-terminal i {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    gap: 18px;
  }

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

@media (max-width: 430px) {
  .nav-shell {
    min-height: 66px;
  }

  .nav-links.open {
    top: 66px;
  }

  .language-switch {
    padding-inline: 3px;
  }

  .hero-visual {
    transform: scale(0.46);
    margin-bottom: -270px;
  }

  .hero-metrics > div {
    padding-right: 6px;
  }

  .hero-metrics > div + div {
    padding-left: 8px;
  }

  .employee-card {
    min-height: 375px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .flow-track {
    transform: none !important;
  }
}
