:root {
  --bg: #0f1114;
  --ink: #e6e8eb;
  --mute: #8b919a;
  --line: #262a31;
  --panel: #171a1f;
  --green: #3d9a6a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "IBM Plex Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
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(15,17,20,0.94);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
}
.brand { font-weight: 750; 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: transparent;
  color: var(--green);
  font-weight: 700;
  padding: 10px 16px;
  border: 1px solid var(--green);
}
.ghost { padding: 10px 12px; color: var(--mute); }
.hero { padding: 48px 0 16px; }
.term {
  font-family: "IBM Plex Mono", Consolas, monospace;
  margin-bottom: 18px;
}
.cmd { color: var(--green); font-size: 1.15rem; }
.out { color: var(--mute); margin-top: 6px; }
.kicker { color: var(--green); font-family: "IBM Plex Mono", Consolas, monospace; }
.hero h1, .page-head h1 {
  font-size: clamp(1.6rem, 3.3vw, 2.3rem);
  line-height: 1.25;
}
.lead { color: var(--mute); margin: 10px 0 16px; }
.hero .button { margin: 8px 0 24px; }
.hero img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: grayscale(0.2) brightness(0.86);
}
.section { padding: 72px 0; }
.head { margin-bottom: 24px; max-width: 38em; }
.grid6, .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.card, .download-card, .review, .scene, .policy {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 16px;
}
.icon { color: var(--green); font-size: 0.76rem; margin-bottom: 6px; font-family: Consolas, monospace; }
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}
.split img, .shot img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: grayscale(0.15) brightness(0.88);
}
.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 72px; }
.metrics { display: flex; gap: 22px; margin: 16px 0; }
.metrics b { display: block; font-size: 1.25rem; }
.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: 8px 0 64px; }
.cta-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--green);
  padding-top: 22px;
}
footer {
  background: #0a0c0e;
  color: var(--mute);
  padding: 32px 0 16px;
}
.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 16px;
}
.footer .brand { color: var(--ink); }
.footer h4 { color: #5d636c; margin-bottom: 8px; }
.footer a { display: block; margin: 6px 0; }
.copy { border-top: 1px solid var(--line); padding-top: 12px; font-size: 0.8rem; }
.page-head { padding: 40px 0 8px; }
.help-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
}
.side a { display: block; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--mute); }
.article { margin-bottom: 32px; }
.article .shot { margin: 14px 0; }
.policy { margin-top: 14px; }
@media (max-width: 900px) {
  .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}}
