/* Global design tokens */
:root {
      --bg:        #080808;
      --bg2:       #111111;
      --bg3:       #181818;
      --accent:    #E30613;
      --accent2:   #B50510;
      --white:     #ffffff;
      --gray:      #888888;
      --gray-light:#cccccc;
      --border:    rgba(255,255,255,0.07);
      --font-title:'Anton', sans-serif;
      --font-body: 'Outfit', sans-serif;
      --radius:    4px;
      --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

      /* Spacing scale (mirrors theme.json presets) */
      --space-xs:  8px;
      --space-s:   16px;
      --space-m:   24px;
      --space-l:   40px;
      --space-xl:  80px;
      --space-xxl: 120px;

      /* Font-size scale (mirrors theme.json + .text-*) */
      --text-xs:  11px;
      --text-s:   13px;
      --text-m:   16px;
      --text-l:   18px;
      --text-xl:  24px;
      --text-xxl: 40px;
    }
