/* ==========================================================================
   LANDING — vitrine de rapports, étapes « comment ça marche », bandeau CTA.
   ========================================================================== */

/* Hero : puces de réassurance sous le sous-titre. */
.hero-points { list-style:none; display:flex; flex-direction:column; gap:8px; margin-top:24px; }
.hero-points li { position:relative; padding-left:24px; font-size:14px; color:var(--muted); }
.hero-points li::before { content:"✓"; position:absolute; left:0; top:0; font-weight:800;
  color:var(--good); }

/* Grille des cartes de rapport (vitrine). */
.report-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; }
.report-card { display:flex; flex-direction:column; gap:10px; text-decoration:none;
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:20px 22px; box-shadow:var(--shadow); color:var(--ink);
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease; }
.report-card:hover { transform:translateY(-2px); border-color:var(--accent);
  box-shadow:0 2px 4px rgba(20,25,40,.06), 0 14px 32px rgba(20,25,40,.10); }
.report-card-top { display:flex; align-items:center; justify-content:space-between; gap:10px;
  min-height:36px; }
.report-kind { font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:4px 10px; border-radius:20px; background:var(--surface-2); border:1px solid var(--line);
  color:var(--muted); }
.report-kind.is-obs { background:var(--accent-soft); color:var(--accent-ink); border-color:transparent; }
.report-faces { display:flex; }
.report-faces .entity-avatar { margin-left:-6px; box-shadow:0 0 0 2px var(--surface); }
.report-faces .entity-avatar:first-child { margin-left:0; }
.report-card-name { font-size:17px; letter-spacing:-.01em; margin:0; }
.report-card-blurb { font-size:14px; color:var(--muted); margin:0; }
/* flex-wrap + nowrap sur la valeur : une stat longue (« 43–86% ») reste entière et le libellé
   passe dessous, au lieu de couper le chiffre en deux lignes avec le libellé flottant à côté. */
.report-card-stat { display:flex; align-items:baseline; gap:4px 8px; margin-top:2px; flex-wrap:wrap; }
.report-stat-val { font-size:26px; font-weight:800; color:var(--accent-ink); line-height:1;
  font-variant-numeric:tabular-nums; white-space:nowrap; }
.report-stat-val small { font-size:13px; font-weight:600; color:var(--faint); margin-left:2px; }
.report-stat-label { font-size:13px; color:var(--muted); }
.report-card-meta { font-size:12.5px; color:var(--faint); margin:0; }
.report-card-cta { margin-top:auto; padding-top:8px; font-size:13px; font-weight:700;
  color:var(--accent-ink); }

/* Étapes « comment ça marche ». */
.steps { display:grid; grid-template-columns:repeat(4, 1fr); gap:16px; }
.step { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:20px; box-shadow:var(--shadow); }
.step-num { width:32px; height:32px; border-radius:50%; background:var(--accent); color:#fff;
  font-weight:800; display:grid; place-items:center; margin-bottom:14px; }
.step h3 { font-size:15px; margin:0 0 8px; }
.step p { font-size:13.5px; color:var(--muted); margin:0; }

/* Bandeau CTA de bas de page. */
.cta-band { background:var(--accent); color:#fff; padding:56px 0; text-align:center; }
.cta-band h2 { font-size:26px; letter-spacing:-.02em; margin:0 0 10px; }
.cta-band p { font-size:15px; color:rgba(255,255,255,.82); max-width:52ch; margin:0 auto; }
.cta-band .btn-primary { background:#fff; color:var(--accent); }
.cta-band .btn-primary:hover { filter:none; background:rgba(255,255,255,.9); }
.cta-band .btn-ghost { background:transparent; color:#fff; border-color:rgba(255,255,255,.4); }
.cta-band .btn-ghost:hover { background:rgba(255,255,255,.12); }

/* État vide (page Observatoires sans rapport publié). */
.empty-state { text-align:center; padding:48px 0; color:var(--muted); }

@media (max-width: 820px) {
  .report-grid, .steps { grid-template-columns:1fr; }
}

