:root {
  --bg: #f5f3ff;
  --surface: #ffffff;
  --ink: #1e1b2e;
  --sub: #6b6384;
  --line: #e8e4f6;
  --brand: #7c3aed;
  --brand-2: #5b21b6;
  --ok: #16a34a;
  --warn: #ea580c;
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--ink);
  background:
    radial-gradient(1100px 460px at 110% -10%, rgba(124, 58, 237, 0.14) 0%, transparent 58%),
    radial-gradient(800px 380px at -10% -12%, rgba(91, 33, 182, 0.12) 0%, transparent 56%),
    var(--bg);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(245, 243, 255, 0.9);
  border-bottom: 1px solid rgba(232, 228, 246, 0.92);
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.logo-img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.22);
}

.links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--sub);
  font-size: 14px;
}

.links a {
  padding: 5px 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.15s ease;
}

.links a:hover {
  color: var(--brand);
  border-bottom-color: rgba(124, 58, 237, 0.28);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px 20px 48px;
}

.hero {
  border: 1px solid #d8d2f0;
  border-radius: 20px;
  background: linear-gradient(120deg, #faf8ff 0%, #f0ebff 46%, #f8f6ff 100%);
  box-shadow: 0 18px 46px rgba(30, 27, 46, 0.08);
  padding: 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: 0.4px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--brand), #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  margin: 0 0 14px;
  color: var(--sub);
  font-size: 15px;
}

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

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.24);
}

.btn.ghost {
  border-color: #c7bef4;
  color: var(--brand-2);
  background: rgba(255, 255, 255, 0.78);
}

.hero-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d8d2f0;
  border-radius: 12px;
  padding: 10px 12px;
}

.stat b {
  display: block;
  font-size: 17px;
  color: var(--brand-2);
}

.hero-visual {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  border: 1px solid #d8d2f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 290px;
  font-size: 80px;
}

.section {
  margin-top: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(30, 27, 46, 0.05);
  padding: 22px;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.section p {
  color: var(--sub);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature {
  border: 1px solid #e4e0f8;
  background: linear-gradient(180deg, #ffffff, #fbf9ff);
  border-radius: 12px;
  padding: 14px;
}

.feature .icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.feature p {
  margin: 0;
  font-size: 14px;
}

.badge {
  display: inline-block;
  font-size: 12px;
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 700;
}

.badge.ok {
  color: #14532d;
  background: #dcfce7;
}

.badge.wait {
  color: #9a3412;
  background: #ffedd5;
}

.docs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.doc {
  border: 1px dashed #c4bee4;
  border-radius: 12px;
  padding: 12px 14px;
  transition: all 0.18s ease;
}

.doc:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
}

.doc small {
  color: var(--sub);
}

.footer {
  max-width: var(--maxw);
  margin: 22px auto 36px;
  color: #7a7490;
  font-size: 13px;
  padding: 0 20px;
}

.doc-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 26px 20px 40px;
}

.doc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(30, 27, 46, 0.05);
}

.doc-card h1 {
  margin-top: 0;
}

.doc-card h2 {
  margin-top: 20px;
}

.tag {
  font-size: 12px;
  color: #5b21b6;
  background: #ede9fe;
  border-radius: 999px;
  padding: 3px 10px;
}

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

.step {
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d8d2f0;
  border-radius: 12px;
  padding: 16px 10px;
}

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #a855f7);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 8px;
}

.step h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.step p {
  margin: 0;
  font-size: 13px;
  color: var(--sub);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.price-card {
  border: 1px solid #e4e0f8;
  background: linear-gradient(180deg, #ffffff, #fbf9ff);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.price-card.highlight {
  border-color: var(--brand);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.15);
}

.price-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.price-card .price {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-2);
}

.price-card .price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--sub);
}

.price-card .desc {
  margin-top: 6px;
  font-size: 13px;
  color: var(--sub);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .hero h1 {
    font-size: 36px;
  }

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

  .grid-3,
  .pricing {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .docs {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .nav {
    min-height: auto;
    padding: 10px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .links {
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 13px;
  }

  .wrap {
    padding: 18px 16px 36px;
  }

  .hero h1 {
    font-size: 30px;
  }

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