:root {
  --bg: #fff;
  --fg: #1c1a17;
  --muted: #6b6b6b;
  --accent: #e8836b;
  --border: #ececec;
  --max: 760px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1c1a17;
  background: var(--bg);
  line-height: 1.65;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 32px 20px 64px; }
header.site { border-bottom: 1px solid var(--border); }
header.site .wrap { padding-top: 20px; padding-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }
.brand { font-weight: 800; font-size: 20px; letter-spacing: -0.3px; color: #1c1a17; text-decoration: none; }
nav a { color: var(--muted); text-decoration: none; margin-left: 18px; font-size: 14px; }
nav a:hover { color: var(--accent); }
h1 { font-size: 32px; letter-spacing: -0.5px; margin: 24px 0 8px; }
h2 { font-size: 20px; margin: 28px 0 8px; }
p, li { color: #2a2724; }
.muted { color: var(--muted); }
a { color: var(--accent); }
.note {
  background: #fff7f4;
  border: 1px solid #f3d9d0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: #8a4a39;
  margin: 16px 0;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.hero { text-align: center; padding: 56px 0 24px; }
.hero h1 { font-size: 40px; }
.hero p { font-size: 18px; color: var(--muted); max-width: 540px; margin: 8px auto 24px; }
.badges { display: flex; flex-wrap: wrap; justify-content: center; }
.badges img { height: 48px; margin: 6px; }
/* FAQ — native <details> disclosure so it works with no JavaScript. */
.faq details {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px 16px;
  margin: 10px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 10px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent); font-weight: 700; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { border-bottom: 1px solid var(--border); }
.faq details p { margin: 10px 0 4px; }
/* Tables (e.g. the privacy data-retention matrix) */
table.data { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
table.data th, table.data td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border: 1px solid var(--border);
}
table.data th { background: #fafafa; font-weight: 700; }
table.data thead th { color: #1c1a17; }
footer.site { border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }
footer.site .wrap { padding: 24px 20px; display: flex; gap: 18px; flex-wrap: wrap; }
footer.site a { color: var(--muted); text-decoration: none; }
footer.site a:hover { color: var(--accent); }
