@font-face {
  font-family: Sora;
  src: url("/v5/assets/fonts/sora-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}
@font-face {
  font-family: Manrope;
  src: url("/v5/assets/fonts/manrope-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

:root {
  color-scheme: light;
  --font-display:
    Sora, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:
    Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --navy-950: #061329;
  --navy-900: #071a36;
  --navy-800: #0b264a;
  --navy-700: #123861;
  --blue-700: #0755bc;
  --blue-600: #0969e8;
  --blue-500: #1680ff;
  --blue-100: #e9f3ff;
  --blue-50: #f3f8ff;
  /* Cyan : nouvelles demandes entrantes. */
  --cyan-600: #0785a6;
  --cyan-100: #e3f8fc;
  /* Turquoise : météo et technique. Volontairement plus vert que le cyan pour
     rester distinguable d'une demande entrante au premier coup d'œil. */
  --teal-600: #0c7a68;
  --teal-100: #e2f6f2;
  /* Neutre : issues sans gravité (refus, sans suite, archivé). Elles ne sont
     ni une erreur ni une alerte : le rouge est réservé aux vrais problèmes. */
  --slate-600: #5f6f86;
  --slate-100: #eef1f6;
  --violet-600: #7050d8;
  --violet-100: #f0edff;
  --green-700: #14724b;
  --green-100: #e7f7ef;
  --amber-700: #a45b05;
  --amber-100: #fff2d9;
  --red-700: #b32936;
  --red-100: #ffeaec;
  --ink-950: #101b2d;
  --ink-800: #25344a;
  --ink-700: #41516a;
  --ink-600: #5f6f86;
  --ink-500: #7d8ba0;
  --line: #dce4ef;
  --line-soft: #ebf0f6;
  --surface: #fff;
  --surface-soft: #f5f8fc;
  --canvas: #eef3f9;
  --shadow-sm: 0 5px 16px rgba(13, 31, 59, 0.055);
  --shadow-md: 0 16px 45px rgba(9, 28, 59, 0.1);
  --shadow-lg: 0 28px 80px rgba(4, 19, 43, 0.18);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --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;
  --sidebar: 236px;
  --topbar: 76px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --speed: 180ms;
}

* {
  box-sizing: border-box;
}
html {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--ink-950);
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  margin: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
::selection {
  background: #cfe4ff;
  color: var(--navy-950);
}
:focus-visible {
  outline: 3px solid rgba(22, 128, 255, 0.34);
  outline-offset: 2px;
}
[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
