/* Design Tokens – VOID Agency */
:root {
  /* ======= COLORS ======= */
  --color-bg:           #0A0A0A;
  --color-surface:      #111111;
  --color-surface-2:    #1A1A1A;
  --color-border:       #222222;
  --color-border-light: #2E2E2E;

  --color-text:         #F0F0F0;
  --color-text-muted:   #888888;
  --color-text-dim:     #555555;

  --color-accent:       #D4FF00;
  --color-accent-dark:  #B8E000;
  --color-accent-dim:   rgba(212, 255, 0, 0.12);

  --color-white:        #FFFFFF;
  --color-success:      #22C55E;
  --color-error:        #EF4444;

  /* ======= TYPOGRAPHY ======= */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'Space Mono', monospace;

  --font-size-xs:   0.75rem;
  --font-size-sm:   0.875rem;
  --font-size-base: 1rem;
  --font-size-lg:   1.125rem;
  --font-size-xl:   1.25rem;
  --font-size-2xl:  1.5rem;
  --font-size-3xl:  1.875rem;
  --font-size-4xl:  2.25rem;
  --font-size-5xl:  3rem;
  --font-size-6xl:  3.75rem;
  --font-size-7xl:  4.5rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semi:   600;
  --font-weight-bold:   700;

  --line-height-tight:   1.15;
  --line-height-snug:    1.3;
  --line-height-normal:  1.6;
  --line-height-relaxed: 1.75;

  /* ======= SPACING ======= */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ======= LAYOUT ======= */
  --container-max:     1280px;
  --container-padding: clamp(1.25rem, 5vw, 2rem);
  --header-height:     72px;
  --section-py:        clamp(5rem, 10vw, 8rem);

  /* ======= BORDERS ======= */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* ======= SHADOWS ======= */
  --shadow-accent: 0 0 40px rgba(212, 255, 0, 0.2);
  --shadow-lg:     0 8px 40px rgba(0, 0, 0, 0.5);

  /* ======= TRANSITIONS ======= */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* ======= Z-INDEX ======= */
  --z-header:  100;
  --z-overlay: 200;
  --z-toast:   400;
}
