/* Wealth Innovations — Spacing, radius, shadow, layout tokens. */
:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radius — the brand is largely square-cornered (diagonal cuts, sharp
     color bars); only small UI surfaces get a soft radius. */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --radius-none: 0px;

  /* Shadows — subtle, conservative (financial-services restraint) */
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 4px 16px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 12px 32px rgba(11, 37, 69, 0.14);

  --border-width: 1px;
  --content-max-width: 1200px;

  /* Motion — decks/collateral show no animation; keep any UI motion minimal */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-standard: 200ms; /* @kind other */
}
