/* Shared reset and base tokens */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #09090f;
  --surface: #12121c;
  --surface2: #1a1a26;
  --border: rgba(255,255,255,0.09);
  --accent: #d6ea6a;
  --text: #ececf1;
  --muted: #9095a5;
  --muted2: #aaaebc;
}
body.light {
  --bg: #f0f1f4;
  --surface: #ffffff;
  --surface2: #e8eaef;
  --border: rgba(15, 23, 42, 0.12);
  --accent: #141428;
  --text: #111118;
  --muted: #5c6470;
  --muted2: #3f4656;
}
