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

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Colors */
  --bg: #07101d;
  --bg2: #0c1825;
  --bg3: #111f30;
  --bg4: #162538;
  --border: #1a3050;
  --border2: #254268;
  --text: #dce8f5;
  --muted: #6b8fad;
  --muted2: #8fb3cc;
  --accent: #3b9eff;
  --green: #22c55e;
  --purple: #a78bfa;
  --orange: #f97316;
  --red: #ef4444;

  /* Typography */
  --fh: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --fm: 'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 28px;
  --space-lg: 52px;
  --space-xl: 100px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ── BASE ─────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, #1a3858 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
