:root {
  --ink: #14241a;
  --ink-soft: #3a4f42;
  --muted: #5f7466;
  --paper: #f2f7f3;
  --paper-2: #e4efe7;
  --brand: #2dbe60;
  --brand-deep: #1a9e4a;
  --accent: #e8a317;
  --line: rgba(20, 36, 26, 0.12);
  --glow: rgba(45, 190, 96, 0.28);
  --radius: 18px;
  --font-display: "Syne", "Noto Sans SC", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
}

.blob-a {
  width: 48vw;
  height: 48vw;
  top: -12vw;
  right: -8vw;
  background: radial-gradient(circle, #9fe0b4 0%, transparent 70%);
  animation: drift 18s ease-in-out infinite alternate;
}

.blob-b {
  width: 36vw;
  height: 36vw;
  bottom: 8vh;
  left: -10vw;
  background: radial-gradient(circle, #f6e0a8 0%, transparent 70%);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}

.grid-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 190, 96, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 190, 96, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 20%, black 20%, transparent 75%);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(3vw, 2vh, 0) scale(1.08);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  backdrop-filter: blur(12px);
  background: rgba(242, 247, 243, 0.78);
  border-bottom: 1px solid transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.nav a:hover {
  color: var(--brand-deep);
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--brand-deep);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100vh - 72px);
}

.hero h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.brand-hero {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
  color: var(--brand-deep);
  animation: rise 0.8s ease both;
}

.hero-tagline {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  animation: rise 0.9s ease 0.08s both;
}

.hero-lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
  animation: rise 1s ease 0.14s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
  animation: rise 1.05s ease 0.2s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 28px var(--glow);
}

.btn-primary:hover {
  background: var(--brand-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--line);
  color: var(--ink);
}

.hero-visual {
  display: flex;
  justify-content: center;
  animation: rise 1.1s ease 0.18s both;
}

.phone {
  width: min(100%, 300px);
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(160deg, #1f2a22, #2a3b30);
  box-shadow: 0 30px 60px rgba(26, 158, 74, 0.18);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transform-origin: center right;
}

.phone-notch {
  width: 88px;
  height: 8px;
  margin: 4px auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.phone-screen {
  border-radius: 20px;
  overflow: hidden;
  background: #f7fbf8;
  min-height: 420px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
}

.phone-bar strong {
  color: var(--brand-deep);
}

.phone-bar span {
  font-size: 0.8rem;
  color: var(--muted);
}

.matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  flex: 1;
}

.quad {
  border-radius: 12px;
  padding: 0.7rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: #fff;
}

.quad em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
}

.quad span {
  font-size: 0.88rem;
  font-weight: 600;
}

.q1 {
  background: rgba(45, 190, 96, 0.14);
  border-color: rgba(45, 190, 96, 0.28);
}

.q2 {
  background: rgba(232, 163, 23, 0.12);
  border-color: rgba(232, 163, 23, 0.28);
}

.q3 {
  background: rgba(59, 130, 246, 0.1);
}

.q4 {
  background: rgba(148, 163, 184, 0.12);
}

.phone-chip {
  margin-top: auto;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #92400e;
  background: rgba(232, 163, 23, 0.14);
  border: 1px solid rgba(232, 163, 23, 0.3);
}

.phone-chip.pulse {
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.section-alt {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid var(--line);
  max-width: none;
  padding-inline: max(1.25rem, calc((100% - var(--max)) / 2));
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-rail article {
  padding: 1.25rem 1.1rem;
  border-top: 3px solid var(--brand);
  background: transparent;
}

.feature-rail h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.feature-rail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.vip-compare {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
}

.vip-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.95rem 1.1rem;
  border-top: 1px solid var(--line);
}

.vip-row:first-child {
  border-top: none;
}

.vip-head {
  background: rgba(45, 190, 96, 0.1);
  font-weight: 700;
  font-family: var(--font-display);
}

.vip-row span:last-child {
  color: var(--brand-deep);
  font-weight: 600;
}

.section-download .download-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.download-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
}

.download-list:empty {
  display: none;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.download-card:hover {
  transform: translateY(-1px);
}

.download-card.is-primary {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px var(--glow);
}

.download-card.is-primary:hover {
  background: var(--brand-deep);
}

.download-card-name {
  display: block;
  font-weight: 700;
}

.download-card-note {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.download-card.is-primary .download-card-note {
  color: rgba(255, 255, 255, 0.82);
}

.download-card-action {
  flex: none;
  font-weight: 700;
}

.help {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-card-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-card-value {
  color: var(--ink);
  font-weight: 700;
  word-break: break-all;
}

.contact-card a.contact-card-value:hover {
  color: var(--brand-deep);
  text-decoration: underline;
}

.contact-card img {
  width: 148px;
  height: 148px;
  margin-top: 0.4rem;
  border-radius: 12px;
  object-fit: contain;
  background: var(--paper);
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.footer-meta {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.5rem;
  }

  .phone {
    transform: none;
  }

  .feature-rail {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

  .feature-rail,
  .vip-row,
  .download-list {
    grid-template-columns: 1fr;
  }

  .download-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .vip-row span:nth-child(2)::before {
    content: "免费 · ";
    color: var(--muted);
    font-weight: 500;
  }

  .vip-row span:nth-child(3)::before {
    content: "VIP · ";
    font-weight: 500;
  }

  .vip-head span:nth-child(n + 2)::before {
    content: none;
  }
}
