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

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --orange:       #FFCF52;
  --orange-light: #FFF170;
  --orange-dark:  #E6B030;
  --orange-glow:  rgba(255, 207, 82, 0.35);

  --bg:      #080A0E;
  --bg2:     #0F1117;
  --bg3:     #141820;
  --surface: rgba(255, 255, 255, 0.04);
  --border:  rgba(255, 207, 82, 0.18);
  --text:    #F0F0F0;
  --muted:   rgba(240, 240, 240, 0.55);

  --font-main: 'Outfit', sans-serif;
  --font-alt:  'Space Grotesk', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  overflow-x: hidden;
}

::selection {
  background: var(--orange);
  color: #fff;
}

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
