/* ============================================================
   COMPIE — SPACING, RADII, SHADOW & MOTION TOKENS
   8px base grid. Generous 120px page margins on brand layouts.
   ============================================================ */

:root {
  /* Spacing scale (8px grid) */
  --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-30:  120px;  /* canonical brand page margin */

  /* Radii — brand cards use a soft 32, banners 24, controls 8–12 */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-pill: 999px;

  /* Borders */
  --border-width:        1px;
  --border-width-strong: 2px;

  /* Shadows — on midnight, depth reads as a faint neon glow + dark drop */
  --shadow-sm:   0 1px 2px rgba(0,0,0,0.4);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.45);
  --shadow-lg:   0 24px 60px rgba(0,0,0,0.55);
  --glow-neon:   0 0 24px rgba(206,255,0,0.35);
  --glow-surge:  0 0 24px rgba(0,255,255,0.35);
  --glow-spark:  0 0 24px rgba(255,0,231,0.35);

  /* Motion */
  --ease-standard: cubic-bezier(0.2, 0, 0, 1); /* @kind other */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 320ms; /* @kind other */
}
