/* ============================================================
   RADII & SHADOWS — Pirone Entertainment
   Elegant, restrained. Soft warm shadows, not hard/gray.
   ============================================================ */
:root {
  /* Corner radii — gentle, not pill-heavy. CTAs are fully rounded. */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   26px;
  --radius-pill: 999px;
  --radius-card: var(--radius-lg);

  /* Warm-tinted shadows (green/brown cast, never cold gray) */
  --shadow-xs:  0 1px 2px rgba(32, 27, 21, 0.06);
  --shadow-sm:  0 2px 6px rgba(32, 27, 21, 0.07);
  --shadow-md:  0 8px 22px rgba(32, 27, 21, 0.10);
  --shadow-lg:  0 18px 44px rgba(32, 27, 21, 0.13);
  --shadow-xl:  0 30px 70px rgba(9, 12, 20, 0.22);

  /* Accent glow — used only on the primary CTA (a touch of energy) */
  --shadow-cta:       0 10px 24px rgba(76, 106, 239, 0.30);
  --shadow-cta-hover: 0 14px 32px rgba(76, 106, 239, 0.40);

  /* Inset for inputs */
  --shadow-inset: inset 0 1px 2px rgba(32, 27, 21, 0.08);
}
