/* Severn Financial Advisors — Radii, borders, shadows, motion */
:root {
  /* Corner radii — restrained, professional. Cards & controls are lightly rounded. */
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  /* Borders */
  --border-width: 1px; /* @kind other */
  --border-hairline: 1px solid var(--border-subtle); /* @kind other */

  /* Shadows — soft, cool-tinted, never heavy */
  --shadow-xs: 0 1px 2px rgba(20, 26, 63, 0.06);
  --shadow-sm: 0 1px 3px rgba(20, 26, 63, 0.08), 0 1px 2px rgba(20, 26, 63, 0.04);
  --shadow-md: 0 4px 12px rgba(20, 26, 63, 0.08), 0 2px 4px rgba(20, 26, 63, 0.04);
  --shadow-lg: 0 12px 32px rgba(20, 26, 63, 0.12), 0 4px 8px rgba(20, 26, 63, 0.05);
  --shadow-focus: 0 0 0 3px rgba(46, 85, 131, 0.28);

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