/* css/tokens.css */
:root {
  /* Colors */
  --color-bg:         #000000;
  --color-accent:     #1cc9a0;
  --color-text:       #fcfdfd;
  --color-text-muted: #b8b8b8;
  --color-border:     rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-sans: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  1.875rem;  /* 30px */
  --text-4xl:  2.25rem;   /* 36px */
  --text-5xl:  3rem;      /* 48px */
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --leading-tight:   1.2;
  --leading-normal:  1.5;

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Layout */
  --max-width:  1208px;
  --nav-height: 80px;

  /* Radii */
  --radius-pill: 999px;
  --radius-md:   8px;
  --radius-sm:   4px;
}
