:root {
  color-scheme: dark;
  --bg: #050716;
  --bg-2: #111335;
  --panel: rgba(247, 244, 255, 0.075);
  --panel-strong: rgba(247, 244, 255, 0.12);
  --line: rgba(167, 163, 198, 0.24);
  --line-strong: rgba(255, 183, 101, 0.38);
  --text: #f5f3ff;
  --text-soft: rgba(245, 243, 255, 0.76);
  --muted: #a7a3c6;
  --green: #7b5cff;
  --green-2: #d8cfff;
  --teal: #d88cff;
  --gold: #ffb765;
  --ink: #050716;
  --nebula: #7b5cff;
  --rose: #d88cff;
  --orange: #ffb765;
  --silver: #f5f3ff;
  --white: #ffffff;
  --space-0: #050716;
  --space-1: #090b1f;
  --space-2: #111335;
  --star-purple: #7b5cff;
  --star-gold: #ffb765;
  --star-pink: #d88cff;
  --star-white: #f5f3ff;
  --star-muted: #a7a3c6;
  --radius: 8px;
  --shadow: 0 28px 86px rgba(0, 0, 0, 0.42);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(123, 92, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 88% 0%, rgba(255, 183, 101, 0.12), transparent 30rem),
    radial-gradient(circle at 80% 72%, rgba(216, 140, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, #050716 0%, #090b1f 46%, #111335 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

p {
  color: var(--text-soft);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-nav.is-scrolled,
.site-nav.menu-open {
  padding: 10px 0;
  background: rgba(7, 10, 31, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(123, 92, 255, 0.34), 0 0 18px rgba(255, 184, 107, 0.18);
}

.brand strong,
.brand span {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 17px;
}

.brand span {
  margin-top: 3px;
  color: var(--green-2);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 10px;
  color: var(--text-soft);
  border-radius: 999px;
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--green-2);
  background: rgba(123, 92, 255, 0.14);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(123, 92, 255, 0.2), 0 0 32px rgba(255, 183, 101, 0.16);
  outline: none;
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 18px 40px rgba(255, 183, 101, 0.28);
}

.button-secondary {
  color: var(--green-2);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.button-dark {
  color: var(--ink);
  background: var(--green-2);
}

.page-hero,
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 128px 0 64px;
}

.hero::before,
.page-hero::before,
.dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at 50% 36%, #000 0%, transparent 72%);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% -12%;
  z-index: -1;
  height: 40%;
  background: radial-gradient(ellipse at center, rgba(123, 92, 255, 0.2), transparent 68%);
}

.galaxy-hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 136px 0 72px;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 183, 101, 0.18), transparent 26rem),
    radial-gradient(circle at 64% 34%, rgba(123, 92, 255, 0.34), transparent 34rem),
    radial-gradient(circle at 86% 70%, rgba(216, 140, 255, 0.12), transparent 30rem),
    linear-gradient(135deg, #050716 0%, #090b1f 44%, #111335 100%);
}

.galaxy-hero::before {
  z-index: 1;
  opacity: 0.55;
  background-size: 76px 76px;
  mask-image: radial-gradient(ellipse at 62% 42%, #000 0%, transparent 74%);
}

.galaxy-hero::after {
  z-index: 1;
  inset: auto -20% -22% -20%;
  height: 44%;
  background:
    radial-gradient(ellipse at 52% 50%, rgba(123, 92, 255, 0.22), transparent 62%),
    linear-gradient(90deg, transparent, rgba(255, 183, 101, 0.13), transparent);
  filter: blur(4px);
}

.galaxy-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 22, 0.98) 0%, rgba(9, 11, 31, 0.9) 36%, rgba(17, 19, 53, 0.32) 68%, rgba(5, 7, 22, 0.56) 100%),
    radial-gradient(circle at 72% 34%, transparent 0%, rgba(9, 11, 31, 0.12) 38%, rgba(5, 7, 22, 0.82) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
  gap: 62px;
  align-items: center;
}

.galaxy-layout {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 430px);
  gap: 58px;
}

.hero-content {
  max-width: 800px;
  animation: heroFadeUp 900ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green);
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: 19px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-aside {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
}

.signal-console {
  position: relative;
  width: min(100%, 430px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(17, 19, 53, 0.74), rgba(5, 7, 22, 0.66)),
    radial-gradient(circle at 18% 0%, rgba(123, 92, 255, 0.2), transparent 18rem),
    radial-gradient(circle at 88% 18%, rgba(255, 183, 101, 0.1), transparent 12rem);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46), 0 0 90px rgba(123, 92, 255, 0.16);
  backdrop-filter: blur(20px);
  overflow: hidden;
  animation: radarFloat 7s ease-in-out infinite;
}

.signal-console::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(245, 243, 255, 0.08);
  box-shadow: inset 0 0 36px rgba(216, 140, 255, 0.08);
  pointer-events: none;
}

.signal-console::after {
  content: "";
  position: absolute;
  inset: -40% -30% auto;
  height: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 101, 0.2), rgba(216, 140, 255, 0.16), transparent);
  transform: rotate(-13deg);
  animation: consoleScan 6.5s ease-in-out infinite;
}

.console-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.console-kicker,
.console-state {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.console-top strong {
  display: block;
  margin-top: 4px;
  color: var(--green-2);
  font-size: 20px;
}

.console-state {
  padding: 5px 10px;
  border: 1px solid rgba(255, 183, 101, 0.3);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 183, 101, 0.1);
}

.score-orb {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 188px;
  aspect-ratio: 1;
  margin: 6px auto 24px;
  border: 1px solid rgba(216, 140, 255, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(123, 92, 255, 0.26), transparent 54%),
    conic-gradient(from 80deg, rgba(123, 92, 255, 0.1), rgba(245, 243, 255, 0.54), rgba(255, 183, 101, 0.36), rgba(216, 140, 255, 0.24), rgba(123, 92, 255, 0.1));
  box-shadow: inset 0 0 34px rgba(123, 92, 255, 0.16), 0 0 46px rgba(123, 92, 255, 0.18);
  animation: scorePulse 4.8s ease-in-out infinite;
}

.score-orb::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background: rgba(7, 10, 31, 0.88);
}

.score-orb::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent, rgba(255, 183, 101, 0.72), rgba(216, 140, 255, 0.38), transparent 62%);
  mask-image: radial-gradient(circle, transparent 61%, #000 63%);
  animation: scoreRingRotate 16s linear infinite;
  opacity: 0.62;
}

.score-orb span,
.score-orb strong,
.score-orb em {
  position: relative;
  z-index: 1;
  line-height: 1;
}

.score-orb span,
.score-orb em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.score-orb strong {
  color: var(--text);
  font-size: 56px;
  letter-spacing: 0;
}

.score-orb small {
  margin-left: 3px;
  color: var(--muted);
  font-size: 15px;
}

.score-orbit {
  position: absolute;
  border: 1px solid rgba(245, 243, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset: -12px;
  transform: rotate(-18deg) scaleX(1.16);
}

.orbit-two {
  inset: 18px -18px;
  border-color: rgba(255, 183, 101, 0.16);
  transform: rotate(24deg) scaleX(1.12);
}

.orbit-three {
  inset: 44px -26px;
  border-color: rgba(216, 140, 255, 0.14);
  transform: rotate(-38deg) scaleX(1.2);
}

.metric-stack {
  position: relative;
  z-index: 1;
}

.metric-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 42px;
  gap: 10px;
  align-items: center;
  color: var(--text-soft);
  font-size: 13px;
}

.metric-row + .metric-row {
  margin-top: 10px;
}

.metric-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.metric-bar span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.metric-bar.gold span {
  background: linear-gradient(90deg, var(--gold), var(--rose));
}

.ai-network {
  position: relative;
  z-index: 1;
  height: 190px;
  margin-top: 22px;
  border: 1px solid rgba(180, 164, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  overflow: hidden;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-lines line {
  stroke: rgba(245, 243, 255, 0.16);
  stroke-width: 1;
  stroke-dasharray: 4 10;
  animation: networkFlow 8s linear infinite;
}

.network-node {
  position: absolute;
  z-index: 1;
  padding: 5px 8px;
  border: 1px solid rgba(216, 209, 255, 0.28);
  border-radius: 999px;
  color: var(--text);
  background: rgba(7, 10, 31, 0.78);
  box-shadow: 0 0 20px rgba(123, 92, 255, 0.16);
  font-size: 11px;
  transform: translate(-50%, -50%);
}

.network-core {
  left: 50%;
  top: 50%;
  padding: 8px 11px;
  border-color: rgba(255, 183, 101, 0.34);
  color: var(--gold);
}

.node-chatgpt { left: 19%; top: 22%; }
.node-deepseek { left: 49%; top: 15%; }
.node-google { left: 78%; top: 28%; }
.node-doubao { left: 25%; top: 78%; }
.node-kimi { left: 79%; top: 76%; }

.network-pulse {
  position: absolute;
  z-index: 1;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(255, 183, 101, 0.62);
}

.signal-console p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  font-size: 13px;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes radarFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes scorePulse {
  0%,
  100% {
    box-shadow: inset 0 0 34px rgba(123, 92, 255, 0.16), 0 0 42px rgba(123, 92, 255, 0.16);
  }

  50% {
    box-shadow: inset 0 0 42px rgba(123, 92, 255, 0.22), 0 0 54px rgba(255, 183, 101, 0.18);
  }
}

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

@keyframes networkFlow {
  to {
    stroke-dashoffset: -56;
  }
}

@keyframes consoleScan {
  0% {
    transform: translateX(-18%) rotate(-13deg);
    opacity: 0;
  }

  45%,
  60% {
    opacity: 1;
  }

  100% {
    transform: translateX(42%) rotate(-13deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .signal-console,
  .score-orb,
  .score-orb::after,
  .network-lines line,
  .network-pulse,
  .signal-console::after {
    animation: none;
  }

  .signal-console::after {
    opacity: 0.28;
  }
}

.hero-stats,
.stat-grid,
.card-grid,
.pillar-grid,
.industry-grid {
  display: grid;
  gap: 16px;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.stat,
.card,
.pillar,
.report-box,
.timeline-item,
.industry-card,
.contact-panel,
.form-panel,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.stat {
  position: relative;
  padding: 18px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hero-stats .stat::after {
  content: "";
  position: absolute;
  inset: auto 12px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 101, 0.58), rgba(216, 140, 255, 0.36), transparent);
  opacity: 0.44;
}

.hero-stats .stat:hover,
.hero-stats .stat:focus-within {
  transform: translateY(-5px);
  border-color: rgba(255, 183, 101, 0.42);
  box-shadow: 0 18px 50px rgba(5, 7, 22, 0.28), 0 0 30px rgba(123, 92, 255, 0.16);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 14px;
}

.metric-stat-link {
  color: inherit;
}

.metric-stat-link em {
  position: absolute;
  top: 18px;
  right: 16px;
  color: rgba(255, 183, 101, 0.88);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.metric-stat-link:hover em,
.metric-stat-link:focus-visible em {
  opacity: 1;
  transform: translateX(3px);
}

.metric-stat-link:focus-visible {
  outline: 2px solid rgba(255, 183, 101, 0.84);
  outline-offset: 3px;
}

.section {
  padding: 96px 0;
}

.section-light {
  color: #171532;
  background:
    radial-gradient(circle at 12% 0%, rgba(123, 92, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 84% 16%, rgba(255, 184, 107, 0.13), transparent 24rem),
    #f8f4ff;
}

.section-light p {
  color: rgba(23, 21, 50, 0.72);
}

.section-light .eyebrow {
  color: var(--teal);
}

.section-light .eyebrow::before {
  background: var(--teal);
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::after {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

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

.card,
.pillar,
.industry-card {
  padding: 24px;
}

.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 184, 107, 0.42), transparent);
  opacity: 0.7;
}

.insight-grid .card {
  min-height: 230px;
}

.card .num,
.pillar .num,
.timeline-item .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--rose));
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.section-light .card,
.section-light .pillar,
.section-light .industry-card,
.section-light .report-box,
.section-light .timeline-item {
  background: #ffffff;
  border-color: #ded6ff;
  box-shadow: 0 16px 44px rgba(7, 10, 31, 0.1);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.constellation-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(123, 92, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 84% 34%, rgba(255, 184, 107, 0.1), transparent 30rem);
}

.constellation-layout {
  align-items: center;
}

.stellar-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.stellar-list div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 244, 255, 0.055);
}

.stellar-list strong,
.stellar-list span {
  display: block;
}

.stellar-list strong {
  color: var(--gold);
}

.stellar-list span {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 14px;
}

.growth-galaxy {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 184, 107, 0.12), transparent 8rem),
    radial-gradient(circle at 50% 50%, rgba(123, 92, 255, 0.2), transparent 18rem),
    linear-gradient(rgba(247, 244, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 255, 0.04) 1px, transparent 1px),
    rgba(7, 10, 31, 0.56);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.growth-galaxy::before,
.growth-galaxy::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: conic-gradient(from 40deg, transparent, rgba(255, 184, 107, 0.2), rgba(123, 92, 255, 0.34), transparent 72%);
  filter: blur(14px);
  opacity: 0.72;
}

.growth-galaxy::after {
  inset: 25%;
  background: conic-gradient(from 180deg, transparent, rgba(255, 111, 174, 0.26), rgba(216, 209, 255, 0.28), transparent 68%);
  transform: rotate(-18deg);
}

.galaxy-core,
.orbit-node,
.orbit-ring {
  position: absolute;
  z-index: 1;
}

.galaxy-core {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 180px;
  aspect-ratio: 1;
  padding: 20px;
  border: 1px solid rgba(255, 184, 107, 0.42);
  border-radius: 50%;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 184, 107, 0.28), transparent 58%),
    rgba(7, 10, 31, 0.88);
  box-shadow: 0 0 48px rgba(255, 184, 107, 0.18), inset 0 0 28px rgba(123, 92, 255, 0.18);
  text-align: center;
  transform: translate(-50%, -50%);
}

.galaxy-core span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.galaxy-core strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
  line-height: 1.25;
}

.orbit-ring {
  left: 50%;
  top: 50%;
  border: 1px solid rgba(216, 209, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.ring-a {
  width: 74%;
  aspect-ratio: 1 / 0.56;
}

.ring-b {
  width: 58%;
  aspect-ratio: 1 / 0.62;
  border-color: rgba(255, 184, 107, 0.22);
  transform: translate(-50%, -50%) rotate(24deg);
}

.ring-c {
  width: 88%;
  aspect-ratio: 1 / 0.48;
  border-color: rgba(255, 111, 174, 0.16);
  transform: translate(-50%, -50%) rotate(-38deg);
}

.orbit-node {
  padding: 8px 11px;
  border: 1px solid rgba(216, 209, 255, 0.28);
  border-radius: 999px;
  color: var(--text);
  background: rgba(7, 10, 31, 0.78);
  box-shadow: 0 0 24px rgba(123, 92, 255, 0.14);
  font-size: 12px;
  font-weight: 900;
}

.node-a { left: 58%; top: 13%; }
.node-b { left: 22%; top: 25%; }
.node-c { right: 10%; top: 42%; }
.node-d { left: 15%; bottom: 25%; }
.node-e { right: 24%; bottom: 14%; }
.node-f { left: 45%; bottom: 8%; }

.asset-matrix,
.cockpit-grid {
  display: grid;
  gap: 16px;
}

.asset-matrix {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.asset-card,
.cockpit-card {
  position: relative;
  min-height: 280px;
  padding: 24px;
  border: 1px solid #ded6ff;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(123, 92, 255, 0.12), transparent 14rem),
    #ffffff;
  box-shadow: 0 16px 44px rgba(7, 10, 31, 0.1);
  overflow: hidden;
}

.asset-card::before,
.cockpit-card::before {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 184, 107, 0.52), rgba(123, 92, 255, 0.38), transparent);
}

.asset-card span,
.cockpit-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--rose));
  font-size: 13px;
  font-weight: 900;
}

.asset-card p,
.asset-card em,
.cockpit-card p {
  color: rgba(23, 21, 50, 0.72);
}

.asset-card em {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-style: normal;
}

.cockpit-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(123, 92, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 92% 34%, rgba(255, 111, 174, 0.1), transparent 26rem);
}

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

.cockpit-card {
  min-height: 250px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(247, 244, 255, 0.09), rgba(247, 244, 255, 0.045)),
    rgba(7, 10, 31, 0.68);
  border-color: var(--line);
}

.cockpit-card p {
  color: var(--text-soft);
}

.scenario-section .split {
  align-items: start;
}

.question-nebula {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 360px;
  align-content: center;
  padding: 30px;
  border: 1px solid #ded6ff;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 24%, rgba(123, 92, 255, 0.16), transparent 13rem),
    radial-gradient(circle at 72% 60%, rgba(255, 184, 107, 0.18), transparent 12rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 58px rgba(7, 10, 31, 0.12);
  overflow: hidden;
}

.question-nebula::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: conic-gradient(from 120deg, transparent, rgba(123, 92, 255, 0.12), rgba(255, 184, 107, 0.18), transparent);
  filter: blur(18px);
}

.question-nebula span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 10px 13px;
  border: 1px solid rgba(123, 92, 255, 0.22);
  border-radius: 999px;
  color: #171532;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(7, 10, 31, 0.08);
  font-weight: 800;
  font-size: 14px;
}

.report-preview {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(123, 92, 255, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.section-light .report-preview {
  color: #171532;
  background:
    radial-gradient(circle at 16% 0%, rgba(123, 92, 255, 0.12), transparent 18rem),
    radial-gradient(circle at 96% 20%, rgba(255, 184, 107, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.82);
  border-color: #ded6ff;
  box-shadow: 0 22px 58px rgba(7, 10, 31, 0.14);
}

.section-light .report-preview p,
.section-light .report-box span {
  color: rgba(23, 21, 50, 0.72);
}

.report-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.gem-score {
  font-size: 62px;
  line-height: 1;
  color: var(--gold);
  font-weight: 900;
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.report-box {
  padding: 16px;
}

.report-box strong {
  display: block;
  color: var(--green-2);
  font-size: 28px;
}

.report-box span {
  color: var(--text-soft);
  font-size: 13px;
}

.bubble-chart {
  position: relative;
  height: 290px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 25% 33.33%;
  overflow: hidden;
}

.section-light .bubble-chart {
  border-color: #ded6ff;
  background:
    linear-gradient(rgba(123, 92, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 92, 255, 0.11) 1px, transparent 1px),
    rgba(255, 255, 255, 0.44);
  background-size: 25% 33.33%;
}

.bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: var(--size);
  height: var(--size);
  left: var(--x);
  top: var(--y);
  color: var(--ink);
  background: rgba(255, 184, 107, 0.78);
  border-radius: 50%;
  font-weight: 900;
}

.bubble.main {
  color: var(--white);
  background: rgba(123, 92, 255, 0.64);
  box-shadow: 0 0 38px rgba(123, 92, 255, 0.3);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
}

.timeline-item .num {
  margin-bottom: 0;
}

.page-hero {
  padding: 148px 0 82px;
  min-height: 52vh;
  display: grid;
  align-items: end;
}

.page-hero p {
  max-width: 780px;
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--green-2);
}

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

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

.stat-grid .stat {
  min-height: 152px;
}

.metric-framework {
  scroll-margin-top: 82px;
}

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

.metric-framework-card {
  position: relative;
  min-height: 246px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(123, 92, 255, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 140, 255, 0.14), transparent 13rem),
    linear-gradient(145deg, rgba(17, 19, 53, 0.98), rgba(5, 7, 22, 0.97));
  box-shadow: 0 20px 50px rgba(7, 10, 31, 0.14), 0 0 34px rgba(123, 92, 255, 0.08) inset;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.metric-framework-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 140, 255, 0.68), rgba(255, 183, 101, 0.76), transparent);
}

.metric-framework-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 183, 101, 0.46);
  box-shadow: 0 26px 60px rgba(7, 10, 31, 0.2), 0 0 42px rgba(123, 92, 255, 0.13) inset;
}

.metric-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.metric-index {
  color: rgba(255, 183, 101, 0.92);
  font-size: 13px;
  font-weight: 900;
}

.metric-code {
  color: rgba(167, 163, 198, 0.84);
  font-size: 11px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.metric-framework-card h3 {
  margin-bottom: 14px;
  color: var(--star-white);
  font-size: 24px;
}

.metric-framework-card p,
.section-light .metric-framework-card p {
  margin: 0;
  color: rgba(245, 243, 255, 0.72);
  line-height: 1.75;
}

.metric-summary {
  margin-top: 18px;
  font-size: 15px;
}

.metric-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 1080px) {
  .metric-framework-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .metric-framework-grid {
    grid-template-columns: 1fr;
  }

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

  .metric-card-top {
    margin-bottom: 22px;
  }

  .metric-section-actions {
    display: grid;
  }
}

.wide-card {
  grid-column: span 2;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.data-table th,
.data-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  text-align: left;
}

.data-table th {
  color: var(--green-2);
  background: rgba(123, 92, 255, 0.08);
}

.section-light .data-table {
  border-color: #ded6ff;
}

.section-light .data-table th,
.section-light .data-table td {
  border-color: #ded6ff;
  color: rgba(23, 21, 50, 0.74);
}

.platform-bars {
  display: grid;
  gap: 16px;
}

.platform-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 64px;
  gap: 14px;
  align-items: center;
}

.platform-row span {
  color: var(--text-soft);
}

.platform-row b {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.platform-row b::after {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

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

.industry-card ul,
.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.industry-card li,
.check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
}

.industry-card li + li,
.check-list li + li {
  margin-top: 9px;
}

.industry-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.section-light .industry-card li,
.section-light .check-list li {
  color: rgba(23, 21, 50, 0.72);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    radial-gradient(circle at 18% 34%, rgba(123, 92, 255, 0.24), transparent 30rem),
    radial-gradient(circle at 76% 24%, rgba(255, 184, 107, 0.16), transparent 26rem),
    linear-gradient(135deg, #080a22, #20164b);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.site-footer {
  padding: 54px 0 28px;
  background: #050716;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  gap: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.footer-logo > span {
  display: grid;
  gap: 2px;
  line-height: 1.2;
}

.footer-logo small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-col h4 {
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.footer-bottom .icp-link {
  flex: 0 0 auto;
  color: inherit;
}

.footer-bottom .icp-link:hover,
.footer-bottom .icp-link:focus-visible {
  color: var(--star-gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 42px;
}

.contact-panel,
.form-panel {
  padding: 26px;
}

.contact-panel dl {
  margin: 0;
}

.contact-panel div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-panel dt {
  color: var(--green-2);
  font-weight: 900;
}

.contact-panel dd {
  margin: 5px 0 0;
  color: var(--text-soft);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quote-panel {
  padding: 28px;
}

.quote-panel blockquote {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.45;
}

.quote-panel cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
}

.logo-showcase {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: radial-gradient(circle at center, rgba(123, 92, 255, 0.18), transparent 58%);
}

.logo-showcase img {
  width: min(78%, 430px);
}

@media (max-width: 1080px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 10, 31, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: var(--radius);
  }

  .nav-toggle {
    display: block;
  }

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

  .hero-layout,
  .split,
  .cta-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .galaxy-layout {
    gap: 34px;
  }

  .hero-aside {
    min-height: auto;
  }

  .signal-console {
    max-width: 560px;
  }

  .card-grid,
  .industry-grid,
  .asset-matrix,
  .cockpit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-galaxy {
    min-height: 500px;
  }

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

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

@media (max-width: 720px) {
  .container,
  .nav-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand strong {
    font-size: 15px;
  }

  .brand > span {
    display: block;
  }

  .brand > span > span {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

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

  .galaxy-hero {
    padding-bottom: 58px;
  }

  .galaxy-vignette {
    background:
      linear-gradient(180deg, rgba(5, 7, 22, 0.96) 0%, rgba(7, 10, 31, 0.76) 50%, rgba(5, 7, 22, 0.94) 100%),
      radial-gradient(circle at 52% 34%, transparent 0%, rgba(7, 10, 31, 0.34) 45%, rgba(5, 7, 22, 0.92) 100%);
  }

  .hero-copy,
  .page-hero p {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .card-grid,
  .asset-matrix,
  .cockpit-grid,
  .pillar-grid,
  .industry-grid,
  .report-metrics,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

  .hero-aside {
    min-height: auto;
  }

  .signal-console {
    padding: 18px;
  }

  .growth-galaxy {
    min-height: 430px;
  }

  .galaxy-core {
    width: 146px;
  }

  .orbit-node {
    font-size: 11px;
  }

  .node-a { left: 50%; top: 10%; }
  .node-b { left: 6%; top: 28%; }
  .node-c { right: 5%; top: 44%; }
  .node-d { left: 7%; bottom: 24%; }
  .node-e { right: 13%; bottom: 13%; }
  .node-f { left: 40%; bottom: 5%; }

  .asset-card,
  .cockpit-card {
    min-height: auto;
  }

  .question-nebula {
    min-height: auto;
    padding: 20px;
  }

  .score-orb {
    width: 150px;
  }

  .score-orb strong {
    font-size: 42px;
  }

  .ai-network {
    height: 160px;
  }

  .report-top,
  .platform-row,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .report-top {
    display: grid;
  }

  .gem-score {
    font-size: 52px;
  }

  .section,
  .cta-band {
    padding: 66px 0;
  }

  .page-hero {
    padding: 124px 0 62px;
  }
}

/* Home star river hero */

body[data-page="home"] {
  background:
    radial-gradient(circle at 18% 4%, rgba(123, 92, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 88% 10%, rgba(255, 183, 101, 0.14), transparent 28rem),
    linear-gradient(180deg, var(--space-0), var(--space-1) 42%, var(--space-2));
  color: var(--star-white);
}

.star-river-home {
  position: relative;
  min-height: 100vh;
  padding: clamp(118px, 13vh, 156px) 0 clamp(72px, 10vh, 112px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 28%, rgba(216, 140, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 75% 20%, rgba(123, 92, 255, 0.18), transparent 32rem),
    linear-gradient(132deg, var(--space-0) 0%, var(--space-1) 54%, var(--space-2) 100%);
}

.star-river-home::before,
.star-river-home::after {
  display: none !important;
}

.star-river-canvas,
.star-river-aurora,
.star-river-grid,
.star-river-glow,
.star-river-home .galaxy-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star-river-canvas {
  z-index: 0;
  width: 100%;
  height: 100%;
}

.star-river-aurora {
  z-index: 1;
  opacity: 0.9;
  background:
    linear-gradient(34deg, transparent 7%, rgba(123, 92, 255, 0.04) 26%, rgba(216, 140, 255, 0.18) 43%, rgba(255, 183, 101, 0.12) 54%, rgba(123, 92, 255, 0.07) 66%, transparent 82%),
    linear-gradient(38deg, transparent 24%, rgba(245, 243, 255, 0.06) 46%, transparent 64%),
    radial-gradient(ellipse at 72% 28%, rgba(216, 140, 255, 0.18), transparent 34rem);
  filter: blur(12px);
  transform: translate3d(var(--river-x, 0px), var(--river-y, 0px), 0);
  animation: starRiverDrift 22s ease-in-out infinite alternate;
}

.star-river-grid {
  z-index: 2;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(167, 163, 198, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 163, 198, 0.1) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 68% 42%, #000 0, transparent 70%);
}

.star-river-glow {
  z-index: 3;
  background:
    radial-gradient(circle at 10% 76%, rgba(123, 92, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 82% 34%, rgba(255, 183, 101, 0.16), transparent 24rem),
    linear-gradient(90deg, rgba(5, 7, 22, 0.64) 0%, rgba(5, 7, 22, 0.3) 44%, rgba(5, 7, 22, 0.08) 100%);
}

.star-river-home .galaxy-vignette {
  z-index: 4;
  background:
    radial-gradient(ellipse at 64% 40%, transparent 0%, rgba(5, 7, 22, 0.08) 56%, rgba(5, 7, 22, 0.5) 100%),
    linear-gradient(180deg, rgba(5, 7, 22, 0.03) 0%, rgba(5, 7, 22, 0.36) 100%);
}

.star-river-home .hero-layout {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.star-river-home .hero-content {
  max-width: 760px;
  padding: 0;
  animation: heroRise 1s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.star-river-home .eyebrow {
  color: rgba(255, 183, 101, 0.88);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.star-river-home .hero-brand-kicker {
  color: rgba(245, 243, 255, 0.9);
  font-size: 13px;
  text-shadow: 0 0 24px rgba(216, 140, 255, 0.3);
}

.star-river-home h1 {
  margin: 18px 0 24px;
  color: var(--star-white);
  font-size: clamp(52px, 7.4vw, 94px);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 0 38px rgba(123, 92, 255, 0.34), 0 18px 58px rgba(5, 7, 22, 0.6);
}

.star-river-home h1 span {
  display: block;
}

.star-river-home h1 span:last-child {
  background: linear-gradient(92deg, #fff 0%, #d88cff 34%, #ffb765 76%, #f5f3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.star-river-home .hero-copy {
  max-width: 650px;
  color: rgba(245, 243, 255, 0.78);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.86;
  text-shadow: 0 2px 22px rgba(5, 7, 22, 0.9);
}

.star-river-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.star-river-home .button {
  border-radius: 999px;
  min-height: 48px;
  border: 1px solid rgba(245, 243, 255, 0.18);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.star-river-home .button-primary {
  background:
    linear-gradient(135deg, rgba(255, 183, 101, 0.96), rgba(216, 140, 255, 0.9) 48%, rgba(123, 92, 255, 0.96));
  color: #090b1f;
  box-shadow: 0 18px 54px rgba(123, 92, 255, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.star-river-home .button-secondary {
  color: var(--star-white);
  background: rgba(12, 14, 38, 0.56);
  box-shadow: 0 16px 42px rgba(5, 7, 22, 0.28), 0 0 36px rgba(216, 140, 255, 0.08) inset;
}

.star-river-home .button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 183, 101, 0.45);
  box-shadow: 0 20px 62px rgba(123, 92, 255, 0.32), 0 0 34px rgba(255, 183, 101, 0.18);
}

.star-river-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.star-river-home .hero-stats .stat {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  padding: 22px 20px;
  border: 1px solid rgba(245, 243, 255, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(245, 243, 255, 0.12), rgba(245, 243, 255, 0.04)),
    rgba(11, 13, 36, 0.54);
  box-shadow: 0 18px 54px rgba(5, 7, 22, 0.3), 0 0 46px rgba(123, 92, 255, 0.08) inset;
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.star-river-home .hero-stats .stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, transparent 0%, rgba(216, 140, 255, 0.9) 34%, rgba(255, 183, 101, 0.78) 50%, transparent 72%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.star-river-home .hero-stats .stat strong {
  display: block;
  color: var(--star-white);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.star-river-home .hero-stats .stat span {
  display: block;
  margin-top: 14px;
  color: rgba(167, 163, 198, 0.95);
  line-height: 1.55;
}

.star-river-home .hero-stats .stat:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 140, 255, 0.4);
  box-shadow: 0 26px 72px rgba(5, 7, 22, 0.42), 0 0 54px rgba(123, 92, 255, 0.18);
}

.star-river-home .hero-stats .stat:hover::before {
  opacity: 1;
}

.star-river-home .hero-aside {
  justify-self: end;
  width: min(100%, 480px);
  perspective: 1200px;
}

.star-river-home .signal-console {
  position: relative;
  overflow: hidden;
  margin-inline: auto;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(245, 243, 255, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(245, 243, 255, 0.14), rgba(245, 243, 255, 0.035)),
    rgba(7, 9, 29, 0.62);
  box-shadow:
    0 38px 92px rgba(5, 7, 22, 0.54),
    0 0 90px rgba(123, 92, 255, 0.2),
    0 0 64px rgba(255, 183, 101, 0.08) inset;
  backdrop-filter: blur(24px);
  transform: translate3d(var(--card-x, 0px), var(--card-y, 0px), 0);
  animation: consoleFloat 8s ease-in-out infinite;
  will-change: transform;
}

.star-river-home .signal-console::before {
  content: "";
  position: absolute;
  inset: -26%;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 183, 101, 0.22), transparent 18rem),
    radial-gradient(circle at 18% 82%, rgba(216, 140, 255, 0.24), transparent 18rem),
    conic-gradient(from 120deg, transparent, rgba(123, 92, 255, 0.16), transparent, rgba(255, 183, 101, 0.12), transparent);
  opacity: 0.78;
  filter: blur(20px);
  animation: consoleAura 18s linear infinite;
}

.star-river-home .signal-console::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background-image:
    linear-gradient(rgba(167, 163, 198, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 163, 198, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.18;
  pointer-events: none;
}

.star-river-home .signal-console > * {
  position: relative;
  z-index: 1;
}

.star-river-home .console-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.star-river-home .console-kicker {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 183, 101, 0.86);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.star-river-home .console-top strong {
  color: var(--star-white);
  font-size: 21px;
}

.star-river-home .console-state {
  flex: 0 0 auto;
  padding: 7px 12px;
  border: 1px solid rgba(255, 183, 101, 0.28);
  border-radius: 999px;
  color: rgba(255, 183, 101, 0.92);
  background: rgba(255, 183, 101, 0.08);
  font-size: 12px;
}

.star-river-home .score-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  margin: 30px auto 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 243, 255, 0.13) 0 31%, transparent 32%),
    conic-gradient(from 180deg, rgba(255, 183, 101, 0.96), rgba(216, 140, 255, 0.92), rgba(123, 92, 255, 0.96), rgba(255, 183, 101, 0.96));
  box-shadow: 0 0 54px rgba(123, 92, 255, 0.22), 0 0 70px rgba(255, 183, 101, 0.1) inset;
  animation: scoreBreathe 4.8s ease-in-out infinite;
}

.star-river-home .score-orb::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: rgba(7, 9, 29, 0.9);
  box-shadow: 0 0 34px rgba(5, 7, 22, 0.75) inset;
}

.star-river-home .score-orb::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(245, 243, 255, 0.88) 18deg, transparent 46deg, transparent 360deg);
  filter: blur(0.3px);
  animation: ringSweep 7s linear infinite;
  opacity: 0.78;
}

.star-river-home .score-orbit {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(216, 140, 255, 0.22);
  border-radius: 50%;
  transform: rotate(var(--r, 0deg)) scale(var(--s, 1));
}

.star-river-home .orbit-one {
  --r: 16deg;
  --s: 1.08;
}

.star-river-home .orbit-two {
  --r: -24deg;
  --s: 1.18;
  border-color: rgba(255, 183, 101, 0.18);
}

.star-river-home .orbit-three {
  --r: 58deg;
  --s: 0.88;
  border-color: rgba(245, 243, 255, 0.16);
}

.star-river-home .score-orb span,
.star-river-home .score-orb strong,
.star-river-home .score-orb em {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
}

.star-river-home .score-orb span {
  align-self: end;
  color: rgba(255, 183, 101, 0.88);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.star-river-home .score-orb strong {
  color: var(--star-white);
  font-size: 56px;
  line-height: 0.9;
}

.star-river-home .score-orb small {
  margin-left: 2px;
  color: var(--star-muted);
  font-size: 16px;
}

.star-river-home .score-orb em {
  align-self: start;
  color: rgba(167, 163, 198, 0.92);
  font-style: normal;
  font-size: 13px;
}

.star-river-home .metric-stack {
  display: grid;
  gap: 13px;
}

.star-river-home .metric-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
  color: rgba(245, 243, 255, 0.78);
  font-size: 13px;
}

.star-river-home .metric-row em {
  color: var(--star-white);
  font-style: normal;
  text-align: right;
}

.star-river-home .metric-bar {
  position: relative;
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(245, 243, 255, 0.1);
}

.star-river-home .metric-bar span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(123, 92, 255, 0.85), rgba(216, 140, 255, 0.95));
  box-shadow: 0 0 18px rgba(216, 140, 255, 0.32);
}

.star-river-home .metric-bar.gold span {
  background: linear-gradient(90deg, rgba(123, 92, 255, 0.78), rgba(255, 183, 101, 0.96));
  box-shadow: 0 0 18px rgba(255, 183, 101, 0.25);
}

.star-river-home .ai-network {
  position: relative;
  height: 210px;
  margin: 28px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(245, 243, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 45%, rgba(123, 92, 255, 0.18), transparent 8rem),
    linear-gradient(rgba(167, 163, 198, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 163, 198, 0.07) 1px, transparent 1px),
    rgba(5, 7, 22, 0.34);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.star-river-home .network-lines {
  position: absolute;
  inset: 10px 14px;
  width: calc(100% - 28px);
  height: calc(100% - 20px);
  overflow: visible;
}

.star-river-home .network-lines line {
  stroke: rgba(216, 140, 255, 0.34);
  stroke-width: 1;
  stroke-dasharray: 6 10;
}

.star-river-home .network-node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(245, 243, 255, 0.16);
  border-radius: 999px;
  color: rgba(245, 243, 255, 0.88);
  background: rgba(12, 14, 38, 0.76);
  box-shadow: 0 12px 28px rgba(5, 7, 22, 0.32), 0 0 26px rgba(123, 92, 255, 0.12) inset;
  font-size: 12px;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.star-river-home .network-core {
  left: 50%;
  top: 50%;
  min-width: 116px;
  min-height: 44px;
  color: var(--star-white);
  background: linear-gradient(135deg, rgba(123, 92, 255, 0.52), rgba(255, 183, 101, 0.18));
  border-color: rgba(255, 183, 101, 0.42);
  box-shadow: 0 14px 34px rgba(5, 7, 22, 0.4), 0 0 34px rgba(123, 92, 255, 0.24), 0 0 22px rgba(255, 183, 101, 0.12) inset;
  transform: translate(-50%, -50%);
}

.star-river-home .node-chatgpt {
  left: 6%;
  top: 13%;
}

.star-river-home .node-deepseek {
  left: 39%;
  top: 4%;
}

.star-river-home .node-google {
  right: 5%;
  top: 19%;
}

.star-river-home .node-doubao {
  left: 13%;
  bottom: 15%;
}

.star-river-home .node-kimi {
  right: 9%;
  bottom: 13%;
}

.star-river-home .network-pulse {
  position: absolute;
  z-index: 3;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--star-gold);
  box-shadow: 0 0 18px rgba(255, 183, 101, 0.7);
  opacity: 0.82;
}

.star-river-home .pulse-a {
  animation: networkPulseA 5.8s linear infinite;
}

.star-river-home .pulse-b {
  animation: networkPulseB 6.6s linear infinite;
}

.star-river-home .pulse-c {
  animation: networkPulseC 7.2s linear infinite;
}

.star-river-home .signal-console > p {
  color: rgba(167, 163, 198, 0.9);
  line-height: 1.7;
  margin-bottom: 0;
}

@keyframes starRiverDrift {
  from {
    transform: translate3d(-1.4%, 1.2%, 0) scale(1);
  }
  to {
    transform: translate3d(1.3%, -1.1%, 0) scale(1.03);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes consoleFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

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

@keyframes scoreBreathe {
  0%,
  100% {
    box-shadow: 0 0 54px rgba(123, 92, 255, 0.22), 0 0 70px rgba(255, 183, 101, 0.1) inset;
  }
  50% {
    box-shadow: 0 0 72px rgba(123, 92, 255, 0.32), 0 0 86px rgba(255, 183, 101, 0.14) inset;
  }
}

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

@keyframes networkPulseA {
  0% {
    left: 50%;
    top: 49%;
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  82% {
    opacity: 0.9;
  }
  100% {
    left: 15%;
    top: 23%;
    opacity: 0;
  }
}

@keyframes networkPulseB {
  0% {
    left: 50%;
    top: 50%;
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  82% {
    opacity: 0.9;
  }
  100% {
    left: 79%;
    top: 29%;
    opacity: 0;
  }
}

@keyframes networkPulseC {
  0% {
    left: 50%;
    top: 51%;
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  82% {
    opacity: 0.9;
  }
  100% {
    left: 75%;
    top: 76%;
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .star-river-home .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .star-river-home .hero-aside {
    justify-self: center;
    width: min(100%, 560px);
  }
}

.not-found-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(123, 92, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 82% 34%, rgba(255, 183, 101, 0.13), transparent 24rem),
    linear-gradient(145deg, var(--space-0), var(--space-1) 56%, var(--space-2));
  color: var(--star-white);
}

.not-found-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 132px 0 72px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.not-found-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -16%;
  background:
    radial-gradient(circle at 18% 32%, rgba(245, 243, 255, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 18%, rgba(216, 140, 255, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 68%, rgba(255, 183, 101, 0.64) 0 1px, transparent 2px),
    linear-gradient(124deg, transparent 20%, rgba(123, 92, 255, 0.13) 43%, rgba(216, 140, 255, 0.2) 49%, rgba(255, 183, 101, 0.1) 54%, transparent 72%);
  background-size: 92px 92px, 126px 126px, 158px 158px, auto;
  transform: rotate(-5deg);
}

.not-found-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(86vw, 960px);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 140, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(123, 92, 255, 0.035),
    0 0 0 180px rgba(255, 183, 101, 0.018),
    0 0 110px rgba(123, 92, 255, 0.16) inset;
}

.not-found-content {
  width: min(calc(100% - 40px), 820px);
  text-align: center;
}

.not-found-code {
  display: block;
  margin-bottom: 18px;
  background: linear-gradient(100deg, #f5f3ff 8%, #d88cff 48%, #ffb765 84%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(92px, 18vw, 190px);
  font-weight: 800;
  line-height: 0.82;
  text-shadow: 0 0 70px rgba(123, 92, 255, 0.16);
}

.not-found-content h1 {
  margin: 0;
  color: var(--star-white);
  font-size: clamp(32px, 5vw, 56px);
}

.not-found-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(245, 243, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.not-found-page .site-footer {
  border-top-color: rgba(245, 243, 255, 0.08);
}

@media (max-width: 720px) {
  .not-found-hero {
    min-height: auto;
    padding: 124px 0 72px;
  }

  .not-found-actions {
    align-items: stretch;
  }

  .not-found-actions .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .star-river-home {
    min-height: auto;
    padding: 108px 0 62px;
  }

  .star-river-glow {
    background:
      radial-gradient(circle at 36% 18%, rgba(123, 92, 255, 0.18), transparent 20rem),
      linear-gradient(180deg, rgba(5, 7, 22, 0.78) 0%, rgba(5, 7, 22, 0.34) 70%, rgba(5, 7, 22, 0.7) 100%);
  }

  .star-river-home .hero-layout {
    gap: 34px;
  }

  .star-river-home h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .star-river-home .hero-copy {
    font-size: 16px;
    line-height: 1.75;
  }

  .star-river-home .hero-actions {
    align-items: stretch;
  }

  .star-river-home .button {
    width: 100%;
    justify-content: center;
  }

  .star-river-home .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .star-river-home .hero-stats .stat {
    min-height: auto;
    padding: 18px 18px;
  }

  .star-river-home .signal-console {
    width: 100%;
    max-width: 100%;
    border-radius: 24px;
    padding: 22px 16px;
  }

  .star-river-home .score-orb {
    width: 188px;
    height: 188px;
  }

  .star-river-home .score-orb strong {
    font-size: 46px;
  }

  .star-river-home .metric-row {
    grid-template-columns: 78px minmax(0, 1fr) 38px;
    gap: 10px;
  }

  .star-river-home .ai-network {
    height: 214px;
  }

  .star-river-home .network-node {
    min-width: 68px;
    padding: 7px 9px;
    font-size: 11px;
  }

  .star-river-home .network-core {
    min-width: 104px;
  }

  .star-river-home .node-chatgpt {
    left: 4%;
    top: 14%;
  }

  .star-river-home .node-deepseek {
    left: 37%;
    top: 4%;
  }

  .star-river-home .node-google {
    right: 3%;
    top: 18%;
  }

  .star-river-home .node-doubao {
    left: 8%;
    bottom: 13%;
  }

  .star-river-home .node-kimi {
    right: 5%;
    bottom: 12%;
  }
}

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