* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --red: #cc0000; --red-dark: #8f0000; --ink: #1a1a1a; --muted: #666; --line: #eee; --bg-soft: #fff5f5; }
body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans CJK TC", sans-serif; color: var(--ink); line-height: 1.6; }
.container { max-width: 980px; margin: 0 auto; padding: 0 24px; }
header.site { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--ink); text-decoration: none; }
.brand img { width: 30px; height: 30px; border-radius: 7px; }
nav a { color: var(--muted); text-decoration: none; margin-left: 22px; font-size: 15px; }
nav a:hover { color: var(--ink); }
.hero { background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 60%, #ffd6d6 100%); padding: 72px 0 84px; text-align: center; }
.hero h1 { font-size: 44px; line-height: 1.15; letter-spacing: -1px; max-width: 720px; margin: 0 auto; }
.hero h1 span { color: var(--red); }
.hero p.sub { font-size: 20px; color: #555; max-width: 560px; margin: 18px auto 0; }
.cta-row { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 13px 26px; border-radius: 8px; font-weight: 650; font-size: 16px; text-decoration: none; }
.btn.primary { background: var(--red); color: #fff; }
.btn.primary:hover { background: var(--red-dark); }
.btn.ghost { border: 1.5px solid #e5b9b9; color: #a33; background: #fff; }
.stores { margin-top: 14px; color: #a66; font-size: 14px; }
.shot { max-width: 860px; width: 100%; border-radius: 14px; box-shadow: 0 24px 70px rgba(160,0,0,.18); margin: 48px auto 0; display: block; }
section { padding: 64px 0; }
section.alt { background: #fafafa; }
h2 { font-size: 30px; letter-spacing: -0.5px; margin-bottom: 28px; text-align: center; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card { border: 1px solid var(--line); border-radius: 12px; padding: 22px; background: #fff; }
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.pricing { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.price-card { border: 1.5px solid var(--line); border-radius: 14px; padding: 28px; width: 300px; background: #fff; }
.price-card.pro { border-color: var(--red); box-shadow: 0 12px 40px rgba(204,0,0,.12); }
.price-card .tier { font-weight: 700; font-size: 15px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.price-card .amount { font-size: 40px; font-weight: 800; margin: 6px 0 2px; }
.price-card .per { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.price-card ul { list-style: none; }
.price-card li { padding: 6px 0; font-size: 15px; color: #333; }
.price-card li::before { content: "✓  "; color: var(--red); font-weight: 700; }
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; max-width: 720px; margin: 0 auto; }
.faq-item h3 { font-size: 17px; margin-bottom: 6px; }
.faq-item p { color: var(--muted); font-size: 15px; }
footer.site { border-top: 1px solid var(--line); padding: 28px 0; color: var(--muted); font-size: 14px; }
footer.site .row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer.site a { color: var(--muted); margin-right: 18px; }
.legal { max-width: 760px; margin: 0 auto; padding: 48px 24px; }
.legal h1 { font-size: 32px; margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.legal h2 { font-size: 20px; text-align: left; margin: 28px 0 10px; }
.legal p, .legal li { color: #333; font-size: 15.5px; margin-bottom: 10px; }
.legal ul { padding-left: 22px; }
.notice { background: var(--bg-soft); border: 1px solid #f0caca; border-radius: 10px; padding: 14px 18px; font-size: 14px; color: #844; max-width: 720px; margin: 0 auto; }
