*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #0A0F1E;
  --surface: #141519;
  --accent:  #5B73F0;
  --green:   #10B981;
  --amber:   #F59E0B;
  --red:     #EF4444;
  --text:    #FFFFFF;
  --muted:   #94A3B8;
  --dim:     #475569;
  --border:  rgba(255,255,255,0.06);
  --mono:    'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
