/* More Digital Lab — spacing, radii, shadows, motion */
:root {
  /* Spacing — 4px 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;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radii — generous, echoing the clover mark */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Shadows — depth via darkness; glow reserved for primary actions */
  --shadow-card: 0 1px 0 rgba(242,239,247,0.04) inset, 0 8px 24px rgba(0,0,0,0.35);
  --shadow-raised: 0 1px 0 rgba(242,239,247,0.06) inset, 0 16px 40px rgba(0,0,0,0.45);
  --shadow-overlay: 0 24px 64px rgba(0,0,0,0.6);
  --glow-accent: 0 0 0 1px rgba(150,120,189,0.35), 0 4px 24px rgba(107,78,142,0.45);
  --glow-mint: 0 0 12px rgba(91,208,184,0.45);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */
}
