/* Shared styles for /privacy, /terms, /support — match the landing-page
   brand without the marketing-page animations. */

:root {
    --bg: #15091E;
    --text-primary: rgba(242, 255, 247, 0.9);
    --text-secondary: rgba(255, 255, 255, 0.72);
    --text-muted: rgba(255, 255, 255, 0.5);
    --rule: rgba(255, 255, 255, 0.08);
    --serif: ui-serif, "New York", "Iowan Old Style", Georgia, "Times New Roman", serif;
    --rounded: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; }
body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: var(--rounded);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: var(--text-primary); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.25); transition: text-decoration-color 0.2s; }
a:hover { text-decoration-color: rgba(255,255,255,0.7); }

/* Header */
.site-header {
    border-bottom: 1px solid var(--rule);
    padding: 18px 24px;
}
.site-header .inner {
    max-width: 740px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
}
.site-header .brand {
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--text-primary);
}
.site-header .brand img { width: 28px; height: 28px; display: block; }
.site-header .brand .wordmark {
    font-family: var(--serif);
    font-variant: small-caps;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.06em;
    text-transform: lowercase;
}
.site-header .back {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
}
.site-header .back:hover { color: var(--text-primary); }

/* Document body */
main {
    flex: 1;
    padding: 56px 24px 40px;
}
main .container {
    max-width: 680px;
    margin: 0 auto;
}

main h1 {
    font-family: var(--serif);
    font-variant: small-caps;
    text-transform: lowercase;
    font-weight: 600;
    font-size: clamp(32px, 5vw, 42px);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}
main .subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}
main h2 {
    font-family: var(--rounded);
    font-weight: 600;
    font-size: 18px;
    margin-top: 36px;
    margin-bottom: 10px;
    color: var(--text-primary);
}
main h2:first-of-type { margin-top: 0; }
main p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}
main ul, main ol {
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 24px;
}
main li { margin-bottom: 8px; }
main strong { color: var(--text-primary); font-weight: 600; }

.email-link {
    display: inline-block;
    margin-top: 4px;
    font-size: 18px;
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.3);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--rule);
    padding: 28px 24px 36px;
    text-align: center;
}
.site-footer .footer-links {
    display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 10px;
}
.site-footer a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
}
.site-footer a:hover { color: var(--text-primary); }
.site-footer .copyright {
    font-size: 13px;
    color: var(--text-muted);
}
