/* Shared by the privacy policy and the terms. Kept in one file so the two pages
   cannot drift apart visually, and deliberately plain: Google's verification
   reviewer and a dermatologist checking what happens to their compound are both
   reading for content, not decoration. */
:root {
  --ink: #14181f;
  --muted: #55606f;
  --line: #e3e7ec;
  --accent: #2a78d6;
  --surface: #ffffff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font: 16px/1.65 Georgia, "Times New Roman", serif;
  -webkit-text-size-adjust: 100%;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 56px 22px 88px; }
header { border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 34px; }
.brand {
  font-size: 1.45rem; font-weight: 700; letter-spacing: -0.01em;
  text-decoration: none; color: var(--ink); display: inline-block;
}
.brand span { color: var(--accent); }
.tag { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }
h1 { font-size: 1.75rem; line-height: 1.25; margin: 0 0 6px; letter-spacing: -0.01em; }
.updated { color: var(--muted); font-size: 0.86rem; margin: 0 0 30px; }
h2 {
  font-size: 1.06rem; margin: 34px 0 10px; letter-spacing: 0.01em;
  text-transform: uppercase; color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
}
p, li { color: var(--ink); }
ul { padding-left: 20px; }
li { margin: 7px 0; }
a { color: var(--accent); }
.box {
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  background: #f8fafc; padding: 14px 18px; border-radius: 6px; margin: 22px 0;
}
.box strong { display: block; margin-bottom: 4px; }
footer {
  margin-top: 52px; padding-top: 20px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.86rem;
}
footer a { margin-right: 16px; }
@media (prefers-color-scheme: dark) {
  :root { --ink: #e8eaed; --muted: #9aa4b2; --line: #2a2f36; --surface: #14171c; --accent: #6aa8f0; }
  .box { background: #1a1f26; }
}

/* Author credit, shown in the footer of every page. */
.authors {
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
