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

:root {
  --bg: #000000;
  --surface: #0a0a0a;
  --border: #1a1a1a;
  --border-hover: #2a2a2a;
  --text: #e8e8e8;
  --muted: #444;
  --accent: #22c55e;
  --accent-hover: #16a34a;
  --accent-dim: rgba(34, 197, 94, 0.08);
  --accent-dim2: rgba(34, 197, 94, 0.15);
  --error: #ef4444;
  --error-dim: rgba(239, 68, 68, 0.08);
  --font-mono: 'Share Tech Mono', monospace;
  --font-sans: 'Share Tech Mono', monospace;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(34,197,94,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

* {
  font-family: var(--font-mono) !important;
  letter-spacing: 0.04em;
}
