/* ==========================================================================
   Design Tokens — Prosper202 Marketing Site
   ========================================================================== */

:root {
  /* Background Colors */
  --color-bg-primary: #0a0e1a;
  --color-bg-secondary: #111827;
  --color-bg-tertiary: #1a2035;
  --color-bg-card: rgba(17, 24, 39, 0.8);
  --color-bg-card-hover: rgba(26, 32, 53, 0.9);
  --color-bg-code: #0d1117;

  /* Accent Colors */
  --color-accent-primary: #4f46e5;
  --color-accent-secondary: #7c3aed;
  --color-accent-blue: #3b82f6;
  --color-accent-green: #10b981;
  --color-accent-orange: #f59e0b;
  --color-accent-red: #ef4444;
  --color-accent-cyan: #06b6d4;

  /* Text Colors */
  --color-text-primary: #f9fafb;
  --color-text-secondary: #9ca3af;
  --color-text-tertiary: #6b7280;
  --color-text-accent: #818cf8;

  /* Border */
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-hover: rgba(255, 255, 255, 0.2);

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, #4f46e5, #7c3aed);
  --gradient-accent-hover: linear-gradient(135deg, #5b54e8, #8b4fe0);
  --gradient-hero: linear-gradient(180deg, #0a0e1a 0%, #111827 100%);
  --gradient-section: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
  --gradient-card-border: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(124, 58, 237, 0.1));

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', Consolas, 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: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;

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

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --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;

  /* Layout */
  --container-max: 1200px;
  --container-padding: var(--space-6);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(79, 70, 229, 0.15);

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

  /* Z-index */
  --z-nav: 100;
  --z-overlay: 200;
}
