/* 口袋衣帽间官网 — 复用 App 设计 token */
:root {
  --ink: #1a1a1a;
  --pen: #3a3a3a;
  --pencil: #6b6b6b;
  --sketch: #a0a0a0;
  --whisper: #c8c8c8;
  --line: #ebebeb;
  --paper: #f7f6f3;
  --card: #ffffff;
  --warm: #8b7355;
  --warm-bg: #f3ede6;
  --green: #3d7a5f;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* 顶栏 */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,246,243,0.82);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 17px; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { display: flex; gap: 26px; font-size: 14px; color: var(--pencil); }
.nav-links a:hover { color: var(--ink); }

/* Hero */
.hero { padding: 84px 0 60px; text-align: center; }
.hero h1 { font-size: 52px; letter-spacing: -1px; line-height: 1.15; margin-bottom: 18px; }
.hero .sub { font-size: 19px; color: var(--pencil); max-width: 620px; margin: 0 auto 34px; }
.badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; padding: 13px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 500; transition: transform .15s, opacity .15s;
}
.store-btn.ghost { background: var(--card); color: var(--ink); border: 1px solid var(--line); }
.store-btn:hover { transform: translateY(-2px); }
.hero-note { margin-top: 20px; font-size: 13px; color: var(--sketch); }

.hero-shot { margin: 56px auto 0; max-width: 340px; }
.hero-shot img { width: 100%; border-radius: 34px; box-shadow: 0 30px 70px rgba(0,0,0,0.12); border: 1px solid var(--line); }

/* 功能区 */
.section { padding: 72px 0; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 { font-size: 34px; letter-spacing: -0.5px; margin-bottom: 12px; }
.section-head p { color: var(--pencil); font-size: 16px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat {
  background: var(--card); border: 1px solid rgba(0,0,0,0.04);
  border-radius: 20px; padding: 30px 26px; transition: transform .18s, box-shadow .18s;
}
.feat:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.feat .ico {
  width: 52px; height: 52px; border-radius: 14px; background: var(--warm-bg);
  display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px;
}
.feat h3 { font-size: 18px; margin-bottom: 8px; }
.feat p { color: var(--pencil); font-size: 14.5px; }

/* 价格 */
.pricing { text-align: center; }
.price-card {
  background: var(--ink); color: #fff; border-radius: 28px; padding: 48px 40px;
  max-width: 460px; margin: 0 auto;
}
.price-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--warm); padding: 6px 14px; border-radius: 999px; font-size: 12px; margin-bottom: 20px; }
.price-num { font-size: 56px; font-weight: 700; }
.price-sub { color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 6px; }
.price-list { text-align: left; max-width: 280px; margin: 28px auto 0; font-size: 14.5px; color: rgba(255,255,255,0.85); }
.price-list li { list-style: none; padding: 7px 0; display: flex; gap: 10px; }
.price-list li::before { content: "✓"; color: var(--warm); font-weight: 700; }

/* 隐私/退款正文 */
.doc { padding: 56px 0 40px; max-width: 760px; }
.doc h1 { font-size: 30px; margin-bottom: 8px; }
.doc .updated { color: var(--sketch); font-size: 13px; margin-bottom: 32px; }
.doc h2 { font-size: 19px; margin: 34px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.doc p { color: var(--pen); margin-bottom: 12px; font-size: 15px; }
.doc a { color: var(--warm); text-decoration: underline; }
.back-link { display: inline-block; margin-bottom: 8px; color: var(--pencil); font-size: 14px; }

/* 页脚 */
.footer { border-top: 1px solid var(--line); padding: 40px 0; margin-top: 40px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-links { display: flex; gap: 20px; font-size: 14px; color: var(--pencil); flex-wrap: wrap; justify-content: center; }
.footer-links a:hover { color: var(--ink); }
.footer-meta { font-size: 12.5px; color: var(--sketch); }
.footer-meta a { color: var(--sketch); text-decoration: underline; }
.footer-meta a:hover { color: var(--pencil); }

@media (max-width: 720px) {
  .hero h1 { font-size: 38px; }
  .features { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; font-size: 13px; }
  .section { padding: 52px 0; }
}
