/* L Studio — Effects: shadows, borders, motion
   Shadows are soft and teal-tinted (never pure black); calm, quick motion. */
:root {
  /* Elevation — cool teal-tinted shadows */
  --shadow-xs: 0 1px 2px rgba(13,69,74,0.06);
  --shadow-sm: 0 2px 8px rgba(13,69,74,0.07);
  --shadow-md: 0 8px 24px rgba(13,69,74,0.09);
  --shadow-lg: 0 18px 48px rgba(13,69,74,0.12);
  --shadow-focus: 0 0 0 3px rgba(16,79,85,0.12);

  /* Borders */
  --border-width: 1px;   /* @kind spacing */
  --border-hairline: 1px solid var(--line, #E2EAE9);  /* @kind other */

  /* Motion — calm ease, no bounce */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);   /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);       /* @kind other */
  --dur-fast: 120ms;   /* @kind other */
  --dur-base: 200ms;   /* @kind other */
  --dur-slow: 320ms;   /* @kind other */
  --transition-base: all var(--dur-base) var(--ease-standard);  /* @kind other */
}
