/* ============================================================
   PATHWISE LAW — RADII, BORDERS, SHADOWS, MOTION
   Restrained & professional: modest radii, soft cool-tinted shadows,
   crisp hairline borders. No neon, no heavy drop shadows.
   ============================================================ */
:root {
  /* Radii — the app icon is a squircle; keep radii gentle */
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --radius-card: var(--radius-md);

  /* Borders */
  --border-width: 1px;     /* @kind other */
  --border-hairline: 1px;  /* @kind other */

  /* Shadows — cool navy-tinted, low & wide */
  --shadow-xs: 0 1px 2px rgba(8,35,61,0.06);
  --shadow-sm: 0 1px 3px rgba(8,35,61,0.08), 0 1px 2px rgba(8,35,61,0.05);
  --shadow-md: 0 4px 14px rgba(8,35,61,0.09), 0 2px 4px rgba(8,35,61,0.05);
  --shadow-lg: 0 12px 34px rgba(8,35,61,0.12), 0 4px 10px rgba(8,35,61,0.06);
  --shadow-xl: 0 26px 60px rgba(8,35,61,0.16);
  --shadow-focus: 0 0 0 3px var(--focus-ring);
  --shadow-inset: inset 0 1px 2px rgba(8,35,61,0.06);

  /* Motion — calm, confident, no bounce */
  --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 */
  --dur-fast: 120ms;   /* @kind other */
  --dur-base: 200ms;   /* @kind other */
  --dur-slow: 360ms;   /* @kind other */
  --transition-base: all var(--dur-base) var(--ease-standard);  /* @kind other */
}
