:root {
  --bg: #080808;
  --surface: #111111;
  --surface-elevated: #171717;
  --border: #292929;
  --text: #f5f5f3;
  --muted: #929292;
  --accent: #f5d90a;
  --font: Inter, Geist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { color-scheme: dark; }
body { margin: 0; min-height: 100vh; background: var(--bg); color: var(--text); font-family: var(--font); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: #080808; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
