/* effects.css — spacing, radius, shadow, motion tokens.
   Each style preset overrides radius/shadow/border per-mode; these are the
   lab-chrome defaults and the values used by the specimen cards. */
:root {
  /* ---- Spacing (8px base) --------------------------------------------- */
  --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;

  /* ---- Radius --------------------------------------------------------- */
  --radius-none: 0px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-pill: 999px;

  /* ---- Shadow --------------------------------------------------------- */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
  /* Signature shadow recipes referenced by presets */
  --shadow-neubrutal: 5px 5px 0 #000000;
  --shadow-neumorph:  -7px -7px 14px #FFFFFF, 7px 7px 14px #BEC5D0;
  --shadow-glow:      0 0 18px rgba(10,233,138,0.45);

  /* ---- Borders -------------------------------------------------------- */
  --border-thin:  1px;
  --border-thick: 3px;

  /* ---- Motion --------------------------------------------------------- */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */
  --dur-fast:    150ms; /* @kind other */
  --dur-base:    260ms; /* @kind other */
  --dur-slow:    400ms; /* @kind other */

  /* ---- Elevation ------------------------------------------------------ */
  --z-base:    1; /* @kind other */
  --z-overlay: 100; /* @kind other */
  --z-modal:   1000; /* @kind other */
}
