@layer tokens;

@layer tokens {
  @property --gradient-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
  }

  :root {
    /* Color Palette - Core */
    --color-primary-h: 2;
    --color-primary-s: 100%;
    --color-primary-l: 60%; /* #FF3B30 */
    
    --color-primary: hsl(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l));
    --color-primary-dark: hsl(var(--color-primary-h), var(--color-primary-s), 47%); /* #CC2E25 */
    --color-primary-light: hsl(var(--color-primary-h), var(--color-primary-s), 67%); /* #FF6259 */
    
    --color-secondary: #FF9500;
    --color-accent: #FF2D55;
    --color-success: #34C759;
    
    /* Spacing System */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Typography */
    --font-display: 'Syne', 'Bebas Neue', 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'DM Sans', 'Outfit', system-ui, sans-serif;
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Misc */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  }

  :root, [data-theme="dark"] {
    --color-bg: #08192E;
    --color-surface: #0F2744;
    --color-surface-2: #162E4D;
    --color-text-primary: #F0F4F8;
    --color-text-secondary: #A8B8CC;
    --color-border: #1E3A5F;
  }

  [data-theme="light"] {
    --color-bg: #F8FAFC;
    --color-surface: #FFFFFF;
    --color-surface-2: #F1F5F9;
    --color-text-primary: #08192E;
    --color-text-secondary: #475569;
    --color-border: #E2E8F0;
  }
}
