* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #070b1f;
  --panel: rgba(12, 20, 48, .82);
  --panel-2: rgba(18, 30, 72, .9);
  --card: rgba(255, 255, 255, .08);
  --line: rgba(125, 211, 252, .22);
  --ink: #f8fbff;
  --muted: #a8bed8;
  --blue: #60a5fa;
  --cyan: #22d3ee;
  --green: #34d399;
  --violet: #a78bfa;
  --orange: #fbbf24;
  --radius: 26px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .38);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(96, 165, 250, .09) 1px, transparent 1px),
    linear-gradient(30deg, rgba(167, 139, 250, .07) 1px, transparent 1px),
    radial-gradient(circle at 16% 14%, rgba(34, 211, 238, .24), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(167, 139, 250, .26), transparent 30%),
    radial-gradient(circle at 58% 72%, rgba(16, 185, 129, .12), transparent 26%),
    linear-gradient(135deg, #020617, var(--bg) 46%, #10123a);
  background-size: 64px 64px, 64px 64px, auto, auto, auto, auto;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 8%, rgba(96, 165, 250, .2) 8.2%, transparent 8.5%),
    linear-gradient(300deg, transparent 66%, rgba(167, 139, 250, .18) 66.2%, transparent 66.6%),
    radial-gradient(circle at 70% 36%, rgba(34, 211, 238, .18), transparent 14%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(125, 211, 252, .18);
  background: rgba(3, 7, 18, .76);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.03em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .5);
  border-radius: 16px;
  color: #07111f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 36px rgba(34, 211, 238, .34);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #dbeafe;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a,
.lang {
  padding: 9px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #07111f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.lang {
  border: 1px solid var(--line);
  color: #dbeafe;
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: 84px 0;
}

.hero {
  padding: 92px 0 68px;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(125, 211, 252, .35);
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(14, 165, 233, .1);
  font-size: 13px;
  font-weight: 950;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -.045em;
}

h1 {
  max-width: 840px;
  font-size: clamp(42px, 7vw, 78px);
  text-shadow: 0 0 42px rgba(56, 189, 248, .16);
}

h2 {
  font-size: clamp(30px, 4.4vw, 52px);
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 780px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #03111f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 36px rgba(34, 211, 238, .28);
}

.btn-light {
  color: #e0f2fe;
  border-color: rgba(125, 211, 252, .3);
  background: rgba(255, 255, 255, .08);
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.trust-card,
.card,
.feature,
.platform,
.protocol,
.step,
.faq,
.download-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .055));
  box-shadow: 0 18px 54px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.trust-card {
  padding: 16px;
}

.trust-card strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.trust-card span,
.muted {
  color: var(--muted);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  border: 1px solid rgba(125, 211, 252, .28);
  border-radius: 34px;
  box-shadow: var(--shadow), 0 0 60px rgba(56, 189, 248, .18);
}

.status-card {
  position: absolute;
  left: -18px;
  bottom: 28px;
  width: min(290px, 72%);
  padding: 18px;
  border: 1px solid rgba(125, 211, 252, .35);
  border-radius: 22px;
  background: rgba(6, 17, 31, .78);
  box-shadow: 0 0 42px rgba(34, 211, 238, .18);
  backdrop-filter: blur(18px);
}

.status-line {
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--violet));
}

.section-head {
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature,
.platform,
.protocol,
.step,
.faq,
.download-card {
  padding: 24px;
}

.platform-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(125, 211, 252, .28);
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(56, 189, 248, .1);
  font-size: 12px;
  font-weight: 900;
}

.ok {
  color: #bbf7d0;
  background: rgba(16, 185, 129, .12);
}

.feature {
  min-height: 230px;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #03111f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 950;
  box-shadow: 0 0 30px rgba(34, 211, 238, .22);
}

.feature p,
.platform p,
.protocol p,
.step p,
.faq p,
.download-card p {
  margin-top: 12px;
}

.code-card {
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, .28);
  border-radius: var(--radius);
  background: rgba(0, 6, 18, .9);
  box-shadow: var(--shadow);
}

.code-head {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(125, 211, 252, .16);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fb7185;
}

.dot:nth-child(2) {
  background: #fbbf24;
}

.dot:nth-child(3) {
  background: #34d399;
}

pre {
  overflow-x: auto;
  padding: 22px;
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #cbd5e1;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

.download-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
  border: 1px solid rgba(125, 211, 252, .22);
  border-radius: 20px;
}

.step-num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #03111f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 950;
}

.notice {
  padding: 16px 18px;
  border: 1px solid rgba(251, 191, 36, .45);
  border-radius: 18px;
  color: #fde68a;
  background: rgba(251, 191, 36, .08);
}

.cta {
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(125, 211, 252, .3);
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(56, 189, 248, .12) 1px, transparent 1px),
    radial-gradient(circle at 16% 28%, rgba(34, 211, 238, .28), transparent 30%),
    linear-gradient(135deg, #07111f, #082f49 58%, #0f172a);
  background-size: 40px 40px, auto, auto;
  box-shadow: var(--shadow), 0 0 56px rgba(56, 189, 248, .14);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 42px;
}

.cta p {
  margin-top: 12px;
  color: #dbeafe;
}

.page-hero {
  padding: 74px 0 42px;
}

footer {
  padding: 56px 0 34px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 24px;
}

.footer-col h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 16px;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.copyright {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .trust,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .status-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}
