:root {
  /* Typography */
  --org-font-sans: "Public Sans", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;

  /* Spacing */
  --org-space-1: 4px;
  --org-space-2: 8px;
  --org-space-3: 12px;
  --org-space-4: 16px;
  --org-space-6: 24px;
  --org-space-8: 32px;

  /* Radius */
  --org-radius-1: 6px;
  --org-radius-2: 10px;

  /* Colors */
  --org-color-text: #111827;
  --org-color-muted: #6b7280;
  --org-color-border: #e5e7eb;
  --org-color-bg: #ffffff;
  --org-color-primary: #2563eb;
  --org-color-primary-contrast: #ffffff;

  /* Focus */
  --org-focus: 0 0 0 3px rgba(37, 99, 235, 0.35);
}

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


