:root {
  --navy: #091F14;
  --cream: #F7F4EE;
  --lime: #BAFF2A;
  --text-muted: rgba(247, 244, 238, 0.5);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--lime); color: var(--navy); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(186, 255, 42, 0.3); border-radius: 3px; }
