/* ── Reset & tokens ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #080a0f;
  --bg2:      #0d1017;
  --surface:  #0f1219;
  --surface2: #141820;
  --border:   #1a2030;
  --border2:  #222a3a;
  --green:    #22c55e;
  --green2:   #16a34a;
  --green-dim:#0f4a25;
  --green-glow: rgba(34,197,94,.15);
  --amber:    #f59e0b;
  --red:      #ef4444;
  --blue:     #3b82f6;
  --text:     #e2e8f0;
  --text2:    #94a3b8;
  --text3:    #4a5568;
  --mono:     'Geist Mono', monospace;
  --sans:     'Geist', sans-serif;
  --r:        8px;
  --sidebar:  220px;
}

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }

.hidden { display: none !important; }
