:root {
  --bg: #f6fbff;
  --bg-strong: #ffffff;
  --text: #16324f;
  --muted: #5f7891;
  --brand: #1f75ff;
  --brand-deep: #0f58cb;
  --accent: #ff8c2a;
  --line: #d5e8ff;
  --card: #ffffff;
  --white: #ffffff;
  --glow-blue: rgba(31, 117, 255, 0.28);
  --glow-orange: rgba(255, 140, 42, 0.3);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fcff 0%, #eef6ff 38%, #f7fbff 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid #dbeafe;
  box-shadow: 0 6px 18px rgba(15, 88, 203, 0.06);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 150px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #dbeafe;
  background: #fff;
}

.brand-note {
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 22px;
  color: #41627f;
}

.nav a:hover {
  color: var(--brand);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 22px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}

.btn-small {
  padding: 9px 16px;
  background: linear-gradient(120deg, var(--brand), var(--accent));
  color: var(--white);
  box-shadow: 0 8px 20px var(--glow-blue);
}

.btn-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px var(--glow-orange);
}

.btn-primary {
  position: relative;
  background: linear-gradient(120deg, var(--brand) 0%, #2f8bff 44%, var(--accent) 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(31, 117, 255, 0.3);
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 100%
  );
  transition: left 0.55s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(31, 117, 255, 0.35), 0 0 0 4px rgba(255, 140, 42, 0.16);
}

.btn-primary:hover::before {
  left: 150%;
}

.btn-ghost {
  border-color: #bed8ff;
  color: var(--brand);
  background: #ffffff;
}

.btn-ghost:hover {
  background: #eef5ff;
}

.hero {
  padding: 52px 0 48px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  right: 5%;
  top: 10px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(31, 117, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 4%;
  bottom: -20px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 140, 42, 0.13), transparent 72%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 26px;
  align-items: center;
}

.kicker {
  margin: 0 0 10px;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.06em;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  color: #0f2942;
}

.lead {
  margin: 16px 0 0;
  color: #4f6982;
  font-size: 18px;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li {
  padding: 7px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #cfe3ff;
  color: #305879;
  font-size: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-points li:hover {
  transform: translateY(-2px);
  border-color: #9ac7ff;
}

.hero-right {
  display: grid;
  gap: 14px;
}

.download-panel {
  background: var(--card);
  border: 1px solid #cfe3ff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(31, 117, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.download-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(31, 117, 255, 0.08), rgba(255, 140, 42, 0.08));
  pointer-events: none;
}

.download-panel h2 {
  font-size: 28px;
  margin: 0;
  color: #0e3355;
}

.download-panel p {
  margin: 8px 0 14px;
  color: var(--muted);
}

.panel-btn {
  width: 100%;
}

.panel-meta {
  margin: 12px 0 0;
  padding-left: 16px;
  color: #4f6982;
}

.panel-meta li::marker {
  color: var(--accent);
}

.hero-visual img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #cfe3ff;
  box-shadow: 0 20px 44px rgba(15, 88, 203, 0.16);
  object-fit: cover;
  min-height: 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-visual:hover img {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(15, 88, 203, 0.2);
}

.wave-divider {
  margin-top: -10px;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 74px;
  display: block;
}

.wave-divider path {
  fill: #ffffff;
}

.stats {
  background: #ffffff;
  padding: 14px 0 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-item {
  background: linear-gradient(145deg, #f3f8ff, #fffaf4);
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: #a4ccff;
  box-shadow: 0 12px 24px rgba(15, 88, 203, 0.12);
}

.stat-item h3 {
  margin: 0;
  color: var(--brand-deep);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
}

.stat-item p {
  margin: 8px 0 0;
  color: #55708a;
}

.features {
  padding: 24px 0 56px;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 40px);
}

.section-lead {
  margin: 12px 0 28px;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(31, 117, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #9ac7ff;
  box-shadow: 0 16px 36px rgba(15, 88, 203, 0.14);
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: #4f6982;
}

.cta {
  padding: 8px 0 56px;
}

.cta-box {
  border: 1px solid #cfe3ff;
  border-radius: 22px;
  background: linear-gradient(130deg, #edf5ff, #fff8f1);
  padding: 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 42, 0.2), transparent 70%);
  pointer-events: none;
}

.cta-box p {
  color: #4f6982;
}

.faq {
  padding-bottom: 70px;
}

.faq details {
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq details:hover {
  border-color: #9ac7ff;
  box-shadow: 0 8px 20px rgba(15, 88, 203, 0.08);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin: 10px 0 0;
  color: #4f6982;
}

.site-footer {
  border-top: 1px solid #dbeafe;
  padding: 22px 0 28px;
  background: #ffffffb0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer-wrap a {
  color: var(--brand);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand-note {
    display: none;
  }

  .btn-small {
    display: none;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .wave-divider svg {
    height: 56px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
