/*
  Shared styling for the written pages.
  =====================================
  Kept as one file that each article inlines a <link> to, rather than copied
  into every page the way index.html and privacy.html each carry their own. Those
  two are single documents with no siblings; these are a set that will grow, and
  three copies of a stylesheet is three places to forget.

  Palette and type scale are lifted from privacy.html deliberately. A visitor
  arriving from Google on one of these pages and then clicking through to the
  home page should not feel like they changed website.
*/
:root {
  --bg: #ffffff; --surface: #f7f8fb; --border: #e2e7f0;
  --text: #0b0e17; --dim: #4d5567; --violet: #6d3bf5; --violet-soft: #efe9ff;
  --lime: #14a35a; --lime-soft: #e2f7ec;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #07080f; --surface: #131725; --border: #242a3c;
    --text: #f2f4fa; --dim: #a3abbf; --violet: #a78bfa; --violet-soft: #1e1b3a;
    --lime: #4ade80; --lime-soft: #0f2a1d;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 17px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 32px 24px 80px; }
a { color: var(--violet); }
h1 { font-size: clamp(30px, 5.5vw, 42px); font-weight: 820; letter-spacing: -0.03em; margin: 0 0 14px; line-height: 1.15; }
h2 { font-size: clamp(21px, 3.4vw, 26px); font-weight: 760; letter-spacing: -0.02em; margin: 40px 0 12px; line-height: 1.25; }
h3 { font-size: 18px; font-weight: 700; margin: 26px 0 8px; }
p { margin: 0 0 16px; }
ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 8px; }
.dim { color: var(--dim); }
.small { font-size: 14.5px; color: var(--dim); }
.lede { font-size: 19px; color: var(--dim); margin-bottom: 28px; }

/* The masthead is a link home and nothing else. These pages exist to be landed
   on cold from a search result, so the first job is saying whose site this is. */
header.mast {
  border-bottom: 1px solid var(--border);
  padding: 16px 0; margin-bottom: 34px;
}
header.mast .wrap { padding-top: 0; padding-bottom: 0; display: flex; gap: 18px; align-items: baseline; flex-wrap: wrap; }
.brand { font-weight: 820; letter-spacing: -0.02em; font-size: 20px; text-decoration: none; color: var(--text); }
.brand span { color: var(--violet); }
header.mast nav a { font-size: 14.5px; font-weight: 600; text-decoration: none; }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px; margin: 24px 0;
}
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card h3 { margin-top: 0; }

/* Used where the page concedes something. A claim page that never gives ground
   reads as marketing; the boxes make the concessions impossible to skim past,
   which is the point of making them. */
.caveat { border-left: 3px solid var(--violet); background: var(--violet-soft); }

table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 15.5px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { font-weight: 700; }
.scroll { overflow-x: auto; }

.cta {
  display: inline-block; background: var(--violet); color: #fff; text-decoration: none;
  font-weight: 700; padding: 13px 22px; border-radius: 12px; margin-top: 6px;
}
footer.end { border-top: 1px solid var(--border); margin-top: 54px; padding-top: 24px; }
footer.end a { margin-right: 16px; font-size: 15px; }
