/* TrustThisCar - static site. One stylesheet, no frameworks, no trackers. */
:root {
  --ink: #12181f;
  --muted: #5a6672;
  --line: #e2e7ec;
  --bg: #ffffff;
  --accent: #0f7b4f;
  --accent-ink: #ffffff;
  --warn: #b8860b;
  --max: 720px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8edf2;
    --muted: #9aa7b4;
    --line: #2a333d;
    --bg: #12181f;
    --accent: #1fa96c;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0 16px;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 32px 0 72px; }
header.site { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.brand { font-weight: 800; font-size: 19px; letter-spacing: -0.02em; text-decoration: none; color: var(--ink); }
.brand span { color: var(--accent); }
nav a { color: var(--muted); text-decoration: none; margin-left: 18px; font-size: 15px; }
nav a:hover { color: var(--ink); text-decoration: underline; }
h1 { font-size: 32px; line-height: 1.2; letter-spacing: -0.02em; margin: 32px 0 8px; }
h2 { font-size: 21px; margin: 36px 0 8px; letter-spacing: -0.01em; }
h3 { font-size: 17px; margin: 24px 0 4px; }
p, li { color: var(--ink); }
.lede { font-size: 19px; color: var(--muted); margin-top: 0; }
.updated { color: var(--muted); font-size: 15px; margin-top: 0; }
a { color: var(--accent); }
ul { padding-left: 22px; }
li { margin: 6px 0; }
table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
th, td { text-align: left; vertical-align: top; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-weight: 600; }
.btn { display: inline-block; background: var(--accent); color: var(--accent-ink); padding: 13px 22px; border-radius: 10px; text-decoration: none; font-weight: 600; }
.btn:hover { filter: brightness(1.08); }
.card { border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; margin: 20px 0; }
.card h3 { margin-top: 0; }
footer.site { border-top: 1px solid var(--line); margin-top: 56px; padding-top: 20px; color: var(--muted); font-size: 15px; }
footer.site a { color: var(--muted); }
code { background: rgba(127,127,127,.14); padding: 2px 6px; border-radius: 5px; font-size: 14px; }
.lang { font-size: 15px; color: var(--muted); }
