:root {
  /* Background */
  --color-bg: #0a0a0f;
  --color-bg-elevated: #12121a;
  --color-bg-card: #1a1a25;

  /* Text */
  --color-text: #e8e8ed;
  --color-text-muted: #8888a0;
  --color-text-heading: #ffffff;

  /* Primary accent */
  --color-primary: #6366f1;
  --color-primary-light: #818cf8;
  --color-primary-glow: rgba(99, 102, 241, 0.3);

  /* Background accents */
  --color-accent-1: #06b6d4;
  --color-accent-2: #8b5cf6;

  /* Product colors */
  --color-turna: #f59e0b;
  --color-appuntamenti: #3b82f6;
  --color-calcio: #22c55e;
  --color-cercaleeds: #a855f7;
  --color-smarttimbra: #ef4444;

  /* Borders */
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, 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-hero: clamp(2.5rem, 6vw, 5rem);

  /* Spacing */
  --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;

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

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;

  /* Scroll (set by JS) */
  --scroll-progress: 0;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}
