/* Shared styling for privacy.html and terms.html. Mirrors index.html's own
   :root palette by hand — the landing site has no build step and no shared
   source of truth with src/theme.ts, so a rebrand still means updating both
   places (same caveat index.html already carries). */
:root {
  --bg: #FFFFFF;
  --ink: #002A2E;
  --ink-muted: #5C7274;
  --border: #E4E4E4;
  --accent-text: #00707A;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 96px;
}

a { color: var(--accent-text); }

.back {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 15px;
  text-decoration: none;
}

h1 { font-size: 32px; font-weight: 600; margin: 0 0 8px; }
h2 { font-size: 20px; font-weight: 600; margin: 40px 0 12px; }
h3 { font-size: 16px; font-weight: 600; margin: 24px 0 8px; }

.updated {
  color: var(--ink-muted);
  font-size: 14px;
  margin: 0 0 8px;
}

p, li { font-size: 16px; color: var(--ink); }
ul { padding-left: 22px; }
li { margin-bottom: 8px; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 15px;
}
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th { font-weight: 600; }

footer {
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding-top: 24px;
  color: var(--ink-muted);
  font-size: 14px;
}
