/* A Plus — Spacing, radius, elevation tokens
   8-point grid. Section rhythm lives at 64–128px. When in doubt, add space. */

:root {
  /* Spacing scale (8-point grid; 4px only for fine adjustments) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Layout */
  --content-max: 1200px;
  --gutter: 32px;
  --section-pad-desktop: 112px; /* 96–128 range */
  --section-pad-mobile: 64px;

  /* Radius */
  --radius-sm: 8px;    /* inputs, small chips */
  --radius-md: 14px;   /* cards, panels */
  --radius-lg: 22px;   /* large feature cards, modals */
  --radius-pill: 999px;/* buttons */

  /* Elevation — minimal. Prefer cloud fills + mist hairlines to shadows. */
  --shadow-soft: 0 4px 24px rgba(29, 29, 31, 0.06);
  --shadow-card: 0 8px 40px rgba(29, 29, 31, 0.08);

  /* Motion */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --dur-micro: 150ms; /* @kind other */
  --dur-standard: 250ms; /* @kind other */
  --dur-entrance: 400ms; /* @kind other */
}
