/* ── Base — variables, reset, typography ─────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --bg:#080a08;
  --surface:#0f120f;
  --surface2:#141a14;
  --border:#1c241c;
  --border2:#243024;
  --green:#a3e635;
  --green-mid:#84cc16;
  --green-dim:rgba(163,230,53,0.12);
  --text:#f0f4f0;
  --text2:#c8d4c8;
  --muted:#6b7f6b;
  --muted2:#4a5a4a;
  --up:#a3e635;
  --down:#f87171;
  --warn:#fb923c;
  --display:'Gravitas One',serif;
  --body:'Inter',sans-serif;
}

html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);font-family:var(--body);-webkit-font-smoothing:antialiased;overflow-x:hidden}

a{color:var(--green);text-decoration:none}
a:hover{text-decoration:underline}

::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:var(--border2);border-radius:99px}
