/* ============================================================
   The Meetings Space — Effects: radii, shadows, motion, borders
   Refined, well-polished feel: soft rounded corners, gentle
   cool-tinted shadows, calm fades (no bounce / no wackiness).
   ============================================================ */

:root {
  /* --- Corner radii ------------------------------------------ */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --radius-2xl:  40px;
  --radius-pill: 999px;
  --radius-card: var(--radius-lg);

  /* --- Shadows (navy-tinted, soft) --------------------------- */
  --shadow-xs:  0 1px 2px rgba(21, 64, 100, 0.06);
  --shadow-sm:  0 2px 6px rgba(21, 64, 100, 0.08);
  --shadow-md:  0 8px 22px rgba(21, 64, 100, 0.10);
  --shadow-lg:  0 18px 44px rgba(21, 64, 100, 0.14);
  --shadow-xl:  0 30px 70px rgba(21, 64, 100, 0.18);
  --shadow-focus: 0 0 0 3px rgba(151, 195, 216, 0.55);
  --shadow-cta:  0 10px 26px rgba(254, 150, 92, 0.35);

  /* --- Borders ----------------------------------------------- */
  --border-width: 1px;
  --border-width-strong: 1.5px;

  /* --- Motion ------------------------------------------------ */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 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-normal: 240ms; /* @kind other */
  --duration-slow:   420ms; /* @kind other */
  --transition-base: all var(--duration-normal) var(--ease-standard);

  /* --- Blur / glass ------------------------------------------ */
  --blur-glass: blur(14px); /* @kind other */
  --overlay-scrim: rgba(12, 39, 64, 0.55);
}
