/* Sell Better — Radii, shadows, borders, motion */

:root {
  /* Corner radii — soft, modern, not pill-everything */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 999px;

  /* Borders */
  --border-width: 1px;
  --border-width-strong: 1.5px;

  /* Shadows — soft, cool-tinted (navy), low spread */
  --shadow-xs: 0 1px 2px rgba(20, 22, 24, 0.05);
  --shadow-sm: 0 1px 3px rgba(20, 22, 24, 0.07), 0 1px 2px rgba(20, 22, 24, 0.05);
  --shadow-md: 0 4px 12px rgba(20, 22, 24, 0.08), 0 2px 4px rgba(20, 22, 24, 0.05);
  --shadow-lg: 0 12px 28px rgba(20, 22, 24, 0.12), 0 4px 8px rgba(20, 22, 24, 0.06);
  --shadow-focus: 0 0 0 3px rgba(0, 0, 0, 0.16); /* black focus ring */

  /* Motion */
  --ease-standard: cubic-bezier(0.2, 0, 0.1, 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 */
}
