/* Shared by terms.html and privacy.html.
   The home page carries its own styles inline — it is one file and one job.
   These two are long documents, so they share a stylesheet rather than
   drifting apart. */

:root{
  --brand:#0f62fe; --ink:#161616; --muted:#6f6f6f; --line:#e0e0e0;
  --soft:#f4f4f4; --surface:#ffffff;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0; background:var(--surface); color:var(--ink);
  font-family:'IBM Plex Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  font-size:16px; line-height:1.65; -webkit-font-smoothing:antialiased;
}
a{color:var(--brand)}
.wrap{max-width:1080px;margin:0 auto;padding:0 24px}

header{border-bottom:1px solid var(--line)}
.bar{display:flex;align-items:center;justify-content:space-between;height:68px}
.mark{display:flex;align-items:center;gap:10px;font-weight:600;font-size:19px;
  letter-spacing:-.01em;text-decoration:none;color:var(--ink)}
.mark i{display:grid;place-items:center;width:28px;height:28px;border-radius:6px;
  background:var(--brand);color:#fff;font-style:normal;font-size:16px;font-weight:600}
.bar nav{display:flex;gap:26px;font-size:14.5px}
.bar nav a{color:var(--muted);text-decoration:none}
.bar nav a:hover{color:var(--ink)}

/* ---- the document ----
   Constrained to a readable measure. Legal text that runs the full width of a
   desktop window is legal text nobody finishes. */
.doc{max-width:74ch;padding-top:56px;padding-bottom:80px}
.doc h1{margin:0 0 6px;font-size:clamp(30px,4.6vw,42px);letter-spacing:-.025em;
  font-weight:600;line-height:1.1}
.doc .meta{margin:0 0 32px;color:var(--muted);font-size:14.5px}
.doc h2{margin:40px 0 12px;font-size:20px;font-weight:600;letter-spacing:-.012em}
.doc h3{margin:26px 0 8px;font-size:16.5px;font-weight:600}
.doc p{margin:0 0 14px}
.doc ul{margin:0 0 16px;padding-left:22px}
.doc li{margin-bottom:7px}
.doc code{background:var(--soft);border:1px solid var(--line);border-radius:4px;
  padding:1px 5px;font-size:13.5px;font-family:'IBM Plex Mono',ui-monospace,monospace}

/* ---- callouts ----
   The plain summary at the top and the "have a lawyer read this" note at the
   bottom. Both are the honest bits, so both get a box. */
.callout{background:var(--soft);border:1px solid var(--line);border-left:3px solid var(--brand);
  border-radius:8px;padding:18px 20px;margin:0 0 32px;font-size:15px}
.callout.warn{border-left-color:#b28600;margin:44px 0 0}
.callout strong{font-weight:600}

table{width:100%;border-collapse:collapse;margin:0 0 18px;font-size:15px}
th,td{text-align:left;padding:10px 12px;border-bottom:1px solid var(--line);vertical-align:top}
th{font-size:13px;text-transform:uppercase;letter-spacing:.05em;color:var(--muted);font-weight:600}

footer{border-top:1px solid var(--line);padding:32px 0;font-size:14px;color:var(--muted)}
.fbar{display:flex;flex-wrap:wrap;gap:14px 26px;align-items:center;justify-content:space-between}
.fbar a{color:var(--muted);text-decoration:none}
.fbar a:hover{color:var(--ink);text-decoration:underline}
.flinks{display:flex;gap:22px;flex-wrap:wrap}

a:focus-visible{outline:2px solid var(--brand);outline-offset:3px;border-radius:3px}

@media(max-width:640px){
  .bar nav{gap:16px;font-size:14px}
  .doc{padding-top:38px}
}
