:root {
  --ink: #122018;
  --mute: #5b6b60;
  --line: #d7e2da;
  --bg: #f3f7f4;
  --white: #fff;
  --glow: #22c55e;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width:100%;height:auto; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1080px, calc(100% - 40px)); margin-inline: auto; }
nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243,247,244,0.94);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
}
.brand { font-weight: 700; }
.links { display: flex; gap: 18px; font-size: 0.9rem; color: var(--mute); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-weight: 650;
  padding: 10px 18px;
  border-radius: 10px;
}
.ghost { padding: 10px 14px; color: var(--mute); }
.hero { min-height: 88vh; display: flex; align-items: center; padding: 36px 0; }
.kicker { color: var(--glow); letter-spacing: 0.08em; font-size: 0.9rem; margin-bottom: 8px; }
.hero h1, .page-head h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.2;
}
.lead { color: var(--mute); margin: 10px 0 8px; }
.box {
  width: 100%;
  max-width: none;
  min-height: 60vh;
  margin-top: 22px;
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 0 0 1px #cfe8d6, 0 0 40px rgba(34,197,94,0.18);
  display: flex;
  flex-direction: column;
}
.box label { font-size: 0.8rem; color: var(--mute); margin-bottom: 8px; }
.box textarea {
  flex: 1;
  min-height: 36vh;
  border: 0;
  resize: none;
  font: inherit;
  font-size: 1.25rem;
  outline: none;
  background: transparent;
}
.box:focus-within {
  box-shadow: 0 0 0 2px var(--glow), 0 0 48px rgba(34,197,94,0.28);
}
.bar {
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  margin: 12px 0 16px;
}
.section { padding: 76px 0; }
.head { margin-bottom: 26px; max-width: 38em; }
.grid6, .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.card, .download-card {
  background: var(--white);
  border-radius: 12px;
  padding: 18px;
}
.icon { color: var(--glow); font-size: 0.8rem; margin-bottom: 6px; }
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.split img, .shot img, .cta img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.scene-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0 18px;
}
.scene {
  background: var(--white);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  gap: 8px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review { background: var(--white); border-radius: 12px; padding: 16px; }
.person { margin-top: 12px; color: var(--mute); display: flex; flex-direction: column; }
.visual { padding: 0 0 76px; }
.metrics { display: flex; gap: 22px; margin: 16px 0; }
.metrics b { display: block; font-size: 1.35rem; }
.metrics small { color: var(--mute); }
.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
}
details { border-bottom: 1px solid var(--line); padding: 12px 0; }
summary { cursor: pointer; font-weight: 650; }
details p { margin-top: 8px; color: var(--mute); }
.cta { padding: 36px 0; }
.cta-in {
  display: grid;
  grid-template-columns: 0.7fr 1.1fr auto;
  gap: 20px;
  align-items: center;
}
.cta img { height: 110px; object-fit: cover; }
footer {
  background: var(--ink);
  color: #c9d4cc;
  padding: 36px 0 18px;
}
.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.footer .brand { color: #fff; }
.footer h4 { color: var(--glow); margin-bottom: 8px; }
.footer a { display: block; margin: 6px 0; }
.copy { border-top: 1px solid #2a3a30; padding-top: 12px; font-size: 0.82rem; }
.page-head { padding: 44px 0 10px; }
.help-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
}
.side a { display: block; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--mute); }
.article { margin-bottom: 36px; }
.article .shot { margin: 14px 0; }
.policy { margin-top: 14px; padding: 14px; background: var(--white); border-radius: 12px; }
@media (max-width: 900px) {
  .grid6, .cards, .review-grid, .split, .faq-layout, .footer, .help-layout, .cta-in {
    grid-template-columns: 1fr;
  }
  .links { display: none; }
  .box, .box textarea { min-height: 28vh; }
}
@media (max-width: 640px) {
  .scene-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation:none!important;transition:none!important}}
