/* ─────────────────────────────────────────────────────────────
   Ana Flávia Pimenta — Effects: shadows, motion, blur
   Restrained, soft shadows tinted with the deep blue so cards feel
   grounded rather than floated. Calm, confident motion — no bounce.
   ───────────────────────────────────────────────────────────── */
:root {
  /* Shadows — tinted with blue (20,40,65) for warmth-neutral depth */
  --shadow-xs: 0 1px 2px rgba(20,40,65,0.06);
  --shadow-sm: 0 2px 6px rgba(20,40,65,0.07);
  --shadow-md: 0 8px 24px rgba(20,40,65,0.08);
  --shadow-lg: 0 18px 48px rgba(20,40,65,0.10);
  --shadow-xl: 0 32px 80px rgba(20,40,65,0.14);
  --shadow-accent: 0 12px 32px rgba(195,74,55,0.24);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.5);

  /* Blur / glass */
  --blur-sm: 8px;
  --blur-md: 16px;
  --blur-lg: 28px;

  /* Motion — calm, precise easing; fades and gentle rises, never bounce */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --duration-fast: 140ms; /* @kind other */
  --duration-base: 240ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */

  /* Focus ring composite */
  --ring-focus: 0 0 0 3px rgba(207,99,83,0.35);
}
