/* ============================================================================
   Sweep It — LP angle « Attribution de revenus » (/revenue-attribution)
   Charge APRÈS ../styles.css : réutilise les tokens (--violet, --fg-*, --purple-*),
   la topbar, .btn, .feat-head, .faq, .ftcta et le footer.

   Langage visuel : mockups produit denses et réalistes (tuiles de stats,
   tableaux à barres vert pâle, cartes de parcours horodatées) dans des cartes
   blanches à bordure fine, et sections alternées texte / visuel.
   ============================================================================ */

:root {
  --line: #ececf0;          /* bordure des cartes de mockup */
  --line-soft: #f3f3f6;     /* séparateurs internes */
  --line-strong: #d8d8e0;   /* contours francs (tableau comparatif) */
  --cash: #16a34a;          /* texte montant */
  --cash-bar: linear-gradient(90deg, #5FD98C, #22C55E);  /* remplissage des barres */
  --ko: #d64545;
  --ko-soft: #fdecec;
  /* Gris neutre unique pour TOUTES les surfaces de la page (panneaux,
     comparatif, témoignages, chiffres clés, CTA). Volontairement sans teinte
     violette : le fond doit s'effacer pour laisser ressortir le violet de la
     marque, le vert des montants et le texte. */
  --pnl: #f7f7f7;
}

/* ============================================================================
   0 · PANNEAU — bloc gris clair arrondi qui contient texte + mockup.
   Le mockup déborde volontairement en bas : le panneau le recadre (overflow),
   ce qui suggère qu'il y a plus à voir dans le produit.
   ========================================================================= */

.pnl {
  background: var(--pnl); border-radius: 26px; corner-shape: superellipse(1.125);
  padding: 44px 48px; overflow: hidden;
}

/* eyebrow violet en majuscules, précédé d'une pastille check */
.eyb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--violet);
}
.eyb-i { width: 17px; height: 17px; flex: none; display: block; }

/* Titre de carte façon LP principale : chip icône + titre coloré + sous-titre.
   La couleur vient de --acc (classes .a-green/.a-pink/.a-sky/.a-amber de styles.css). */
.gc-chip { width: 40px; height: 36px; border-radius: 9999px; corner-shape: superellipse(1.125);
  background: #fff; display: grid; place-items: center; margin-bottom: 12px;
  box-shadow: 0 1px 2px rgba(24,25,37,.05); }
.gc-chip svg { width: 20px; height: 20px; display: block; fill: none; stroke: var(--acc);
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.gc-title { font-size: 22px; line-height: 27px; font-weight: 500; letter-spacing: -.015em; color: var(--acc); }
.gc-sub { font-size: 22px; line-height: 27px; font-weight: 500; color: var(--fg-4); margin-top: 1px; }

/* curseur de souris posé sur un mockup */
.cur { position: absolute; z-index: 5; width: 20px; height: 22px; pointer-events: none;
  filter: drop-shadow(0 3px 6px rgba(24,25,37,.28)); }
.cur svg { width: 100%; height: 100%; display: block; fill: #fff; stroke: #181925; stroke-width: 1.4;
  stroke-linejoin: round; }
.cur.inline { position: static; flex: none; margin-left: 2px; }

/* barre d'action flottante (façon « n sélectionnés · action ») */
.float-bar {
  position: absolute; z-index: 4; left: 50%; bottom: 54px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 8px 7px 16px;
  box-shadow: 0 12px 28px -10px rgba(24,25,37,.32);
}
.float-bar > b { font-size: 12.5px; font-weight: 600; color: var(--fg-4); }
.fb-sep { width: 1px; height: 18px; background: var(--line); }
.fb-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(145deg, #7C5CFF, var(--violet)); color: #fff;
  border-radius: 999px; padding: 7px 14px; font-size: 12.5px; font-weight: 600;
  box-shadow: 0 4px 12px rgba(109,30,247,.32);
}
.fb-btn svg { width: 13px; height: 13px; display: block; fill: currentColor; }
.float-bar .cur { right: -6px; bottom: -14px; left: auto; }

/* interrupteur violet */
.tog { width: 36px; height: 21px; border-radius: 999px; background: #dcdce4; flex: none;
  position: relative; transition: background-color .2s ease-out; }
.tog i { position: absolute; top: 3px; left: 3px; width: 15px; height: 15px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 3px rgba(24,25,37,.28); transition: transform .2s ease-out; }
.tog.on { background: linear-gradient(145deg, #7C5CFF, var(--violet)); }
.tog.on i { transform: translateX(15px); }

/* skeletons : la donnée absente est figurée, pas décrite */
.sk-l, .sk-s { display: block; height: 9px; border-radius: 999px;
  background: linear-gradient(90deg, #ededf2, #f6f6f9); }
.sk-l { width: 100%; margin: 6px 0; }
.sk-s { width: 34px; margin-left: auto; }

/* ============================================================================
   1 · MOCKUPS — la carte .ui et ses briques
   ========================================================================= */

.ui {
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; corner-shape: superellipse(1.125);
  box-shadow: 0 1px 2px rgba(24,25,37,.04), 0 24px 48px -28px rgba(24,25,37,.28);
  overflow: hidden;
}
/* variante posée à plat dans un bloc déjà encadré (comparatif avant/après) */
.ui-flat { box-shadow: 0 1px 2px rgba(24,25,37,.04); }

/* ---- en-tête de carte ---- */
.ui-h {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #fbfbfc, #fff);
}
.ui-t { font-size: 13.5px; font-weight: 600; color: var(--fg-4); letter-spacing: -.01em; }
.ui-h .ui-chip:last-child, .ui-h .wrep-when { margin-left: auto; }

.ui-ic { width: 22px; height: 22px; border-radius: 6px; flex: none; display: grid; place-items: center; overflow: hidden; }
.ui-ic svg { width: 100%; height: 100%; display: block; }
.ui-ic.ig svg { width: 15px; height: 15px; fill: var(--fg-2); }
.ui-ic.ig { background: var(--bg-soft-3); }

.ui-av {
  width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--purple-1); color: #6b62c9; font-size: 12px; font-weight: 700;
}
.ui-hx { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ui-hx b { font-size: 13.5px; font-weight: 600; color: var(--fg-4); }
.ui-hx small { font-size: 11.5px; font-weight: 500; color: var(--fg-2); display: inline-flex; align-items: center; gap: 5px; }
.ui-hx .live { width: 6px; height: 6px; border-radius: 50%; background: #33C758; flex: none; }

.ui-chip {
  display: inline-flex; align-items: center; flex: none;
  font-size: 11px; font-weight: 600; border-radius: 999px; padding: 4px 10px;
  background: var(--bg-soft-3); color: var(--fg-2); white-space: nowrap;
}
.ui-chip.cash { background: #e4f5ec; color: var(--cash); }

/* ---- pied de carte ---- */
.ui-f {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; border-top: 1px solid var(--line-soft); background: #fcfcfd;
}
.ui-fk { font-size: 11.5px; font-weight: 500; color: var(--fg-2); }
.ui-f .tagl:last-child { margin-left: auto; }

.tagl {
  display: inline-flex; align-items: center; gap: 5px; flex: none;
  font-size: 11.5px; font-weight: 600; border-radius: 999px; padding: 4px 10px; white-space: nowrap;
}
.tagl svg { width: 12px; height: 12px; display: block; fill: none; stroke: currentColor;
  stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.tagl.ok  { background: #e4f5ec; color: var(--cash); }
.tagl.ko  { background: var(--ko-soft); color: var(--ko); }
.tagl.vio { background: var(--purple-1); color: var(--violet); }

/* ---- tuiles de stats ---- */
.ui-tiles { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line-soft); }
.ui-tiles.four { grid-template-columns: repeat(4, 1fr); }
.tile { padding: 14px 16px; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.tile + .tile { border-left: 1px solid var(--line-soft); }
.tile-k { font-size: 11px; font-weight: 500; color: var(--fg-2); }
.tile-v { font-size: 22px; font-weight: 700; letter-spacing: -.03em; color: var(--fg-4);
  font-variant-numeric: tabular-nums; white-space: nowrap; }
.tile-v.cash { color: var(--cash); }
.tile-d { font-size: 11px; font-weight: 700; color: var(--fg-2); }
.tile-d.up { color: var(--cash); }

/* ---- corps libre (comparatif) ---- */
.ui-body { padding: 14px 16px 16px; }
.ui-hero { display: flex; align-items: baseline; gap: 7px; margin-bottom: 14px; }
.ui-hero b { font-size: 30px; font-weight: 700; letter-spacing: -.035em; color: var(--fg-4); font-variant-numeric: tabular-nums; }
.ui-hero b.cash { color: var(--cash); }
.ui-hero span { font-size: 12.5px; font-weight: 500; color: var(--fg-2); }

/* ---- tableau : nom · barre · (leads) · montant ---- */
/* Gabarit de colonnes partagé par l'en-tête et les lignes, pour qu'ils restent
   toujours alignés. Par défaut 3 pistes (nom · barre · montant) ; .cols4 ajoute
   la colonne "leads". Le gabarit vit sur .ui-tbl et se propage, sinon un tableau
   à 3 cellules héritant d'un gabarit à 4 pistes verrait son montant tomber dans
   la colonne étroite et passer à la ligne. */
.ui-tbl { padding: 6px 16px 12px; --cols: 164px 1fr 80px; }
.ui-tbl.cols4 { --cols: 116px 1fr 44px 74px; }

.tbl-h {
  display: grid; grid-template-columns: var(--cols, 130px 1fr 80px); gap: 10px;
  padding: 6px 0 8px; border-bottom: 1px solid var(--line-soft);
  font-size: 10.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--fg-1);
}
/* l'en-tête n'a pas de cellule pour la barre : le libellé du montant est poussé
   dans la dernière piste */
.tbl-h span:first-child { grid-column: 1; }
.tbl-h span:last-child { grid-column: -2 / -1; }
.ui-tbl.cols4 .tbl-h span:nth-child(2) { grid-column: -3 / -2; }
.ta-r { text-align: right; }

/* la barre vert pâle part sous le nom : lecture immédiate du classement */
.trow {
  display: grid; grid-template-columns: var(--cols, 130px 1fr 80px); align-items: center; gap: 10px;
  /* padding horizontal compensé par une marge négative : le fond du survol
     déborde de la colonne sans décaler l'alignement des colonnes */
  padding: 9px 8px; margin: 0 -8px; font-size: 12.5px;
  border-radius: 8px; transition: background-color .18s ease-out;
}
.trow + .trow, .ui-body .trow { border-top: 1px solid var(--line-soft); }
.trow-n { font-weight: 600; color: var(--fg-4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.trow-bar { height: 22px; border-radius: 6px; background: var(--bg-soft-3); overflow: hidden; }
.trow-bar i {
  display: block; height: 100%; width: var(--w, 0%); border-radius: 6px; background: var(--cash-bar);
  transform-origin: left center; transition: filter .2s ease-out;
}
.trow-l { text-align: right; font-weight: 500; color: var(--fg-2); font-variant-numeric: tabular-nums; }
.trow-v { text-align: right; font-weight: 700; color: var(--cash); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* Survol : la ligne s'éclaire, la barre gagne en éclat et le montant grossit
   vers la gauche (origine à droite, pour ne pas déborder de la colonne). */
.trow:hover { background: #f7f7fa; }
.trow-v { display: block; transform-origin: right center;
  transition: transform .24s cubic-bezier(.2,.7,.2,1), color .18s ease-out; }
.trow:hover .trow-v { transform: scale(1.16); color: #12833c; }
.trow:hover .trow-bar i { filter: saturate(1.2) brightness(1.06); }
.trow.zero:hover .trow-v { color: var(--ko); }

@media (prefers-reduced-motion: reduce) {
  .trow:hover .trow-v { transform: none; }
}
/* Ligne à 0 € : piste VIDE. Surtout pas de fond rouge plein, qui se lirait
   comme une grosse barre — donc comme beaucoup de revenus. */
.trow.zero .trow-v { color: var(--ko); }
.trow.zero .trow-bar { background: repeating-linear-gradient(-45deg, #fbf1f1 0 5px, #fff 5px 10px); }

/* ---- lignes de stats Instagram ---- */
.igr { display: grid; grid-template-columns: 130px 1fr 80px; align-items: center; gap: 10px; padding: 9px 0; font-size: 12.5px; }
.igr + .igr { border-top: 1px solid var(--line-soft); }
.igr-k { font-weight: 500; color: var(--fg-3); white-space: nowrap; }
.igr-bar { height: 22px; border-radius: 6px; background: var(--bg-soft-3); overflow: hidden; }
.igr-bar i { display: block; height: 100%; width: var(--w, 0%); border-radius: 6px; background: #e3e1ea; }
.igr-v { text-align: right; font-weight: 700; color: var(--fg-4); font-variant-numeric: tabular-nums; }
.igr-missing .igr-k, .igr-missing .igr-v { color: var(--fg-1); }
.igr-missing .igr-bar { background: repeating-linear-gradient(-45deg, #f6f6f8 0 5px, #fff 5px 10px); }

/* ---- parcours horodaté ---- */
.jrn { padding: 14px 16px; display: flex; flex-direction: column; gap: 0; }
.jstep { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; position: relative; }
.jdot {
  position: relative; z-index: 1; flex: none; margin-top: 3px;
  width: 9px; height: 9px; border-radius: 50%; background: #fff; border: 2px solid var(--purple-3);
}
/* le trait vertical relie les étapes */
.jstep:not(:last-child) .jdot::after {
  content: ""; position: absolute; left: 50%; top: 100%; margin-left: -.5px;
  width: 1px; height: 30px; background: #e6e3f5;
}
.jstep.done .jdot { border-color: #33C758; background: #33C758; }
.jtx { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.jtx b { font-size: 12.5px; font-weight: 600; color: var(--fg-4); }
.jtx small { font-size: 11.5px; font-weight: 500; color: var(--fg-2); }
.jstep.done .jtx b { color: var(--cash); }
.jtime { margin-left: auto; flex: none; font-size: 11px; font-weight: 600; color: var(--fg-1); white-space: nowrap; }
.jrn.compact .jstep { padding: 6px 0; }
.jrn.compact .jstep:not(:last-child) .jdot::after { height: 24px; }

/* ---- carte décision : à refaire / à arrêter ---- */
.dec { display: grid; grid-template-columns: 1fr 1fr; }
.dec-col { padding: 14px 16px; display: flex; flex-direction: column; gap: 7px; }
.dec-col + .dec-col { border-left: 1px solid var(--line-soft); }
.dec-h {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 3px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
}
.dec-h svg { width: 13px; height: 13px; display: block; fill: none; stroke: currentColor;
  stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; }
.dec-h.ok { color: var(--cash); }
.dec-h.ko { color: var(--ko); }
.dec-i {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-soft-3); border-radius: 9px; padding: 9px 11px;
}
.dec-i b { font-size: 12.5px; font-weight: 600; color: var(--fg-4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dec-i i { margin-left: auto; flex: none; font-style: normal; font-size: 12.5px; font-weight: 700; font-variant-numeric: tabular-nums; }
.dec-i i.cash { color: var(--cash); }
.dec-i i.zero { color: var(--fg-1); }

/* ============================================================================
   1bis · TOPBAR — statique et transparente, héritée telle quelle de styles.css
   (position:absolute, défile avec la page comme sur la LP principale).
   On garde seulement le défilement doux pour les ancres du menu.
   ========================================================================= */

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ============================================================================
   2 · HERO — copy à gauche, mockup à droite
   ========================================================================= */

.rahero { position: relative; padding: 124px 24px 0; overflow: hidden; }
.rahero-in { position: relative; z-index: 1; max-width: 940px; margin: 0 auto; }
.rahero-copy > * { max-width: 100%; }

.rahero-copy { display: flex; flex-direction: column; align-items: center; text-align: center; }

.rahero-badge {
  display: inline-flex; align-items: center;
}
.rahero-badge .tag {
  display: inline-flex; align-items: center; height: 20px; padding: 0 8px;
  border-radius: 9999px; background: linear-gradient(90deg, #5B57F5, #8B5CF6);
  color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.rahero-badge .line { font-size: 14px; font-weight: 500; color: #5B50EE; }

.rahero-copy h1 {
  margin-top: 28px;
  font-size: 44px; line-height: 52px; font-weight: 600;
  letter-spacing: -.03em; color: var(--fg-4);
  max-width: min(840px, 100%); text-wrap: balance;
}
.rahero-sub {
  margin-top: 20px;
  font-size: 18px; line-height: 26px; font-weight: 500;
  color: var(--fg-3); max-width: min(38rem, 100%); text-wrap: balance;
}
.rahero-ctas { display: flex; align-items: center; gap: 12px; margin-top: 32px; }

.rahero-reassure {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px;
  margin-top: 24px; list-style: none;
}
.rahero-reassure li {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 500; color: var(--fg-2);
}
.rahero-reassure svg {
  width: 15px; height: 15px; flex: none; display: block; fill: none;
  stroke: var(--purple-4); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}

/* ============================================================================
   3 · Social proof bar (défilement infini)
   ========================================================================= */

.proofbar { max-width: 760px; margin: 76px auto 0; padding: 0 24px; }
.proofbar-lbl {
  text-align: center; font-size: 13.5px; font-weight: 500; color: var(--fg-2); margin-bottom: 22px;
}
.proofbar-vp {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}
.proofbar-track {
  display: flex; align-items: center; gap: 56px; width: max-content;
  animation: proof-scroll 26s linear infinite;
}
.proofbar-vp:hover .proofbar-track { animation-play-state: paused; }
@keyframes proof-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.proof { display: inline-flex; align-items: center; gap: 11px; flex: none; }
/* La photo recouvre le rond ; les initiales restent DESSOUS et réapparaissent
   si le fichier est absent — la barre ne se retrouve jamais avec des trous. */
.proof-av {
  position: relative; overflow: hidden;
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--purple-1); color: #6b62c9; font-size: 13px; font-weight: 700;
  /* plusieurs portraits sont pris en lumière sombre : ce cerne les détache du fond blanc */
  box-shadow: inset 0 0 0 1px rgba(24,25,37,.08);
}
.proof-av i { font-style: normal; }
.proof-av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.proof-tx { display: flex; flex-direction: column; line-height: 1.25; }
.proof-tx b { font-size: 15px; font-weight: 600; color: var(--fg-3); white-space: nowrap; }
.proof-tx small { font-size: 12px; font-weight: 500; color: var(--fg-1); }
.proof-fw { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 700; color: var(--violet); }
.proof-fw svg { width: 12px; height: 12px; display: block; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (prefers-reduced-motion: reduce) {
  .proofbar-track { animation: none; }
  .proofbar-vp { overflow-x: auto; }
}

/* ============================================================================
   4 · Phrase de conclusion (sous le comparatif avant/après)
   ========================================================================= */

/* Autonome : c'est le comparatif juste au-dessus qui fait la démonstration,
   cette phrase ne fait que la nommer. */
.prose-punch {
  max-width: 40rem; margin: 52px auto 0; text-align: center;
  font-size: 24px; line-height: 33px; font-weight: 600;
  letter-spacing: -.025em; color: var(--fg-4);
}

/* ============================================================================
   5 · Le problème — Avant / Après
   Une grande carte blanche posée sur un cadre gris #f7f7f7 ; deux volets
   (gris « avant », violet clair « après ») contenant chacun un mockup blanc
   à ombre portée. Reproduit le motif before/after des comparateurs produit.
   ========================================================================= */

/* toute la section « problème » est sur un fond gris pleine largeur */
.pb-band { background: #f7f7f7; margin-top: 40px; padding: 72px 0 76px; }
.pb-inner { max-width: 1024px; margin: 0 auto; padding: 0 24px; }
.pb-band .feat-head { padding-top: 0; }
.pb-band .ba-card { margin-top: 40px;
  box-shadow: 0 1px 2px rgba(24,25,37,.04), 0 30px 60px -42px rgba(24,25,37,.28); }

/* header d'un mockup de contenu : petit thumbnail + « Reel #X » + chip cash */
.pb-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.pb-thumb { position: relative; width: 42px; height: 42px; border-radius: 9px; flex: none;
  overflow: hidden; background: linear-gradient(140deg, #b3a4f5, #6d1ef7);
  display: grid; place-items: center; }
.pb-thumb svg { width: 15px; height: 15px; fill: #fff; display: block; margin-left: 1px; }
.pb-hx { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.pb-hx b { font-size: 14px; font-weight: 700; color: var(--fg-4); }
.pb-hx small { font-size: 11.5px; font-weight: 500; color: var(--fg-2); }
.pb-cashchip { margin-left: auto; flex: none; font-size: 11px; font-weight: 700;
  color: var(--cash); background: #e4f5ec; border-radius: 999px; padding: 4px 10px; }

/* lignes de métriques : label / valeur */
.pb-row { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 7px 0; font-size: 13px; }
.pb-row + .pb-row { border-top: 1px solid var(--line-soft); }
.pb-row .k { color: var(--fg-3); font-weight: 500; }
.pb-row .k.ok { display: inline-flex; align-items: center; gap: 6px; }
.pb-row .v { color: var(--fg-4); font-weight: 700; font-variant-numeric: tabular-nums; }
.pb-row .v.cash { color: var(--cash); }
/* flèche « en savoir plus » sur certaines lignes */
.pb-row .v { display: inline-flex; align-items: center; }
.pb-arw { font-style: normal; margin-left: 8px; color: var(--fg-2); font-weight: 700; }
.pb-skel { width: 78px; height: 10px; border-radius: 999px; background: #e6e6ea; display: block; }

.ba-card {
  background: #fff; border-radius: 24px; corner-shape: superellipse(1.125);
  padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.ba-col { display: flex; flex-direction: column; }
.ba-lbl {
  text-align: center; margin-bottom: 16px;
  font-size: 15px; font-weight: 600; color: var(--fg-3); letter-spacing: -.01em;
}
.ba-lbl .ba-brand { color: var(--violet); font-weight: 700; }

.ba-panel {
  position: relative; flex: 1 1 auto;
  display: flex; align-items: center; justify-content: center;
  border-radius: 20px; corner-shape: superellipse(1.125); padding: 32px;
}
.ba-before { background: #f2f2f4; }
.ba-after  { background: #faf8ff; }

/* étincelles décoratives dans le coin du volet « après » */
.ba-spark { position: absolute; top: 15px; right: 17px; width: 30px; height: 30px; color: var(--purple-4); }
.ba-spark svg { width: 100%; height: 100%; display: block; fill: currentColor; }

/* le mockup blanc (carte produit stylisée) */
.ba-mock {
  width: 100%; max-width: 300px;
  background: #fff; border-radius: 16px; corner-shape: superellipse(1.125); padding: 14px;
  box-shadow: 0 1px 2px rgba(24,25,37,.06), 0 22px 44px -22px rgba(24,25,37,.3);
}
.ba-thumb {
  position: relative; height: 128px; margin-bottom: 14px;
  border-radius: 11px; overflow: hidden;
  background: linear-gradient(140deg, #b3a4f5, #6d1ef7);
  display: grid; place-items: center;
}
.ba-play {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.92); box-shadow: 0 4px 12px rgba(24,25,37,.22);
}
.ba-play svg { width: 17px; height: 17px; display: block; fill: var(--violet); margin-left: 2px; }

/* pilule « Analysé par l'IA » (volet après) */
.ba-pill {
  display: inline-flex; align-items: center; gap: 5px; margin-bottom: 12px;
  font-size: 11px; font-weight: 600; color: var(--violet);
  background: var(--purple-1); border-radius: 999px; padding: 5px 10px;
}
.ba-pill svg { width: 12px; height: 12px; display: block; fill: currentColor; }

/* champ : label en petites capitales + valeur */
.ba-field { display: flex; flex-direction: column; gap: 6px; }
.ba-k {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--fg-1);
}
.ba-v { font-size: 14px; line-height: 1.35; font-weight: 600; color: var(--fg-4); }
.ba-v.cash { color: var(--cash); }

/* pastille verte de validation devant le label (volet après) */
.ba-ok { width: 15px; height: 15px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--cash); }
.ba-ok svg { width: 9px; height: 9px; display: block; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* séparateur fin entre les champs */
.ba-div { height: 1px; background: var(--line-soft); margin: 13px 0; }

/* skeleton : le revenu manquant côté « avant » */
.ba-sk { display: flex; flex-direction: column; gap: 7px; padding: 2px 0; }
.ba-sk span { display: block; height: 9px; border-radius: 999px; background: #e6e6ea; }
.ba-sk span:last-child { width: 60%; }

/* ---- Le problème : conversation Claude, toggle CSS-only Sans/Avec Sweep It ---- */
.clx { max-width: 620px; margin: 40px auto 0; background: #fff;
  border: 1px solid var(--line); border-radius: 22px; corner-shape: superellipse(1.125);
  box-shadow: 0 1px 2px rgba(24,25,37,.04), 0 30px 60px -40px rgba(24,25,37,.28); overflow: hidden; }
.clx-sw { position: absolute; opacity: 0; pointer-events: none; }
.clx-toggle { display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 16px; background: #f7f7f8; border-bottom: 1px solid var(--line-soft); }
.clx-side { font-size: 13.5px; font-weight: 600; color: var(--fg-2); transition: color .2s ease-out; }
.clx-sw:not(:checked) ~ .clx-toggle .clx-side.off { color: var(--fg-4); }
.clx-sw:checked ~ .clx-toggle .clx-side.on { color: var(--fg-4); }
.clx-switch { width: 48px; height: 27px; border-radius: 999px; flex: none; cursor: pointer; position: relative;
  background: #e0574f; transition: background-color .22s ease-out; }
.clx-knob { position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 3px rgba(24,25,37,.3); transition: transform .22s cubic-bezier(.2,.7,.2,1); }
.clx-sw:checked ~ .clx-toggle .clx-switch { background: #22C55E; }
.clx-sw:checked ~ .clx-toggle .clx-switch .clx-knob { transform: translateX(21px); }
.clx-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 16px; min-height: 236px; }
.clx-q { align-self: flex-end; max-width: 82%; background: #f2f2f4; border-radius: 14px 14px 4px 14px;
  padding: 11px 15px; font-size: 14px; line-height: 20px; color: var(--fg-4); }
.clx-me { display: block; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--fg-1); margin-bottom: 3px; }
.clx-a { display: flex; gap: 11px; align-items: flex-start; }
.clx-cl { width: 30px; height: 30px; border-radius: 8px; flex: none; display: grid; place-items: center; background: #D97757; }
.clx-cl svg { width: 17px; height: 17px; display: block; fill: #fff; }
.clx-bubble { background: #f7f7f8; border-radius: 4px 14px 14px 14px; padding: 13px 16px;
  font-size: 14px; line-height: 21px; color: var(--fg-3); }
.clx-on .clx-bubble { background: #faf8ff; color: var(--fg-4); }
.clx-bubble p { margin-bottom: 8px; }
.clx-bubble ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.clx-bubble li { position: relative; padding-left: 18px; font-size: 13.5px; line-height: 19px; }
.clx-bubble li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); }
.clx-cash { color: var(--cash); font-weight: 700; }
/* faux « reste de la réponse » : suggère une réponse longue et complète */
.clx-skels { display: flex; flex-direction: column; gap: 8px; margin-top: 13px;
  -webkit-mask-image: linear-gradient(to bottom, #000 28%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 28%, transparent 100%); }
.clx-sk { height: 9px; border-radius: 999px; background: #e8e3f5; }
.clx-sk.w9 { width: 94%; } .clx-sk.w8 { width: 82%; } .clx-sk.w7 { width: 68%; }
.clx-sk.w5 { width: 52%; } .clx-sk.w4 { width: 38%; }
.clx-on { display: none; }
.clx-sw:checked ~ .clx-body .clx-off { display: none; }
.clx-sw:checked ~ .clx-body .clx-on { display: flex; }

/* ---- « Ce que tu peux faire » : bulles de prompt flottantes, tapées en direct ---- */
.moc { position: relative; max-width: 1040px; margin: 44px auto 0; min-height: 440px; }
.moc-mid { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 0 20px; }
.moc-mid .feat-badge { margin-bottom: 14px; }
.moc-mid h3 { font-size: 34px; line-height: 40px; font-weight: 600; letter-spacing: -.03em; color: var(--fg-4); }
.moc-mid h3 span { color: #D97757; }
.moc-mid p { margin-top: 14px; font-size: 16px; line-height: 23px; color: var(--fg-3); max-width: 30rem; }
.fb { position: absolute; display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 7px 7px 16px;
  box-shadow: 0 1px 2px rgba(24,25,37,.05), 0 18px 34px -18px rgba(24,25,37,.28);
  font-size: 13.5px; font-weight: 500; color: var(--fg-4); white-space: nowrap; }
.fb-tx { min-height: 1em; }
.fb.typing .fb-tx::after { content: ""; display: inline-block; width: 1.5px; height: 1.05em;
  background: var(--violet); margin-left: 2px; vertical-align: -2px; animation: fb-caret 1s steps(1) infinite; }
@keyframes fb-caret { 50% { opacity: 0; } }
.fb-send { width: 27px; height: 27px; border-radius: 8px; flex: none; display: grid; place-items: center;
  background: var(--violet); color: #fff; }
.fb-send svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 900px) {
  .moc { min-height: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
  .moc-mid { position: static; order: -1; margin-bottom: 6px; }
  .fb { position: static !important; white-space: normal; }
}

/* ============================================================================
   6 · Lignes alternées texte / mockup
   ========================================================================= */

/* Les 3 lignes vivent dans une grille dont les rangées font toutes 1fr :
   elles adoptent la hauteur de la plus grande, donc les panneaux sont égaux. */
.alt-stack { display: grid; grid-auto-rows: 1fr; gap: 24px; margin-top: 72px; }

.alt {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center; gap: 64px;
}
/* .rev inverse l'ordre visuel : mockup à gauche, texte à droite.
   Les LARGEURS de pistes doivent être permutées en même temps que l'ordre :
   sinon le mockup atterrit dans la piste étroite prévue pour le texte. */
.alt.rev { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
.alt.rev .alt-copy { order: 2; }
.alt.rev .alt-mock { order: 1; }

.alt-copy { display: flex; flex-direction: column; align-items: flex-start; }
.alt-copy h3 {
  margin-top: 14px;
  font-size: 27px; line-height: 34px; font-weight: 600; letter-spacing: -.03em; color: var(--fg-4);
  max-width: 22rem;
}

.alt-mock { position: relative; }
/* Débordement volontaire par le bas, réservé aux cartes dont les dernières
   lignes sont répétitives : on ne recadre jamais une info qui porte le message
   (un pied de carte, un total, la ligne à 0 €). */
.alt.pnl:has(.alt-mock.bleed) { padding-bottom: 0; }
.alt-mock.bleed { margin-bottom: -56px; }

/* Cartes superposées : la conversation en retrait en haut à droite, la carte
   d'attribution devant en bas à gauche. Les décalages sont calculés pour que la
/* case à cocher : rend la barre flottante « n sélectionnés » cohérente */
.cb {
  width: 15px; height: 15px; border-radius: 4px; display: inline-block; vertical-align: middle;
  margin-right: 10px; background: #fff; border: 1.5px solid #d6d6de; position: relative;
}
.cb.on { background: linear-gradient(145deg, #7C5CFF, var(--violet)); border-color: transparent; }
.cb.on::after {
  content: ""; position: absolute; left: 4px; top: 1.5px; width: 4px; height: 7.5px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(42deg);
}

/* pastille de type de contenu devant le nom */
.kind { width: 7px; height: 7px; border-radius: 2px; flex: none; display: inline-block; margin-right: 8px;
  vertical-align: middle; }
.kind.seq { background: #8B5CF6; }
.kind.car { background: #38bdf8; }
.kind.sto { background: #d6409f; }
.kind.ree { background: #cfcfd8; }

/* pied de carte avec interrupteur */
.tog-f { gap: 11px; }
.tog-tx { display: flex; flex-direction: column; gap: 1px; }
.tog-tx b { font-size: 12.5px; font-weight: 600; color: var(--fg-4); }
.tog-tx small { font-size: 11px; font-weight: 500; color: var(--fg-2); }
.tog-f .cur { margin-left: auto; }

/* apparition au scroll : la cible observée (.alt-mock) reste intacte,
   seul l'enfant .ui est animé */
.alt-mock .ui, .alt-mock .mk, .alt-mock .lbf { transition: opacity .6s ease-out, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .alt-mock .ui, .js .alt-mock .mk, .js .alt-mock .lbf { opacity: 0; transform: translateY(22px); }
.js .alt-mock.in .ui, .js .alt-mock.in .mk, .js .alt-mock.in .lbf { opacity: 1; transform: none; }

/* les barres du tableau se remplissent quand la carte entre à l'écran */
.js .alt-mock .trow-bar i, .js .vs-side .trow-bar i, .js .vs-side .igr-bar i { transform: scaleX(0); }
.js .alt-mock.in .trow-bar i, .js .vs-side.in .trow-bar i, .js .vs-side.in .igr-bar i {
  transform: scaleX(1); transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.js .alt-mock.in .trow:nth-child(2) .trow-bar i, .js .vs-side.in .trow:nth-child(2) .trow-bar i { transition-delay: .05s; }
.js .alt-mock.in .trow:nth-child(3) .trow-bar i, .js .vs-side.in .trow:nth-child(3) .trow-bar i { transition-delay: .12s; }
.js .alt-mock.in .trow:nth-child(4) .trow-bar i, .js .vs-side.in .trow:nth-child(4) .trow-bar i { transition-delay: .19s; }
.js .alt-mock.in .trow:nth-child(5) .trow-bar i, .js .vs-side.in .trow:nth-child(5) .trow-bar i { transition-delay: .26s; }

@media (prefers-reduced-motion: reduce) {
  .js .alt-mock .ui, .js .alt-mock .mk, .js .alt-mock .lbf { opacity: 1; transform: none; }
  .js .alt-mock .trow-bar i, .js .vs-side .trow-bar i, .js .vs-side .igr-bar i { transform: none; }
}

/* ============================================================================
   6bis · Mockups épurés — cartes .mk (Attribution : leaderboard + client)
   Langage plus aéré que les tables .ui : en-tête simple, lignes espacées,
   vert pour l'argent, aucune fioriture.
   ========================================================================= */

.mk { background: #fff; border: 1px solid var(--line); border-radius: 16px; corner-shape: superellipse(1.125);
  box-shadow: 0 1px 2px rgba(24,25,37,.04), 0 24px 48px -30px rgba(24,25,37,.24); overflow: hidden; }
.mk-h { display: flex; align-items: center; gap: 10px; padding: 15px 18px; border-bottom: 1px solid var(--line-soft); }
.mk-h b { font-size: 13.5px; font-weight: 600; color: var(--fg-4); }
.mk-chip { margin-left: auto; flex: none; font-size: 11px; font-weight: 600; color: var(--fg-2);
  background: var(--bg-soft-3); border-radius: 999px; padding: 4px 10px; white-space: nowrap; }
.mk-chip.cash { color: var(--cash); background: #e4f5ec; }
.mk-b { padding: 12px 18px 16px; }

/* pastille type de contenu · vignette dégradé · avatar initiales */
.dot { width: 8px; height: 8px; border-radius: 3px; flex: none; display: inline-block; }
.dot.seq { background: #8B5CF6; } .dot.car { background: #38bdf8; }
.dot.sto { background: #d6409f; } .dot.ree { background: #cfcfd8; }
.th { border-radius: 8px; flex: none; background: linear-gradient(140deg, #b3a4f5, #6d1ef7); }
.av { border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(24,25,37,.08); }
.av i { font-style: normal; }

/* --- Leaderboard : « Classement par revenus réels » --- */
.lb-row { display: flex; align-items: center; gap: 13px; padding: 12px 2px; }
.lb-row + .lb-row { border-top: 1px solid var(--line-soft); }
.lb-rk { width: 24px; height: 24px; border-radius: 7px; flex: none; display: grid; place-items: center;
  font-size: 11.5px; font-weight: 700; color: var(--fg-2); background: var(--bg-soft-3); }
.lb-row.top .lb-rk { color: #fff; background: linear-gradient(145deg, #8B6BFF, var(--violet)); }
.lb-th { width: 36px; height: 36px; }
.lb-x { flex: 1 1 auto; min-width: 0; }
.lb-x b { display: block; font-size: 14px; font-weight: 600; color: var(--fg-4); }
.lb-x small { display: block; font-size: 11.5px; font-weight: 500; color: var(--fg-2); }
.lb-v { flex: none; font-size: 15px; font-weight: 700; color: var(--cash); font-variant-numeric: tabular-nums; }
.lb-v.zero { color: var(--fg-1); }

/* variante « cartes flottantes indépendantes » du leaderboard */
.lbf { display: flex; flex-direction: column; gap: 10px; }
.lbf-row { display: flex; align-items: center; gap: 13px; padding: 12px 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; corner-shape: superellipse(1.125);
  box-shadow: 0 1px 2px rgba(24,25,37,.04), 0 16px 32px -22px rgba(24,25,37,.26); }

/* --- Un client, sa source : « Attribution directe » --- */
.cl-h { display: flex; align-items: center; gap: 11px; padding: 15px 18px; border-bottom: 1px solid var(--line-soft); }
.cl-av { width: 38px; height: 38px; font-size: 13px; }
.cl-hx { display: flex; flex-direction: column; gap: 1px; min-width: 0; margin-right: auto; }
.cl-hx b { font-size: 14px; font-weight: 600; color: var(--fg-4); }
.cl-hx small { font-size: 11.5px; font-weight: 500; color: var(--fg-2); }
.cl-src { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #faf8ff; border-radius: 12px; padding: 13px 15px; margin-bottom: 14px; }
.cl-src .l { font-size: 10.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--fg-1); }
.cl-src .r { display: inline-flex; align-items: center; gap: 7px; flex: none; font-size: 12.5px; font-weight: 600;
  color: var(--violet); background: #fff; border-radius: 999px; padding: 6px 12px; }
.cl-steps { display: flex; flex-direction: column; }
.cl-step { display: flex; align-items: center; gap: 11px; padding: 8px 0; }
.cl-sd { width: 9px; height: 9px; border-radius: 50%; flex: none; background: #fff; border: 2px solid var(--purple-3); }
.cl-step.done .cl-sd { background: #33C758; border-color: #33C758; }
.cl-step span { font-size: 13px; font-weight: 500; color: var(--fg-3); }
.cl-step.done span { color: var(--cash); font-weight: 600; }
.cl-step em { margin-left: auto; flex: none; font-style: normal; font-size: 11px; font-weight: 600; color: var(--fg-1); }

/* ============================================================================
   7 · Rapport hebdomadaire (pleine largeur)
   ========================================================================= */

.wide-sec { max-width: 1040px; }
.wrep { max-width: 1000px; margin: 0 auto; }

/* Révélation du haut vers le bas au scroll.
   Le clip est porté par l'ENFANT, jamais par l'élément observé : un clip-path
   réduit le rectangle d'intersection à zéro, et l'IntersectionObserver ne
   déclencherait alors jamais (le bloc resterait invisible pour toujours).
   L'état caché est aussi conditionné à .js — sans JS, le rapport reste visible. */
.reveal { margin-top: 56px; }
.reveal .wrep { transition: clip-path 1s cubic-bezier(.2,.7,.2,1), opacity .5s ease-out; }
.js .reveal .wrep { clip-path: inset(0 0 100% 0); opacity: 0; }
.js .reveal.in .wrep { clip-path: inset(0 0 0 0); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal .wrep { clip-path: none; opacity: 1; transition: none; }
}

.wrep-when {
  display: inline-flex; align-items: center; gap: 6px; flex: none;
  font-size: 12px; font-weight: 600; color: var(--violet);
  background: var(--purple-1); border-radius: 999px; padding: 6px 12px;
}
.wrep-when svg { width: 13px; height: 13px; display: block; fill: none; stroke: currentColor;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Le rapport se lit comme un DOCUMENT, pas comme un dashboard : c'est ce
   qui le distingue des cartes d'attribution juste au-dessus. D'où les sections
   titrées, les blocs de citation à liseré et les structures numérotées. ---- */

.rep-sec { padding: 20px 24px 22px; }
.rep-sec + .rep-sec { border-top: 1px solid var(--line-soft); }

.rep-h4 {
  display: flex; align-items: center; gap: 9px; margin-bottom: 14px;
  font-size: 14px; font-weight: 600; color: var(--fg-4); letter-spacing: -.01em;
}
.rep-ic { width: 24px; height: 24px; border-radius: 7px; flex: none; display: grid; place-items: center; }
.rep-ic svg { width: 14px; height: 14px; display: block; fill: none; stroke: currentColor;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
/* une couleur par nature de section : le rapport est plus riche que le reste */
.rep-ic.ok   { background: #e4f5ec; color: var(--cash); }
.rep-ic.comp { background: #e6f0fe; color: #2c78fc; }
.rep-ic.idea { background: #fff4e0; color: #d97706; }
.rep-ic.lead { background: var(--purple-1); color: var(--violet); }

/* barres de conversation */
.rep-conv { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line-soft); }
.conv { padding: 14px 24px 16px; display: flex; flex-direction: column; gap: 6px; }
.conv + .conv { border-left: 1px solid var(--line-soft); }
.conv-k { font-size: 11px; font-weight: 500; color: var(--fg-2); }
.conv-l { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.conv-l b { font-size: 20px; font-weight: 700; letter-spacing: -.03em; color: var(--fg-4); font-variant-numeric: tabular-nums; }
.conv-l em { font-style: normal; margin-left: auto; font-size: 11px; font-weight: 500; color: var(--fg-2); }
.conv-bar { height: 5px; border-radius: 999px; background: var(--bg-soft-3); overflow: hidden; }
.conv-bar i { display: block; height: 100%; width: var(--w, 0%); border-radius: 999px;
  background: linear-gradient(90deg, #8B6BFF, var(--violet)); }

/* synthèse IA */
.rep-synth { display: flex; gap: 11px; align-items: flex-start;
  background: var(--purple-1); border-radius: 12px; padding: 14px 16px;
  font-size: 13.5px; line-height: 20px; font-weight: 500; color: #4b3fa8; }
.rep-spark { width: 20px; height: 20px; flex: none; }
.rep-spark svg { width: 100%; height: 100%; display: block; fill: var(--violet); }

/* cartes (contenus, concurrents, idées) */
.rep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rep-card { background: #fbfbfc; border: 1px solid var(--line-soft); border-radius: 12px; padding: 14px 16px; }
.rep-card-h { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.rep-card-h b { font-size: 13.5px; font-weight: 600; color: var(--fg-4); }
.rep-date { font-size: 11px; font-weight: 500; color: var(--fg-1); margin-left: auto; white-space: nowrap; }

.rep-stats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.rep-stats span { font-size: 11px; font-weight: 600; color: var(--fg-2);
  background: #fff; border: 1px solid var(--line-soft); border-radius: 999px; padding: 3px 9px; }
.rep-stats span.cash { color: var(--cash); background: #e4f5ec; border-color: transparent; }

/* le hook cité : liseré à gauche, motif propre au rapport */
.rep-quote {
  border-left: 3px solid var(--purple-3); padding: 2px 0 2px 11px; margin-bottom: 11px;
  font-size: 12.5px; line-height: 18px; font-weight: 500; color: var(--fg-4);
}
.rep-card.comp .rep-quote { border-left-color: #9ecbff; }
.rep-card.idea .rep-quote { border-left-color: #ffd591; }

.rep-title { font-size: 13.5px; line-height: 19px; font-weight: 600; color: var(--fg-4);
  border-left: 3px solid #ffd591; padding: 2px 0 2px 11px; margin-bottom: 11px; }
.rep-tag { display: inline-flex; font-size: 10px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: #d97706; background: #fff4e0;
  border-radius: 999px; padding: 3px 9px; margin-bottom: 9px; }

/* structure d'un contenu, numérotée */
.rep-steps { list-style: none; counter-reset: st; display: flex; flex-direction: column; gap: 5px; }
.rep-steps li { counter-increment: st; position: relative; padding-left: 20px;
  font-size: 11.5px; line-height: 16px; font-weight: 500; color: var(--fg-3); }
.rep-steps li::before {
  content: counter(st); position: absolute; left: 0; top: 0;
  width: 14px; height: 14px; border-radius: 50%; background: var(--bg-soft-3);
  font-size: 9px; font-weight: 700; color: var(--fg-2);
  display: grid; place-items: center;
}
/* étape en skeleton : le numéro reste visible, le contenu est masqué */
.rep-steps .rep-sk { display: block; height: 8px; border-radius: 999px; background: #e9e9ef; margin: 4px 0; }

/* leads à relancer */
.rep-leads { display: flex; flex-direction: column; gap: 8px; }
.rep-lead { display: flex; align-items: center; gap: 11px;
  background: #fbfbfc; border: 1px solid var(--line-soft); border-radius: 12px; padding: 12px 14px; }
.rep-lead-x { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rep-lead-x b { font-size: 13px; font-weight: 600; color: var(--fg-4); display: flex; align-items: center; gap: 7px; }
.rep-lead-x small { font-size: 11.5px; font-weight: 500; color: var(--fg-2); }
.rep-live { font-style: normal; font-size: 10px; font-weight: 700; color: var(--cash);
  background: #e4f5ec; border-radius: 999px; padding: 2px 7px; }
.rep-do { margin-left: auto; flex: none; font-size: 11.5px; font-weight: 600; color: var(--violet);
  background: var(--purple-1); border-radius: 999px; padding: 6px 12px; white-space: nowrap; }

/* --- 3 cartes du rapport (Angle 1) : ce qui a marché · concurrents · idées --- */
.rep3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.rep-gc { background: var(--pnl); border-radius: 20px; corner-shape: superellipse(1.125);
  padding: 26px; display: flex; flex-direction: column; }
.rep-gc .eyb { margin-bottom: 12px; }
.rep-gc h3 { font-size: 19px; line-height: 25px; font-weight: 600; letter-spacing: -.02em; color: var(--fg-4); }
.rep-gc > p { margin-top: 8px; font-size: 14px; line-height: 20px; font-weight: 500; color: var(--fg-3); }
.rep-gc-mock { margin-top: 20px; flex: 1 1 auto; display: flex; }
/* le mockup blanc reçoit une vraie ombre portée · flex pour une hauteur égale */
.rep-gc-mock .rep-card { flex: 1 1 auto; background: #fff;
  box-shadow: 0 1px 2px rgba(24,25,37,.05), 0 18px 36px -22px rgba(24,25,37,.28); }
@media (max-width: 860px) { .rep3 { grid-template-columns: 1fr; } }

/* 4 bullets sous le rapport */
.wbul {
  list-style: none; max-width: 1000px; margin: 28px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.wbul li {
  display: flex; align-items: center; gap: 10px;
  background: var(--pnl); border-radius: 12px; padding: 14px 16px;
  font-size: 13.5px; line-height: 18px; font-weight: 600; color: var(--fg-4);
}
/* pastille violette en dégradé, icône blanche */
.wbul-ic {
  width: 38px; height: 38px; border-radius: 12px; corner-shape: superellipse(1.125);
  flex: none; display: grid; place-items: center;
  background: linear-gradient(145deg, #8B6BFF, var(--violet));
  box-shadow: 0 4px 12px -2px rgba(109,30,247,.4);
}
.wbul-ic svg { width: 18px; height: 18px; display: block; fill: none; stroke: #fff;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* bandeau de livraison sous les bullets */
.delivery {
  max-width: 1000px; margin: 16px auto 0;
  display: flex; align-items: center; gap: 13px;
  background: var(--pnl); border-radius: 16px; corner-shape: superellipse(1.125);
  padding: 16px 20px;
}
.delivery-tx { display: flex; flex-direction: column; gap: 1px; }
.delivery-tx b { font-size: 14px; font-weight: 600; color: var(--fg-4); }
.delivery-tx small { font-size: 12.5px; font-weight: 500; color: var(--fg-2); }
.delivery-pill {
  margin-left: auto; flex: none; font-size: 11.5px; font-weight: 600;
  background: #e4f5ec; color: var(--cash); border-radius: 999px; padding: 4px 11px;
}

/* bande d'insight sous l'en-tête d'une carte */
.ui-sub { display: flex; align-items: center; gap: 8px; padding: 11px 16px;
  border-bottom: 1px solid var(--line-soft); background: #fcfcfd; }

/* ============================================================================
   8 · Témoignages
   ========================================================================= */

.tst {
  background: var(--pnl); border-radius: 16px; corner-shape: superellipse(1.125);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
}
.tst-stars { font-size: 13px; letter-spacing: 2px; color: #ffa600; }
.tst blockquote { font-size: 16px; line-height: 24px; font-weight: 500; color: var(--fg-4); }
.tst figcaption { display: flex; align-items: center; gap: 11px; margin-top: auto; }
/* Avatars à initiales colorées — un parti pris assumé, pas un placeholder :
   pas de visage tant qu'on n'a pas de vrais clients à citer. */
.tst figcaption .mck-ava {
  position: relative; overflow: hidden;
  width: 38px; height: 38px; font-size: 12.5px; font-weight: 700;
  color: #fff; letter-spacing: .01em;
  box-shadow: inset 0 0 0 1px rgba(24,25,37,.08);
}
.tst figcaption .mck-ava i { font-style: normal; }
/* la photo recouvre le rond ; sans fichier, les initiales restent visibles */
.tst figcaption .mck-ava img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
.av-1 { background: linear-gradient(145deg, #8B6BFF, #6d1ef7); }
.av-2 { background: linear-gradient(145deg, #4AA8F5, #2c78fc); }
.av-3 { background: linear-gradient(145deg, #F06BB4, #d6409f); }
.av-4 { background: linear-gradient(145deg, #5FD98C, #16a34a); }
.av-5 { background: linear-gradient(145deg, #FFC46B, #f59e0b); }
.av-6 { background: linear-gradient(145deg, #7C8AFF, #4338CA); }
.tst-who { display: flex; flex-direction: column; gap: 1px; }
.tst-who b { font-size: 13.5px; font-weight: 600; color: var(--fg-4); }
.tst-who small { font-size: 12px; font-weight: 500; color: var(--fg-2); }

.tst-solo { max-width: 42rem; margin: 88px auto 0; align-items: center; text-align: center; padding: 32px; }
.tst-solo blockquote { font-size: 21px; line-height: 31px; font-weight: 500; letter-spacing: -.015em; }
.tst-solo figcaption { justify-content: center; }
.tst-solo .tst-who { text-align: left; }

.tst-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.tst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }

/* ============================================================================
   9 · Chiffres clés
   ========================================================================= */

.kpis-wrap { max-width: 1024px; margin: 112px auto 0; padding: 0 20px; }
.kpis {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center;
  background: var(--pnl); border-radius: 24px; corner-shape: superellipse(1.125);
  padding: 44px 32px;
}
.kpi { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.kpi-v {
  font-size: 46px; line-height: 1; font-weight: 700; letter-spacing: -.04em;
  color: var(--violet); font-variant-numeric: tabular-nums;
}
.kpi-k { font-size: 14px; font-weight: 500; color: var(--fg-3); max-width: 14rem; text-wrap: balance; }
.kpi-k i { font-style: normal; color: var(--fg-1); }
.kpi-sep { width: 1px; height: 48px; background: #e9e9ee; }

/* ============================================================================
   10 · Comparaison
   ========================================================================= */

/* Colonne « Avec Sweep It » surélevée : une carte blanche flotte derrière la
   colonne de droite (::before absolu), les cellules se posent dessus. La colonne
   de gauche reste plate ; l'œil va droit au bon choix. */
.cmp { position: relative; margin-top: 56px; }
.cmp::before {
  content: ""; position: absolute; z-index: 0; top: -14px; bottom: -14px; right: 0; width: 50%;
  background: #fff; border: 1px solid #e7e0fb; border-radius: 20px; corner-shape: superellipse(1.125);
  box-shadow: 0 1px 2px rgba(24,25,37,.04), 0 34px 64px -42px rgba(109,30,247,.38);
}
.cmp-head, .cmp-row { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.cmp-hcell { padding: 4px 24px 16px; font-size: 14.5px; font-weight: 700; color: var(--fg-4); }
.cmp-hcell.ko { color: var(--fg-2); }
.cmp-hcell.ok { color: var(--violet); }
.cmp-hcell .cmp-x, .cmp-hcell .cmp-c { display: none; }
.cmp-x, .cmp-c { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center;
  flex: none; font-size: 11px; font-weight: 800; }
.cmp-x { background: var(--ko-soft); color: var(--ko); }
.cmp-c { background: #d6f2e0; color: var(--cash); }

.cmp-row + .cmp-row .cmp-cell { border-top: 1px solid #efeff3; }
.cmp-cell { display: flex; align-items: center; gap: 10px; padding: 14px 24px; font-size: 14.5px; line-height: 20px; font-weight: 500; }
.cmp-cell.ko { color: var(--fg-2); }
.cmp-cell.ok { color: var(--fg-4); font-weight: 600; }
.cmp-cell.ko::before { content: "✕"; }
.cmp-cell.ok::before { content: "✓"; }
.cmp-cell.ko::before, .cmp-cell.ok::before {
  width: 20px; height: 20px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-size: 11px; font-weight: 800;
}
.cmp-cell.ko::before { background: var(--ko-soft); color: var(--ko); }
.cmp-cell.ok::before { background: #d6f2e0; color: var(--cash); }

/* Comparaison V1 — deux cartes opposées (« Avec Instagram » vs « Avec Sweep It ») */
.cv1 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; margin: 48px auto 0; }
.cv1-card { border-radius: 22px; corner-shape: superellipse(1.125); padding: 28px 26px; }
.cv1-card.sans { background: var(--pnl); }
.cv1-card.avec { position: relative; background: #fff; border: 1px solid #e7e0fb;
  box-shadow: 0 1px 2px rgba(24,25,37,.04), 0 34px 64px -42px rgba(109,30,247,.4); }
.cv1-tt { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.cv1-card.sans .cv1-tt { color: var(--fg-4); }
.cv1-card.avec .cv1-tt { color: var(--violet); }
.cv1-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.cv1-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 20px;
  color: var(--fg-4); font-weight: 500; }
.ic-x, .ic-c { width: 20px; height: 20px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-size: 11px; font-weight: 800; }
.ic-x { background: var(--ko-soft); color: var(--ko); }
.ic-c { background: #d6f2e0; color: var(--cash); }
@media (max-width: 800px) { .cv1 { grid-template-columns: 1fr; } }

/* ============================================================================
   10bis · CTA de section — bloc réutilisable, à poser sous n'importe quelle
   section pour rattraper le lecteur en cours de page.
   ========================================================================= */

.sec-cta { display: flex; justify-content: center; margin-top: 40px; }

/* CTA de section — carte centrée (eyebrow + titre + bouton + réassurance) */
.ctaD {
  max-width: 560px; margin: 48px auto 0;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 24px; corner-shape: superellipse(1.125);
  padding: 40px 32px; box-shadow: 0 1px 2px rgba(24,25,37,.04), 0 30px 60px -42px rgba(24,25,37,.26);
}
.ctaD .eyb { margin-bottom: 2px; text-transform: none; letter-spacing: 0; }
.ctaD h3 { font-size: 26px; line-height: 32px; font-weight: 600; letter-spacing: -.03em;
  color: var(--fg-4); max-width: 22rem; }
.cta-re { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px;
  font-size: 13px; font-weight: 500; color: var(--fg-2); }
.cta-re span { display: inline-flex; align-items: center; gap: 6px; }
.cta-re svg { width: 14px; height: 14px; flex: none; fill: none; stroke: var(--purple-4);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 560px) { .ctaD { padding: 32px 22px; } }

/* ============================================================================
   11 · CTA final
   ========================================================================= */

.ftcta-re { font-size: 13px !important; font-weight: 500; color: var(--fg-1) !important; margin-top: -4px; }

/* widget Calendly en ligne : aligné sur la largeur des autres sections */
.cal-wrap { max-width: 1024px; margin: 48px auto 0; padding: 0 20px; }
.cal-wrap .calendly-inline-widget {
  border-radius: 20px; corner-shape: superellipse(1.125); overflow: hidden;
}
@media (max-width: 860px) { .cal-wrap { margin-top: 32px; } }

/* Calendly intégré dans la carte CTA finale (remplace le bouton) */
.ftcta-cal { width: 100%; align-self: stretch; margin-top: 4px;
  background: #fff; border-radius: 20px; corner-shape: superellipse(1.125); overflow: hidden;
  box-shadow: 0 1px 2px rgba(24,25,37,.05), 0 26px 52px -32px rgba(24,25,37,.3); }

/* ============================================================================
   12 · Responsive
   ========================================================================= */

@media (max-width: 1080px) {
  .rahero-in { gap: 36px; }
  .rahero-copy h1 { font-size: 40px; line-height: 48px; }
  .alt { gap: 40px; }
  .alt-copy h3 { font-size: 26px; line-height: 32px; }
}

@media (max-width: 860px) {
  .rahero { padding-top: 132px; }
  .rahero-copy h1 { font-size: 34px; line-height: 40px; max-width: 100%; }
  .rahero-sub { font-size: 17px; }

  /* le badge et les CTA passent sur plusieurs lignes plutôt que d'élargir la page */
  .rahero-badge { flex-wrap: wrap; justify-content: center; max-width: 100%; }
  .rahero-badge .line { white-space: normal; }
  .btn { white-space: normal; height: auto; min-height: 44px; padding: 12px 22px;
    line-height: 1.35; text-align: center; max-width: 100%; }

  .proofbar { margin-top: 48px; }

  .prose-punch { font-size: 20px; line-height: 28px; margin-top: 40px; }

  .ba-card { grid-template-columns: 1fr; gap: 24px; }
  .pb-band { padding: 48px 0 52px; }
  .pb-inner { padding: 0 16px; }
  .ba-panel { padding: 22px; }
  .ba-mock { max-width: 320px; }

  /* En une colonne, le mockup passe TOUJOURS sous le texte (ordre de lecture).
     .alt.rev doit être répété ici : deux classes l'emportent sur .alt seul, et
     la ligne inversée resterait sinon en deux colonnes, écrasant le mockup. */
  /* empilés, des hauteurs identiques ne créeraient que du vide : chaque bloc
     reprend sa hauteur naturelle */
  .alt-stack { grid-auto-rows: auto; gap: 20px; margin-top: 56px; }
  .alt, .alt.rev { grid-template-columns: 1fr; gap: 26px; margin-top: 0; }
  .alt.rev .alt-copy, .alt.rev .alt-mock { order: 0; }
  .alt-copy { align-items: flex-start; }
  .alt-copy h3 { font-size: 23px; line-height: 30px; max-width: 100%; }

  .pnl { padding: 28px 20px; border-radius: 20px; }

  /* pas de débordement en bas sur mobile : l'écran est déjà court */
  .alt.pnl:has(.alt-mock.bleed) { padding-bottom: 28px; }
  .alt-mock.bleed { margin-bottom: 0; }

  .float-bar { left: auto; right: 0; bottom: 8px; transform: none; padding: 6px 6px 6px 12px; gap: 8px; }
  .float-bar > b { font-size: 11.5px; }
  .fb-btn { padding: 6px 11px; font-size: 11.5px; }

  .ui-tiles, .ui-tiles.four { grid-template-columns: 1fr 1fr; }
  .tile:nth-child(odd) { border-left: 0; }
  .tile:nth-child(n+3) { border-top: 1px solid var(--line-soft); }

  .rep-grid, .rep-conv { grid-template-columns: 1fr; }
  .conv + .conv { border-left: 0; border-top: 1px solid var(--line-soft); }
  .rep-sec { padding: 18px 16px 20px; }
  .rep-lead { flex-wrap: wrap; }
  .rep-do { margin-left: 48px; }
  .wbul { grid-template-columns: 1fr 1fr; }
  .tst-pair, .tst-grid { grid-template-columns: 1fr; }
  .tst-solo { margin-top: 64px; padding: 24px; }
  .tst-solo blockquote { font-size: 18px; line-height: 27px; }

  .kpis-wrap { margin-top: 80px; }
  .kpis { grid-template-columns: 1fr; gap: 28px; padding: 36px 24px; }
  .kpi-sep { width: 48px; height: 1px; justify-self: center; }
  .kpi-v { font-size: 38px; }

  /* En une colonne, l'en-tête ne sert plus à rien : les deux libellés se
     suivaient en haut et les cellules alternaient ensuite sans qu'on sache
     à quelle colonne elles appartenaient. Chaque ligne devient une carte,
     et l'icône ✕ / ✓ est portée par la cellule elle-même. */
  .cmp { border: 0; border-radius: 0; overflow: visible;
    display: flex; flex-direction: column; gap: 10px; }
  .cmp::before { display: none; }   /* pas de colonne surélevée une fois empilé */
  .cmp-head { display: none; }
  .cmp-row, .cmp-head { grid-template-columns: 1fr; }
  .cmp-row { border: 1px solid var(--line-strong); border-radius: 14px;
    corner-shape: superellipse(1.125); overflow: hidden; }
  .cmp-row + .cmp-row, .cmp-head + .cmp-row { border-top: 1px solid var(--line-strong); }

  .cmp-cell { display: flex; align-items: flex-start; gap: 10px; padding: 13px 16px; }
  .cmp-cell::before {
    flex: none; width: 19px; height: 19px; border-radius: 50%; margin-top: 1px;
    display: grid; place-items: center; font-size: 10px; font-weight: 700;
  }
  .cmp-cell.ko::before { content: "✕"; background: var(--ko-soft); color: var(--ko); }
  .cmp-cell.ok::before { content: "✓"; background: #d6f2e0; color: var(--cash); }
  .cmp-cell.ok { border-left: 0; border-top: 1px solid var(--line-strong); background: rgba(34,197,94,.05); }
}

@media (max-width: 560px) {
  /* les tableaux perdent la colonne "leads" et rétrécissent la colonne nom */
  .ui-tbl, .ui-tbl.cols4 { --cols: 96px 1fr 68px; }
  .igr { grid-template-columns: 96px 1fr 68px; }
  .trow, .igr { gap: 8px; font-size: 12px; }
  .ui-tbl.cols4 .trow-l, .ui-tbl.cols4 .tbl-h span:nth-child(2) { display: none; }

  .dec { grid-template-columns: 1fr; }
  .dec-col + .dec-col { border-left: 0; border-top: 1px solid var(--line-soft); }

  .ui-tiles, .ui-tiles.four { grid-template-columns: 1fr; }
  .tile + .tile { border-left: 0; border-top: 1px solid var(--line-soft); }
  .tile:nth-child(n+3) { border-top: 1px solid var(--line-soft); }

  .wbul { grid-template-columns: 1fr; }
  .jtime { display: none; }
}

/* Le CTA final hérite d'un #FAFAFA de la feuille partagée : on l'aligne sur le
   gris unique de la page (styles.css reste intact, il sert aussi à la LP principale). */
.ftcta { background: var(--pnl); }

/* ============================================================================
   ANGLE « CLAUDE MCP » (/mcp) — composants propres à cette page.
   ========================================================================= */

/* ---- Bloc de récit (section problème) ----
   .prose avait été retirée quand la LP attribution a supprimé son texte ;
   cet angle repose sur le récit, on la rétablit. */
.prose { max-width: 40rem; margin: 36px auto 0;
  display: flex; flex-direction: column; gap: 18px; text-align: center; }
.prose p { font-size: 17px; line-height: 27px; font-weight: 500; color: var(--fg-3); }
.prose p b { font-weight: 600; color: var(--fg-4); }
.prose .prose-punch { margin: 12px auto 0; }

/* ---- Badge du hero : uniquement la pastille violette, rien autour (comme /revenue-attribution) ---- */
.rahero-badge { display: inline-flex; align-items: center; }
.rahero-ctas { flex-wrap: wrap; justify-content: center; }

/* la barre de saisie garde une largeur fixe : le texte revient à la ligne,
   la boîte ne s'élargit pas avec le contenu (comportement identique à la LP principale) */
.rahero-copy .mcp-solo { width: 100%; max-width: 560px; text-align: left; }

/* ---- « Ce que tu peux faire » : mur de prompts défilant (V3) ---- */
.wall { margin: 44px auto 0; display: flex; flex-direction: column; gap: 14px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.wall-row { display: flex; gap: 14px; width: max-content; animation: wall 40s linear infinite; }
.wall-row.rev { animation-direction: reverse; animation-duration: 48s; }
@keyframes wall { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.wall:hover .wall-row { animation-play-state: paused; }
.chip { display: inline-flex; align-items: center; gap: 9px; flex: none;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px 9px 9px;
  font-size: 14px; font-weight: 500; color: var(--fg-4); box-shadow: 0 1px 2px rgba(24,25,37,.04); white-space: nowrap; }
.chip .cl { width: 24px; height: 24px; border-radius: 7px; flex: none; display: grid; place-items: center; background: #D97757; }
.chip .cl svg { width: 14px; height: 14px; fill: #fff; }
@media (prefers-reduced-motion: reduce) { .wall-row { animation: none; } .wall { overflow-x: auto; } }

/* ---- Connexion Claude en 3 étapes ---- */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.stp { background: var(--pnl); border-radius: 20px; corner-shape: superellipse(1.125);
  padding: 26px; display: flex; flex-direction: column; align-items: flex-start; }
.stp-n { width: 34px; height: 34px; border-radius: 10px; corner-shape: superellipse(1.125);
  display: grid; place-items: center; margin-bottom: 14px; font-size: 15px; font-weight: 700; color: #fff;
  background: linear-gradient(145deg, #8B6BFF, var(--violet)); box-shadow: 0 4px 12px -2px rgba(109,30,247,.4); }
.stp b { font-size: 17px; font-weight: 600; color: var(--fg-4); letter-spacing: -.01em; }
.stp p { margin-top: 7px; font-size: 14px; line-height: 20px; color: var(--fg-3); }
.stp-url { margin-top: 13px; width: 100%; display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 8px 8px 8px 12px; }
.stp-url > span:first-child { flex: 1 1 auto; min-width: 0; font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px; color: var(--fg-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stp-copy { flex: none; display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 600;
  color: #fff; background: var(--violet); border-radius: 7px; padding: 6px 10px; cursor: pointer; }
.stp-copy svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 760px) { .steps3 { grid-template-columns: 1fr; } }

/* ---- Ce à quoi Claude accède : 4 cartes ---- */
.acc4 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.acc { background: var(--pnl); border-radius: 20px; corner-shape: superellipse(1.125); padding: 26px; }
.acc .gc-chip { margin-bottom: 14px; }
.acc-t { font-size: 20px; line-height: 26px; font-weight: 500; letter-spacing: -.015em; color: var(--acc); }
.acc-s { font-size: 20px; line-height: 26px; font-weight: 500; color: var(--fg-4); margin-top: 1px; }

/* ---- Carte de prompt Claude — le seul bloc sombre du site.
   C'est ce qui distingue cette page : on montre la conversation elle-même. ---- */
.pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.pc {
  position: relative; overflow: hidden;
  background: #0F1520; border-radius: 20px; corner-shape: superellipse(1.125);
  padding: 24px 26px 26px;
  box-shadow: 0 1px 2px rgba(15,21,32,.3), 0 34px 64px -40px rgba(15,21,32,.75);
}
/* halo violet discret, comme la lueur d'une interface */
.pc::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(72% 120% at 88% -14%, rgba(139,92,246,.24), transparent 62%);
}
.pc > * { position: relative; z-index: 1; }

.pc-q { display: flex; align-items: flex-start; gap: 11px; }
.pc-cl { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.pc-cl svg { width: 100%; height: 100%; display: block; fill: #D97757; }
.pc-q span { font-size: 15px; line-height: 23px; font-weight: 500; font-style: italic; color: #B9A5FF; }

.pc-badge {
  display: inline-flex; margin-bottom: 14px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #9BE6B4; background: rgba(34,197,94,.14); border-radius: 999px; padding: 5px 10px;
}

.pc-a { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.09); }
.pc-a p { font-size: 13.5px; line-height: 21px; font-weight: 500; color: #C9CCD6; }

/* lignes de résultat à l'intérieur de la réponse */
.pc-rows { display: flex; flex-direction: column; gap: 7px; margin-top: 12px; }
.pc-row { display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.045); border-radius: 9px; padding: 8px 11px; }
.pc-row b { font-size: 12.5px; font-weight: 600; color: #EDEEF3; }
.pc-row i { font-style: normal; margin-left: auto; font-size: 12.5px; font-weight: 700;
  color: #6EE7A0; font-variant-numeric: tabular-nums; }
.pc-row i.dim { color: #7C8194; }

/* liste à puces dans la réponse */
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-top: 12px; }
.pc-list li { position: relative; padding-left: 17px;
  font-size: 12.5px; line-height: 19px; font-weight: 500; color: #C9CCD6; }
.pc-list li::before { content: ""; position: absolute; left: 3px; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: #8B5CF6; }

@media (max-width: 860px) {
  .acc4, .pgrid { grid-template-columns: 1fr; }
  .pc { padding: 20px; }
  .rahero-ctas .btn { width: 100%; }
}

/* ---- Hero de test (à comparer avec le hero actuel) ----
   Le liseré et l'étiquette servent uniquement à distinguer les deux blocs
   pendant l'arbitrage : à supprimer avec la section perdante. */
.hero-test { position: relative; padding-top: 72px; border-top: 1px dashed #d8d8e0; }
.hero-test::before { display: none; }          /* pas de second halo violet */
.test-flag {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--violet); background: var(--purple-1); border-radius: 999px; padding: 5px 12px;
}
.hero-test .feat-badge { margin-bottom: 22px; }
.hero-test .rahero-ctas { margin-top: 30px; }
/* Le texte tapé s'aligne à gauche (il hérite sinon du centrage du hero) et
   reste sur une seule ligne : la barre garde une hauteur stable pendant la
   frappe au lieu de sauter d'une ligne à l'autre. */
.hero-test .mcp-ask-typed {
  text-align: left; min-height: 24px;
  white-space: nowrap; overflow: hidden;
}
