/* ============================================================
   Community Catalysts — Effects: radii, shadows, borders, motion
   Soft, friendly, optimistic. Rounded corners and gentle, low
   shadows — never harsh. Motion is calm and welcoming.
   ============================================================ */

:root {
  /* Corner radii — rounded & friendly */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 999px;
  --radius-card: var(--radius-lg);

  /* Border widths */
  --border-width: 1px;
  --border-width-strong: 2px;

  /* Shadows — soft, teal-tinted, low elevation */
  --shadow-xs:  0 1px 2px rgba(20, 49, 63, 0.06);
  --shadow-sm:  0 2px 6px rgba(20, 49, 63, 0.08);
  --shadow-md:  0 8px 20px rgba(20, 49, 63, 0.10);
  --shadow-lg:  0 18px 40px rgba(20, 49, 63, 0.14);
  --shadow-focus: 0 0 0 3px rgba(250, 63, 118, 0.35); /* rose focus halo */

  /* Motion */
  --ease-standard: cubic-bezier(0.2, 0.7, 0.3, 1); /* @kind other */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --duration-fast:   140ms; /* @kind other */
  --duration-normal: 220ms; /* @kind other */
  --duration-slow:   360ms; /* @kind other */
}
