@font-face {
  font-family: "YouShe Sharkfit Health";
  src: url("../assets/fonts/youshe-sharkfit-health.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-body: "YouShe Sharkfit Health", "Space Grotesk", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-display: "YouShe Sharkfit Health", "Space Grotesk", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-cn: "YouShe Sharkfit Health", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-weight-title: 600;
  --font-weight-nav: 500;
  --font-weight-button: 500;
  --font-weight-label: 500;
  --type-nav: 0.94rem;
  --type-body: 1rem;
  --type-body-large: 1.08rem;
  --type-label: 0.78rem;
  --type-button: 0.9rem;
  --type-kicker: 0.68rem;
  --type-eyebrow: 0.74rem;
  --type-metric-value: 1.22rem;
  --type-metric-label: 0.9rem;
  --type-card-title: 1.78rem;
  --type-section-title: clamp(2.4rem, 3.8vw, 4rem);
  --type-page-title: clamp(3.4rem, 6.2vw, 6rem);
  --type-route-title: clamp(2.3rem, 4vw, 4.1rem);
  --type-route-body: 0.92rem;
  --type-mini-code: 0.72rem;

  --lh-page-title: 1.02;
  --lh-page-title-zh: 1.1;
  --lh-body-relaxed: 1.78;
  --lh-body: 1.82;
  --lh-metric: 1.74;
  --lh-route-title: 1.02;
  --lh-route-title-zh: 1.12;
  --lh-route-body: 1.92;

  --space-hero-pt: 148px;
  --space-hero-pb: 42px;
  --space-hero-grid-gap: 34px;
  --space-hero-actions-mt: 28px;
  --space-hero-art-pad: 32px;
  --space-art-stack-gap: 18px;
  --space-metrics-gap: 18px;
  --space-metrics-mt: 24px;
  --space-metric-pad: 20px;
  --space-section-pt: 108px;
  --space-section-head-gap: 24px;
  --space-section-head-mb: 54px;
  --space-grid-gap: 22px;
  --space-card-pad: 24px;
  --space-route-split-gap: 22px;
  --space-route-summary-pad: 32px;
  --space-route-track-pad: 34px;
  --space-route-body-mt: 18px;
  --space-summary-pills-mt: 24px;

  /* Component sizing tokens (override per mode/breakpoint to control whitespace). */
  --hero-art-min-h: 560px;
  --service-card-min-h: 320px;
  --process-card-min-h: 230px;
  --bg: #f6fbff;
  --bg-soft: #ecf4ff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #081426;
  --muted: #5f718f;
  --muted-soft: #8798b4;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(37, 99, 235, 0.15);
  --blue: #1958e8;
  --blue-deep: #113d9f;
  --sky: #66bcff;
  --cyan: #8be6ff;
  --navy: #071224;
  --shadow-lg: 0 42px 120px rgba(25, 88, 232, 0.1);
  --shadow-md: 0 24px 64px rgba(8, 20, 38, 0.06);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(95, 186, 255, 0.15), transparent 22%),
    radial-gradient(circle at 86% 14%, rgba(25, 88, 232, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 24%, var(--bg) 52%, var(--bg-soft) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 32vw;
  height: 32vw;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.38;
  z-index: 0;
}

body::before {
  left: -12vw;
  top: 24vh;
  background: radial-gradient(circle, rgba(95, 186, 255, 0.16), transparent 68%);
}

body::after {
  right: -8vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(25, 88, 232, 0.1), transparent 70%);
}

html[lang="zh-CN"] body,
html[lang="zh-CN"] button {
  font-family: var(--font-cn);
}

body[data-i18n-ready="false"] .topbar-wrap,
body[data-i18n-ready="false"] main,
body[data-i18n-ready="false"] footer {
  opacity: 0;
}

.topbar-wrap,
main,
footer {
  transition: opacity 0.18s ease;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue);
  border: 1px solid rgba(190, 219, 255, 0.9);
  box-shadow: 0 10px 24px rgba(25, 88, 232, 0.08);
}

.skip-link:focus {
  top: 16px;
}

img {
  display: block;
  max-width: 100%;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 54%, transparent 100%);
  z-index: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  border-radius: 34px;
  border: 1px solid rgba(118, 146, 126, 0.2);
  background:
    linear-gradient(180deg, rgba(16, 30, 21, 0.96), rgba(7, 15, 10, 0.94)),
    rgba(7, 14, 10, 0.92);
  backdrop-filter: blur(24px) saturate(128%);
  -webkit-backdrop-filter: blur(24px) saturate(128%);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 16px 32px rgba(25, 88, 232, 0.18);
  flex: 0 0 auto;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 4px;
  background: white;
  transform: rotate(45deg);
}

.brand-copy strong,
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: pretty;
}

html[lang="zh-CN"] .brand-copy strong,
html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] h3,
html[lang="zh-CN"] h4 {
  font-family: var(--font-cn);
  letter-spacing: -0.03em;
}

.brand-copy strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.015em;
  font-weight: var(--font-weight-title);
}

.brand-copy span {
  display: block;
  font-size: 0.76rem;
  color: rgba(231, 240, 234, 0.68);
  margin-top: 4px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(118, 146, 126, 0.2);
  background: rgba(11, 20, 15, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.mode-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.9rem;
  padding: 8px 16px;
  border-radius: 999px;
  color: rgba(231, 240, 234, 0.66);
  font-size: 0.82rem;
  font-weight: var(--font-weight-button);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.mode-link.is-active {
  color: #06210e;
  background: linear-gradient(135deg, #d6ff8a, #61e48d);
  box-shadow: 0 14px 26px rgba(55, 157, 89, 0.24);
}

.mode-link:not(.is-active):hover,
.mode-link:not(.is-active):focus-visible {
  color: #edf8ee;
  background: rgba(103, 228, 143, 0.08);
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(118, 146, 126, 0.18);
  border-radius: 999px;
  background: rgba(12, 22, 16, 0.86);
  font-size: var(--type-nav);
  font-weight: var(--font-weight-nav);
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(231, 240, 234, 0.72);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

html[lang="zh-CN"] nav {
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
}

nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.82rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

nav a:hover {
  color: #edf8ee;
  background: rgba(103, 228, 143, 0.08);
}

nav a.is-current:not(.nav-cta) {
  color: #edf8ee;
  background:
    linear-gradient(140deg, rgba(103, 228, 143, 0.18), rgba(10, 20, 14, 0.96)),
    rgba(103, 228, 143, 0.08);
  border: 1px solid rgba(103, 228, 143, 0.24);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.nav-cta {
  color: #06210e;
  background: linear-gradient(135deg, #d6ff8a, #61e48d);
  box-shadow: 0 18px 34px rgba(55, 157, 89, 0.24);
}

.mobile-quicknav {
  display: none;
  gap: 10px;
  margin-top: 14px;
}

.mobile-quicknav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 34px rgba(8, 20, 38, 0.05);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: var(--font-weight-nav);
  letter-spacing: 0;
  white-space: nowrap;
  backdrop-filter: blur(18px);
}

.mobile-quicknav-link--accent {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(25, 88, 232, 0.18);
}

.mobile-quicknav-link--current {
  color: var(--blue-deep);
  border-color: rgba(25, 88, 232, 0.22);
  background:
    linear-gradient(140deg, rgba(255,255,255,0.94), rgba(230,241,255,0.78)),
    rgba(25, 88, 232, 0.08);
  box-shadow: 0 10px 24px rgba(25, 88, 232, 0.1);
}

.nav-current-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.82rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(103, 228, 143, 0.24);
  background:
    linear-gradient(140deg, rgba(103, 228, 143, 0.18), rgba(10, 20, 14, 0.96)),
    rgba(103, 228, 143, 0.08);
  color: #edf8ee;
  font-size: var(--type-nav);
  font-weight: var(--font-weight-nav);
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

html[lang="zh-CN"] .nav-current-pill {
  font-size: 0.92rem;
  letter-spacing: 0;
}

.service-direction-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.service-direction-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(118, 146, 126, 0.2);
  background:
    linear-gradient(180deg, rgba(15, 29, 20, 0.96), rgba(8, 15, 11, 0.94)),
    rgba(7, 14, 10, 0.92);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  color: rgba(231, 240, 234, 0.74);
  font-size: 1rem;
  font-weight: var(--font-weight-nav);
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  backdrop-filter: blur(20px) saturate(124%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-direction-link:hover {
  transform: translateY(-1px);
  color: #edf8ee;
  border-color: rgba(103, 228, 143, 0.24);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.service-direction-link--current {
  color: #edf8ee;
  border-color: rgba(103, 228, 143, 0.24);
  background:
    linear-gradient(140deg, rgba(103, 228, 143, 0.18), rgba(10, 20, 14, 0.96)),
    rgba(103, 228, 143, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

html[lang="zh-CN"] .service-direction-link {
  font-size: 1rem;
  letter-spacing: 0;
}

.route-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(25, 88, 232, 0.14);
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

html[lang="zh-CN"] .route-crumb {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.route-crumb a {
  color: var(--muted);
}

.route-crumb a:hover {
  color: var(--blue);
}

.route-crumb strong {
  color: var(--text);
  font-weight: 700;
}

.route-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 16px;
}

.route-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(25, 88, 232, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

html[lang="zh-CN"] .route-action {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.route-action:hover {
  transform: translateY(-1px);
  border-color: rgba(25, 88, 232, 0.32);
  box-shadow: 0 12px 30px rgba(25, 88, 232, 0.12);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(118, 146, 126, 0.2);
  background: rgba(11, 20, 15, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(231, 240, 234, 0.66);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: var(--font-weight-button);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-btn.active {
  color: #06210e;
  background: linear-gradient(135deg, #d6ff8a, #61e48d);
  box-shadow: 0 14px 26px rgba(55, 157, 89, 0.24);
}

html[lang="zh-CN"] .mode-link {
  letter-spacing: 0;
  text-transform: none;
}

.hero {
  padding: var(--space-hero-pt) 0 var(--space-hero-pb);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: var(--space-hero-grid-gap);
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(190, 219, 255, 0.8);
  background: rgba(239, 246, 255, 0.82);
  color: var(--blue);
  font-size: var(--type-eyebrow);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[lang="zh-CN"] .eyebrow {
  letter-spacing: 0.04em;
  text-transform: none;
}

.page-title {
  margin-top: 18px;
  font-size: var(--type-page-title);
  line-height: var(--lh-page-title);
  font-weight: var(--font-weight-title);
  max-width: 10.4ch;
}

html[lang="zh-CN"] .page-title {
  max-width: 7.2em;
  line-height: var(--lh-page-title-zh);
}

.page-title .accent {
  color: var(--blue);
}

.page-body {
  margin: 22px 0 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: var(--type-body-large);
  line-height: var(--lh-body-relaxed);
}

html[lang="zh-CN"] .page-body {
  max-width: 19em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: var(--space-hero-actions-mt);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid rgba(190, 219, 255, 0.76);
  font-size: var(--type-button);
  font-weight: var(--font-weight-button);
  letter-spacing: 0.02em;
  text-transform: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

html[lang="zh-CN"] .btn {
  letter-spacing: 0;
}

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

.btn.primary {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 18px 36px rgba(25, 88, 232, 0.2);
}

.btn.secondary {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.86);
}

.hero-art {
  position: relative;
  min-height: var(--hero-art-min-h);
  padding: var(--space-hero-art-pad);
  border-radius: 38px;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background:
    linear-gradient(rgba(255,255,255,0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.45) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.18), transparent 26%),
    linear-gradient(160deg, rgba(255,255,255,0.95), rgba(235,244,255,0.92));
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-art::before {
  right: -54px;
  top: -54px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(139, 230, 255, 0.34), transparent 68%);
  animation: artFloat 14s ease-in-out infinite;
}

.hero-art::after {
  left: -44px;
  bottom: -44px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(25, 88, 232, 0.16), transparent 68%);
  animation: artPulse 11s ease-in-out infinite reverse;
}

.art-stack {
  position: relative;
  height: 100%;
  display: grid;
  gap: var(--space-art-stack-gap);
  z-index: 1;
}

.art-band,
.art-card,
.metric {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.art-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 24px;
}

.art-band strong {
  font-size: 1rem;
}

.art-band span {
  color: var(--muted);
  font-size: 0.8rem;
}

.art-orbit {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.82) 0 22%, transparent 23%),
    radial-gradient(circle at center, transparent 0 53%, rgba(25, 88, 232, 0.16) 54% 58%, transparent 59%),
    conic-gradient(from 40deg, rgba(25, 88, 232, 0.14), rgba(95, 186, 255, 0.6), rgba(25, 88, 232, 0.08));
  animation: orbitDrift 18s linear infinite;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.art-card {
  min-height: 196px;
  border-radius: 28px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,248,255,0.92));
}

.art-card.dark {
  border-color: rgba(205, 223, 250, 0.18);
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #11254b 0%, #071224 100%);
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.art-card.dark h3,
.art-card.dark p,
.art-card.dark .mini-code {
  color: white;
}

.art-card.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.mini-code {
  color: var(--blue);
  font-size: var(--type-mini-code);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[lang="zh-CN"] .mini-code {
  letter-spacing: 0.04em;
  text-transform: none;
}

.art-card h3 {
  font-size: 1.5rem;
  line-height: 1.08;
}

.art-card p {
  margin: 10px 0 0;
  max-width: 20ch;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.8;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-metrics-gap);
  margin-top: var(--space-metrics-mt);
}

.metric {
  padding: var(--space-metric-pad);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,249,255,0.92));
}

.metric strong {
  display: block;
  font-size: var(--type-metric-value);
  font-weight: var(--font-weight-title);
  font-family: var(--font-display);
}

html[lang="zh-CN"] .metric strong {
  font-family: var(--font-cn);
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: var(--type-metric-label);
  line-height: var(--lh-metric);
}

.section {
  padding-top: var(--space-section-pt);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-section-head-gap);
  margin-bottom: var(--space-section-head-mb);
}

.section-tag {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: var(--type-label);
  font-weight: var(--font-weight-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

html[lang="zh-CN"] .section-tag {
  letter-spacing: 0.04em;
  text-transform: none;
}

.section-head h2 {
  font-size: var(--type-section-title);
  line-height: 1.07;
  max-width: 11.4ch;
  font-weight: var(--font-weight-title);
}

html[lang="zh-CN"] .section-head h2 {
  max-width: 7.2em;
  line-height: 1.1;
}

.section-head p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.82;
}

html[lang="zh-CN"] .section-head p {
  max-width: 18em;
}

.service-grid,
.panel-grid,
.archive-grid,
.process-grid,
.detail-grid,
.link-grid {
  display: grid;
  gap: var(--space-grid-gap);
}

.service-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.service-card,
.panel-card,
.archive-card,
.process-card,
.detail-card,
.cta-band,
.callout-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background:
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,249,255,0.92));
  box-shadow: var(--shadow-md);
}

.service-card {
  grid-column: span 4;
  min-height: var(--service-card-min-h);
  padding: var(--space-card-pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card.featured {
  grid-column: span 8;
  min-height: 320px;
  background:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.18), transparent 26%),
    linear-gradient(145deg, #11254b 0%, #081428 100%);
  background-size: 36px 36px, 36px 36px, auto, auto;
  border-color: rgba(205, 223, 250, 0.18);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .pill,
.service-card.featured .service-link {
  color: white;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card.featured .pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card.featured .service-link {
  color: rgba(255, 255, 255, 0.9);
}

.service-code,
.kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.78);
  color: var(--blue);
  border: 1px solid rgba(190, 219, 255, 0.76);
  font-size: var(--type-kicker);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[lang="zh-CN"] .service-code,
html[lang="zh-CN"] .kicker {
  letter-spacing: 0.04em;
  text-transform: none;
}

.service-card h3,
.panel-card h3,
.archive-card h3,
.process-card h3,
.detail-card h3,
.callout-card h3 {
  margin-top: 18px;
  font-size: var(--type-card-title);
  line-height: 1.14;
  font-weight: var(--font-weight-title);
  max-width: 12ch;
}

html[lang="zh-CN"] .service-card h3,
html[lang="zh-CN"] .panel-card h3,
html[lang="zh-CN"] .archive-card h3,
html[lang="zh-CN"] .process-card h3,
html[lang="zh-CN"] .detail-card h3,
html[lang="zh-CN"] .callout-card h3 {
  max-width: 7em;
}

.service-card p,
.panel-card p,
.archive-card p,
.process-card p,
.detail-card p,
.callout-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.82;
  max-width: 30ch;
}

html[lang="zh-CN"] .service-card p,
html[lang="zh-CN"] .panel-card p,
html[lang="zh-CN"] .archive-card p,
html[lang="zh-CN"] .process-card p,
html[lang="zh-CN"] .detail-card p,
html[lang="zh-CN"] .callout-card p {
  max-width: 16em;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pill {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.78);
  color: var(--blue);
  border: 1px solid rgba(190, 219, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[lang="zh-CN"] .service-link,
html[lang="zh-CN"] .inline-link {
  letter-spacing: 0.04em;
  text-transform: none;
}

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

.panel-card,
.detail-card,
.archive-card,
.callout-card {
  padding: var(--space-card-pad);
}

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

.detail-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 700;
}

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

.process-card {
  padding: var(--space-card-pad);
  min-height: var(--process-card-min-h);
}

.step-num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(25, 88, 232, 0.18);
}

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

.archive-card {
  min-height: 220px;
}

a.archive-card {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

a.archive-card:is(:hover, :focus-visible) {
  transform: translateY(-4px);
  border-color: rgba(25, 88, 232, 0.24);
  box-shadow: 0 34px 86px rgba(25, 88, 232, 0.14);
}

a.archive-card:is(:hover, :focus-visible) .kicker {
  background: rgba(25, 88, 232, 0.12);
  border-color: rgba(25, 88, 232, 0.18);
}

a.archive-card:is(:hover, :focus-visible) h3 {
  color: var(--blue-deep);
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background:
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,249,255,0.92));
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 1rem;
  font-weight: var(--font-weight-title);
  line-height: 1.52;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 246, 255, 0.82);
  border: 1px solid rgba(190, 219, 255, 0.76);
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.84;
  max-width: 74ch;
}

.archive-links {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.archive-links a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 600;
}

.archive-links a span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.archive-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.archive-topic-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background:
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,249,255,0.92));
  box-shadow: var(--shadow-md);
}

.archive-topic-card h3 {
  margin-top: 18px;
  font-size: 1.78rem;
  line-height: 1.08;
}

.archive-topic-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.82;
}

.topic-link-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.topic-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background: rgba(255, 255, 255, 0.72);
}

.topic-link strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.4;
}

.topic-link span {
  color: var(--muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

.archive-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.archive-stat {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background:
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,249,255,0.92));
  box-shadow: var(--shadow-md);
}

.archive-stat strong {
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-display);
}

html[lang="zh-CN"] .archive-stat strong {
  font-family: var(--font-cn);
}

.archive-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.72;
}

.callout-card {
  background:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.18), transparent 26%),
    linear-gradient(145deg, #11254b 0%, #081428 100%);
  background-size: 36px 36px, 36px 36px, auto, auto;
  border-color: rgba(205, 223, 250, 0.18);
}

.callout-card .kicker,
.callout-card h3,
.callout-card p,
.callout-card .pill,
.callout-card .inline-link {
  color: white;
}

.callout-card p {
  color: rgba(255, 255, 255, 0.76);
}

.callout-card .kicker,
.callout-card .pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.cta-band {
  padding: 40px;
  color: white;
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.26), transparent 24%),
    radial-gradient(circle at bottom left, rgba(95, 186, 255, 0.22), transparent 28%),
    linear-gradient(140deg, #1958e8 0%, #134abf 48%, #081a3a 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  box-shadow: 0 30px 76px rgba(25, 88, 232, 0.24);
}

.cta-band h2,
.cta-band p {
  color: white;
}

.cta-band p {
  max-width: 34ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
}

footer {
  padding: 42px 0 58px;
}

.footer-shell {
  position: relative;
  overflow: hidden;
  padding: 28px 30px 18px;
  border-radius: 32px;
  border: 1px solid rgba(223, 232, 246, 0.96);
  background:
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(244,249,255,0.9));
  box-shadow: 0 30px 78px rgba(25, 88, 232, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.footer-brand p,
.footer-col div,
.footer-bottom,
.footer-bottom a {
  color: var(--muted);
  font-weight: 500;
}

.footer-brand p {
  max-width: 42ch;
  margin-top: 14px;
  line-height: 1.72;
}

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

html[lang="zh-CN"] .footer-col h4 {
  text-transform: none;
  letter-spacing: 0.04em;
}

.footer-col div {
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.route-split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: var(--space-route-split-gap);
  align-items: stretch;
}

.route-summary,
.route-track {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background:
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,249,255,0.92));
  box-shadow: var(--shadow-md);
}

.route-summary {
  padding: var(--space-route-summary-pad);
}

.route-summary h2,
.route-intro h2 {
  font-size: var(--type-route-title);
  line-height: var(--lh-route-title);
  max-width: 10ch;
  font-weight: 600;
}

html[lang="zh-CN"] .route-summary h2,
html[lang="zh-CN"] .route-intro h2 {
  max-width: 8em;
  line-height: var(--lh-route-title-zh);
}

.route-summary p,
.route-intro p {
  margin: var(--space-route-body-mt) 0 0;
  max-width: 30ch;
  color: var(--muted);
  font-size: var(--type-route-body);
  line-height: var(--lh-route-body);
}

html[lang="zh-CN"] .route-summary p,
html[lang="zh-CN"] .route-intro p {
  max-width: 16em;
}

.summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-summary-pills-mt);
}

.route-track {
  padding: var(--space-route-track-pad);
}

.route-track::before {
  content: "";
  position: absolute;
  left: 54px;
  top: 134px;
  bottom: 46px;
  width: 1px;
  background: linear-gradient(180deg, rgba(25, 88, 232, 0.22), rgba(25, 88, 232, 0));
}

.route-track .process-grid {
  position: relative;
  margin-top: 28px;
}

.route-track .process-card {
  min-height: 0;
}

.surface-header,
.surface-footer,
.company-node,
.matrix-card,
.mobility-stop,
.layer-card,
.console-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.surface-header,
.surface-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
}

.surface-header strong,
.surface-footer strong {
  font-size: 1rem;
}

.surface-header span,
.surface-footer p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.surface-footer p {
  margin: 0;
  max-width: 28ch;
}

.service-scene-shell {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 30px;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(241,247,255,0.9)),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 24%);
  box-shadow: var(--shadow-md);
}

.service-scene-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 32%),
    linear-gradient(90deg, transparent, rgba(139, 230, 255, 0.16), transparent);
  opacity: 0.75;
  pointer-events: none;
}

.service-scene-shell::after {
  content: "";
  position: absolute;
  left: -14%;
  right: -14%;
  top: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 230, 255, 0.62), rgba(255,255,255,0.32), transparent);
  transform: rotate(-6deg);
  opacity: 0.92;
  pointer-events: none;
  animation: scanSweep 10s ease-in-out infinite;
}

.service-scene {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 22px;
  display: block;
}

.company-hero-art,
.market-hero-art,
.kitas-hero-art,
.compliance-hero-art,
.ai-hero-art {
  min-height: 0;
}

.company-hero-art .art-stack,
.market-hero-art .art-stack,
.kitas-hero-art .art-stack,
.compliance-hero-art .art-stack,
.ai-hero-art .art-stack {
  gap: 16px;
}

.company-hero-art .service-scene-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,246,255,0.92)),
    radial-gradient(circle at top left, rgba(95, 186, 255, 0.16), transparent 24%);
}

.market-hero-art .service-scene-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(237,246,255,0.92)),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.16), transparent 28%);
}

.kitas-hero-art .service-scene-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(234,246,255,0.94)),
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.18), transparent 26%);
}

.compliance-hero-art .service-scene-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(240,246,255,0.93)),
    radial-gradient(circle at top right, rgba(25, 88, 232, 0.1), transparent 24%);
}

.ai-hero-art .service-scene-shell {
  border-color: rgba(205, 223, 250, 0.18);
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(145deg, rgba(7, 21, 47, 0.96), rgba(16, 37, 83, 0.96));
  background-size: 28px 28px, 28px 28px, auto;
}

.ai-hero-art .service-scene-shell::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 30%),
    linear-gradient(90deg, transparent, rgba(139, 230, 255, 0.18), transparent);
}

.company-hero-art .service-scene,
.market-hero-art .service-scene,
.kitas-hero-art .service-scene,
.compliance-hero-art .service-scene {
  filter: drop-shadow(0 24px 48px rgba(25, 88, 232, 0.08));
}

.ai-hero-art .service-scene {
  filter: drop-shadow(0 28px 54px rgba(0, 8, 24, 0.28));
}

body.product-token .service-scene-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,246,255,0.92)),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 24%);
}

body.product-image .service-scene-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(240,247,255,0.94)),
    radial-gradient(circle at top left, rgba(139, 230, 255, 0.18), transparent 24%);
}

body.product-system .service-scene-shell,
body.product-crawler .service-scene-shell {
  border-color: rgba(205, 223, 250, 0.18);
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(145deg, rgba(7, 21, 47, 0.96), rgba(16, 37, 83, 0.96));
  background-size: 28px 28px, 28px 28px, auto;
}

body.product-web .service-scene-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,248,255,0.94)),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 24%);
}

body.product-skills .service-scene-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,246,255,0.94)),
    radial-gradient(circle at top left, rgba(95, 186, 255, 0.16), transparent 24%);
}

body.product-system .service-scene-shell::before,
body.product-crawler .service-scene-shell::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 30%),
    linear-gradient(90deg, transparent, rgba(139, 230, 255, 0.18), transparent);
}

.company-chain {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}

.company-node {
  min-height: 184px;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,247,255,0.94));
}

.company-node::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 18px;
  width: 46px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(25, 88, 232, 0.32), rgba(95, 186, 255, 0.1));
}

.company-node:nth-child(1) {
  transform: none;
}

.company-node:nth-child(2) {
  transform: none;
}

.company-node:nth-child(3) {
  transform: none;
}

.company-node:nth-child(4) {
  transform: none;
}

.company-node:nth-child(2),
.company-node:nth-child(3) {
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #11254b 0%, #071224 100%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  border-color: rgba(205, 223, 250, 0.18);
}

.company-node:nth-child(2) h3,
.company-node:nth-child(2) p,
.company-node:nth-child(2) .mini-code,
.company-node:nth-child(3) h3,
.company-node:nth-child(3) p,
.company-node:nth-child(3) .mini-code {
  color: white;
}

.company-node:nth-child(2) p,
.company-node:nth-child(3) p {
  color: rgba(255, 255, 255, 0.74);
}

.company-node h3,
.matrix-card h3,
.mobility-stop h3,
.layer-card h3,
.console-card h3 {
  margin-top: 18px;
  font-size: 1.46rem;
  line-height: 1.08;
}

.company-node p,
.matrix-card p,
.mobility-stop p,
.layer-card p,
.console-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.8;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  padding-top: 6px;
}

.market-grid::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 10%;
  top: 47%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25, 88, 232, 0.28), rgba(95, 186, 255, 0.8), transparent);
  transform: rotate(-8deg);
  opacity: 0.8;
}

.matrix-card {
  min-height: 204px;
  padding: 22px;
  border-radius: 28px;
}

.matrix-card:nth-child(1) {
  grid-column: span 2;
  min-height: 158px;
  transform: none;
}

.matrix-card:nth-child(2) {
  transform: none;
}

.matrix-card:nth-child(3) {
  transform: none;
}

.matrix-card:nth-child(4) {
  transform: none;
}
.matrix-card:nth-child(1) {
  background:
    radial-gradient(circle at top left, rgba(95, 186, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(240,247,255,0.94));
}

.matrix-card:nth-child(2),
.matrix-card:nth-child(4) {
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #0d2559 0%, #091525 100%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  border-color: rgba(205, 223, 250, 0.18);
}

.matrix-card:nth-child(2) h3,
.matrix-card:nth-child(2) p,
.matrix-card:nth-child(2) .mini-code,
.matrix-card:nth-child(4) h3,
.matrix-card:nth-child(4) p,
.matrix-card:nth-child(4) .mini-code {
  color: white;
}

.matrix-card:nth-child(2) p,
.matrix-card:nth-child(4) p {
  color: rgba(255, 255, 255, 0.76);
}

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

.matrix-note {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
}

.matrix-note strong {
  display: block;
  font-size: 0.92rem;
}

.matrix-note span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.mobility-rail {
  display: grid;
  gap: 14px;
  position: relative;
  padding: 8px 0 8px 12px;
}

.mobility-rail::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background:
    linear-gradient(180deg, rgba(25, 88, 232, 0.18), rgba(25, 88, 232, 0.04)),
    repeating-linear-gradient(180deg, rgba(95, 186, 255, 0.9) 0 10px, transparent 10px 22px);
  opacity: 0.9;
}

.mobility-rail::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 42px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 230, 255, 0.95), rgba(25, 88, 232, 0.82));
  box-shadow: 0 0 0 10px rgba(95, 186, 255, 0.08);
  animation: railTravel 6.6s ease-in-out infinite;
}

.mobility-stop {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 26px;
  backdrop-filter: blur(16px);
}

.mobility-stop:nth-child(even) {
  margin-left: 44px;
}

.stamp {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: white;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(25, 88, 232, 0.2);
  animation: stampPulse 4.6s ease-in-out infinite;
}

.mobility-stop:nth-child(2),
.mobility-stop:nth-child(4) {
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #11254b 0%, #071224 100%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  border-color: rgba(205, 223, 250, 0.18);
}

.mobility-stop:nth-child(2) h3,
.mobility-stop:nth-child(2) p,
.mobility-stop:nth-child(2) .mini-code,
.mobility-stop:nth-child(4) h3,
.mobility-stop:nth-child(4) p,
.mobility-stop:nth-child(4) .mini-code {
  color: white;
}

.mobility-stop:nth-child(2) p,
.mobility-stop:nth-child(4) p {
  color: rgba(255, 255, 255, 0.76);
}

.layer-stack {
  display: grid;
  gap: 12px;
  perspective: 1100px;
}

.layer-card {
  padding: 20px 22px;
  border-radius: 26px;
  transform-style: preserve-3d;
}

.layer-card:nth-child(1) {
  margin-right: 0;
  transform: none;
}

.layer-card:nth-child(2) {
  margin-right: 0;
  transform: none;
}

.layer-card:nth-child(3) {
  margin-left: 0;
  transform: none;
}

.layer-card:nth-child(4) {
  margin-left: 0;
  transform: none;
}

.layer-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(25, 88, 232, 0.16);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0 32%, transparent 33%),
    radial-gradient(circle at center, transparent 0 54%, rgba(25, 88, 232, 0.14) 55% 61%, transparent 62%);
}

.layer-card:nth-child(2),
.layer-card:nth-child(3) {
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #102451 0%, #071224 100%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  border-color: rgba(205, 223, 250, 0.18);
}

.layer-card:nth-child(2) h3,
.layer-card:nth-child(2) p,
.layer-card:nth-child(2) .mini-code,
.layer-card:nth-child(3) h3,
.layer-card:nth-child(3) p,
.layer-card:nth-child(3) .mini-code {
  color: white;
}

.layer-card:nth-child(2) p,
.layer-card:nth-child(3) p {
  color: rgba(255, 255, 255, 0.76);
}

.console-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
  position: relative;
}

.console-card {
  padding: 22px;
  border-radius: 28px;
}

.console-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0) 34%),
    linear-gradient(90deg, transparent 0, rgba(139, 230, 255, 0.14) 48%, transparent 100%);
  opacity: 0;
  pointer-events: none;
}

.console-card.large {
  min-height: 364px;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(139, 230, 255, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(7, 18, 36, 0.96), rgba(17, 37, 75, 0.96));
  background-size: 28px 28px, 28px 28px, auto, auto;
  border-color: rgba(205, 223, 250, 0.18);
  box-shadow: 0 32px 86px rgba(8, 20, 38, 0.28);
}

.console-card.dark {
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #102451 0%, #071224 100%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  border-color: rgba(205, 223, 250, 0.18);
}

.console-card.large::before,
.console-card.dark::before {
  opacity: 1;
}

.console-card.large::after {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  top: 24%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 230, 255, 0.8), rgba(255,255,255,0.4), transparent);
  transform: rotate(-8deg);
  animation: scanSweep 7.2s ease-in-out infinite;
  pointer-events: none;
}

.console-card.dark h3,
.console-card.dark p,
.console-card.dark .mini-code {
  color: white;
}

.console-card.dark p {
  color: rgba(255, 255, 255, 0.76);
}

.console-list,
.console-stats {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.console-list span,
.console-stats span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(240, 246, 255, 0.9);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
}

.console-card.dark .console-stats span {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.route-company .route-summary,
.route-company .route-track,
.route-company .cta-band {
  border-color: rgba(195, 220, 255, 0.92);
}

.route-market .route-summary,
.route-market .route-track,
.route-market .cta-band {
  border-color: rgba(189, 225, 255, 0.92);
}

.route-kitas .route-summary,
.route-kitas .route-track,
.route-kitas .cta-band {
  border-color: rgba(188, 220, 252, 0.92);
}

.route-compliance .route-summary,
.route-compliance .route-track,
.route-compliance .cta-band {
  border-color: rgba(194, 218, 250, 0.92);
}

.route-ai .route-summary,
.route-ai .route-track,
.route-ai .cta-band {
  border-color: rgba(188, 225, 255, 0.94);
}

body.route-company,
body.route-market,
body.route-kitas,
body.route-compliance,
body.route-ai {
  background:
    radial-gradient(circle at 10% 10%, rgba(95, 186, 255, 0.16), transparent 18%),
    radial-gradient(circle at 88% 14%, rgba(25, 88, 232, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 24%, #eef5ff 58%, #e7f0ff 100%);
}

body.route-company::before {
  background: radial-gradient(circle, rgba(95, 186, 255, 0.22), transparent 68%);
}

body.route-market::before {
  background: radial-gradient(circle, rgba(25, 88, 232, 0.18), transparent 70%);
}

body.route-kitas::before {
  background: radial-gradient(circle, rgba(102, 188, 255, 0.24), transparent 68%);
}

body.route-compliance::before {
  background: radial-gradient(circle, rgba(25, 88, 232, 0.14), transparent 72%);
}

body.route-ai::before {
  background: radial-gradient(circle, rgba(18, 76, 210, 0.22), transparent 68%);
}

body.route-ai::after {
  background: radial-gradient(circle, rgba(139, 230, 255, 0.18), transparent 70%);
}

body.route-company .noise,
body.route-market .noise,
body.route-kitas .noise,
body.route-compliance .noise,
body.route-ai .noise {
  opacity: 0.3;
}

.route-company .hero-art,
.route-market .hero-art,
.route-kitas .hero-art,
.route-compliance .hero-art,
.route-ai .hero-art {
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.route-company .hero-art {
  background:
    linear-gradient(rgba(255,255,255,0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.42) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(255,255,255,0.98), rgba(235,244,255,0.94));
}

.route-market .hero-art,
.route-kitas .hero-art,
.route-compliance .hero-art {
  background:
    linear-gradient(rgba(255,255,255,0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.42) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.16), transparent 24%),
    linear-gradient(160deg, rgba(255,255,255,0.97), rgba(238,246,255,0.94));
}

.route-market .hero-art {
  background:
    linear-gradient(rgba(255,255,255,0.44) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.44) 1px, transparent 1px),
    radial-gradient(circle at 18% 20%, rgba(95, 186, 255, 0.12), transparent 22%),
    linear-gradient(160deg, rgba(255,255,255,0.99), rgba(236,245,255,0.94));
}

.route-kitas .hero-art {
  background:
    linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(255,255,255,0.98), rgba(234,246,255,0.95));
}

.route-compliance .hero-art {
  background:
    linear-gradient(rgba(255,255,255,0.46) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.46) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(25, 88, 232, 0.14), transparent 24%),
    linear-gradient(160deg, rgba(255,255,255,0.98), rgba(239,245,255,0.95));
}

.route-ai .hero-art {
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #11254b 0%, #081428 100%);
  border-color: rgba(205, 223, 250, 0.18);
}

.route-company .route-summary,
.route-market .route-summary,
.route-kitas .route-summary,
.route-compliance .route-summary,
.route-ai .route-summary {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242,248,255,0.94)),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.16), transparent 24%);
}

.route-company .route-summary {
  border-radius: 36px 28px 30px 44px;
}

.route-market .route-summary {
  border-radius: 30px 42px 28px 34px;
}

.route-kitas .route-summary {
  border-radius: 44px 28px 34px 28px;
}

.route-compliance .route-summary {
  border-radius: 28px 34px 42px 28px;
}

.route-ai .route-summary {
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(235,244,255,0.92)),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 24%);
}

.route-company .route-summary::before,
.route-market .route-summary::before,
.route-kitas .route-summary::before,
.route-compliance .route-summary::before,
.route-ai .route-summary::before,
.route-company .route-track::before,
.route-market .route-track::before,
.route-kitas .route-track::before,
.route-compliance .route-track::before,
.route-ai .route-track::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 86px;
  height: 1px;
  background: linear-gradient(90deg, rgba(25, 88, 232, 0.82), transparent);
}

.route-company .route-track,
.route-market .route-track,
.route-kitas .route-track,
.route-compliance .route-track,
.route-ai .route-track {
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(240,247,255,0.94)),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 24%);
}

.route-track::before {
  display: none;
}

.route-company .process-grid,
.route-market .process-grid,
.route-kitas .process-grid,
.route-compliance .process-grid,
.route-ai .process-grid {
  position: relative;
}

.route-company .process-grid::before,
.route-market .process-grid::before,
.route-kitas .process-grid::before,
.route-compliance .process-grid::before,
.route-ai .process-grid::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg, rgba(25, 88, 232, 0.28), rgba(25, 88, 232, 0.04));
}

.route-company .process-card,
.route-market .process-card,
.route-kitas .process-card,
.route-compliance .process-card,
.route-ai .process-card {
  position: relative;
  padding-left: 88px;
}

.route-company .process-card::before,
.route-market .process-card::before,
.route-kitas .process-card::before,
.route-compliance .process-card::before,
.route-ai .process-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8be6ff, #1958e8);
  box-shadow: 0 0 0 8px rgba(95, 186, 255, 0.12);
}

.route-company .detail-card:nth-child(2),
.route-market .detail-card:nth-child(2),
.route-kitas .detail-card:nth-child(2),
.route-compliance .detail-card:nth-child(2),
.route-ai .detail-card:nth-child(2) {
  transform: none;
}

.route-company .archive-card,
.route-market .archive-card,
.route-kitas .archive-card,
.route-compliance .archive-card,
.route-ai .archive-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,249,255,0.94)),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 24%);
}

.route-company .callout-card,
.route-market .callout-card,
.route-kitas .callout-card,
.route-compliance .callout-card,
.route-ai .callout-card {
  box-shadow: 0 28px 72px rgba(8, 20, 38, 0.18);
}

.route-company .cta-band,
.route-market .cta-band,
.route-kitas .cta-band,
.route-compliance .cta-band,
.route-ai .cta-band {
  position: relative;
  overflow: hidden;
}

.route-company .cta-band::after,
.route-market .cta-band::after,
.route-kitas .cta-band::after,
.route-compliance .cta-band::after,
.route-ai .cta-band::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 56%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 230, 255, 0.16), rgba(255,255,255,0.7), transparent);
  transform: rotate(-10deg);
  pointer-events: none;
}

.product-skills .route-summary,
.product-token .route-summary,
.product-crawler .route-summary,
.product-skills .route-track,
.product-token .route-track,
.product-crawler .route-track,
.product-skills .cta-band,
.product-token .cta-band,
.product-crawler .cta-band {
  border-color: rgba(188, 225, 255, 0.94);
}

.product-skills .route-summary,
.product-token .route-summary,
.product-crawler .route-summary {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242,248,255,0.94)),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.16), transparent 24%);
}

.product-skills .route-summary::before,
.product-token .route-summary::before,
.product-crawler .route-summary::before,
.product-skills .route-track::before,
.product-token .route-track::before,
.product-crawler .route-track::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 86px;
  height: 1px;
  background: linear-gradient(90deg, rgba(25, 88, 232, 0.82), transparent);
}

.product-skills .route-track,
.product-token .route-track,
.product-crawler .route-track {
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(240,247,255,0.94)),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 24%);
}

.product-skills .process-grid,
.product-token .process-grid,
.product-crawler .process-grid {
  position: relative;
}

.product-skills .process-grid::before,
.product-token .process-grid::before,
.product-crawler .process-grid::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg, rgba(25, 88, 232, 0.28), rgba(25, 88, 232, 0.04));
}

.product-skills .process-card,
.product-token .process-card,
.product-crawler .process-card {
  position: relative;
  padding-left: 88px;
}

.product-skills .process-card::before,
.product-token .process-card::before,
.product-crawler .process-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8be6ff, #1958e8);
  box-shadow: 0 0 0 8px rgba(95, 186, 255, 0.12);
}

.product-skills .detail-card:nth-child(2),
.product-token .detail-card:nth-child(2),
.product-crawler .detail-card:nth-child(2) {
  transform: none;
}

.product-skills .archive-card,
.product-token .archive-card,
.product-crawler .archive-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,249,255,0.94)),
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 24%);
}

.product-skills .cta-band,
.product-token .cta-band,
.product-crawler .cta-band {
  position: relative;
  overflow: hidden;
}

.product-skills .cta-band::after,
.product-token .cta-band::after,
.product-crawler .cta-band::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 56%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 230, 255, 0.16), rgba(255,255,255,0.7), transparent);
  transform: rotate(-10deg);
  pointer-events: none;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) {
  --type-nav: 0.92rem;
  --type-body: 0.98rem;
  --type-body-large: 1.06rem;
  --type-label: 0.76rem;
  --type-button: 0.9rem;
  --type-kicker: 0.68rem;
  --type-eyebrow: 0.72rem;
  --type-metric-value: 1.14rem;
  --type-metric-label: 0.88rem;
  --type-card-title: 1.5rem;
  --type-section-title: clamp(1.9rem, 3.1vw, 3.2rem);
  --type-page-title: clamp(2.56rem, 4.2vw, 4.4rem);
  --type-route-title: clamp(1.92rem, 2.8vw, 2.84rem);
  --type-route-body: var(--type-body);

  --lh-body-relaxed: 1.74;
  --lh-body: 1.78;
  --lh-route-body: 1.78;

  --space-hero-pt: 38px;
  --space-hero-pb: 8px;
  --space-hero-grid-gap: 10px 18px;
  --space-hero-actions-mt: 20px;
  --space-hero-art-pad: 20px;
  --space-art-stack-gap: 14px;
  --space-metrics-gap: 14px;
  --space-metrics-mt: 16px;
  --space-metric-pad: 16px;
  --space-section-pt: 30px;
  --space-section-head-gap: 10px;
  --space-section-head-mb: 12px;
  --space-grid-gap: 16px;
  --space-card-pad: 20px;
  --space-route-split-gap: 16px;
  --space-route-summary-pad: 22px;
  --space-route-track-pad: 22px;
  --space-route-track-gap: 14px;
  --space-route-body-mt: 14px;
  --space-summary-pills-mt: 18px;

  --hero-art-min-h: 0;
  --service-card-min-h: 300px;
  --process-card-min-h: 192px;

  --bg: #07100b;
  --bg-soft: #0c1712;
  --surface: rgba(11, 20, 15, 0.82);
  --surface-strong: #101b15;
  --text: #eef6ef;
  --muted: #9fb6a3;
  --muted-soft: #7b9280;
  --line: rgba(119, 149, 128, 0.18);
  --line-strong: rgba(113, 244, 160, 0.22);
  --blue: #67e48f;
  --blue-deep: #2fbf63;
  --sky: #b4ff6a;
  --cyan: #d6ff8a;
  --shadow-lg: 0 46px 120px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 28px 72px rgba(0, 0, 0, 0.34);
  background:
    radial-gradient(120% 68% at 50% -8%, rgba(103, 228, 143, 0.16), transparent 62%),
    linear-gradient(180deg, #030504 0%, #08120d 52%, #0c1913 100%);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mobile-quicknav {
  display: none !important;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-grid,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-split {
  align-items: start;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-copy,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art {
  align-self: start;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-copy {
  padding-top: 2px;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .section-head {
  align-items: flex-start;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .section-head p {
  margin-top: 8px;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-track .process-grid {
  margin-top: 18px;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-summary,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-track {
  padding: 26px;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .console-card.large {
  min-height: 304px;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mobility-stop:nth-child(even) {
  margin-left: 0;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler)::before {
  background: radial-gradient(circle, rgba(103, 228, 143, 0.18), transparent 68%);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler)::after {
  background: radial-gradient(circle, rgba(180, 255, 106, 0.12), transparent 72%);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .noise {
  display: none;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .skip-link,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .topbar,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mobile-quicknav-link,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .service-direction-link,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mode-toggle,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .lang-toggle,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .metric,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-summary,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-track,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-card,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-card,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .detail-card,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .faq-item,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .footer-shell,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .surface-header,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .surface-footer,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .service-scene-shell,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .console-card,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-links a,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-topic-card,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .topic-link,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-stat {
  border-color: rgba(129, 165, 137, 0.18);
  background:
    radial-gradient(circle at top right, rgba(103, 228, 143, 0.14), transparent 26%),
    radial-gradient(circle at 18% 84%, rgba(214, 255, 138, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(12, 23, 17, 0.98), rgba(9, 17, 13, 0.96));
  background-size: auto, auto, auto;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .topbar {
  border-color: rgba(120, 160, 130, 0.18);
  background: rgba(9, 16, 12, 0.76);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.26);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .brand-mark {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #61e48d, #d6ff8a);
  box-shadow: 0 18px 34px rgba(27, 74, 39, 0.34);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .brand-mark::after {
  background: #08110b;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .brand-copy span,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) nav,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mobile-quicknav-link,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .service-direction-link,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mode-link,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-crumb,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-crumb a,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .page-body,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .section-head p,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-summary p,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-intro p,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .metric span,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-card p,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-card p,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .detail-card p,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .faq-answer,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .surface-header span,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .surface-footer p,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .footer-brand p,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .footer-col div,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .footer-bottom,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .footer-bottom a,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-links a span,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .topic-link span {
  color: var(--muted);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-crumb strong,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-links a,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-topic-card h3,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .topic-link strong,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .faq-item summary {
  color: var(--text);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) nav a:hover,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-crumb a:hover,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .service-direction-link:hover,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-links a:hover,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .topic-link:hover {
  color: var(--blue);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) nav a.is-current:not(.nav-cta),
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mobile-quicknav-link--current,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .service-direction-link--current,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mode-link.is-active,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .nav-current-pill {
  color: #edf8ee;
  border-color: rgba(103, 228, 143, 0.24);
  background:
    linear-gradient(140deg, rgba(103, 228, 143, 0.2), rgba(10, 20, 14, 0.96)),
    rgba(103, 228, 143, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .nav-cta,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mobile-quicknav-link--accent,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .btn.primary,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .step-num,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .lang-btn.active {
  color: #06210e;
  background: linear-gradient(135deg, #d6ff8a, #61e48d);
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(60, 162, 95, 0.24);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mode-toggle,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .lang-toggle,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mobile-quicknav-link,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .btn.secondary,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-action,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-crumb,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .skip-link {
  border-color: rgba(120, 160, 130, 0.2);
  background: rgba(9, 18, 13, 0.86);
  color: var(--text);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .lang-btn {
  color: var(--muted);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mode-link:not(.is-active) {
  color: var(--muted);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .eyebrow,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .service-code,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .kicker,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .pill,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .faq-item summary::after {
  color: #daf8de;
  border-color: rgba(103, 228, 143, 0.16);
  background: rgba(103, 228, 143, 0.1);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .section-tag,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mini-code,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .page-title .accent,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .service-link,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .inline-link {
  color: var(--blue);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art {
  padding: 36px;
  border-color: rgba(121, 160, 131, 0.2);
  background:
    radial-gradient(circle at top right, rgba(103, 228, 143, 0.14), transparent 24%),
    radial-gradient(circle at 14% 86%, rgba(214, 255, 138, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(8, 15, 11, 0.98), rgba(11, 22, 16, 0.96));
  background-size: auto, auto, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 40px 96px rgba(0, 0, 0, 0.42);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art::before {
  width: 240px;
  height: 240px;
  right: -82px;
  top: -82px;
  background: radial-gradient(circle, rgba(103, 228, 143, 0.24), transparent 68%);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art::after {
  width: 184px;
  height: 184px;
  left: -58px;
  bottom: -52px;
  background: radial-gradient(circle, rgba(214, 255, 138, 0.14), transparent 70%);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .art-orbit {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.82) 0 22%, transparent 23%),
    radial-gradient(circle at center, transparent 0 53%, rgba(103, 228, 143, 0.16) 54% 58%, transparent 59%),
    conic-gradient(from 40deg, rgba(103, 228, 143, 0.12), rgba(214, 255, 138, 0.6), rgba(103, 228, 143, 0.08));
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .service-scene-shell,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .surface-header,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .surface-footer,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .console-card,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .console-card.large,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .console-card.dark {
  border-color: rgba(121, 160, 131, 0.2);
  background:
    radial-gradient(circle at top right, rgba(103, 228, 143, 0.14), transparent 28%),
    radial-gradient(circle at 18% 84%, rgba(214, 255, 138, 0.08), transparent 36%),
    linear-gradient(145deg, rgba(9, 16, 12, 0.98), rgba(14, 25, 18, 0.96));
  background-size: auto, auto, auto;
  color: var(--text);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .service-scene-shell {
  padding: 18px;
  border-radius: 34px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(103, 228, 143, 0.04),
    0 28px 74px rgba(0, 0, 0, 0.34);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .service-scene-shell::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 26%),
    radial-gradient(circle at 16% 10%, rgba(214, 255, 138, 0.12), transparent 24%),
    linear-gradient(90deg, transparent, rgba(103, 228, 143, 0.18), transparent);
  opacity: 0.94;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .service-scene-shell::after {
  left: -16%;
  right: -16%;
  top: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 255, 138, 0.46), rgba(103, 228, 143, 0.72), transparent);
  opacity: 0.95;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .service-scene {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .console-card h2,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .console-card h3,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .console-card p,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .console-card .mini-code,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .console-card .console-stats span {
  color: var(--text);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .console-card p {
  color: var(--muted);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .console-list span,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .console-stats span {
  background: rgba(103, 228, 143, 0.08);
  color: var(--text);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-summary::before,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-track::before {
  background: linear-gradient(90deg, rgba(103, 228, 143, 0.82), transparent);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-summary,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-track {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 28px 80px rgba(0, 0, 0, 0.3);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-summary::after,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-track::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(103, 228, 143, 0.14);
  background: rgba(103, 228, 143, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d6ff8a, #61e48d);
  box-shadow: 0 0 0 6px rgba(103, 228, 143, 0.12);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-grid::before {
  background: linear-gradient(180deg, rgba(103, 228, 143, 0.26), rgba(103, 228, 143, 0.04));
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .detail-card,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-card,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-card {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 62px rgba(0, 0, 0, 0.24);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .detail-card::before,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-card::before,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(103, 228, 143, 0), rgba(103, 228, 143, 0.92), rgba(214, 255, 138, 0.54), rgba(103, 228, 143, 0));
  opacity: 0.92;
  pointer-events: none;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .detail-card::after,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-card::after,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -32% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 228, 143, 0.12), transparent 68%);
  opacity: 0.9;
  pointer-events: none;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .detail-card:hover,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-card:hover,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(103, 228, 143, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 34px 88px rgba(0, 0, 0, 0.32);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .detail-grid > :nth-child(2n),
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .panel-grid > :nth-child(2n),
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-grid > :nth-child(2n) {
  background:
    radial-gradient(circle at top left, rgba(214, 255, 138, 0.12), transparent 30%),
    radial-gradient(circle at 84% 14%, rgba(103, 228, 143, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(13, 25, 18, 0.98), rgba(8, 17, 12, 0.96));
  background-size: auto, auto, auto;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-card::before {
  background: linear-gradient(135deg, #d6ff8a, #61e48d);
  box-shadow: 0 0 0 8px rgba(103, 228, 143, 0.12);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) a.archive-card:is(:hover, :focus-visible) {
  border-color: rgba(103, 228, 143, 0.26);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.28);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) a.archive-card:is(:hover, :focus-visible) .kicker {
  background: rgba(103, 228, 143, 0.16);
  border-color: rgba(103, 228, 143, 0.22);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) a.archive-card:is(:hover, :focus-visible) h3 {
  color: #dffde3;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .cta-band {
  position: relative;
  isolation: isolate;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(214, 255, 138, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(103, 228, 143, 0.18), transparent 28%),
    linear-gradient(140deg, #0f1b13 0%, #11251a 48%, #1b3d27 100%);
  background-size: auto, auto, auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .cta-band::before {
  content: "";
  position: absolute;
  right: -6%;
  top: -18%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 255, 138, 0.2), transparent 70%);
  filter: blur(8px);
  opacity: 0.84;
  z-index: 0;
  pointer-events: none;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .cta-band h2,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .cta-band p {
  position: relative;
  z-index: 1;
  color: var(--text);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .cta-band p {
  color: rgba(238, 246, 239, 0.78);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .cta-band::after {
  background: linear-gradient(90deg, transparent, rgba(103, 228, 143, 0.14), rgba(214, 255, 138, 0.56), transparent);
}

body.route-ai .eyebrow,
body.route-ai .section-tag,
body.route-ai .mini-code,
body.route-ai .kicker {
  color: #dfffea;
}

body.route-ai .hero-art,
body.route-ai .console-card,
body.route-ai .surface-header,
body.route-ai .surface-footer {
  background:
    radial-gradient(circle at 82% 20%, rgba(126, 252, 189, 0.18), transparent 24%),
    radial-gradient(circle at 16% 80%, rgba(214, 255, 138, 0.09), transparent 32%),
    linear-gradient(150deg, rgba(8, 18, 13, 0.98), rgba(10, 24, 17, 0.96) 58%, rgba(9, 31, 20, 0.94));
  background-size: auto, auto, auto;
}

body.route-ai .art-orbit {
  box-shadow:
    inset 0 0 0 1px rgba(126, 252, 189, 0.14),
    0 0 0 18px rgba(126, 252, 189, 0.03);
  background:
    radial-gradient(circle at center, rgba(244, 255, 246, 0.86) 0 19%, transparent 20%),
    radial-gradient(circle at center, transparent 0 48%, rgba(126, 252, 189, 0.24) 49% 53%, transparent 54%),
    conic-gradient(from 180deg, rgba(126, 252, 189, 0.06), rgba(214, 255, 138, 0.72), rgba(126, 252, 189, 0.18), rgba(126, 252, 189, 0.06));
}

body.route-ai .service-scene-shell::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 16% 10%, rgba(214, 255, 138, 0.12), transparent 20%),
    linear-gradient(90deg, transparent, rgba(126, 252, 189, 0.22), transparent),
    linear-gradient(180deg, rgba(126, 252, 189, 0.08), transparent 28%);
}

body.route-ai .service-scene-shell::after {
  top: 38%;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(214, 255, 138, 0.28), rgba(126, 252, 189, 0.92), rgba(214, 255, 138, 0.28), transparent);
  box-shadow: 0 0 26px rgba(126, 252, 189, 0.28);
}

body.route-ai .detail-card,
body.route-ai .process-card,
body.route-ai .archive-card {
  border-color: rgba(126, 252, 189, 0.18);
}

body.route-ai .detail-card::after,
body.route-ai .process-card::after,
body.route-ai .archive-card::after {
  background: radial-gradient(circle, rgba(126, 252, 189, 0.14), transparent 68%);
}

body.product-skills .eyebrow,
body.product-skills .section-tag,
body.product-skills .mini-code,
body.product-skills .kicker {
  color: #f0ffd8;
}

body.product-skills .hero-art,
body.product-skills .console-card,
body.product-skills .surface-header,
body.product-skills .surface-footer {
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 255, 138, 0.16), transparent 28%),
    radial-gradient(circle at 16% 80%, rgba(103, 228, 143, 0.1), transparent 34%),
    linear-gradient(150deg, rgba(17, 22, 11, 0.98), rgba(18, 31, 17, 0.96) 58%, rgba(26, 43, 18, 0.94));
  background-size: auto, auto, auto;
}

body.product-skills .art-orbit {
  background:
    radial-gradient(circle at center, rgba(250, 255, 238, 0.84) 0 18%, transparent 19%),
    radial-gradient(circle at center, transparent 0 44%, rgba(214, 255, 138, 0.22) 45% 51%, transparent 52%),
    repeating-conic-gradient(from 0deg, rgba(214, 255, 138, 0.18) 0 18deg, rgba(103, 228, 143, 0.04) 18deg 40deg);
  box-shadow:
    inset 0 0 0 1px rgba(214, 255, 138, 0.14),
    0 0 0 16px rgba(214, 255, 138, 0.03);
}

body.product-skills .service-scene-shell::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 16% 12%, rgba(214, 255, 138, 0.14), transparent 24%),
    linear-gradient(90deg, transparent, rgba(214, 255, 138, 0.18), transparent);
}

body.product-skills .service-scene-shell::after {
  top: 54%;
  left: -8%;
  right: -8%;
  background:
    linear-gradient(90deg, transparent 0 4%, rgba(214, 255, 138, 0.44) 4% 22%, transparent 22% 28%, rgba(103, 228, 143, 0.7) 28% 52%, transparent 52% 58%, rgba(214, 255, 138, 0.44) 58% 76%, transparent 76% 100%);
  opacity: 0.92;
}

body.product-skills .panel-grid > :nth-child(odd),
body.product-skills .detail-grid > :nth-child(odd) {
  background:
    radial-gradient(circle at top right, rgba(214, 255, 138, 0.16), transparent 24%),
    radial-gradient(circle at 14% 82%, rgba(103, 228, 143, 0.08), transparent 30%),
    linear-gradient(165deg, rgba(17, 27, 14, 0.98), rgba(15, 22, 12, 0.96));
  background-size: auto, auto, auto;
}

body.product-skills .detail-card::after,
body.product-skills .process-card::after,
body.product-skills .archive-card::after {
  background: radial-gradient(circle, rgba(214, 255, 138, 0.16), transparent 66%);
}

body.product-token .eyebrow,
body.product-token .section-tag,
body.product-token .mini-code,
body.product-token .kicker {
  color: #defde1;
}

body.product-token .hero-art,
body.product-token .console-card,
body.product-token .surface-header,
body.product-token .surface-footer {
  background:
    radial-gradient(circle at 82% 18%, rgba(103, 228, 143, 0.14), transparent 22%),
    radial-gradient(circle at 18% 82%, rgba(214, 255, 138, 0.08), transparent 24%),
    linear-gradient(150deg, rgba(7, 18, 13, 0.98), rgba(11, 22, 16, 0.96) 56%, rgba(10, 31, 20, 0.94));
  background-size: auto, auto, auto;
}

body.product-token .art-orbit {
  box-shadow:
    inset 0 0 0 1px rgba(103, 228, 143, 0.14),
    0 0 0 14px rgba(103, 228, 143, 0.03);
  background:
    radial-gradient(circle at center, rgba(248, 255, 246, 0.82) 0 16%, transparent 17%),
    radial-gradient(circle at center, transparent 0 39%, rgba(103, 228, 143, 0.24) 40% 46%, transparent 47%),
    radial-gradient(circle at center, transparent 0 63%, rgba(214, 255, 138, 0.2) 64% 67%, transparent 68%),
    conic-gradient(from 0deg, rgba(214, 255, 138, 0.16), rgba(103, 228, 143, 0.06), rgba(214, 255, 138, 0.56), rgba(103, 228, 143, 0.08), rgba(214, 255, 138, 0.16));
}

body.product-token .service-scene-shell::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 14% 14%, rgba(214, 255, 138, 0.1), transparent 20%),
    linear-gradient(90deg, transparent, rgba(103, 228, 143, 0.22), transparent),
    radial-gradient(circle at center, transparent 0 58%, rgba(103, 228, 143, 0.08) 59% 62%, transparent 63%);
}

body.product-token .service-scene-shell::after {
  top: 50%;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(214, 255, 138, 0.28), rgba(103, 228, 143, 0.64), rgba(214, 255, 138, 0.28), transparent);
}

body.product-token .process-grid::before,
body.product-token .route-summary::before,
body.product-token .route-track::before {
  background: linear-gradient(90deg, rgba(214, 255, 138, 0.92), rgba(103, 228, 143, 0.24), transparent);
}

body.product-token .archive-card,
body.product-token .detail-card,
body.product-token .process-card {
  border-color: rgba(214, 255, 138, 0.16);
}

body.product-token .archive-card::after,
body.product-token .detail-card::after,
body.product-token .process-card::after {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(214, 255, 138, 0.14), transparent 70%);
}

body.product-crawler .eyebrow,
body.product-crawler .section-tag,
body.product-crawler .mini-code,
body.product-crawler .kicker {
  color: #d8ffee;
}

body.product-crawler .hero-art,
body.product-crawler .console-card,
body.product-crawler .surface-header,
body.product-crawler .surface-footer {
  background:
    radial-gradient(circle at 82% 18%, rgba(103, 228, 143, 0.14), transparent 24%),
    radial-gradient(circle at 16% 82%, rgba(214, 255, 138, 0.08), transparent 28%),
    linear-gradient(150deg, rgba(6, 17, 14, 0.98), rgba(8, 23, 18, 0.96) 58%, rgba(10, 30, 25, 0.94));
  background-size: auto, auto, auto;
}

body.product-crawler .art-orbit {
  background:
    radial-gradient(circle at center, rgba(246, 255, 250, 0.8) 0 16%, transparent 17%),
    radial-gradient(circle at center, transparent 0 40%, rgba(103, 228, 143, 0.2) 41% 46%, transparent 47%),
    repeating-conic-gradient(from 0deg, rgba(103, 228, 143, 0.1) 0 10deg, rgba(103, 228, 143, 0.02) 10deg 24deg);
  box-shadow:
    inset 0 0 0 1px rgba(103, 228, 143, 0.12),
    0 0 0 16px rgba(103, 228, 143, 0.03);
}

body.product-crawler .service-scene-shell::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 22%),
    radial-gradient(circle at 16% 10%, rgba(214, 255, 138, 0.08), transparent 18%),
    linear-gradient(90deg, transparent, rgba(103, 228, 143, 0.18), transparent);
}

body.product-crawler .service-scene-shell::after {
  top: 62%;
  height: 1px;
  background:
    linear-gradient(90deg, transparent 0 3%, rgba(103, 228, 143, 0.18) 3% 14%, transparent 14% 18%, rgba(103, 228, 143, 0.6) 18% 56%, transparent 56% 60%, rgba(214, 255, 138, 0.2) 60% 72%, transparent 72% 100%);
}

body.product-crawler .archive-card,
body.product-crawler .detail-card,
body.product-crawler .process-card {
  background:
    radial-gradient(circle at 82% 16%, rgba(103, 228, 143, 0.14), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(214, 255, 138, 0.07), transparent 34%),
    linear-gradient(160deg, rgba(10, 20, 16, 0.98), rgba(8, 18, 15, 0.96));
  background-size: auto, auto, auto;
}

body.product-crawler .archive-card::after,
body.product-crawler .detail-card::after,
body.product-crawler .process-card::after {
  background: radial-gradient(circle, rgba(103, 228, 143, 0.12), transparent 70%);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero {
  padding: var(--space-hero-pt) 0 var(--space-hero-pb);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: var(--space-hero-grid-gap);
  align-items: start;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 620px;
  padding-top: 0;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-crumb {
  margin-bottom: 12px;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-copy .eyebrow {
  display: none;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .page-title {
  margin-top: 8px;
  font-size: var(--type-page-title);
  line-height: 1.02;
  max-width: 9.2em;
}

html[lang="zh-CN"] body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .page-title {
  max-width: 7.6em;
  line-height: 1.04;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .page-body {
  margin-top: 14px;
  max-width: 20em;
}

html[lang="zh-CN"] body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .page-body {
  max-width: 20em;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-actions {
  margin-top: var(--space-hero-actions-mt);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .metrics-strip {
  gap: var(--space-metrics-gap);
  margin-top: var(--space-metrics-mt);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .metric {
  padding: var(--space-metric-pad);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art {
  min-height: 0;
  padding: var(--space-hero-art-pad);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art .art-stack {
  gap: var(--space-art-stack-gap);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art .surface-header,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art .surface-footer {
  padding: 14px 16px;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art .service-scene-shell {
  padding: 14px;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art .console-grid {
  gap: 12px;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art .console-card {
  padding: 18px;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art .console-card.large {
  min-height: 0;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art .service-scene-shell::after,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art .console-card.large::after,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .cta-band::after {
  display: none;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .section {
  padding-top: var(--space-section-pt);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-section-head-gap);
  max-width: 760px;
  margin-bottom: var(--space-section-head-mb);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .section-head > div {
  max-width: none;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .section-head h2 {
  max-width: 11ch;
}

html[lang="zh-CN"] body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .section-head h2 {
  max-width: 8.2em;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .section-head p {
  margin: 0;
  max-width: 32em;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-split {
  gap: var(--space-route-split-gap);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-summary {
  padding: var(--space-route-summary-pad);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-track {
  display: grid;
  gap: var(--space-route-track-gap);
  padding: var(--space-route-track-pad);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-track .process-grid {
  margin-top: 0;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-summary h2,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-intro h2 {
  font-size: var(--type-route-title);
  max-width: 10.5ch;
}

html[lang="zh-CN"] body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-summary h2,
html[lang="zh-CN"] body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-intro h2 {
  max-width: 8.4em;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-summary p,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .route-intro p {
  margin-top: var(--space-route-body-mt);
  max-width: 30em;
  line-height: var(--lh-route-body);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .panel-grid,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-grid,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-grid,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .detail-grid {
  gap: var(--space-grid-gap);
  align-items: start;
  grid-auto-rows: 1fr;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .detail-card,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-card,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-card,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .panel-card {
  padding: var(--space-card-pad);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: none;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .detail-card,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-card,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-card {
  min-height: 0;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .detail-grid > *,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .panel-grid > *,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-grid > * {
  transform: none;
  height: 100%;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .detail-card h3,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-card h3,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-card h3,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .panel-card h3 {
  margin-top: 10px;
  max-width: none;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .detail-card p,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-card p,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-card p,
body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .panel-card p {
  margin-top: 0;
  max-width: none;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-grid::before {
  display: none;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-card {
  padding-left: var(--space-card-pad);
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .process-card::before {
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
  width: auto;
  height: 1px;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(90deg, rgba(214, 255, 138, 0.82), rgba(103, 228, 143, 0.22), rgba(214, 255, 138, 0));
}

body.product-skills .panel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.product-skills .archive-card h3 {
  max-width: 6.4em;
}

body.product-skills .archive-card p {
  max-width: 13em;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .archive-grid > * {
  height: 100%;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-art .console-grid {
  align-items: stretch;
}

body.route-ai .hero-art .console-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: row;
}

body.route-ai .hero-art .console-card.large {
  grid-column: 1 / -1;
  min-height: 0;
}

body.route-ai .hero-art .console-card.dark {
  min-height: 0;
}

body.route-ai .hero-art .surface-footer {
  padding-top: 12px;
  padding-bottom: 12px;
}

body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .cta-band {
  padding: 28px 26px;
}

body.route-company .detail-card:nth-child(2),
body.route-ai .detail-card:nth-child(2),
body.product-skills .detail-card:nth-child(2),
body.product-token .detail-card:nth-child(2),
body.product-crawler .detail-card:nth-child(2) {
  transform: none;
}

.contact-page {
  background:
    radial-gradient(circle at 14% 10%, rgba(102, 188, 255, 0.22), transparent 20%),
    radial-gradient(circle at 88% 12%, rgba(25, 88, 232, 0.12), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 22%, #eef5ff 56%, #e8f1ff 100%);
}

.contact-page::before {
  background: radial-gradient(circle, rgba(102, 188, 255, 0.22), transparent 68%);
}

.contact-page::after {
  background: radial-gradient(circle, rgba(25, 88, 232, 0.14), transparent 70%);
}

.contact-page .noise {
  opacity: 0.32;
}

.contact-page .hero {
  padding-bottom: 26px;
}

.contact-page .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
}

.contact-page .page-title {
  max-width: 10ch;
  font-size: clamp(3.2rem, 5.4vw, 6.1rem);
}

html[lang="zh-CN"] .contact-page .page-title {
  max-width: 7.2em;
}

.contact-page .page-body {
  max-width: 36ch;
}

html[lang="zh-CN"] .contact-page .page-body {
  max-width: 18em;
}

.contact-page .hero-art {
  min-height: 640px;
  padding: 28px;
  background:
    linear-gradient(rgba(255,255,255,0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.34) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(139, 230, 255, 0.24), transparent 18%),
    radial-gradient(circle at 10% 86%, rgba(25, 88, 232, 0.16), transparent 24%),
    linear-gradient(160deg, rgba(255,255,255,0.96), rgba(229,240,255,0.96));
  background-size: 30px 30px, 30px 30px, auto, auto, auto;
}

.contact-page .surface-header,
.contact-page .surface-footer {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.contact-page .surface-footer p {
  max-width: 34ch;
}

.contact-orbit {
  position: absolute;
  right: -72px;
  top: 46px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(25, 88, 232, 0.12);
  opacity: 0.82;
  pointer-events: none;
  animation: contactOrbit 18s linear infinite;
}

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

.contact-orbit::before {
  inset: 22px;
  border: 1px solid rgba(25, 88, 232, 0.08);
}

.contact-orbit::after {
  inset: 84px;
  background: radial-gradient(circle, rgba(139, 230, 255, 0.22), transparent 70%);
  filter: blur(3px);
}

.contact-beam {
  --beam-rotation: -11deg;
  position: absolute;
  left: -18%;
  width: 68%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 230, 255, 0.18), rgba(25, 88, 232, 0.78), rgba(139, 230, 255, 0.2), transparent);
  opacity: 0.65;
  pointer-events: none;
  animation: contactBeam 7s ease-in-out infinite;
}

.beam-a {
  top: 34%;
  --beam-rotation: -11deg;
}

.beam-b {
  top: 72%;
  --beam-rotation: 8deg;
  animation-duration: 8.5s;
  animation-direction: reverse;
}

.contact-page .signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.contact-page .signal-card {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background:
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(243,248,255,0.9));
  box-shadow: var(--shadow-md);
}

.contact-page .signal-card::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(25, 88, 232, 0.82), transparent);
}

.contact-page .signal-card strong {
  display: block;
  font-size: 0.98rem;
  font-family: var(--font-display);
}

html[lang="zh-CN"] .contact-page .signal-card strong {
  font-family: var(--font-cn);
}

.contact-page .signal-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.72;
}

.routing-board {
  position: relative;
  display: grid;
  gap: 16px;
}

.routing-lane,
.routing-map,
.intent-card,
.micro-route,
.contact-cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(223, 232, 246, 0.94);
  background:
    radial-gradient(circle at top right, rgba(95, 186, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,249,255,0.92));
  box-shadow: var(--shadow-md);
}

.routing-lane {
  min-height: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.routing-lane.featured {
  background:
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(236,244,255,0.94));
}

.routing-lane.dark,
.micro-route-dark,
.intent-card.primary {
  border-color: rgba(205, 223, 250, 0.18);
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(139, 230, 255, 0.18), transparent 26%),
    linear-gradient(145deg, #12306e 0%, #081428 100%);
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.routing-lane.dark h3,
.routing-lane.dark p,
.routing-lane.dark .inline-link,
.routing-lane.dark .mini-code,
.micro-route-dark h3,
.micro-route-dark p,
.micro-route-dark .intent-link,
.micro-route-dark .pill,
.micro-route-dark .kicker,
.intent-card.primary h3,
.intent-card.primary p,
.intent-card.primary .intent-link,
.intent-card.primary .pill,
.intent-card.primary .kicker {
  color: white;
}

.routing-lane.dark p,
.micro-route-dark p,
.intent-card.primary p {
  color: rgba(255, 255, 255, 0.76);
}

.micro-route-dark .pill,
.micro-route-dark .kicker,
.intent-card.primary .pill,
.intent-card.primary .kicker {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.routing-mini-grid,
.intent-grid,
.intent-subgrid {
  display: grid;
  gap: 16px;
}

.routing-mini-grid,
.intent-grid,
.intent-subgrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.routing-lane h3,
.routing-map h3,
.intent-card h3,
.micro-route h3 {
  margin-top: 18px;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  line-height: 1.04;
  font-weight: 600;
}

.routing-lane p,
.routing-map p,
.intent-card p,
.micro-route p {
  margin: 12px 0 0;
  max-width: 26ch;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.84;
}

.routing-lane .inline-link {
  margin-top: auto;
  padding-top: 18px;
}

.routing-map {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: 20px;
  padding: 24px;
}

.routing-map::after {
  content: "";
  position: absolute;
  right: 44%;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: linear-gradient(180deg, rgba(25, 88, 232, 0), rgba(25, 88, 232, 0.18), rgba(25, 88, 232, 0));
}

.routing-map-copy {
  position: relative;
  z-index: 1;
}

.routing-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.routing-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(248, 251, 255, 0.9);
  border: 1px solid rgba(223, 232, 246, 0.92);
}

.routing-step-index,
.contact-cta-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: white;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(190, 219, 255, 0.78);
}

.routing-step strong,
.contact-cta-step strong {
  display: block;
  font-size: 0.98rem;
  font-family: var(--font-display);
}

html[lang="zh-CN"] .routing-step strong,
html[lang="zh-CN"] .contact-cta-step strong {
  font-family: var(--font-cn);
}

.routing-step span:last-child,
.contact-cta-step span:last-child {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.68;
}

.intent-card,
.micro-route {
  min-height: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.intent-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[lang="zh-CN"] .intent-link {
  letter-spacing: 0.04em;
  text-transform: none;
}

.intent-link::after {
  content: "->";
  font-size: 0.8rem;
}

.contact-page .cta-band {
  padding: 34px;
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at 18% 0, rgba(139, 230, 255, 0.22), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(95, 186, 255, 0.18), transparent 24%),
    linear-gradient(140deg, #164fd7 0%, #0d2e6d 100%);
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
  box-shadow: 0 32px 84px rgba(17, 61, 159, 0.24);
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 24px;
  align-items: end;
}

.contact-cta-copy h2 {
  margin-top: 14px;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  max-width: 10ch;
  line-height: 1;
  color: white;
}

html[lang="zh-CN"] .contact-cta-copy h2 {
  max-width: 7em;
  line-height: 1.08;
}

.contact-cta-copy p {
  max-width: 30ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.88;
}

.contact-cta-panel {
  padding: 24px;
  border-radius: 30px;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  background-size: 28px 28px, 28px 28px, auto;
  backdrop-filter: blur(18px);
}

.contact-cta-track {
  display: grid;
  gap: 12px;
}

.contact-cta-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta-step strong {
  color: white;
}

.contact-cta-step span:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.contact-page .cta-band .btn.primary {
  color: var(--blue);
  background: white;
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.18);
}

.contact-page .cta-band .btn.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

@keyframes contactOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes contactBeam {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(-22%, 0, 0) rotate(var(--beam-rotation));
  }
  18%,
  82% {
    opacity: 0.58;
  }
  50% {
    opacity: 0.96;
    transform: translate3d(34%, 0, 0) rotate(var(--beam-rotation));
  }
}

@keyframes orbitDrift {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes artFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-12px, 12px, 0) scale(1.08);
  }
}

@keyframes artPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.56;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.9;
  }
}

@keyframes railTravel {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.2;
  }
  20% {
    opacity: 0.8;
  }
  50% {
    transform: translateY(248px);
    opacity: 1;
  }
  80% {
    opacity: 0.7;
  }
}

@keyframes stampPulse {
  0%,
  100% {
    box-shadow: 0 16px 32px rgba(25, 88, 232, 0.2);
  }
  50% {
    box-shadow: 0 20px 44px rgba(25, 88, 232, 0.3);
  }
}

@keyframes scanSweep {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(-18%, 0, 0) rotate(-8deg);
  }
  20%,
  80% {
    opacity: 0.78;
  }
  50% {
    opacity: 1;
    transform: translate3d(18%, 0, 0) rotate(-8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art::before,
  .hero-art::after,
  .art-orbit,
  .stamp,
  .mobility-rail::after,
  .console-card.large::after,
  .service-scene-shell::after,
  .contact-orbit,
  .contact-beam {
    animation: none !important;
  }
}

@media (max-width: 1080px) {
  .topbar-wrap {
    padding-top: 16px;
  }

  .topbar {
    gap: 16px;
    padding: 16px 18px;
    border-radius: 24px;
  }

  .brand {
    min-width: 0;
  }

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

  .brand-copy span {
    display: none;
  }

  nav {
    display: none;
  }

  .topbar-right {
    margin-left: auto;
  }

  .mobile-quicknav {
    display: flex;
    flex-wrap: wrap;
  }

  body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mobile-quicknav {
    display: flex !important;
  }

  .hero-grid,
  .section-head,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .page-title,
  .section-head h2 {
    max-width: none;
  }

  .metrics-strip,
  .panel-grid,
  .process-grid,
  .detail-grid,
  .archive-grid,
  .archive-topic-grid,
  .archive-stats,
  .route-split,
  .company-chain,
  .market-grid,
  .matrix-footer,
  .console-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-split,
  .console-grid {
    grid-template-columns: 1fr;
  }

  .route-track::before {
    display: none;
  }

  .mobility-stop:nth-child(even),
  .company-node,
  .matrix-card,
  .layer-card:nth-child(1),
  .layer-card:nth-child(2),
  .layer-card:nth-child(3),
  .layer-card:nth-child(4) {
    margin: 0;
    transform: none;
  }

  .service-card,
  .service-card.featured {
    grid-column: span 6;
  }

  .contact-page .hero-grid,
  .contact-page .routing-map,
  .contact-cta-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .hero-art {
    min-height: 0;
  }

  .contact-page .routing-map::after {
    display: none;
  }

  .route-company .process-grid::before,
  .route-market .process-grid::before,
  .route-kitas .process-grid::before,
  .route-compliance .process-grid::before,
  .route-ai .process-grid::before,
  .product-skills .process-grid::before,
  .product-token .process-grid::before,
  .product-crawler .process-grid::before {
    display: none;
  }

  body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) {
    /* Keep dark pages rhythm consistent by overriding tokens at this breakpoint. */
    --space-hero-pt: 52px;
    --space-hero-pb: 8px;
    --space-hero-grid-gap: 16px;
    --space-section-pt: 36px;
    --space-section-head-mb: 16px;
    --space-section-head-gap: 12px;
    --space-grid-gap: 15px;
    --space-route-summary-pad: 22px;
    --space-route-track-pad: 22px;
    --space-route-track-gap: 12px;
  }

  body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-copy {
    padding-top: 0;
    max-width: none;
  }

  body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .hero-grid {
    grid-template-columns: 1fr;
  }

  body.route-ai .hero-art .console-grid {
    grid-template-columns: 1fr;
  }

  body.route-ai .hero-art .console-card.large {
    grid-column: auto;
  }

  /* Section rhythm is controlled by the token overrides above. */
}

@media (max-width: 720px) {
  :root {
    /* Mobile baseline padding for all pages that reuse shared card shells. */
    --space-card-pad: 22px;
    --space-hero-art-pad: 18px;
    --space-hero-pt: 52px;
    --space-hero-pb: 24px;
  }

  body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) {
    /* Dark pages: denser mobile rhythm to reduce meaningless whitespace. */
    --space-hero-pt: 48px;
    --space-hero-pb: 8px;
    --space-hero-grid-gap: 16px;
    --space-hero-actions-mt: 16px;
    --space-hero-art-pad: 16px;
    --space-art-stack-gap: 12px;
    --space-metrics-gap: 12px;
    --space-metrics-mt: 14px;
    --space-metric-pad: 16px;
    --space-section-pt: 34px;
    --space-section-head-mb: 16px;
    --space-section-head-gap: 12px;
    --space-grid-gap: 14px;
    --space-card-pad: 20px;
    --space-route-summary-pad: 18px;
    --space-route-track-pad: 18px;
    --space-route-track-gap: 12px;
    --space-route-body-mt: 12px;
    --type-page-title: clamp(2.3rem, 10.6vw, 3.5rem);
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar-wrap {
    padding-top: 10px;
  }

  .topbar {
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-mark::after {
    inset: 10px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
    letter-spacing: 0.1em;
  }

  /* Dark page rhythm is handled by the token overrides at the top of this media query. */

  .mode-toggle,
  .lang-toggle {
    gap: 4px;
    padding: 4px;
  }

  .mode-link,
  .lang-btn {
    padding: 8px 10px;
    font-size: 0.68rem;
  }

  .mobile-quicknav {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding: 2px 2px 8px;
    margin-top: 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .mobile-quicknav {
    display: grid !important;
  }

  .service-direction-nav {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding: 2px 2px 8px;
    margin-top: 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-quicknav::-webkit-scrollbar,
  .service-direction-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-quicknav-link,
  .service-direction-link {
    scroll-snap-align: start;
  }

  .hero-art,
  .service-card,
  .panel-card,
  .process-card,
  .detail-card,
  .archive-card,
  .faq-item summary,
  .cta-band,
  .callout-card,
  .footer-shell {
    padding: var(--space-card-pad);
  }

  .hero-art {
    padding: var(--space-hero-art-pad);
    min-height: 0;
  }

  .faq-answer {
    padding: 0 var(--space-card-pad) var(--space-card-pad);
  }

  .hero-art {
    min-height: 0;
  }

  /* Removed hardcoded dark hero paddings (use tokens instead). */

  .art-grid,
  .metrics-strip,
  .panel-grid,
  .process-grid,
  .detail-grid,
  .archive-grid,
  .archive-topic-grid,
  .archive-stats,
  .company-chain,
  .market-grid,
  .matrix-footer {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .service-card.featured {
    grid-column: span 1;
    min-height: 0;
  }

  .page-title,
  .section-head h2,
  .service-card h3,
  .panel-card h3,
  .archive-card h3,
  .process-card h3,
  .detail-card h3,
  .callout-card h3,
  .page-body,
  .section-head p,
  .service-card p,
  .panel-card p,
  .archive-card p,
  .process-card p,
  .detail-card p,
  .callout-card p {
    max-width: none;
  }

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

  .route-summary,
  .route-track,
  .surface-header,
  .surface-footer,
  .service-scene-shell,
  .company-node,
  .matrix-card,
  .mobility-stop,
  .layer-card,
  .console-card {
    padding: var(--space-card-pad);
  }

  .mobility-stop {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .stamp {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .matrix-card:nth-child(1) {
    grid-column: span 1;
    transform: none;
  }

  .matrix-card:nth-child(2),
  .matrix-card:nth-child(3),
  .matrix-card:nth-child(4),
  .company-node:nth-child(1),
  .company-node:nth-child(2),
  .company-node:nth-child(3),
  .company-node:nth-child(4),
  .layer-card:nth-child(1),
  .layer-card:nth-child(2),
  .layer-card:nth-child(3),
  .layer-card:nth-child(4) {
    transform: none;
  }

  .mobility-rail::before,
  .mobility-rail::after {
    display: none;
  }

  /* Keep global .page-title sizing driven by tokens; dark pages override --type-page-title above. */

  .contact-page .page-title {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 3.8rem);
    line-height: 1.08;
  }

  html[lang="zh-CN"] .contact-page .page-title {
    max-width: 6.6em;
  }

  .contact-page .hero {
    padding-top: 40px;
    padding-bottom: 14px;
  }

  .contact-page .hero-grid {
    gap: 24px;
  }

  .contact-page .page-body {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .section {
    padding-top: var(--space-section-pt);
  }

  .section-head {
    gap: 14px;
    margin-bottom: 30px;
  }

  body:is(.route-company, .route-ai, .product-skills, .product-token, .product-crawler) .section-head {
    margin-bottom: var(--space-section-head-mb);
    gap: var(--space-section-head-gap);
  }

  .section-head h2,
  html[lang="zh-CN"] .section-head h2 {
    max-width: none;
  }

  .section-head p,
  html[lang="zh-CN"] .section-head p,
  .page-body {
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.72;
  }

  .contact-page .signal-row {
    grid-template-columns: 1fr;
  }

  .contact-page .signal-card,
  .routing-lane,
  .routing-map,
  .intent-card,
  .micro-route,
  .contact-cta-panel {
    padding: 22px;
  }

  .contact-page .hero-art {
    min-height: 0;
    padding: 18px;
    border-radius: 30px;
  }

  body.route-ai .hero-art .console-grid {
    grid-template-columns: 1fr;
  }

  body.route-ai .hero-art .console-card.large {
    grid-column: auto;
  }

  .contact-orbit,
  .contact-beam {
    display: none;
  }

  .contact-page .surface-header,
  .contact-page .surface-footer {
    padding: 16px;
    border-radius: 20px;
  }

  .contact-page .surface-footer p {
    max-width: none;
    font-size: 0.82rem;
    line-height: 1.68;
  }

  .contact-page .signal-row {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 78vw);
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .contact-page .signal-row::-webkit-scrollbar {
    display: none;
  }

  .contact-page .signal-card {
    padding: 16px;
    border-radius: 22px;
    scroll-snap-align: start;
  }

  .contact-page .signal-card strong {
    font-size: 0.92rem;
  }

  .contact-page .signal-card span {
    font-size: 0.76rem;
    line-height: 1.62;
  }

  .contact-page .routing-mini-grid,
  .contact-page .intent-grid,
  .contact-page .intent-subgrid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(236px, 82vw);
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .contact-page .routing-mini-grid::-webkit-scrollbar,
  .contact-page .intent-grid::-webkit-scrollbar,
  .contact-page .intent-subgrid::-webkit-scrollbar {
    display: none;
  }

  .contact-page .routing-mini-grid > *,
  .contact-page .intent-grid > *,
  .contact-page .intent-subgrid > * {
    scroll-snap-align: start;
  }

  .routing-board,
  .contact-cta-grid {
    gap: 16px;
  }

  .routing-lane,
  .routing-map,
  .intent-card,
  .micro-route,
  .contact-cta-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .routing-lane h3,
  .routing-map h3,
  .intent-card h3,
  .micro-route h3 {
    max-width: none;
    font-size: 1.34rem;
    line-height: 1.12;
  }

  .routing-lane p,
  .routing-map p,
  .intent-card p,
  .micro-route p {
    max-width: none;
    font-size: 0.84rem;
    line-height: 1.72;
  }

  .routing-map {
    gap: 14px;
  }

  .routing-step,
  .contact-cta-step {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }

  .routing-step-index,
  .contact-cta-index {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 0.66rem;
  }

  .routing-step strong,
  .contact-cta-step strong {
    font-size: 0.9rem;
  }

  .routing-step span:last-child,
  .contact-cta-step span:last-child {
    font-size: 0.74rem;
    line-height: 1.58;
  }

  .pill-row {
    gap: 6px;
    margin-top: 16px;
  }

  .pill {
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .contact-page .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .contact-page .hero-actions .btn {
    padding: 14px 18px;
    font-size: 0.76rem;
  }

  .intent-link,
  .inline-link {
    margin-top: 16px;
    padding-top: 16px;
    font-size: 0.72rem;
  }

  .contact-page .cta-band {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .contact-cta-copy h2,
  html[lang="zh-CN"] .contact-cta-copy h2 {
    max-width: none;
    font-size: clamp(1.95rem, 10vw, 2.9rem);
  }

  .contact-cta-copy p {
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.72;
  }

  .contact-page .cta-band .hero-actions {
    margin-top: 22px;
  }

  .contact-cta-panel {
    padding: 18px;
  }

  .footer-shell {
    padding: 22px 18px 18px;
  }

  .service-scene-shell {
    padding: 10px;
  }

  .route-company .detail-card:nth-child(2),
  .route-market .detail-card:nth-child(2),
  .route-kitas .detail-card:nth-child(2),
  .route-compliance .detail-card:nth-child(2),
  .route-ai .detail-card:nth-child(2),
  .product-skills .detail-card:nth-child(2),
  .product-token .detail-card:nth-child(2),
  .product-crawler .detail-card:nth-child(2) {
    transform: none;
  }

  .route-company .process-card,
  .route-market .process-card,
  .route-kitas .process-card,
  .route-compliance .process-card,
  .route-ai .process-card,
  .product-skills .process-card,
  .product-token .process-card,
  .product-crawler .process-card {
    padding-left: 22px;
  }

  .route-company .process-card::before,
  .route-market .process-card::before,
  .route-kitas .process-card::before,
  .route-compliance .process-card::before,
  .route-ai .process-card::before,
  .product-skills .process-card::before,
  .product-token .process-card::before,
  .product-crawler .process-card::before {
    display: none;
  }

}

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

  .contact-page .signal-row {
    grid-auto-columns: minmax(208px, 82vw);
  }

  .mobile-quicknav-link {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.74rem;
  }

  .contact-page .routing-mini-grid,
  .contact-page .intent-grid,
  .contact-page .intent-subgrid {
    grid-auto-columns: minmax(210px, 86vw);
  }

  .contact-page .hero-actions .btn {
    padding: 13px 16px;
    font-size: 0.74rem;
  }
}

/* Compact detail experience for the four dark direction pages */
body.compact-detail-mode .section-head > p,
body.compact-detail-mode .route-summary > p,
body.compact-detail-mode .route-intro > p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

body.compact-detail-mode article.detail-card,
body.compact-detail-mode article.process-card,
body.compact-detail-mode article.archive-card {
  min-height: 0;
}

  body.compact-detail-mode article.has-quick-detail {
  display: flex;
  flex-direction: column;
}

body.compact-detail-mode .detail-grid,
body.compact-detail-mode .panel-grid,
body.compact-detail-mode .process-grid,
body.compact-detail-mode .archive-grid {
  align-items: stretch;
}

body.compact-detail-mode .detail-grid > *,
body.compact-detail-mode .panel-grid > *,
body.compact-detail-mode .process-grid > *,
body.compact-detail-mode .archive-grid > * {
  height: 100%;
}

body.compact-detail-mode article.has-quick-detail p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

body.compact-detail-mode .card-detail-trigger {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(103, 228, 143, 0.26);
  background: rgba(10, 20, 14, 0.72);
  color: rgba(236, 248, 238, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    background-color 0.18s ease;
}

html[lang="zh-CN"] body.compact-detail-mode .card-detail-trigger {
  letter-spacing: 0.01em;
}

body.compact-detail-mode .card-detail-trigger:is(:hover, :focus-visible) {
  transform: translateY(-1px);
  border-color: rgba(180, 255, 106, 0.42);
  color: #f4fff5;
  background: rgba(13, 27, 18, 0.9);
}

body.compact-detail-mode .card-detail-trigger:focus-visible {
  outline: 2px solid rgba(180, 255, 106, 0.45);
  outline-offset: 2px;
}

body.is-detail-modal-open {
  overflow: hidden;
}

.detail-modal-shell {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 22px;
  display: grid;
  place-items: center;
}

.detail-modal-shell[hidden] {
  display: none;
}

.detail-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 7, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.detail-modal-panel {
  position: relative;
  width: min(680px, calc(100vw - 30px));
  max-height: min(78vh, 760px);
  overflow: auto;
  border-radius: 28px;
  border: 1px solid rgba(129, 165, 137, 0.22);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(103, 228, 143, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(12, 23, 17, 0.99), rgba(8, 16, 12, 0.97));
  background-size: 32px 32px, 32px 32px, auto, auto;
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 28px 26px 24px;
}

.detail-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(129, 165, 137, 0.24);
  background: rgba(10, 20, 14, 0.86);
  color: rgba(236, 248, 238, 0.92);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.detail-modal-close:is(:hover, :focus-visible) {
  border-color: rgba(180, 255, 106, 0.44);
  color: #f4fff5;
}

.detail-modal-close:focus-visible {
  outline: 2px solid rgba(180, 255, 106, 0.45);
  outline-offset: 2px;
}

.detail-modal-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(103, 228, 143, 0.28);
  background: rgba(12, 24, 17, 0.84);
  color: rgba(215, 244, 220, 0.86);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

html[lang="zh-CN"] .detail-modal-tag {
  letter-spacing: 0.02em;
  text-transform: none;
}

.detail-modal-title {
  margin-top: 14px;
  font-size: clamp(1.56rem, 2.8vw, 2.18rem);
  line-height: 1.18;
  color: #f0f9f2;
}

.detail-modal-content {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.detail-modal-content p {
  margin: 0;
  color: rgba(202, 218, 206, 0.9);
  font-size: 0.96rem;
  line-height: 1.82;
}

@media (max-width: 700px) {
  .detail-modal-shell {
    padding: 12px;
  }

  .detail-modal-panel {
    width: calc(100vw - 18px);
    max-height: min(82vh, 760px);
    border-radius: 22px;
    padding: 22px 18px 18px;
  }

  .detail-modal-title {
    font-size: clamp(1.34rem, 6.2vw, 1.76rem);
    line-height: 1.22;
  }

  .detail-modal-content p {
    font-size: 0.92rem;
    line-height: 1.74;
  }
}
