/* assets/css/security-policy.css
 * Styles for /security-policy.html only. Kept separate from the main
 * site.css so this page loads even if /partials/head.php (and therefore
 * the rest of the site's templating) is broken — it only depends on
 * this one static, same-origin stylesheet.
 *
 * Must stay a linked stylesheet, not an inline <style> block: the
 * site-wide CSP sets style-src-elem 'self' with no 'unsafe-inline',
 * which silently blocks inline <style> tags in any CSP-compliant
 * browser. A same-origin <link rel="stylesheet"> is allowed under
 * 'self' and renders correctly.
 */
:root {
  --accent: #39D439;
  --accent-2: #27a827;
  --dark: #0a150a;
  --text: #1a1a1a;
  --muted: #5a6361;
  --bg: #f7f9f7;
  --white: #fff;
  --border: #e5e9e5;
}
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 1.5rem 60px;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.15; margin: .5rem 0 .8rem; color: var(--dark); }
h2 { font-size: 1.25rem; font-weight: 700; margin: 2.2rem 0 .8rem; color: var(--dark); padding-bottom: .4rem; border-bottom: 1px solid var(--border); }
h3 { font-size: 1rem; font-weight: 700; margin: 1.4rem 0 .5rem; color: var(--dark); }
p, li { margin: 0 0 .8rem; }
a { color: var(--accent-2); text-decoration: underline; }
a:hover { color: var(--accent); }
code, kbd { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .9em; background: var(--white); border: 1px solid var(--border); padding: .12rem .42rem; border-radius: 4px; }
ul { padding-left: 1.4rem; }
.eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-2); margin: 0 0 .3rem; }
.meta { font-size: .85rem; color: var(--muted); margin: 0 0 .6rem; }
.lede { font-size: 1.05rem; color: var(--text); margin-bottom: 1.5rem; }
.box { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1.2rem 1.4rem; margin: 1.4rem 0; }
.box.warn { border-left: 4px solid #b91c1c; }
.nav { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--border); display: flex; gap: 1rem; flex-wrap: wrap; }
.nav a { padding: .55rem 1rem; border: 1px solid var(--border); border-radius: 6px; text-decoration: none; color: var(--dark); font-weight: 600; font-size: .88rem; }
.nav a:hover { border-color: var(--accent); color: var(--accent-2); }
address { font-style: normal; line-height: 1.7; }
table { border-collapse: collapse; width: 100%; margin: 1rem 0; font-size: .92rem; }
th, td { text-align: left; padding: .55rem .7rem; border-bottom: 1px solid var(--border); }
th { background: var(--white); font-weight: 700; color: var(--dark); }
@media (max-width: 560px) { main { padding: 50px 1.2rem 40px; } }
