/* Feuille commune aux pages publiques de Niche Scanner : index, privacy, terms.
   Extraite de index.html le 2026-09-04 pour ne pas dupliquer les mêmes règles
   en trois exemplaires. Servie par Caddy depuis /srv/www/assets/. */
:root {
  color-scheme: light dark;
  --fond: #ffffff;
  --encre: #16181d;
  --encre-faible: #5b6270;
  --trait: #e3e6ec;
  --accent: #1f5eff;
  --puce: #f5f6f9;
}
@media (prefers-color-scheme: dark) {
  :root {
    --fond: #101215;
    --encre: #eceef2;
    --encre-faible: #98a0ae;
    --trait: #262a31;
    --accent: #7ea2ff;
    --puce: #171a1f;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--fond);
  color: var(--encre);
  font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.page {
  max-width: 46rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}
header.barre {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 2.5rem;
}
.marque {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--encre-faible);
  text-decoration: none;
}
.langues {
  display: inline-flex;
  border: 1px solid var(--trait);
  border-radius: 999px;
  overflow: hidden;
}
.langues button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--encre-faible);
  font: inherit;
  font-size: 0.8125rem;
  line-height: 1;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
}
.langues button[aria-pressed="true"] {
  background: var(--encre);
  color: var(--fond);
}
.langues button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
h1 {
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
.chapeau {
  font-size: 1.125rem;
  color: var(--encre-faible);
  margin: 0 0 3rem;
  max-width: 34rem;
}
.date-maj {
  font-size: 0.875rem;
  color: var(--encre-faible);
  margin: -0.25rem 0 2.5rem;
}
section {
  border-top: 1px solid var(--trait);
  padding: 1.75rem 0;
}
h2 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--encre-faible);
  margin: 0 0 0.6rem;
  font-weight: 600;
}
section p { margin: 0; }
section p + p,
section p + ul,
section ul + p { margin-top: 0.75rem; }
ul {
  margin: 0;
  padding-left: 1.1rem;
}
li { margin-bottom: 0.35rem; }
li:last-child { margin-bottom: 0; }
.cadre {
  background: var(--puce);
  border: 1px solid var(--trait);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 0.75rem;
}
footer {
  border-top: 1px solid var(--trait);
  margin-top: 1rem;
  padding-top: 1.75rem;
  font-size: 0.875rem;
  color: var(--encre-faible);
}
footer a { color: inherit; }
footer p { margin: 0 0 0.6rem; }
footer p:last-child { margin-bottom: 0; }
.liens-bas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}
[hidden] { display: none !important; }
