/* Moii spacing, radius, elevation, motion */
:root {
  /* 4px base 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;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px; /* section rhythm — the homepage should breathe */

  /* Radius — calm, consistent; one step per surface class */
  --radius-sm: 6px;   /* inputs, tags, small controls */
  --radius-md: 10px;  /* buttons, chips */
  --radius-lg: 14px;  /* cards, panels */
  --radius-xl: 20px;  /* feature wells, screenshots frames */
  --radius-pill: 999px;

  /* Elevation — soft, warm-neutral, never glowing */
  --shadow-card: 0 1px 2px rgba(20, 25, 47, 0.05), 0 4px 12px rgba(20, 25, 47, 0.05);
  --shadow-raised: 0 2px 4px rgba(20, 25, 47, 0.06), 0 12px 32px rgba(20, 25, 47, 0.10);
  --shadow-overlay: 0 8px 16px rgba(20, 25, 47, 0.10), 0 24px 64px rgba(20, 25, 47, 0.16);

  /* Motion — Linear-lesson: fast, precise, teaching. No bounces. */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --duration-fast: 140ms; /* @kind other */
  --duration-base: 220ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */

  --container-max: 1200px;
  --container-pad: 32px;
}
