/* Cyber Bust — Radius, elevation, z-index, motion. */

:root {
  /* Radius — low. Pill buttons out of system. */
  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-full: 9999px;

  /* Elevation — achromatic, ink-tinted */
  --shadow-none: none;
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 10, 10, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 10, 10, 0.12);
  --shadow-overlay: 0 24px 64px rgba(10, 10, 10, 0.18);

  /* Z-index */
  --z-hide: -1; /* @kind other */
  --z-base: 0; /* @kind other */
  --z-raised: 10; /* @kind other */
  --z-dropdown: 100; /* @kind other */
  --z-sticky: 200; /* @kind other */
  --z-header: 300; /* @kind other */
  --z-overlay: 400; /* @kind other */
  --z-modal: 500; /* @kind other */
  --z-popover: 600; /* @kind other */
  --z-toast: 700; /* @kind other */
  --z-tooltip: 800; /* @kind other */
  --z-max: 9999; /* @kind other */

  /* Motion */
  --duration-instant: 80ms; /* @kind other */
  --duration-fast: 160ms; /* @kind other */
  --duration-base: 240ms; /* @kind other */
  --duration-slow: 360ms; /* @kind other */
  --duration-deliberate: 640ms; /* @kind other */
  --ease-standard: cubic-bezier(0.2, 0, 0, 1); /* @kind other */
  --ease-out: cubic-bezier(0, 0, 0, 1); /* @kind other */
  --ease-in: cubic-bezier(0.3, 0, 1, 1); /* @kind other */
  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
}

[data-theme="dark"] {
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.7);
  --shadow-overlay: 0 24px 64px rgba(0, 0, 0, 0.8);
}
