/* NMG — Radius, shadow, border & motion tokens.
   The brand wordmark uses fully-rounded terminals; UI follows with soft,
   generous radii. Cards are clean white with soft shadows on light surfaces;
   dark marketing surfaces use blue radial glows instead of drop shadows. */

:root {
  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;   /* tags, chips, primary buttons */
  --radius-circle: 50%;

  /* Border widths */
  --border-w: 1px;
  --border-w-strong: 2px;

  /* Shadows (light surfaces) */
  --shadow-xs: 0 1px 2px rgba(0, 29, 43, 0.06);
  --shadow-sm: 0 2px 6px rgba(0, 29, 43, 0.08);
  --shadow-md: 0 6px 18px rgba(0, 29, 43, 0.10);
  --shadow-lg: 0 16px 40px rgba(0, 29, 43, 0.14);
  --shadow-focus: 0 0 0 3px rgba(32, 128, 255, 0.35);

  /* Glow (dark marketing surfaces) */
  --glow-sm: 0 0 24px rgba(32, 128, 255, 0.35);
  --glow-lg: 0 0 80px rgba(32, 128, 255, 0.45);

  /* Motion */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 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: 360ms; /* @kind other */
}
