:root {
  --bg: #0b0b0b;
  --text: #f1eee7;
  --muted: rgba(241, 238, 231, .56);
  --faint: rgba(241, 238, 231, .13);
  --line: rgba(241, 238, 231, .18);
  --accent: #f1eee7;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
html { background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, a { color: inherit; font: inherit; }
a { text-decoration: none; }
button { border: 0; }
