/* Privacy policy page — styles. Loaded by privacy.html. */
:root { --ink:#1a1a1a; --muted:#667; --line:#e7e9f0; --brand:#2b6ef0; --bg:#fff; }
* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: var(--ink); line-height: 1.6; background: var(--bg); }

/* Brand wordmark (shared by header + footer) */
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand img { height: 30px; width: 30px; }
.brand .wm { display: inline-flex; flex-direction: column; line-height: 1.1; }
.brand .wm b { font-size: 18px; font-weight: 800; letter-spacing: -.2px; }
.brand .wm b i { font-style: normal; color: var(--brand); }
.brand .wm em { font-style: normal; font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 2px; }
.sp { flex: 1; }

/* Header */
.site-head { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 0; z-index: 5; }
.site-head .in { max-width: 880px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; gap: 14px; }
.head-links { display: flex; align-items: center; gap: 18px; }
.head-links a { text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 600; }
.head-links a:hover { color: var(--brand); }
.head-links a.cta { background: var(--brand); color: #fff; padding: 8px 14px; border-radius: 8px; }
.head-links a.cta:hover { color: #fff; opacity: .92; }

/* Content */
.doc { max-width: 760px; margin: 0 auto; padding: 40px 20px 72px; }
.doc h1 { font-size: 28px; margin: 0 0 4px; }
.doc h2 { font-size: 19px; margin-top: 30px; }
.doc .muted { color: var(--muted); font-size: 14px; }
.doc code { background: #f2f2f2; padding: 1px 6px; border-radius: 4px; }
.doc a { color: var(--brand); }

/* Footer */
.site-foot { border-top: 1px solid var(--line); background: #fafbff; padding: 24px 0 30px; }
.site-foot .in { max-width: 880px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.foot-links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-links a { text-decoration: none; color: var(--muted); font-size: 13px; font-weight: 600; }
.foot-links a:hover { color: var(--brand); }
.site-foot .copy { max-width: 880px; margin: 12px auto 0; padding: 0 20px; color: var(--muted); font-size: 12px; }

@media (max-width: 560px) {
  .brand .wm em { display: none; }
  .head-links { gap: 12px; }
  .head-links a:not(.cta) { display: none; }
}
