/* ============================================================
   Meshage — Spacing, radius, sizing
   4px base grid. Generous touch targets (44px min).
   ============================================================ */
:root {
  /* ---- Spacing scale (4px base) ---- */
  --space-0: 0;
  --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;
  --space-20: 80px;

  /* ---- Radii — soft but tactical, never pill-everything ---- */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;   /* default control / card radius */
  --radius-lg: 20px;   /* sheets, large cards */
  --radius-xl: 28px;   /* hero panels */
  --radius-bubble: 18px; /* message bubbles */
  --radius-full: 999px;

  /* ---- Touch / control sizing ---- */
  --control-sm: 36px;
  --control-md: 44px;   /* minimum tap target */
  --control-lg: 52px;
  --icon-sm: 16px;
  --icon-md: 20px;
  --icon-lg: 24px;

  /* ---- Layout ---- */
  --screen-pad: var(--space-5);
  --screen-max: 440px;  /* phone canvas width */
}
