/* MIC 2026 — Radius & elevation tokens */
:root {
  /* Radii (per brief: 8px buttons, 16px content cards) */
  --radius-button: 8px;
  --radius-input:  8px;
  --radius-card:   16px;
  --radius-pill:   999px;
  --radius-media:  12px;

  /* Elevation — soft, premium, low-contrast shadows on navy */
  --shadow-xs: 0 1px 2px rgba(7,26,43,0.06);
  --shadow-sm: 0 2px 8px rgba(7,26,43,0.08);
  --shadow-md: 0 8px 24px rgba(7,26,43,0.10);
  --shadow-lg: 0 20px 48px rgba(7,26,43,0.14);
  --shadow-coral: 0 10px 26px rgba(198,161,91,0.38);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur-med:  240ms; /* @kind other */
  --dur-slow: 420ms; /* @kind other */
}
