/* Spider Eyes Research — elevation, borders, motion
   Dark-mode-forward: elevation reads mainly through surface-lightness steps and
   hairline borders, not heavy drop shadows. Shadows exist but stay quiet. */

:root {
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.35);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.40);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.45);
  --shadow-signal-glow: 0 0 0 1px rgba(205,235,59,0.35), 0 6px 24px rgba(205,235,59,0.12);

  --border-width-hairline: 1px;
  --border-width-focus: 2px;

  /* ---- 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 */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 360ms; /* @kind other */

  --blur-glass: 16px;
}
