/* ══════════════════════════════════════════════════════════════
 * Décroche Toujours — site vitrine
 * Thème « Clair » : ivoire · bleu nuit · or — Maison institutionnelle
 * ══════════════════════════════════════════════════════════════ */
@import url("fonts/fonts.css");

:root {
  --paper: #F4F1E9;
  --paper-raise: #FBF9F3;
  --paper-soft: #ECE7DA;
  --paper-edge: #E3DCCB;
  --ink: #1C1B17;
  --ink-muted: #5C584D;
  --ink-subtle: #6B6757;
  --navy: #16223F;
  --navy-deep: #0E1830;
  --navy-soft: #24314F;
  --gold: #A9823F;
  --gold-bright: #C7A059;
  --gold-pale: #E7D2A1;
  --gold-deep: #7E5F2C;
  --line: #E0D8C6;
  --line-strong: #CFC4AC;
  --on-navy: #F2EEE3;
  --on-navy-muted: #A9B0C2;
  --ok: #3F7256;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --gold-gradient: linear-gradient(100deg, #7E5F2C 0%, #A9823F 18%, #E7D2A1 40%, #B98D45 56%, #E7D2A1 74%, #8A6A35 100%);
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* texture papier discrète */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .5;
  background:
    radial-gradient(900px 480px at 12% -4%, rgba(199,160,89,.10), transparent 60%),
    radial-gradient(1000px 560px at 96% 8%, rgba(22,34,63,.06), transparent 60%);
}
::selection { background: var(--navy); color: var(--paper); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 72px; position: relative; z-index: 1; }
section { padding: 130px 0; position: relative; z-index: 1; }

.serif { font-family: "Newsreader", Georgia, serif; }
.mono { font-family: "IBM Plex Mono", monospace; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; }

.kicker { font-family: "IBM Plex Mono", monospace; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 22px; display: block; }
h1, h2 { font-family: "Newsreader", Georgia, serif; font-weight: 400; line-height: 1.06; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.9rem, 5.4vw, 5rem); }
h2 { font-size: clamp(1.95rem, 3.4vw, 2.85rem); margin-bottom: 18px; }
h1 em, h2 em { font-style: italic; color: var(--gold-deep); }
.lead { font-size: 1.24rem; color: var(--ink-muted); max-width: 48ch; }

.goldrule { height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: 78px;
  display: flex; align-items: center;
  transition: background .4s var(--ease), border-color .4s var(--ease), height .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(244,241,233,.86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--line); height: 64px; }
.header-inner { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 72px; display: flex; align-items: center; gap: 36px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-name { font-family: "Newsreader", Georgia, serif; font-weight: 500; font-size: 1.12rem; letter-spacing: .06em; line-height: 1.1; }
.brand-sub { font-family: "IBM Plex Mono", monospace; font-size: .52rem; letter-spacing: .22em; color: var(--ink-subtle); }
.main-nav { display: flex; gap: 30px; margin-left: auto; }
.main-nav a { text-decoration: none; font-weight: 500; font-size: .85rem; color: var(--ink-muted); position: relative; padding: 4px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.main-nav a:hover::after { transform: scaleX(1); }
.burger { display: none; background: none; border: 0; cursor: pointer; margin-left: auto; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s var(--ease); }

/* ── Boutons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Inter", sans-serif; font-weight: 500; font-size: .96rem;
  padding: 16px 26px; border-radius: 8px; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-sm { font-size: .82rem; padding: 11px 18px; }
.btn-gold { background: var(--navy); color: var(--on-navy); border-color: rgba(199,160,89,.55); box-shadow: 0 10px 28px -12px rgba(22,34,63,.55); }
.btn-gold::before { content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; background: linear-gradient(100deg, transparent, rgba(231,210,161,.35), transparent); transform: skewX(-20deg); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(22,34,63,.6); }
.btn-gold:hover::before { animation: sheen .95s var(--ease); }
@keyframes sheen { to { left: 130%; } }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-line:hover { border-color: var(--gold); background: var(--paper-raise); transform: translateY(-2px); }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

/* ── Hero ───────────────────────────────────────────────── */
.hero { min-height: 100svh; display: flex; align-items: center; padding: 150px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; width: 100%; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 9px 18px;
  font-family: "IBM Plex Mono", monospace; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 30px; background: rgba(251,249,243,.6);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(169,130,63,.5);} 55% { box-shadow: 0 0 0 8px rgba(169,130,63,0);} }
.hero h1 { margin-bottom: 26px; }
.hero .lead { margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.seal-figure { text-align: center; }
.seal-figure figcaption { margin-top: 22px; font-family: "IBM Plex Mono", monospace; font-size: .68rem; letter-spacing: .2em; color: var(--ink-subtle); }
.seal { width: min(430px, 100%); margin: 0 auto; filter: drop-shadow(0 30px 60px rgba(22,34,63,.18)); }
.seal .ring-slow { transform-origin: center; animation: spin 120s linear infinite; }
.seal .ring-slower { transform-origin: center; animation: spin 200s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Bandeau confiance ──────────────────────────────────── */
.trust { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.pill { border: 1px solid var(--line-strong); border-radius: 999px; padding: 10px 20px; font-family: "IBM Plex Mono", monospace; font-size: .68rem; letter-spacing: .16em; color: var(--ink-muted); background: rgba(251,249,243,.5); white-space: nowrap; }

/* ── Manifeste ──────────────────────────────────────────── */
.manifesto blockquote { font-family: "Newsreader", Georgia, serif; font-style: italic; font-weight: 300; font-size: clamp(1.3rem, 2.6vw, 1.85rem); color: var(--navy); text-align: center; max-width: 34ch; margin: 0 auto; line-height: 1.5; }
.manifesto .goldrule { width: 220px; margin: 34px auto; }

/* ── 01 Constat ─────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.bignum { font-family: "Newsreader", Georgia, serif; font-size: clamp(7rem, 12vw, 13rem); line-height: 1; color: var(--gold-deep); font-weight: 300; }
.pullquote { border-left: 2px solid var(--gold); padding-left: 28px; font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: 1.35rem; color: var(--navy); line-height: 1.55; }
.split p.body { color: var(--ink-muted); margin-top: 20px; max-width: 44ch; }

/* ── 02 Service ─────────────────────────────────────────── */
.level { display: grid; grid-template-columns: 90px 1fr; gap: 26px; padding: 34px 0; border-bottom: 1px solid var(--line); transition: transform .4s var(--ease); }
.level:first-of-type { border-top: 1px solid var(--line); }
.level:hover { transform: translateX(8px); }
.level .idx { font-family: "Newsreader", Georgia, serif; font-size: 1.6rem; color: var(--gold); }
.level h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.level p { color: var(--ink-muted); font-size: .95rem; max-width: 52ch; }

.console {
  background: var(--paper-raise); border: 1px solid var(--paper-edge); border-radius: 16px;
  box-shadow: 0 30px 70px -30px rgba(22,34,63,.25); overflow: hidden; margin-top: 60px;
}
.console-bar { display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.live { display: inline-flex; align-items: center; gap: 8px; font-family: "IBM Plex Mono", monospace; font-size: .64rem; letter-spacing: .18em; color: var(--ok); }
.live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); animation: pulse 2s infinite; }
.wave { display: inline-flex; align-items: flex-end; gap: 3px; height: 18px; margin-left: auto; }
.wave i { width: 3px; background: var(--gold); border-radius: 2px; animation: wave 1.1s ease-in-out infinite; }
.wave i:nth-child(1){height:8px; animation-delay:0s;} .wave i:nth-child(2){height:14px; animation-delay:.15s;}
.wave i:nth-child(3){height:18px; animation-delay:.3s;} .wave i:nth-child(4){height:11px; animation-delay:.45s;}
.wave i:nth-child(5){height:15px; animation-delay:.6s;}
@keyframes wave { 0%,100%{transform:scaleY(.5);} 50%{transform:scaleY(1);} }
.console-body { padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; }
.bubble { max-width: 78%; padding: 13px 18px; border-radius: 16px; font-size: .94rem; line-height: 1.55; }
.bubble.user { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble.lea { background: var(--navy); color: var(--on-navy); align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble .who { display: block; font-family: "IBM Plex Mono", monospace; font-size: .6rem; letter-spacing: .16em; opacity: .65; margin-bottom: 6px; }
.console-foot { padding: 14px 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-family: "IBM Plex Mono", monospace; font-size: .62rem; letter-spacing: .16em; color: var(--ink-subtle); }

/* ── Pour qui ───────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 54px; }
.card {
  background: var(--paper-raise); border: 1px solid var(--paper-edge); border-radius: 14px; padding: 36px 32px; position: relative; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-gradient); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -24px rgba(22,34,63,.3); }
.card:hover::before { transform: scaleX(1); }
.card h3 { font-family: "Newsreader", Georgia, serif; font-size: 1.34rem; font-weight: 500; margin-bottom: 12px; }
.card p { color: var(--ink-muted); font-size: .94rem; }
.card .tag { display: block; margin-top: 20px; font-family: "IBM Plex Mono", monospace; font-size: .64rem; letter-spacing: .18em; color: var(--gold-deep); }

/* ── Méthode ────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 54px; }
.step { border: 1px solid var(--line); border-radius: 16px; padding: 30px 26px; background: rgba(251,249,243,.55); transition: transform .4s var(--ease), border-color .4s var(--ease); }
.step:hover { transform: translateY(-4px); border-color: var(--gold); }
.step .n { font-family: "IBM Plex Mono", monospace; font-size: .66rem; letter-spacing: .18em; color: var(--gold-deep); display: block; margin-bottom: 16px; }
.step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.step p { color: var(--ink-muted); font-size: .9rem; }

/* ── Bande sombre ───────────────────────────────────────── */
.darkband { background: var(--navy-deep); border-radius: 22px; padding: 96px 80px; color: var(--on-navy); position: relative; overflow: hidden; }
.darkband::before, .darkband::after { content: ""; position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.darkband::before { width: 520px; height: 520px; top: -200px; right: -120px; background: radial-gradient(circle, rgba(199,160,89,.22), transparent 65%); }
.darkband::after { width: 420px; height: 420px; bottom: -180px; left: -100px; background: radial-gradient(circle, rgba(199,160,89,.12), transparent 65%); }
.darkband .kicker { color: var(--gold-pale); }
.darkband h2 { color: var(--on-navy); }
.darkband h2 em { color: var(--gold-pale); }
.darkband .lead { color: var(--on-navy-muted); }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 20px; position: relative; z-index: 1; }
.price-card { background: rgba(251,249,243,.06); border: 1px solid rgba(231,210,161,.22); border-radius: 18px; padding: 48px 44px; backdrop-filter: blur(6px); }
.price-card .amount { font-family: "Newsreader", Georgia, serif; font-size: clamp(3rem, 5vw, 4.2rem); color: var(--on-navy); line-height: 1; }
.price-card .amount small { font-size: 1.2rem; color: var(--on-navy-muted); font-family: "Inter", sans-serif; }
.price-card ul { list-style: none; margin: 28px 0 34px; display: flex; flex-direction: column; gap: 13px; }
.price-card li { display: flex; gap: 12px; align-items: flex-start; color: var(--on-navy-muted); font-size: .95rem; }
.price-card li::before { content: "◆"; color: var(--gold); font-size: .7rem; margin-top: 5px; }
.price-note { margin-top: 22px; font-family: "IBM Plex Mono", monospace; font-size: .66rem; letter-spacing: .14em; color: var(--on-navy-muted); text-transform: uppercase; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 50px auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 6px; font-family: "Newsreader", Georgia, serif; font-size: 1.12rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { color: var(--gold); font-size: 1.4rem; font-weight: 300; transition: transform .3s var(--ease); flex-shrink: 0; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq .answer { padding: 0 6px 28px; color: var(--ink-muted); font-size: .95rem; max-width: 62ch; }

/* ── CTA + formulaire ───────────────────────────────────── */
.cta { text-align: center; }
.cta .seal-mini { width: 78px; margin: 0 auto 30px; }
.cta h2 { font-size: clamp(2.2rem, 4.4vw, 3.7rem); margin: 18px 0 16px; }
.demo-form { max-width: 640px; margin: 54px auto 0; text-align: left; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: "IBM Plex Mono", monospace; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-subtle); }
.field input, .field select, .field textarea {
  font-family: "Inter", sans-serif; font-size: .95rem; color: var(--ink);
  background: var(--paper-raise); border: 1px solid var(--line-strong); border-radius: 10px; padding: 14px 16px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(169,130,63,.15); }
.field textarea { min-height: 110px; resize: vertical; }
.form-foot { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 14px; align-items: center; margin-top: 6px; }
.form-note { font-size: .8rem; color: var(--ink-subtle); text-align: center; max-width: 46ch; }
.form-ok { display: none; grid-column: 1 / -1; text-align: center; padding: 34px; border: 1px solid var(--gold); border-radius: 14px; background: rgba(251,249,243,.7); }
.form-ok.show { display: block; }
.form-ok h3 { font-family: "Newsreader", Georgia, serif; font-size: 1.5rem; margin-bottom: 10px; }
.form-ok p { color: var(--ink-muted); }

/* ── Signature ──────────────────────────────────────────── */
.signature blockquote { font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--navy); text-align: center; max-width: 30ch; margin: 0 auto; line-height: 1.5; }
.signature .goldrule { width: 46px; margin: 0 auto 34px; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--paper-soft); border-top: 1px solid var(--line); padding: 70px 0 34px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand p { color: var(--ink-muted); font-size: .9rem; margin-top: 16px; max-width: 34ch; }
.footer-col h4 { font-family: "IBM Plex Mono", monospace; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-subtle); margin-bottom: 18px; }
.footer-col a { display: block; text-decoration: none; color: var(--ink-muted); font-size: .9rem; padding: 5px 0; position: relative; width: fit-content; }
.footer-col a::after { content: ""; position: absolute; left: 0; bottom: 2px; height: 1px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.footer-col a:hover::after { transform: scaleX(1); }
.footer-legal { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: "IBM Plex Mono", monospace; font-size: .64rem; letter-spacing: .1em; color: var(--ink-subtle); }

/* ── Pages légales ──────────────────────────────────────── */
.legal { padding: 170px 0 100px; }
.legal h1 { margin: 20px 0 14px; font-size: clamp(2.2rem, 4vw, 3.4rem); }
.legal .updated { font-family: "IBM Plex Mono", monospace; font-size: .68rem; letter-spacing: .16em; color: var(--ink-subtle); text-transform: uppercase; }
.legal article { max-width: 760px; margin-top: 50px; }
.legal h2 { font-size: 1.6rem; margin: 44px 0 14px; }
.legal p, .legal li { color: var(--ink-muted); font-size: .96rem; margin-bottom: 14px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal a { color: var(--navy); }

/* ── Révélation au scroll ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1023px) {
  .wrap, .header-inner { padding: 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .seal-figure { order: -1; }
  .seal { width: min(300px, 80%); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .darkband { padding: 64px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  .wrap, .header-inner { padding: 0 22px; }
  section { padding: 88px 0; }
  .main-nav { display: none; position: fixed; top: 78px; left: 0; right: 0; background: var(--paper); flex-direction: column; padding: 20px 22px 30px; gap: 6px; border-bottom: 1px solid var(--line); box-shadow: 0 30px 40px -20px rgba(22,34,63,.2); }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1rem; padding: 10px 0; }
  .burger { display: block; }
  .header-cta { display: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .demo-form { grid-template-columns: 1fr; }
  .darkband { padding: 52px 26px; border-radius: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 130px; }
}

/* Maison mère Cassin Vendôme */
.footer-legal .maison-mere{display:inline-flex;align-items:center;gap:8px}
.footer-legal .maison-mere .cv-seal{display:inline-block;width:26px;height:26px;flex:0 0 auto;border-radius:50%;box-shadow:0 0 0 1px rgba(169,130,63,.45)}
.footer-legal .maison-mere .cv-seal svg{display:block;width:100%;height:100%;border-radius:50%}
.cv-fan{transform-origin:50% 50%;animation:cvspin 200s linear infinite}
.cv-rose{transform-origin:50% 50%;animation:cvspin 90s linear infinite}
.cv-spiral{transform-origin:50% 50%;animation:cvspin 140s linear infinite reverse}
.cv-bead-core{transform-origin:50% 50%;animation:cvbeadpulse 4.5s ease-in-out infinite}
.cv-gleam{transform-origin:50% 50%;animation:cvspin 16s linear infinite;mix-blend-mode:screen}
@keyframes cvspin{to{transform:rotate(360deg)}}
@keyframes cvbeadpulse{0%,100%{opacity:1}50%{opacity:.7}}
@media(prefers-reduced-motion:reduce){.cv-fan,.cv-rose,.cv-spiral,.cv-bead-core,.cv-gleam{animation:none}}

/* ══════════════════════════════════════════════════════════════
 * Décroche Toujours — refonte 10/10 (2026-09-21)
 * Hero « appel en direct », player audio, calculateur, mockups
 * ══════════════════════════════════════════════════════════════ */

/* ── Hero : grille + stats ── */
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy .lead strong { color: var(--ink); }
.hero-stats { display: flex; gap: 34px; margin-top: 34px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: "Newsreader", Georgia, serif; font-size: 1.7rem; font-weight: 500; color: var(--navy); }
.hero-stats span { font-size: .82rem; color: var(--ink-muted); }
.play-ico { font-size: .85em; margin-right: 2px; }

/* ── Carte « appel en direct » ── */
.call-card {
  background: var(--navy-deep);
  border: 1px solid rgba(199,160,89,.35);
  border-radius: 22px;
  padding: 22px 22px 18px;
  color: var(--on-navy);
  box-shadow: 0 30px 80px -20px rgba(14,24,48,.55), 0 0 0 1px rgba(14,24,48,.4);
  position: relative; overflow: hidden;
}
.call-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px 300px at 80% -10%, rgba(199,160,89,.16), transparent 60%);
}
.call-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; position: relative; }
.call-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 auto;
  background: var(--gold-gradient); color: #10182e;
  display: flex; align-items: center; justify-content: center;
  font-family: "Newsreader", Georgia, serif; font-size: 1.4rem; font-weight: 500;
}
.call-id { display: flex; flex-direction: column; line-height: 1.3; }
.call-id strong { font-size: .95rem; font-weight: 600; }
.call-status { font-size: .78rem; color: var(--on-navy-muted); display: flex; align-items: center; gap: 7px; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #5fce7d; display: inline-block; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(95,206,125,.5);} 50% { box-shadow: 0 0 0 7px rgba(95,206,125,0);} }
.call-live {
  margin-left: auto; font-family: "IBM Plex Mono", monospace; font-size: .62rem; letter-spacing: .2em;
  color: var(--gold-pale); border: 1px solid rgba(199,160,89,.5); border-radius: 999px; padding: 4px 10px;
}
.call-transcript { display: flex; flex-direction: column; gap: 10px; min-height: 220px; max-height: 340px; overflow-y: auto; margin-bottom: 16px; position: relative; padding-right: 6px; scroll-behavior: smooth; }
.call-transcript::-webkit-scrollbar { width: 6px; }
.call-transcript::-webkit-scrollbar-track { background: transparent; }
.call-transcript::-webkit-scrollbar-thumb { background: rgba(199,160,89,.35); border-radius: 3px; }
.t-bubble {
  max-width: 88%; padding: 10px 14px; border-radius: 14px; font-size: .88rem; line-height: 1.5;
  opacity: .45; cursor: pointer;
  transition: opacity .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), background-color .4s var(--ease);
}
.t-bubble:hover { opacity: .8; }
.t-bubble.said { opacity: .92; }
.t-bubble.active {
  opacity: 1; border-color: rgba(199,160,89,.95);
  box-shadow: 0 0 0 1px rgba(199,160,89,.55), 0 8px 22px rgba(0,0,0,.4);
}
.t-bubble .who { display: block; font-family: "IBM Plex Mono", monospace; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 4px; opacity: .75; }
.t-bubble.lea { background: rgba(199,160,89,.14); border: 1px solid rgba(199,160,89,.4); align-self: flex-start; border-bottom-left-radius: 4px; }
.t-bubble.user { background: rgba(242,238,227,.08); border: 1px solid rgba(242,238,227,.16); align-self: flex-end; border-bottom-right-radius: 4px; }

/* ── Player audio ── */
.player { display: flex; align-items: center; gap: 14px; position: relative; }
.play-btn {
  width: 54px; height: 54px; border-radius: 50%; flex: 0 0 auto; cursor: pointer;
  background: var(--gold-gradient); color: #10182e; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(199,160,89,.6);
  transition: transform .25s var(--ease);
}
.play-btn:hover { transform: scale(1.06); }
.wave { display: flex; align-items: center; gap: 3px; height: 44px; flex: 1; overflow: hidden; }
.wave i { width: 3px; border-radius: 2px; background: rgba(231,210,161,.35); height: 30%; transition: height .3s; }
.call-card.playing .wave i { background: var(--gold-bright); animation: wavebar 1s ease-in-out infinite; }
@keyframes wavebar { 0%,100% { transform: scaleY(.4);} 50% { transform: scaleY(1);} }
.player-meta { display: flex; align-items: center; gap: 12px; margin-top: 12px; font-family: "IBM Plex Mono", monospace; font-size: .72rem; color: var(--on-navy-muted); position: relative; }
.progress { flex: 1; height: 5px; border-radius: 3px; background: rgba(242,238,227,.14); cursor: pointer; }
.progress-fill { height: 100%; width: 0%; border-radius: 3px; background: var(--gold-gradient); transition: width .2s linear; }
.player-note { margin-top: 12px; font-size: .72rem; color: var(--on-navy-muted); line-height: 1.5; position: relative; }

/* ── Calculateur ── */
.calc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--paper-raise); border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(22,34,63,.25);
}
.calc-controls { padding: 40px; display: flex; flex-direction: column; gap: 28px; justify-content: center; }
.calc-field { display: flex; flex-direction: column; gap: 10px; }
.calc-label { font-size: .92rem; color: var(--ink-muted); display: flex; justify-content: space-between; align-items: baseline; }
.calc-label output { font-family: "Newsreader", Georgia, serif; font-size: 1.35rem; color: var(--navy); font-weight: 500; }
.calc input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 3px; background: linear-gradient(90deg, var(--gold-bright) var(--fill,30%), var(--paper-edge) var(--fill,30%)); outline: none; cursor: pointer; }
.calc input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--navy); border: 3px solid var(--gold-bright); box-shadow: 0 4px 12px rgba(22,34,63,.3); cursor: grab; }
.calc input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--navy); border: 3px solid var(--gold-bright); cursor: grab; }
.calc-result { background: var(--navy); color: var(--on-navy); padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.calc-result-label { font-family: "IBM Plex Mono", monospace; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--on-navy-muted); }
.calc-result strong { font-family: "Newsreader", Georgia, serif; font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 500; color: var(--gold-pale); line-height: 1; }
.calc-result p { color: var(--on-navy-muted); font-size: .95rem; }
.calc-result p strong { font-size: inherit; color: var(--gold-pale); font-family: inherit; font-weight: 600; }

/* ── Checklist ── */
.checklist { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li { position: relative; padding-left: 32px; font-size: .98rem; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: rgba(63,114,86,.12); color: var(--ok); font-size: .75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.checklist.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.body.muted { color: var(--ink-muted); }

/* ── Mockup SMS ── */
.sms-mock { display: flex; flex-direction: column; gap: 12px; max-width: 380px; margin: 0 auto; }
.sms-head { font-family: "IBM Plex Mono", monospace; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-muted); display: flex; align-items: center; gap: 8px; justify-content: center; }
.sms-dot { width: 8px; height: 8px; border-radius: 50%; background: #5fce7d; }
.sms-bubble {
  background: var(--navy); color: var(--on-navy); border-radius: 18px; padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px; font-size: .9rem; line-height: 1.5;
  box-shadow: 0 20px 50px -18px rgba(14,24,48,.5);
}
.sms-bubble.alt { background: var(--paper-raise); color: var(--ink); border: 1px solid var(--line); box-shadow: 0 14px 34px -18px rgba(22,34,63,.3); }
.sms-urgent { color: #ff8f8f; font-size: .82rem; letter-spacing: .04em; }
.sms-bubble.alt strong { color: var(--gold-deep); font-size: .82rem; }
.sms-actions { margin-top: 6px; font-size: .82rem; }
.sms-actions a { color: var(--gold-pale); text-decoration: underline; text-underline-offset: 3px; }
.sms-bubble.alt .sms-actions a { color: var(--gold-deep); }

/* ── Bande navy + dashboard mockup ── */
.band-navy { background: linear-gradient(180deg, var(--navy-deep), var(--navy)); }
.band-navy .kicker { color: var(--gold-pale); }
.on-navy { color: var(--on-navy) !important; }
.on-navy-muted { color: var(--on-navy-muted) !important; }
h2.on-navy em { color: var(--gold-pale); }
.dash {
  background: var(--paper-raise); border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(199,160,89,.35);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.6);
  max-width: 760px;
}
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--paper-soft); border-bottom: 1px solid var(--line); }
.dash-stats div { padding: 20px; text-align: center; display: flex; flex-direction: column; }
.dash-stats div + div { border-left: 1px solid var(--line); }
.dash-stats strong { font-family: "Newsreader", Georgia, serif; font-size: 2rem; font-weight: 500; color: var(--navy); line-height: 1; }
.dash-stats span { font-size: .78rem; color: var(--ink-muted); margin-top: 6px; }
.txt-urgent { color: #b3402e !important; }
.txt-ok { color: var(--ok) !important; }
.dash-list { display: flex; flex-direction: column; }
.dash-row { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.dash-row:last-child { border-bottom: none; }
.dash-row.urgent { background: rgba(179,64,46,.06); }
.badge { font-family: "IBM Plex Mono", monospace; font-size: .62rem; letter-spacing: .12em; background: #b3402e; color: #fff; border-radius: 6px; padding: 4px 8px; flex: 0 0 auto; }
.badge.soft { background: var(--paper-soft); color: var(--gold-deep); border: 1px solid var(--line-strong); }
.dash-main { display: flex; flex-direction: column; line-height: 1.4; flex: 1; }
.dash-main strong { font-size: .92rem; }
.dash-main span { font-size: .8rem; color: var(--ink-muted); }
.dash-time { font-size: .76rem; color: var(--ink-subtle); white-space: nowrap; }
.dash-foot { display: flex; justify-content: space-between; padding: 14px 20px; background: var(--navy); color: var(--on-navy-muted); font-size: .76rem; }

/* ── Programme pilote ── */
.pilote-band {
  background: var(--paper-raise); border: 1px solid var(--gold-bright); border-radius: 24px;
  padding: 56px; position: relative; overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(169,130,63,.5);
}
.pilote-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 340px at 50% -10%, rgba(199,160,89,.14), transparent 60%); pointer-events: none; }
.pilote-band > * { position: relative; }
.pilote-band h2 { max-width: 20ch; }
.pilote-band .lead { margin: 18px 0 6px; }
.pilote-cta { margin-top: 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.pilot-flag {
  display: inline-block; font-family: "IBM Plex Mono", monospace; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep); border: 1px solid var(--gold-bright); border-radius: 999px; padding: 6px 14px; margin-bottom: 18px;
  background: rgba(199,160,89,.1);
}

/* ── Sticky CTA mobile ── */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  background: rgba(14,24,48,.96); backdrop-filter: blur(8px);
  border: 1px solid rgba(199,160,89,.4); border-radius: 16px;
  padding: 10px 10px 10px 18px; display: none; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 18px 50px -12px rgba(0,0,0,.5);
  transform: translateY(120%); transition: transform .45s var(--ease);
}
.sticky-cta.show { transform: none; }
.sticky-cta span { color: var(--on-navy); font-size: .85rem; font-weight: 500; }

/* ── Sceau footer (fichier externe) ── */
.footer-legal .maison-mere { display: inline-flex; align-items: center; gap: 10px; }
img.cv-seal { width: 26px; height: 26px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(169,130,63,.45); }

/* ── Responsive ── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .calc { grid-template-columns: 1fr; }
  .checklist.cols { grid-template-columns: 1fr; }
  .pilote-band { padding: 36px 26px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  .calc-controls, .calc-result { padding: 28px 24px; }
  .dash-stats strong { font-size: 1.5rem; }
  .dash-row { gap: 10px; padding: 14px; }
  .dash-time { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .pulse, .call-card.playing .wave i { animation: none; }
  .t-bubble { transition: none; }
  .call-transcript { scroll-behavior: auto; }
}
