/* SPACING, RADII, LAYOUT
   8px base rhythm. Restraint: corners are nearly square — this is a reading room,
   not a SaaS dashboard. Largest radius is 4px. */
:root {
  --space-0: 0;
  --space-1: 0.25rem;   /* 4 */
  --space-2: 0.5rem;    /* 8 */
  --space-3: 0.75rem;   /* 12 */
  --space-4: 1rem;      /* 16 */
  --space-5: 1.5rem;    /* 24 */
  --space-6: 2rem;      /* 32 */
  --space-7: 3rem;      /* 48 */
  --space-8: 4rem;      /* 64 */
  --space-9: 6rem;      /* 96 */
  --space-10: 8rem;     /* 128 */

  /* Radii — square-leaning */
  --radius-none: 0;
  --radius-xs: 1px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-pill: 999px;   /* reserved for tags only */

  /* Hairline weight */
  --hairline: 1px; /* @kind spacing */
  --rule: 1px; /* @kind spacing */

  /* Reading measure */
  --measure-prose: 62ch; /* @kind other */
  --measure-narrow: 46ch; /* @kind other */

  /* Content frame */
  --frame-pad: var(--space-7);
  --frame-max: 1120px;
}
