@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap');

:root {
  --color-bg: #0b1220;
  --color-surface: #111a2b;
  --color-surface-soft: #17243b;
  --color-title: #f8fafc;
  --color-text: #cbd5e1;
  --color-muted: #94a3b8;
  --color-primary: #38bdf8;
  --color-secondary: #818cf8;
  --color-border: #243247;
  --color-white: #ffffff;

  --ff-body: 'Inter', sans-serif;
  --ff-heading: 'Montserrat', sans-serif;

  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.9rem;
  --radius-lg: 1.25rem;

  --shadow-elevated: 0 12px 30px rgb(0 0 0 / 0.3);

  --container-max: 1120px;
  --transition-base: 0.3s ease;
}