/* ============================================================
   Spacing, radii, shadows, borders.
   Base spacing scale matches the Figma Variable collection
   (4 / 8 / 16 / 24 / 32).
   ============================================================ */

:root {
  /* ---- Spacing scale ---- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;

  /* ---- Corner radii ---- */
  --radius-xs: 4px;
  --radius-sm: 5px;     /* inputs / chips */
  --radius-md: 8px;     /* cards (manager) */
  --radius-lg: 12px;    /* cards (consult) / panels */
  --radius-pill: 999px; /* rounded buttons, chips, tabs */

  /* ---- Borders ---- */
  --border-width: 1px;
  --border-width-thick: 2px;

  /* ---- Shadows (Material elevation, as used in file) ---- */
  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-2: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 2px 6px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-4: 0 4px 4px rgba(0, 0, 0, 0.25);          /* panel header drop shadow */
  --shadow-menu: 0 4px 16px rgba(0, 0, 0, 0.14), 0 2px 6px rgba(0, 0, 0, 0.12);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);   /* @kind other */
  --ease-decelerate: cubic-bezier(0, 0, 0.2, 1);   /* @kind other */
  --duration-fast: 120ms;   /* @kind other */
  --duration-base: 200ms;   /* @kind other */
}
