/* ==========================================================================
   Jukselapp — Spacing, radius, shadow & motion tokens
   ========================================================================== */

:root {
  /* Spacing scale (4px base) */
  --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;

  /* Radius — posters are hard-edged; UI keeps a small, quiet radius.
     Brand does NOT use heavy rounded-corner-card styling. */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-pill: 999px;

  /* Shadow — flat screenprint aesthetic, so shadows are rare & used only
     for UI affordance (raised card / modal), never decorative glows. */
  --shadow-sm: 0 1px 2px rgba(27, 26, 23, 0.10);
  --shadow-md: 0 4px 12px rgba(27, 26, 23, 0.14);
  --shadow-lg: 0 12px 32px rgba(27, 26, 23, 0.18);

  /* Offset-print registration shadows — hard, flat, no blur. Each is tinted
     a darker shade of the element's own color family (a red button casts a
     dark-red shadow, a blue button a dark-blue shadow) rather than plain ink. */
  --shadow-print-sm: 3px 3px 0 var(--shadow-tint-ink);
  --shadow-print-md: 5px 5px 0 var(--shadow-tint-ink);
  --shadow-print-blue: 5px 5px 0 var(--shadow-tint-blue);
  --shadow-print-navy: 5px 5px 0 var(--shadow-tint-navy);
  --shadow-print-red: 5px 5px 0 var(--shadow-tint-red);
  --shadow-print-orange: 5px 5px 0 var(--shadow-tint-orange);
  --shadow-print-brand: var(--shadow-print-blue);

  /* Motion — no bounce; simple, quick, print-like snaps */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 360ms; /* @kind other */
}
