:root {
  --bg: #ffffff;
  --bg-soft: #f4f6fa;
  --card: #ffffff;
  --text: #14161a;
  --muted: #666d78;
  --line: #e4e7ec;
  --accent: #2b6dff;
  --accent-2: #0c2f9c;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(18, 32, 70, .12);
  --max: 1080px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d0e11;
    --bg-soft: #14161b;
    --card: #17191f;
    --text: #f3f4f7;
    --muted: #9aa0ab;
    --line: #262932;
    --accent: #5d92ff;
    --accent-2: #1d47c9;
    --shadow: 0 18px 50px rgba(0, 0, 0, .5);
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--accent); color: #fff;
  padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 100;
}
.skip:focus { left: 0; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.small { font-size: 14px; }

/* ---------- 顶栏 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.bar {
  max-width: var(--max); margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); font-size: 17px; }
.brand img { border-radius: 8px; }
.brand:hover { text-decoration: none; }
.nav { display: flex; gap: 20px; margin-left: 12px; }
.nav a { color: var(--muted); font-size: 15px; }
.nav a:hover, .nav a.here { color: var(--text); text-decoration: none; }
.right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.langs { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.langs a { padding: 5px 12px; font-size: 13px; color: var(--muted); }
.langs a.on { background: var(--accent); color: #fff; }
.langs a:hover { text-decoration: none; }
.store-mini {
  background: var(--text); color: var(--bg); padding: 7px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
}
.store-mini:hover { text-decoration: none; opacity: .88; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 15% -10%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 60%),
    radial-gradient(900px 500px at 95% 10%, color-mix(in srgb, var(--accent-2) 24%, transparent), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 72px 20px 0;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero-icon { width: 84px; height: 84px; border-radius: 20px; box-shadow: var(--shadow); }
.hero h1 { font-size: clamp(32px, 4.4vw, 50px); line-height: 1.15; margin: 22px 0 14px; letter-spacing: -.02em; }
.hero p.lead { font-size: 18px; color: var(--muted); margin: 0 0 26px; max-width: 34em; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  font-size: 13px; color: var(--muted); border: 1px solid var(--line);
  background: var(--card); padding: 5px 12px; border-radius: 999px;
}
.hero-shot { position: relative; justify-self: center; padding-bottom: 8px; }

/* App Store 徽章 */
.appstore { display: inline-flex; align-items: center; gap: 10px; background: #000; color: #fff;
  padding: 11px 20px 11px 17px; border-radius: 13px; box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.appstore:hover { text-decoration: none; transform: translateY(-1px); }
.appstore svg { width: 26px; height: 26px; flex: none; fill: #fff; }
.appstore .t { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.appstore .t small { font-size: 11px; opacity: .85; }
.appstore .t strong { font-size: 17px; font-weight: 600; letter-spacing: .01em; }

/* 手机外框 */
.phone {
  width: 280px; border-radius: 42px; padding: 10px;
  background: linear-gradient(160deg, #cfd5e1, #8a94a8);
  box-shadow: var(--shadow);
}
@media (prefers-color-scheme: dark) { .phone { background: linear-gradient(160deg, #3a3f4c, #1b1e26); } }
.phone img { border-radius: 33px; }
.phone.sm { width: 220px; border-radius: 34px; padding: 8px; }
.phone.sm img { border-radius: 27px; }

/* ---------- 区块 ---------- */
section { padding: 88px 0; }
section.alt { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(26px, 3vw, 34px); margin: 0 0 12px; letter-spacing: -.01em; }
.section-head p { color: var(--muted); margin: 0; }

.grid { display: grid; gap: 20px; }
.grid.f3 { grid-template-columns: repeat(3, 1fr); }
.grid.f2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin: 14px 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.ic {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent);
}
.ic svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* 截图区 */
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 24px; }
.shot { text-align: center; }
.shot .phone { margin: 0 auto 16px; }
.shot h3 { font-size: 17px; margin: 0 0 4px; }
.shot p { margin: 0; color: var(--muted); font-size: 14px; }

.ipad-shot {
  border-radius: 20px; padding: 10px; background: linear-gradient(160deg, #cfd5e1, #8a94a8);
  box-shadow: var(--shadow); max-width: 760px; margin: 0 auto;
}
@media (prefers-color-scheme: dark) { .ipad-shot { background: linear-gradient(160deg, #3a3f4c, #1b1e26); } }
.ipad-shot img { border-radius: 12px; }

/* 字段列表 */
.fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.field { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.field strong { display: block; margin-bottom: 4px; }
.field span { color: var(--muted); font-size: 14px; }

.note-card {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: 14px; padding: 22px 24px; max-width: 760px; margin: 0 auto;
}
.note-card h3 { margin: 0 0 8px; font-size: 18px; }
.note-card p { margin: 0; color: var(--muted); }

/* CTA */
.cta { text-align: center; }
.cta h2 { font-size: clamp(26px, 3vw, 34px); margin: 0 0 10px; }
.cta p { color: var(--muted); margin: 0 0 26px; }

/* ---------- 内容页 ---------- */
.page-head { padding: 64px 0 28px; }
.page-head h1 { font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 10px; }
.page-head p { color: var(--muted); margin: 0; max-width: 46em; }
.content { padding-bottom: 88px; max-width: 760px; }
.content h2 { font-size: 20px; margin: 34px 0 8px; }
.content p { color: var(--muted); }
.lead-card {
  background: color-mix(in srgb, var(--accent) 10%, var(--card));
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line));
  border-radius: 14px; padding: 18px 22px; font-weight: 500;
}

details {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 20px; margin-bottom: 10px;
}
details[open] { box-shadow: var(--shadow); }
summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; gap: 12px; align-items: flex-start; }
summary::-webkit-details-marker { display: none; }
summary::before { content: "+"; color: var(--accent); font-weight: 400; font-size: 20px; line-height: 1.3; }
details[open] summary::before { content: "–"; }
details p { margin: 12px 0 2px 32px; color: var(--muted); }

.mail-btn {
  display: inline-block; background: var(--accent); color: #fff; font-weight: 600;
  padding: 13px 26px; border-radius: 12px; margin-top: 10px;
}
.mail-btn:hover { text-decoration: none; opacity: .92; }

/* ---------- 页脚 ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 40px 0; }
.site-footer .inner { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.f-brand img { border-radius: 9px; }
.f-links { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 14px; }
.f-links a { color: var(--muted); font-size: 15px; }
.note { max-width: 46em; }

/* ---------- 动效 ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 响应式 ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 52px; text-align: center; }
  .hero p.lead { margin-inline: auto; }
  .chips { justify-content: center; }
  .grid.f3, .shots, .fields { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .grid.f3, .grid.f2, .shots, .fields { grid-template-columns: 1fr; }
  .phone { width: 250px; }
  .bar { gap: 10px; }
  .store-mini { display: none; }
}
/* Editorial product presentation */
:root { --max:1160px; --radius:24px; --bg:#fafbfD; --bg-soft:#f0f3f8; --text:#172033; --muted:#586579; --line:#dde3ed; }
body { letter-spacing:-.015em; }
:focus-visible { outline:3px solid var(--accent); outline-offset:5px; }
h1,h2,h3 { text-wrap:balance; }
.bar { min-height:80px; }
.brand { font-size:23px; letter-spacing:-1px; }
.nav a,.langs a,.f-links a { min-height:44px; display:inline-flex; align-items:center; }
.langs { border:0; background:var(--bg-soft); padding:3px; }
.langs a.on { background:var(--card); color:var(--text); box-shadow:0 2px 8px #17203312; border-radius:30px; }
.hero { padding:0; background:radial-gradient(ellipse at 80% 45%,#dbe7ff 0,transparent 55%),var(--bg); }
.hero-inner { padding:80px 28px 85px; gap:65px; min-height:760px; }
.eyebrow { color:var(--accent); font-size:11px; font-weight:700; letter-spacing:.19em; margin:0 0 28px; }
.hero-icon { width:62px; height:62px; border-radius:15px; }
.hero h1 { font-size:clamp(42px,5.2vw,68px); line-height:1.12; letter-spacing:-.055em; margin:24px 0; }
.hero p.lead { font-size:18px; line-height:1.8; max-width:470px; }
.hero-actions { display:flex; gap:24px; align-items:center; flex-wrap:wrap; }
.text-link { font-size:14px; font-weight:600; color:var(--text); padding:12px 0; }
.appstore { box-shadow:none; border:1px solid #777; border-radius:10px; padding:10px 20px; min-height:58px; }
.appstore .t strong { font-size:22px; }
.hero-shot { padding:25px 0; }
.hero-shot .phone { width:288px; transform:rotate(5deg); background:#222c3b; padding:7px; box-shadow:25px 40px 75px #203c7429,0 0 0 1px #9099a5; }
.orbit-note { position:absolute; z-index:2; left:-98px; bottom:85px; background:var(--card); padding:16px 22px; border:1px solid var(--line); border-radius:18px; box-shadow:0 15px 45px #203c741c; }
.orbit-note span { display:block; font-size:11px; color:var(--accent); letter-spacing:.15em; }
.orbit-note strong { font-size:15px; }
.spec-strip { display:flex; justify-content:center; gap:70px; padding:24px; border-block:1px solid var(--line); font-size:13px; color:var(--muted); flex-wrap:wrap; }
.section-head { max-width:750px; margin-bottom:50px; }
.section-head h2 { font-size:clamp(30px,4vw,44px); letter-spacing:-.04em; }
.card { padding:32px; box-shadow:none; }
.card:nth-child(2) .ic { color:#21734d; background:#e2f0e9; }
.card:nth-child(3) .ic { color:#84551b; background:#f7ecd9; }
.card h3 { font-size:20px; margin-top:26px; }
.shot { margin:0; padding:25px 15px; }
.shot .phone { background:#252e3b; padding:5px; box-shadow:0 20px 35px #203c7417; }
.shot figcaption { padding:12px 8px; }
.screenshot-link { display:block; width:fit-content; margin:auto; border-radius:34px; transition:transform .2s; cursor:zoom-in; }
.screenshot-link:hover { transform:translateY(-6px); }
.ipad-shot { max-width:860px; background:#252e3b; }
.cta { background:var(--text); color:var(--bg); margin:36px 24px 64px; border-radius:30px; }
.cta p { color:#c6cfde; }
.page-head { text-align:center; padding:85px 0 45px; }
.page-head h1 { font-size:clamp(36px,5vw,58px); letter-spacing:-.04em; }
.page-head p { margin:auto; }
.content { margin:auto; }
.content .lead-card { margin-bottom:32px; }
.content h2 { margin-top:42px; }
details { padding:22px 24px; border-radius:18px; }
summary { min-height:28px; }
.reveal { opacity:1; transform:none; }
#screenshot-viewer { border:1px solid var(--line); border-radius:20px; background:var(--card); color:var(--text); padding:22px; max-width:94vw; max-height:94dvh; }
#screenshot-viewer::backdrop { background:#091225d9; backdrop-filter:blur(8px); }
#screenshot-viewer img { max-height:76dvh; width:auto; max-width:85vw; margin:auto; border-radius:12px; }
#screenshot-viewer p { text-align:center; margin:12px 0 0; }
.close-viewer { display:block; margin:0 0 10px auto; width:44px; height:44px; font-size:28px; border:0; border-radius:50%; background:var(--bg-soft); color:var(--text); cursor:pointer; }
body:has(dialog[open]) { overflow:hidden; }
@media(prefers-color-scheme:dark) { :root { --bg:#10141c; --bg-soft:#161d28; --card:#1b2330; --text:#f0f4fa; --muted:#a9b7cc; --line:#2e3a4d; } .hero { background:radial-gradient(ellipse at 80% 45%,#203357,transparent 55%),var(--bg); } .cta { background:#1d2b45; color:var(--text); } }
@media(max-width:900px) { .bar { flex-wrap:wrap; gap:4px 12px; padding-top:12px; padding-bottom:4px; } .nav { display:flex; order:3; width:100%; margin:0; justify-content:center; gap:24px; } .hero-inner { padding:55px 24px 65px; gap:25px; } .hero-icon { margin:auto; } .hero-actions { justify-content:center; } .hero h1 { max-width:640px; margin:24px auto; } .eyebrow { margin-bottom:20px; } .spec-strip { gap:16px 35px; } html { scroll-padding-top:125px; } }
@media(max-width:600px) { .hero h1 { font-size:43px; } .hero p.lead { font-size:16px; } .hero-shot .phone { width:238px; } .orbit-note { left:-30px; bottom:50px; padding:12px 15px; } .nav { gap:20px; } .nav a { font-size:13px; } .grid.f3 { gap:14px; } .shots { grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px 12px; } .shot { padding:0; } .phone.sm { width:100%; border-radius:24px; } .phone.sm img { border-radius:19px; } .shot h3 { font-size:15px; } .shot p { font-size:13px; } .shot figcaption { padding:16px 0; } .cta { margin:12px 14px 40px; padding:55px 15px; } .f-links { gap:8px 20px; } }
@media(prefers-reduced-motion:reduce) { *,*::before,*::after { transition:none!important; animation:none!important; scroll-behavior:auto!important; } }
img { height:auto; }
html[lang="zh-Hans"] .hero h1 { font-size:clamp(34px,3.75vw,54px); letter-spacing:-.055em; }
/* Phone layout: readable screenshots and compact content, not a desktop grid. */
@media (max-width:600px) {
  html { scroll-padding-top:112px; }
  .bar { min-height:0; padding:8px 16px 0; gap:0 12px; }
  .brand { font-size:21px; gap:8px; }
  .brand img { width:30px; height:30px; }
  .langs { padding:2px; }
  .langs a { padding:4px 10px; min-height:40px; }
  .nav { justify-content:space-between; gap:8px; }
  .nav a { min-height:44px; font-size:14px; }
  .wrap { padding-inline:20px; }
  section { padding-block:48px; }
  .hero-inner { min-height:0; padding:32px 20px 0; gap:24px; }
  .hero-inner > * { min-width:0; }
  .eyebrow { font-size:10px; letter-spacing:.12em; margin-bottom:18px; }
  .hero-icon { display:none; }
  .hero h1,html[lang="zh-Hans"] .hero h1 { font-size:clamp(29px,8.2vw,36px); line-height:1.25; letter-spacing:-.04em; margin:0 auto 18px; }
  .hero p.lead { font-size:16px; line-height:1.7; margin-bottom:20px; }
  .chips { gap:6px; margin:0 auto 22px; max-width:335px; }
  .chip { font-size:12px; padding:4px 9px; }
  .hero-actions { flex-direction:column; gap:4px; }
  .text-link { min-height:44px; }
  .hero-shot { padding:8px 0 0; height:300px; overflow:hidden; width:100%; }
  .hero-shot .phone { width:225px; margin:auto; transform:none; border-radius:34px; padding:6px; }
  .hero-shot .phone img { border-radius:28px; }
  .orbit-note { display:none; }
  .spec-strip { display:grid; grid-template-columns:1fr 1fr; gap:12px 8px; padding:20px; text-align:center; font-size:12px; }
  .section-head { margin-bottom:28px; text-align:left; }
  .section-head h2 { font-size:28px; line-height:1.3; margin-bottom:10px; }
  .section-head p { font-size:15px; }
  .grid.f3 { grid-template-columns:minmax(0,1fr); }
  .card { padding:22px; border-radius:20px; display:grid; grid-template-columns:40px minmax(0,1fr); column-gap:14px; }
  .card .ic { width:40px; height:40px; grid-row:1 / 3; }
  .card h3 { margin:4px 0 8px; font-size:18px; }
  .card p { grid-column:2; font-size:15px; line-height:1.7; }
  .shots { display:flex; overflow-x:auto; gap:20px; scroll-snap-type:x mandatory; scroll-padding-inline:20px; margin-inline:-20px; padding:8px 20px 24px; overscroll-behavior-x:contain; }
  .shot { flex:0 0 min(76vw,290px); scroll-snap-align:center; }
  .shot .phone.sm { width:100%; max-width:250px; border-radius:32px; padding:6px; }
  .phone.sm img { border-radius:26px; }
  .shot h3 { font-size:18px; }
  .shot p { font-size:14px; line-height:1.6; }
  .screenshot-link:hover { transform:none; }
  .ipad-shot { border-radius:12px; padding:5px; }
  .ipad-shot img { border-radius:8px; }
  .fields { gap:10px; }
  .field { padding:16px 18px; }
  .note-card { padding:20px; }
  .page-head { padding:36px 0 26px; text-align:left; }
  .page-head h1 { font-size:34px; }
  .page-head p { font-size:15px; }
  .content { padding-bottom:48px; overflow-wrap:anywhere; }
  .content h2 { font-size:20px; margin-top:28px; }
  .lead-card { padding:18px; }
  details { padding:18px 16px; }
  summary { font-size:16px; line-height:1.6; min-height:32px; }
  details p { margin-left:24px; font-size:15px; }
  .mail-btn { display:block; text-align:center; }
  .cta { margin:0 14px 32px; padding:36px 6px; border-radius:24px; }
  .cta h2 { font-size:26px; }
  .cta p { font-size:15px; }
  .site-footer { padding-block:28px; }
  #screenshot-viewer { max-width:calc(100vw - 20px); padding:12px; }
  #screenshot-viewer img { max-height:70dvh; max-width:100%; object-fit:contain; }
}

/* ---------- 补充：更多功能列表 ---------- */
.more-title { text-align:center; font-size:22px; letter-spacing:-.02em; margin:64px 0 22px; }
.more-list { list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.more-list li { background:var(--card); padding:20px 22px; }
.more-list strong { display:block; font-size:16px; margin-bottom:4px; }
.more-list span { color:var(--muted); font-size:14px; line-height:1.65; }
@media (max-width:900px) { .more-list { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:600px) { .more-title { text-align:left; margin-top:40px; } .more-list { grid-template-columns:minmax(0,1fr); } }

/* ---------- 补充：深色模式下的彩色图标底色 ---------- */
@media (prefers-color-scheme: dark) {
  .card:nth-child(2) .ic { color:#7fd3a8; background:#1c3a2c; }
  .card:nth-child(3) .ic { color:#f0c27d; background:#3d2e17; }
}

/* ---------- 补充：404 页 ---------- */
.not-found { text-align:center; padding:110px 20px 120px; }
.not-found .code { font-size:88px; font-weight:800; letter-spacing:-.06em; color:var(--accent); line-height:1; margin:0 0 12px; }
.not-found p { color:var(--muted); margin:0 0 28px; }
.spacer { height:34px; }

/* ---------- 官方 App Store 徽章 ---------- */
.appstore-badge { display:inline-block; line-height:0; border-radius:10px; }
.appstore-badge img { height:54px; width:auto; }
.appstore-badge:hover { opacity:.85; }
.cta .appstore-badge { margin-top:4px; }

/* ---------- 汉堡菜单（≤900px） ---------- */
.menu { display:none; position:relative; }
.menu summary { list-style:none; width:44px; height:44px; display:flex; align-items:center; justify-content:center; border-radius:12px; cursor:pointer; color:var(--text); }
.menu summary::-webkit-details-marker { display:none; }
.menu summary::before { content:none; }
.menu summary:hover { background:var(--bg-soft); }
.bars { position:relative; width:20px; height:14px; display:block; }
.bars i { position:absolute; left:0; right:0; height:2px; border-radius:2px; background:currentColor; transition:transform .25s ease, opacity .2s ease, top .25s ease; }
.bars i:nth-child(1) { top:0; }
.bars i:nth-child(2) { top:6px; }
.bars i:nth-child(3) { top:12px; }
.menu[open] .bars i:nth-child(1) { top:6px; transform:rotate(45deg); }
.menu[open] .bars i:nth-child(2) { opacity:0; }
.menu[open] .bars i:nth-child(3) { top:6px; transform:rotate(-45deg); }
.menu-panel { position:absolute; right:0; top:calc(100% + 10px); min-width:230px; padding:8px; display:flex; flex-direction:column;
  background:var(--card); border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow); animation:menu-in .18s ease-out; }
.menu-panel a { color:var(--text); padding:12px 14px; border-radius:12px; font-size:16px; min-height:44px; display:flex; align-items:center; }
.menu-panel a:hover, .menu-panel a[aria-current="page"] { background:var(--bg-soft); text-decoration:none; }
.menu-panel .menu-store { margin-top:6px; border-top:1px solid var(--line); border-radius:0 0 12px 12px; color:var(--accent); font-weight:600; }
@keyframes menu-in { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }

@media (max-width:900px) {
  .bar { flex-wrap:nowrap; padding-top:10px; padding-bottom:10px; min-height:64px; }
  .nav { display:none; }
  .menu { display:block; }
  .store-mini { display:none; }
  html { scroll-padding-top:80px; }
}
@media (max-width:600px) {
  .bar { padding:8px 12px 8px 16px; min-height:60px; }
  .right { gap:6px; }
  html { scroll-padding-top:76px; }
}
/* 菜单沿用了 <details>，重置 FAQ 的 details 样式 */
details.menu, details.menu[open] { background:none; border:0; padding:0; margin:0; box-shadow:none; border-radius:0; }
details.menu summary { min-height:0; font-weight:400; gap:0; }
details.menu summary::before, details.menu[open] summary::before { content:none; display:none; }
.phone picture, .ipad-shot picture { display:block; }
