/* Tucuju Bizurado — Effects Tokens */

:root {
  /* ── Border Radius ─────────────────────────────────── */
  --radius-none: 0px;
  --radius-xs:   3px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* ── Box Shadows ───────────────────────────────────── */
  --shadow-xs:  0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-sm:  0 1px 4px rgba(0, 0, 0, 0.45);
  --shadow-md:  0 4px 12px rgba(0, 0, 0, 0.55);
  --shadow-lg:  0 8px 24px rgba(0, 0, 0, 0.65);
  --shadow-xl:  0 16px 40px rgba(0, 0, 0, 0.75);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.35);

  /* Glow effects — for accent highlights */
  --shadow-glow-green:  0 0 16px rgba(69, 179, 72, 0.35), 0 0 40px rgba(69, 179, 72, 0.15);
  --shadow-glow-orange: 0 0 16px rgba(245, 158, 11, 0.35), 0 0 40px rgba(245, 158, 11, 0.15);

  /* ── Transitions ───────────────────────────────────── */
  --transition-instant: 80ms ease; /* @kind other */
  --transition-fast:    150ms ease; /* @kind other */
  --transition-base:    220ms ease; /* @kind other */
  --transition-slow:    350ms ease; /* @kind other */
  --transition-spring:  300ms cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */

  /* ── Blur ──────────────────────────────────────────── */
  --blur-sm:  blur(4px); /* @kind other */
  --blur-md:  blur(8px); /* @kind other */
  --blur-lg:  blur(16px); /* @kind other */
  --blur-xl:  blur(32px); /* @kind other */

  /* ── Overlay gradients ─────────────────────────────── */
  --overlay-dark-bottom: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); /* @kind other */
  --overlay-dark-top:    linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 50%); /* @kind other */
  --overlay-brand-green: linear-gradient(135deg, rgba(69,179,72,0.15) 0%, transparent 70%); /* @kind other */
}
