/* ============================================================
   GlobalLinker — Effects: shadows, focus, transitions
   Light, crisp elevation. No heavy/diffuse shadows.
   ============================================================ */
:root {
  /* ---- Shadows (soft, low-spread) ---- */
  --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.08), 0 1px 2px rgba(16, 24, 40, 0.04);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 12px 28px rgba(16, 24, 40, 0.10);
  --shadow-card-hover: 0 8px 24px rgba(19, 114, 246, 0.12);
  --shadow-cta: 0 6px 16px rgba(249, 112, 21, 0.28);

  /* ---- Focus ---- */
  --ring-focus: 0 0 0 3px var(--focus-ring); /* @kind shadow */

  /* ---- 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 */
  --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 */
}
