/* ONE ELECTRIC — Effects: radii, borders, shadows, motion
   Industrial/technical feel: crisp corners, restrained shadows. */

:root {
  /* ---- Radii (small — crisp, engineered) ---- */
  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-pill: 999px;

  /* ---- Borders ---- */
  --border-width: 1px;          /* @kind other */
  --border-width-strong: 2px;   /* @kind other */

  /* ---- Shadows (cool, low-spread) ---- */
  --shadow-xs: 0 1px 2px rgba(26, 29, 33, 0.06);
  --shadow-sm: 0 1px 3px rgba(26, 29, 33, 0.10), 0 1px 2px rgba(26, 29, 33, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 29, 33, 0.10);
  --shadow-lg: 0 12px 28px rgba(26, 29, 33, 0.14);
  --shadow-amber: 0 6px 20px rgba(244, 165, 66, 0.32);

  /* Focus ring */
  --ring-focus: 0 0 0 3px rgba(244, 165, 66, 0.40);

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