/* Kepler — Spacing & radius tokens */

:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* Corner radii — the app leans heavily on very rounded, "soft" geometry */
  --radius-sm: 8px;    /* rounded-lg — small chips, icon buttons */
  --radius-md: 12px;   /* rounded-xl — buttons, inputs, nav items */
  --radius-lg: 16px;   /* rounded-2xl — inputs, list rows, small cards */
  --radius-xl: 24px;   /* rounded-3xl — cards, modals, panels */
  --radius-2xl: 40px;  /* rounded-[2.5rem] — login card, bottom sheet, hero panels */
  --radius-full: 9999px; /* pills, avatars, badges */

  /* Sidebar / layout constants */
  --sidebar-width: 256px;
  --topbar-height: 64px;
  --bottomnav-height: 64px;
}
