/* ============================================================
   PLUTUS — EFFECTS: radii, shadows, blur, motion
   Cards are soft-rounded with gentle ambient shadow.
   Brand cards (ocean) carry a faint gold border in dark mode.
   ============================================================ */

:root {
  /* ---- CORNER RADII ---- */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;  /* default card */
  --radius-lg:   24px;  /* hero card, sheets */
  --radius-xl:   32px;
  --radius-pill: 999px; /* pills, buttons, chips */
  --radius-card-physical: 14px; /* Plutus Visa card */

  /* ---- SHADOWS (cool, ocean-tinted ambient) ---- */
  --shadow-xs: 0 1px 2px rgba(1, 17, 74, 0.06);
  --shadow-sm: 0 2px 8px rgba(1, 17, 74, 0.08);
  --shadow-md: 0 8px 24px rgba(1, 17, 74, 0.10);
  --shadow-lg: 0 18px 48px rgba(1, 17, 74, 0.16);
  --shadow-brand: 0 16px 40px rgba(49, 3, 235, 0.28); /* glow under ocean cards */
  --shadow-gold:  0 0 0 1px rgba(245, 219, 103, 0.25); /* premium border ring */

  /* ---- BLUR / GLASS ---- */
  --blur-glass: blur(20px); /* @kind other */
  --glass-light: rgba(255, 255, 255, 0.72);
  --glass-dark:  rgba(7, 11, 25, 0.55);

  /* ---- MOTION ---- */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);   /* @kind other */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */
  --dur-fast:   120ms; /* @kind other */
  --dur-base:   220ms; /* @kind other */
  --dur-slow:   400ms; /* @kind other */
}
