/* Shared style for AI Audit legal pages (host on GitHub Pages, etc.) */
:root {
  --ink: #1e2230;
  --muted: #5b6478;
  --line: #e6e8f0;
  --brand: #4f46e5;
  --bg: #ffffff;
  --bg-soft: #f7f8fc;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg-soft);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 780px; margin: 0 auto; padding: 40px 22px 80px; }
header.site {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px; margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.logo {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.brand { font-weight: 800; font-size: 18px; }
.brand small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; }
h1 { font-size: 28px; margin: 0 0 4px; }
.updated { color: var(--muted); font-size: 13.5px; margin: 0 0 28px; }
h2 { font-size: 19px; margin: 30px 0 8px; }
h3 { font-size: 16px; margin: 20px 0 6px; }
p, li { font-size: 15.5px; color: #2a3040; }
a { color: var(--brand); }
.card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 14px; padding: 22px 24px; margin-bottom: 18px;
}
.tag {
  display: inline-block; background: #eef0fe; color: var(--brand);
  font-size: 12.5px; font-weight: 700; padding: 3px 10px; border-radius: 999px;
}
nav.legal { margin: 26px 0 0; font-size: 14px; }
nav.legal a { margin-right: 16px; }
footer.site { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.toc a { display: inline-block; margin: 0 14px 8px 0; }
.note { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 12px 16px; color: #14532d; font-size: 14.5px; }
