/* Static pages (marketing, legal, support, manage, delete-account): the same
   tokens as the app (/theme.css must be linked first), light and dark. */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font);
    background: var(--bg); color: var(--text-primary);
    padding: 48px 24px;
    -webkit-text-size-adjust: 100%;
}
body.centered { display: flex; justify-content: center; align-items: center; min-height: 100vh; padding: 24px; }
.container { max-width: 600px; margin: 0 auto; }
.card { text-align: center; max-width: 480px; width: 100%; }
.icon { width: 64px; height: 64px; border-radius: 14px; overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow-chrome); }
.card .icon { margin-left: auto; margin-right: auto; }
.icon.large { width: 96px; height: 96px; border-radius: 22px; margin-bottom: 28px; }
.icon.medium { width: 68px; height: 68px; border-radius: 16px; margin-bottom: 20px; }
.icon img { width: 100%; height: 100%; display: block; }
h1 { font-size: 28px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.card h1 { font-size: 32px; }
h2 { font-size: var(--fs-headline); font-weight: 600; margin-top: 32px; margin-bottom: 10px; color: var(--text-primary); }
p, li { color: var(--text-secondary); line-height: 1.6; }
p { margin-bottom: 12px; }
strong, li strong { color: var(--text-primary); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ol, ul { color: var(--text-secondary); line-height: 1.7; margin: 0 0 12px 20px; }
li { margin-bottom: 4px; }
.updated, .tagline, .count { color: var(--text-secondary); font-size: var(--fs-subheadline); margin-bottom: 40px; }
.count { display: block; font-size: var(--fs-footnote); margin: 6px 0 0; }
.subtitle, .sub { color: var(--text-secondary); font-size: var(--fs-body); line-height: 1.5; margin-bottom: 32px; }
.highlight, .steps, .contact-box {
    background: var(--bg-secondary); border: 1px solid var(--separator);
    border-radius: var(--radius-bar); padding: 16px 20px; margin: 24px 0;
}
.highlight p { color: var(--text-primary); margin-bottom: 0; }
.contact-box { padding: 24px; text-align: center; }
.contact-box p { margin-bottom: 12px; }
.btn, .contact-box a.btn {
    display: inline-block; padding: 14px 32px; border: 0; border-radius: var(--radius-bar);
    background: var(--accent-strong); color: var(--on-accent); text-decoration: none;
    font-size: var(--fs-headline); font-weight: 600; cursor: pointer; font-family: inherit;
}
.btn.block { display: block; width: 100%; text-align: center; margin-bottom: 10px; }
.btn:hover { text-decoration: none; filter: brightness(1.06); }
.btn:active { opacity: 0.8; }
.btn:disabled { opacity: 0.5; cursor: default; }
.btn-danger { background: var(--red); }
.btn-quiet { background: var(--fill-3); color: var(--accent); }
.btn-small { padding: 10px 24px; font-size: var(--fs-subheadline); border-radius: var(--radius-row); white-space: nowrap; }
.web-link { display: block; margin-top: 20px; color: var(--accent); font-size: var(--fs-subheadline); cursor: pointer; }
.note { color: var(--text-secondary); font-size: var(--fs-caption); line-height: 1.5; margin-top: 18px; border-top: 1px solid var(--separator); padding-top: 16px; }
.err { color: var(--orange); font-size: var(--fs-subheadline); }
.hidden { display: none; }
.features { text-align: left; margin-bottom: 36px; }
.feature { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.feature-emoji { font-size: 24px; flex-shrink: 0; width: 32px; text-align: center; }
.feature-text { color: var(--text-secondary); font-size: var(--fs-subheadline); line-height: 1.5; }
.feature-text strong { color: var(--text-primary); }
.faq { margin-bottom: 40px; }
.faq-item { border-top: 1px solid var(--separator); padding: 20px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--separator); }
.question { font-size: var(--fs-body); font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.answer { color: var(--text-secondary); line-height: 1.6; font-size: var(--fs-subheadline); }
.links { margin-top: 24px; }
.links a { color: var(--text-secondary); font-size: var(--fs-subheadline); margin: 0 12px; }
.links a:hover { color: var(--text-primary); }
footer { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--separator); color: var(--text-secondary); font-size: var(--fs-footnote); }
footer a { color: var(--text-secondary); }
footer a:hover { color: var(--text-primary); }
