/* ============================================================
   NIGHT + DAY — Spacing, Radius & Layout
   Generous whitespace. Strong grids. Asymmetry balanced by
   simplicity. Space is the most premium material we have.
   ============================================================ */

: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;
  --space-24: 96px;
  --space-32: 128px;
  --space-40: 160px;

  /* ---- RADIUS — restrained. Cans are pills; UI is near-square ----- */
  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;   /* capsule tags — the pack vocabulary */

  /* ---- LAYOUT ----------------------------------------------------- */
  --container-max: 1280px;
  --container-wide: 1440px;
  --gutter: var(--space-6);
  --page-margin: var(--space-20);   /* large editorial margins */
  --grid-columns: 12; /* @kind other */
  --grid-gap: var(--space-6);

  /* ---- BORDER WIDTHS ---------------------------------------------- */
  --border-thin: 1px;
  --border-med: 1.5px;
  --border-thick: 2px;

  /* ---- MOTION — slow, elegant, intentional ------------------------ */
  --ease-bridge: cubic-bezier(0.22, 1, 0.36, 1);   /* @kind other */
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);     /* @kind other */
  --dur-fast: 180ms;      /* @kind other */
  --dur-base: 320ms;      /* @kind other */
  --dur-slow: 600ms;      /* @kind other */
  --dur-cinematic: 1200ms; /* @kind other */
}
