:root {
  --bg: #f4efe6;
  --ink: #1c1a17;
  --mute: #5c564c;
  --line: #ddd4c6;
  --paper: #fbf7f0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(28,26,23,0.03), transparent 40%),
    repeating-linear-gradient(0deg, rgba(28,26,23,0.015) 0 1px, transparent 1px 3px),
    var(--bg);
  line-height: 1.7;
}
img { max-width:100%;height:auto; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1060px, calc(100% - 40px)); margin-inline: auto; }
nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244,239,230,0.92);
  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; letter-spacing: 0.04em; }
.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: var(--paper);
  font-weight: 650;
  padding: 10px 18px;
}
.ghost { padding: 10px 14px; color: var(--mute); }
.hero { position: relative; padding: 48px 0 24px; overflow: hidden; }
.ink {
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  width: 100%;
  height: 140px;
  pointer-events: none;
}
.ink path {
  fill: none;
  stroke: #1c1a17;
  stroke-width: 7;
  stroke-linecap: round;
  opacity: 0.18;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}
.hero-grid > img, .split img, .shot img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.kicker {
  font-family: "Source Han Serif SC", "Songti SC", serif;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}
.hero h1, .page-head h1, h2 {
  font-family: "Source Han Serif SC", "Songti SC", serif;
  font-weight: 600;
}
.hero h1, .page-head h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.25;
}
.lead { color: var(--mute); margin: 12px 0 14px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.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, .review, .scene, .policy {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 18px;
}
.icon { font-size: 0.78rem; margin-bottom: 6px; }
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.scene-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0 18px;
}
.scene { display: flex; gap: 8px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.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.3rem; font-family: "Source Han Serif SC", "Songti SC", serif; }
.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: 10px 0 72px; }
.cta-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 22px 0;
}
footer {
  background: var(--ink);
  color: #d8d0c4;
  padding: 36px 0 18px;
}
.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.footer .brand { color: #fbf7f0; }
.footer h4 { color: #8d867a; margin-bottom: 8px; }
.footer a { display: block; margin: 6px 0; }
.copy { border-top: 1px solid #3a362f; 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; }
@media (max-width: 900px) {
  .hero-grid, .grid6, .cards, .review-grid, .split, .faq-layout, .footer, .help-layout, .cta-in {
    grid-template-columns: 1fr;
  }
  .links { display: none; }
}
@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}}
