:root {
  color-scheme: light;
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --text-xxl: clamp(2.6rem, 3.6vw, 3.4rem);
  --text-xl: clamp(2.1rem, 2.6vw, 2.6rem);
  --text-lg: clamp(1.4rem, 2vw, 1.75rem);
  --text-md: 1rem;
  --text-sm: 0.95rem;
  --text-xs: 0.85rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 5.5rem;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 16px 36px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.16);

  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-muted: #f1f5f9;
  --text: #0f172a;
  --muted: #475569;
  --primary: #1d4ed8;
  --primary-dark: #1e40af;
  --border: #e2e8f0;
  --focus: rgba(37, 99, 235, 0.45);

  --max-width: 1120px;
  --header-height: 72px;
  --section-padding: clamp(3rem, 6vw, 4.5rem);
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
    --section-padding: 2.75rem;
  }
}
