/* Shared base for AuditStore legal/support pages (support.html, privacy.html) */
:root{
  --bg:#fbf9f5; --fg:#1d1d24; --muted:#6b6b76; --dim:#97979f;
  --accent:#3d9be0; --accent-ink:#1f7dc4; --card:#ffffff; --line:rgba(20,22,40,.09);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; background:var(--bg); color:var(--fg);
  font-family:-apple-system,"SF Pro Text",system-ui,sans-serif;
  line-height:1.6; -webkit-font-smoothing:antialiased;
}
a{color:var(--accent-ink)}
.wrap{max-width:760px; margin:0 auto; padding:0 28px}
header.site{
  position:sticky; top:0; z-index:50; backdrop-filter:blur(16px);
  background:rgba(251,249,245,.72); border-bottom:1px solid rgba(20,22,40,.06);
}
header.site .wrap{max-width:1140px; height:60px; display:flex; align-items:center; gap:10px}
header.site a.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--fg)}
header.site img{width:26px; height:26px; border-radius:7px; box-shadow:0 3px 12px -2px var(--accent)}
header.site .name{font-size:16px; font-weight:700; letter-spacing:-.01em}
header.site .spacer{flex:1}
header.site .back{font-size:13px; color:var(--muted); text-decoration:none; font-weight:500}
main{padding:64px 0 40px}
h1{font-size:40px; line-height:1.05; font-weight:800; letter-spacing:-.03em; margin:0}
.lede{font-size:17px; color:var(--muted); margin-top:22px}
p,li{font-size:15.5px; color:#45454e}
p strong{color:var(--fg)}
code{font-family:ui-monospace,Menlo,monospace; font-size:.9em; color:var(--fg);
  background:rgba(20,22,40,.05); padding:1px 5px; border-radius:5px}
footer.site{border-top:1px solid var(--line); margin-top:64px}
footer.site .wrap{max-width:1140px; padding-top:28px; padding-bottom:50px}
footer.site .row{display:flex; align-items:center; gap:12px; flex-wrap:wrap}
footer.site .brand{display:flex; align-items:center; gap:9px}
footer.site .brand img{width:22px; height:22px; border-radius:6px}
footer.site .brand span{font-size:14px; font-weight:700}
footer.site .tag{font-size:12px; color:var(--dim)}
footer.site nav{margin-left:auto; display:flex; gap:22px}
footer.site nav a{font-size:12.5px; color:var(--muted); text-decoration:none}
footer.site .fine{font-size:11px; color:var(--dim); margin-top:20px}
@media(max-width:560px){ h1{font-size:32px} main{padding-top:44px} }
