/* ============================================
   VARIABLES.CSS — Webly Design System
   ============================================ */

:root {
  /* --- Colors --- */
  --color-bg-primary: #06060e;
  --color-bg-secondary: #0c0c18;
  --color-bg-tertiary: #141425;
  --color-bg-glass: rgba(255, 255, 255, 0.03);
  --color-border-glass: rgba(255, 255, 255, 0.08);
  --color-border-subtle: rgba(255, 255, 255, 0.04);

  --color-accent-cyan: #00e5ff;
  --color-accent-violet: #8b5cf6;
  --color-accent-gradient: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-violet));

  --color-text-primary: #f0f0f5;
  --color-text-secondary: #7a7a95;
  --color-text-muted: #4a4a65;

  /* --- Typography --- */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.925rem + 0.375vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);
  --text-5xl: clamp(3rem, 2rem + 5vw, 5.5rem);
  --text-6xl: clamp(3.5rem, 2.2rem + 6.5vw, 7rem);

  /* --- Spacing --- */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

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

  /* --- Shadows --- */
  --shadow-glow-cyan: 0 0 20px rgba(0, 229, 255, 0.15);
  --shadow-glow-violet: 0 0 20px rgba(139, 92, 246, 0.15);
  --shadow-glow-accent: 0 0 30px rgba(0, 229, 255, 0.1), 0 0 60px rgba(139, 92, 246, 0.05);

  /* --- Transitions --- */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 500ms cubic-bezier(0.16, 1, 0.3, 1);

  /* --- Z-index --- */
  --z-base: 1;
  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;

  /* --- Container --- */
  --container-max: 1200px;
  --container-padding: clamp(1.5rem, 5vw, 3rem);
}
