/* 🎨 N8DE.ME — DESIGN SYSTEM */

:root {
  /* Colors */
  --color-bg: #000000;
  --color-bg-secondary: #0F172A;
  --color-orange: #FF6B00;
  --color-gold: #F5A623;
  --color-white: #FFFFFF;
  --color-text: #FFFFFF;
  --color-text-secondary: #D1D5DB;
  --color-border: #1F2937;
  --color-hover: #E85900;
  --color-cyan: #22D3EE;

  /* Typography */
  --font-primary: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  /* Sizes */
  --size-h1: 48px;
  --size-h1-mobile: 32px;
  --size-h2: 36px;
  --size-h2-mobile: 24px;
  --size-h3: 28px;
  --size-h3-mobile: 20px;
  --size-body: 16px;
  --size-small: 14px;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

@media (max-width: 768px) {
  :root {
    --size-h1: 32px;
    --size-h2: 24px;
    --size-h3: 20px;
  }
}
