:root {
  --bg: #050914;
  --surface: rgba(14, 22, 42, 0.82);
  --surface-2: #101a32;
  --ink: #e8eefc;
  --muted: #93a0c0;
  --line: rgba(120, 160, 255, 0.16);
  --orbit: #3ee0ff;
  --orbit-2: #6aa8ff;
  --accent: #3ee0ff;
  --accent-2: #58f0c2;
  --ok: #3ddc97;
  --warn: #f0c75e;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --font: "Avenir Next", "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --mono: "Cascadia Mono", "Consolas", monospace;
  --max: 1140px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.68;
  font-size: 16px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(62, 224, 255, 0.16), transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(106, 168, 255, 0.12), transparent 30%),
    radial-gradient(circle at 10% 70%, rgba(88, 240, 194, 0.08), transparent 28%),
    linear-gradient(180deg, #050914 0%, #070d1c 45%, #050914 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image:
    radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 80px 120px, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 160px 70px, rgba(62, 224, 255, 0.7), transparent),
    radial-gradient(1px 1px at 240px 180px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 320px 40px, rgba(255, 255, 255, 0.55), transparent);
  background-size: 360px 220px;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 9, 20, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #fff, var(--orbit) 35%, #0b2748 70%);
  color: #041018;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(62, 224, 255, 0.45);
}

.logo-text span { color: var(--orbit); }

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
}

.lang-switch button.active {
  background: rgba(62, 224, 255, 0.14);
  color: var(--orbit);
  font-weight: 700;
}

.hero {
  position: relative;
  padding: 72px 0 56px;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(62, 224, 255, 0.06);
  color: var(--muted);
  font-size: 0.82rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 900;
  animation: fadeUp 0.8s ease both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--orbit), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 540px;
  animation: fadeUp 0.9s ease 0.05s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  animation: fadeUp 0.95s ease 0.1s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--orbit), #2aa8ff);
  color: #041018;
  box-shadow: 0 0 28px rgba(62, 224, 255, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--ink);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.orbit-stage {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
  animation: fadeUp 1s ease 0.08s both;
}

.orbit-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(62, 224, 255, 0.35);
  animation: spin 28s linear infinite;
}

.orbit-ring.r2 {
  inset: 20%;
  border-color: rgba(106, 168, 255, 0.35);
  animation-duration: 20s;
  animation-direction: reverse;
}

.orbit-ring.r3 {
  inset: 32%;
  border-style: solid;
  border-color: rgba(88, 240, 194, 0.22);
  animation-duration: 14s;
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orbit);
  box-shadow: 0 0 16px var(--orbit);
}

.orbit-ring .node:nth-child(1) { top: -6px; left: 50%; transform: translateX(-50%); }
.orbit-ring .node:nth-child(2) { bottom: 18%; right: -6px; background: var(--accent-2); box-shadow: 0 0 16px var(--accent-2); }
.orbit-ring .node:nth-child(3) { bottom: -6px; left: 28%; background: var(--orbit-2); box-shadow: 0 0 16px var(--orbit-2); }

.planet {
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(62, 224, 255, 0.35);
  box-shadow: 0 0 40px rgba(62, 224, 255, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.35);
}

.planet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-caption {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(232, 238, 252, 0.7);
  text-transform: uppercase;
}

.section { padding: 78px 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(16, 26, 50, 0.55), transparent);
}

.section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--orbit);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
  font-weight: 900;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
}

.grid-5,
.grid-3,
.grid-2,
.compat-grid,
.scene-grid {
  display: grid;
  gap: 14px;
}

.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.compat-grid { grid-template-columns: repeat(4, 1fr); }
.scene-grid { grid-template-columns: repeat(3, 1fr); }

.platform-card,
.feature-card,
.plan-card,
.step-card,
.scene-card,
.compat-item,
.faq-item,
.panel,
.dl-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.platform-card:hover,
.feature-card:hover,
.plan-card:hover,
.scene-card:hover,
.dl-card:hover {
  transform: translateY(-3px);
  border-color: rgba(62, 224, 255, 0.45);
  box-shadow: 0 0 28px rgba(62, 224, 255, 0.08);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orbit);
  box-shadow: 0 0 12px var(--orbit);
  margin-bottom: 12px;
}

.dot.alt { background: var(--accent-2); box-shadow: 0 0 12px var(--accent-2); }
.dot.blue { background: var(--orbit-2); box-shadow: 0 0 12px var(--orbit-2); }

.platform-card h3,
.feature-card h3,
.plan-card h3,
.step-card h3,
.scene-card h3,
.dl-card h3,
.compat-item h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 900;
}

.meta-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.meta-line span:last-child {
  color: var(--ink);
  text-align: right;
  font-weight: 700;
}

.status { color: var(--ok) !important; }

.feature-card p,
.scene-card p,
.compat-item p,
.step-card p,
.plan-card p,
.dl-card p,
.panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.flow-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
}

.flow-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #fff, var(--orbit) 40%, #14506a 80%);
  color: #041018;
  font-weight: 900;
}

.flow-list h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.panel-media { padding: 0; overflow: hidden; }

.panel-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.code-block {
  margin: 0;
  padding: 16px 18px;
  background: #070d1a;
  color: #d4dcf2;
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.7;
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.code-block .c { color: #7d8aab; }
.code-block .k { color: var(--orbit); }
.code-block .v { color: var(--accent-2); }

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.capability-list span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(62, 224, 255, 0.06);
  color: var(--muted);
  font-size: 0.82rem;
}

.plan-card .btn,
.dl-card .btn {
  margin-top: 14px;
  width: 100%;
}

.step-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--orbit);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.tips {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(240, 199, 94, 0.08);
  border: 1px solid rgba(240, 199, 94, 0.28);
  color: #f0d9a0;
}

.tips strong { color: var(--warn); }

.faq-list { display: grid; gap: 10px; }

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta { padding: 20px 0 10px; }

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 42px 28px;
  text-align: center;
  border: 1px solid rgba(62, 224, 255, 0.28);
  background:
    radial-gradient(circle at 20% 30%, rgba(62, 224, 255, 0.16), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(88, 240, 194, 0.12), transparent 35%),
    #0c152b;
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
}

.cta-panel p {
  margin: 10px auto 0;
  max-width: 520px;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.site-footer {
  margin-top: 40px;
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  background: #060b16;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 24px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.95rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer a:hover { color: var(--orbit); }

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.page-hero { padding: 56px 0 12px; }

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
}

.page-hero p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 640px;
}

.media-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.media-strip img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.inline-shot {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.inline-shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .compat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-grid,
  .how-grid,
  .grid-3,
  .grid-2,
  .scene-grid,
  .media-strip,
  .footer-grid { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: auto; padding: 48px 0; }
  .section { padding: 56px 0; }
}

@media (max-width: 560px) {
  .grid-5,
  .compat-grid { grid-template-columns: 1fr; }
  .container { width: min(var(--max), calc(100% - 24px)); }
}
