/* Purrsist's own palette, taken from the app: rust #b3562f means actionable,
   cream #f6f2ec is the surface, and the three inks are the app's exactly.
   No web fonts on purpose — a privacy page and a support page should render
   instantly on a bad connection, and neither needs a typeface of its own. */
:root {
  --rust: #b3562f;
  --rust-ink: #8f4526;
  --cream: #f6f2ec;
  --surface: #fffdfa;
  --ink: #3f3a33;
  --ink-2: #6b6154;
  --ink-3: #a4988a;
  --line: #e8ded2;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 17px/1.62 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.page { max-width: 680px; margin: 0 auto; padding: 40px 22px 72px; }
header.mast { display: flex; align-items: center; gap: 13px; margin-bottom: 34px; }
header.mast svg { width: 46px; height: 46px; flex: none; }
header.mast .name { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
header.mast a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 13px; }
h1 { font-size: clamp(27px, 6vw, 35px); font-weight: 700; letter-spacing: -0.022em; line-height: 1.12; margin: 0 0 6px; }
h2 { font-size: 20px; font-weight: 600; letter-spacing: -0.014em; margin: 38px 0 10px; }
h3 { font-size: 17px; font-weight: 600; margin: 26px 0 8px; }
p, li { color: var(--ink-2); }
p { margin: 0 0 15px; }
ul { padding-left: 22px; margin: 0 0 15px; }
li { margin-bottom: 8px; }
strong { color: var(--ink); font-weight: 600; }
a { color: var(--rust-ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--rust); }
a:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; border-radius: 2px; }
.updated { font-size: 14px; color: var(--ink-3); margin-bottom: 30px; }
hr { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }
.lede {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 8px;
}
.lede p:last-child { margin-bottom: 0; }
footer {
  margin-top: 46px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 14.5px; color: var(--ink-3);
}
footer a { color: var(--ink-2); }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 8px; }
.btn {
  display: inline-block; background: var(--rust); color: #fff; text-decoration: none;
  font-size: 16px; font-weight: 600; padding: 12px 18px; border-radius: 10px;
  box-shadow: 0 2px 0 #743718;
}
.btn:hover { color: #fff; }
.btn.quiet { background: var(--surface); color: var(--ink); box-shadow: 0 2px 0 var(--line); border: 1px solid var(--line); }
