/* ============================================================
   BPO Digital — Spacing, radii, shadows, layout, motion
   ============================================================ */

:root {
  /* ---- Spacing scale (4px base) ---- */
  --space-0:  0;
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-7:  32px;
  --space-8:  40px;
  --space-9:  48px;
  --space-10: 64px;
  --space-11: 80px;
  --space-12: 96px;
  --space-13: 128px;

  /* ---- Radii — fintech-rounded ---- */
  --radius-xs:   6px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-pill: 999px;

  /* ---- Shadows — navy-tinted, soft ---- */
  --shadow-xs: 0 1px 2px rgba(10, 16, 32, 0.06);
  --shadow-sm: 0 2px 6px rgba(10, 16, 32, 0.08);
  --shadow-md: 0 8px 20px rgba(10, 16, 32, 0.10);
  --shadow-lg: 0 18px 44px rgba(10, 16, 32, 0.14);
  --shadow-xl: 0 32px 70px rgba(10, 16, 32, 0.20);
  /* Accent glow — for primary CTAs & highlighted cards */
  --shadow-accent: 0 12px 30px rgba(47, 107, 255, 0.30);
  /* Inset used on ink surfaces */
  --shadow-ink: 0 24px 60px rgba(0, 0, 0, 0.45);

  /* ---- Layout ---- */
  --container-max: 1200px;
  --container-wide: 1360px;
  --container-narrow: 760px;
  --gutter: 24px;

  /* ---- 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 */
  --ease-in:       cubic-bezier(0.4, 0, 1, 1); /* @kind other */
  --duration-fast:   140ms; /* @kind other */
  --duration-normal: 220ms; /* @kind other */
  --duration-slow:   360ms; /* @kind other */
}
