/* Mina Rides — Spacing, radii, shadows, motion
   Generous, rounded, soft. Cards are friendly with rounded corners and gentle shadows. */

: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-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* ---- Radii — rounded & friendly ---- */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;    /* default control radius */
  --radius-lg: 20px;    /* cards */
  --radius-xl: 28px;    /* sheets, hero panels */
  --radius-pill: 999px; /* buttons, chips, tags */

  /* ---- Shadows — soft, low, navy-tinted (never harsh black) ---- */
  --shadow-xs: 0 1px 2px rgba(10, 32, 92, 0.06);
  --shadow-sm: 0 2px 8px rgba(10, 32, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 32, 92, 0.10);
  --shadow-lg: 0 18px 48px rgba(10, 32, 92, 0.14);
  --shadow-focus: 0 0 0 4px rgba(51, 78, 172, 0.22);

  /* ---- Motion — quick, eased, never bouncy/gimmicky ---- */
  --ease-standard: cubic-bezier(0.2, 0, 0, 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 */

  /* ---- Layout ---- */
  --container-max: 1200px; /* @kind spacing */
  --container-narrow: 720px; /* @kind spacing */
}
