/* Audiosteer — shared base: design tokens, dark mode, reset, body, links.
   Linked by EVERY page. Change brand colors, fonts, or the dark palette here and
   the whole site updates in one place. Page-specific layout lives in docs.css
   (privacy/support pages) and inline in index.html (marketing home). */
:root {
  --bg: #ffffff;
  --fg: #1c1c1e;
  --muted: #6b6b70;
  --rule: #e5e5ea;
  --accent: #1e6fff;
  --card: #f7f7f9;
  --maxw: 1080px;   /* marketing page width */
  --read: 680px;    /* document reading width */
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111113;
    --fg: #ececef;
    --muted: #9a9aa0;
    --rule: #2a2a2e;
    --accent: #5a9bff;
    --card: #1a1a1d;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
