/* ============================================================
   Mandroya Senses — Elevation, shadows, transitions
   Soft, low-opacity green-tinted shadows instead of hard borders.
   Calm easing, gentle fades — never bouncy or fast.
   ============================================================ */
:root {
  /* —— Green-tinted soft shadows —————————————————— */
  --shadow-xs: 0 1px 2px rgba(48, 103, 59, 0.06);
  --shadow-sm: 0 2px 8px rgba(48, 103, 59, 0.08);
  --shadow-md: 0 6px 20px rgba(48, 103, 59, 0.10);
  --shadow-lg: 0 16px 40px rgba(48, 103, 59, 0.12);
  --shadow-focus: 0 0 0 3px var(--focus-ring);

  /* —— Motion ———————————————————————————————————— */
  --ease-calm: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur-base: 220ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */
}
