/* =====================================================================
   KLYN — Global styles (white-dominant).
   tokens.css is imported here so every page is fully styled by linking
   styles.css alone — no per-page tokens <link> to forget.
   ===================================================================== */
@import url("tokens.css");

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--night); }

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

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
[id] { scroll-margin-top: 88px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-size: var(--text-xs); font-weight: 600;
  letter-spacing: var(--track-label); text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ""; width: 20px; height: 2px; border-radius: 2px; background: var(--blue); flex-shrink: 0; }

/* gold underline that draws itself */
.u-gold { position: relative; white-space: nowrap; }
.u-gold::after {
  content: ""; position: absolute; left: -.02em; right: -.02em; bottom: .02em; height: .09em;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  animation: drawLine var(--dur-slow) var(--ease-out) .55s forwards;
}
@keyframes drawLine { to { transform: scaleX(1); } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: var(--text-base); border-radius: var(--radius-pill);
  min-height: 52px; padding: 16px 32px; touch-action: manipulation;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast), border-color var(--dur-fast); }
.btn:active { transform: scale(.98); }
.btn .arr { transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary { background: var(--gold); color: var(--night); box-shadow: 0 1px 2px rgba(10,26,58,.06); }
.btn-primary:hover { transform: translateY(-2px); background: var(--gold-bright); box-shadow: var(--shadow-gold); }

.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--hairline); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-night { background: var(--night); color: #fff; }
.btn-night:hover { transform: translateY(-2px); background: var(--night-2); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; height: 64px; display: flex; align-items: center;
  background: rgba(255,255,255,.8); backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid transparent; transition: background var(--dur) var(--ease-out), border-color var(--dur); }
.nav.scrolled { background: rgba(255,255,255,.95); border-bottom-color: var(--hairline); }
.nav__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display);
  font-weight: 700; font-size: 1.25rem; letter-spacing: -.02em; color: var(--ink); }
.nav__brand img { width: 28px; height: 28px; object-fit: contain; }
.nav__links { display: none; align-items: center; gap: 32px; }
.nav__links a { position: relative; font-size: var(--text-sm); font-weight: 500; color: var(--ink-soft); padding: 4px 0; transition: color var(--dur-fast); }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease-out); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__cta { display: none; min-height: 44px; padding: 11px 22px; font-size: var(--text-sm); }
.nav__burger { display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 44px; height: 44px; margin-right: -10px; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur); }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background:
    radial-gradient(130% 55% at 100% -4%, rgba(42, 171, 238, .22), transparent 62%),
    radial-gradient(120% 55% at -12% 106%, rgba(46, 77, 128, .16), transparent 60%),
    linear-gradient(180deg, #E6EEFC 0%, #D7E5FB 100%);
  height: calc(100vh - 64px); height: calc(100dvh - 64px); overflow-y: auto;
  display: flex; flex-direction: column; padding: 18px var(--gutter) 30px;
  transform: translateY(-110%); visibility: hidden; transition: transform var(--dur) var(--ease-out), visibility var(--dur); }
.nav.open .nav__mobile { transform: translateY(0); visibility: visible; }
/* en-tête : pastille azur */
.nav__mobile::before { content: "100 % sur Telegram"; align-self: flex-start; margin: 2px 0 14px;
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--tg);
  background: rgba(42, 171, 238, .12); padding: 7px 14px; border-radius: var(--radius-pill);
  opacity: 0; transform: translateY(-6px); transition: opacity .4s var(--ease-out) .04s, transform .4s var(--ease-out) .04s; }
.nav.open .nav__mobile::before { opacity: 1; transform: none; }

/* liens : icône colorée + label + chevron, en lignes-cartes */
.nav__mobile a:not(.btn) { display: flex; align-items: center; gap: 14px; margin-bottom: 4px;
  padding: 11px 10px; font-size: 1.28rem; font-family: var(--font-display); font-weight: 600; color: var(--ink);
  border-radius: 14px; opacity: 0; transform: translateX(-16px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out), color var(--dur-fast), background var(--dur-fast); }
.nav__mobile a:not(.btn)::before { content: ""; flex-shrink: 0; width: 44px; height: 44px; border-radius: 13px;
  background-repeat: no-repeat; background-position: center; background-size: 22px;
  transition: transform var(--dur-fast) var(--ease-out); }
.nav__mobile a:not(.btn)::after { content: ""; margin-left: auto; flex-shrink: 0; width: 9px; height: 9px;
  border-top: 2px solid var(--ink-faint); border-right: 2px solid var(--ink-faint); border-radius: 1px;
  transform: rotate(45deg); transition: border-color var(--dur-fast), transform var(--dur-fast); }
.nav__mobile a:not(.btn):active { color: var(--blue); background: rgba(46, 77, 128, .05); }
.nav__mobile a:not(.btn):active::before { transform: scale(1.06); }
.nav__mobile a:not(.btn):active::after, .nav__mobile a[aria-current="page"]::after { border-color: var(--blue); transform: rotate(45deg) translate(1px, -1px); }
.nav__mobile a[aria-current="page"] { color: var(--blue); }
/* icônes par lien (azur / or / navy) */
.nav__mobile a:not(.btn)[href="comment-ca-marche.html"]::before { background-color: rgba(42, 171, 238, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232AABEE' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l1.9 4.6L18.5 9.5l-4.6 1.9L12 16l-1.9-4.6L5.5 9.5l4.6-1.9z'/%3E%3Cpath d='M19 15l.7 1.8 1.8.7-1.8.7L19 20l-.7-1.8L16.5 17.5l1.8-.7z'/%3E%3C/svg%3E"); }
.nav__mobile a:not(.btn)[href="tarifs.html"]::before { background-color: rgba(201, 169, 97, .2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8954E' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41 13.42 20.6a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z'/%3E%3Cpath d='M7 7h.01'/%3E%3C/svg%3E"); }
.nav__mobile a:not(.btn)[href="pros.html"]::before { background-color: rgba(46, 77, 128, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E4D80' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2'/%3E%3C/svg%3E"); }
.nav__mobile a:not(.btn)[href="faq.html"]::before { background-color: rgba(42, 171, 238, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232AABEE' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.4 8.4 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.4 8.4 0 0 1-3.8-.9L3 21l1.9-5.7a8.4 8.4 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.4 8.4 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8z'/%3E%3C/svg%3E"); }
.nav.open .nav__mobile a:not(.btn) { opacity: 1; transform: none; }
.nav.open .nav__mobile a:not(.btn):nth-of-type(1) { transition-delay: .08s; }
.nav.open .nav__mobile a:not(.btn):nth-of-type(2) { transition-delay: .15s; }
.nav.open .nav__mobile a:not(.btn):nth-of-type(3) { transition-delay: .22s; }
.nav.open .nav__mobile a:not(.btn):nth-of-type(4) { transition-delay: .29s; }
/* CTA épinglé en bas, pleine largeur */
.nav__mobile .btn { margin-top: auto; width: 100%; min-height: 56px; font-size: var(--text-base);
  opacity: 0; transform: translateY(12px); transition: opacity .4s var(--ease-out) .3s, transform .4s var(--ease-out) .3s; }
.nav.open .nav__mobile .btn { opacity: 1; transform: none; }
/* petit rappel sous le CTA */
.nav__mobile::after { content: "~15 sec par fiche · sans extension · sur Telegram"; margin-top: 14px; text-align: center;
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 500; color: var(--ink-faint);
  opacity: 0; transition: opacity .4s var(--ease-out) .42s; }
.nav.open .nav__mobile::after { opacity: 1; }

@media (min-width: 900px) {
  .nav__links, .nav__cta { display: inline-flex; }
  .nav__burger, .nav__mobile { display: none; }
}

/* ---------- HERO (asymétrique : promesse à gauche, démo à droite) ---------- */
.hero { position: relative; overflow: hidden;
  min-height: 100svh; display: flex; align-items: center;
  padding: calc(64px + clamp(20px, 4vw, 44px)) 0 clamp(40px, 6vw, 72px); }

/* halo TRÈS léger blanc→#FAFAFA uniquement derrière la démo, pour la détacher */
.hero__glow { position: absolute; z-index: 0; top: 50%; right: -4%; width: 56%; height: 118%;
  transform: translateY(-50%); pointer-events: none;
  background: radial-gradient(closest-side, rgba(42, 171, 238, .11), transparent 72%); }

.hero__grid { position: relative; z-index: 1; display: grid; gap: clamp(36px, 5vw, 64px); align-items: center; width: 100%; }
@media (min-width: 920px) { .hero__grid { grid-template-columns: 1.05fr 1fr; } }

/* colonne texte — alignée à GAUCHE */
.hero__text { max-width: 560px; }
.hero__text > * { opacity: 0; transform: translateY(18px); animation: heroIn var(--dur-slow) var(--ease-out) forwards; }
.hero__eyebrow { animation-delay: .04s; }
.hero__h1 { animation-delay: .12s; }
.hero__sub { animation-delay: .22s; }
.hero__cta { animation-delay: .32s; }
.hero__re { animation-delay: .4s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

.hero__eyebrow { margin-bottom: 18px; }
.hero__h1 { font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5.2vw, 4.1rem); line-height: 1.05; letter-spacing: var(--track-tight); color: var(--ink); }
.hero__sub { margin-top: 20px; font-size: var(--text-lg); line-height: 1.5; color: var(--ink-soft); max-width: 48ch; }
.hero__cta { margin-top: 30px; }
.hero__re { margin-top: 16px; font-size: var(--text-sm); color: var(--ink-faint); }

/* colonne démo */
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__pf-demo { position: relative; width: min(420px, 92vw); }
.hero__pf-demo .demo { width: 100%; margin: 0; }

/* chip "preuve de rapidité" — neutre (le doré reste réservé au CTA + au prix final) */
.scene-chip { position: absolute; z-index: 7; top: -14px; right: 2%; display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--ink); background: var(--bg); border: 1px solid var(--hairline);
  padding: 8px 13px; border-radius: var(--radius-pill); box-shadow: var(--shadow-md); animation: floaty 5s var(--ease-in-out) 1.4s infinite; }
.scene-chip svg { width: 14px; height: 14px; color: var(--blue); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(.5); } 50% { opacity: 1; transform: scale(1); } }

/* mobile : texte d'abord, la démo "dépasse" dans le viewport (teaser) */
@media (max-width: 919px) {
  .hero { min-height: auto; align-items: flex-start; padding-bottom: clamp(40px, 9vw, 64px); }
  .hero__text { max-width: none; }
  .hero__visual { margin-top: clamp(30px, 7vw, 44px); }
}

/* ---------- HERO DEMO (signature: détourage → fiche → prix doré) ---------- */
.demo { position: relative; width: min(384px, 100%); margin-inline: auto;
  opacity: 0; transform: translateY(24px) scale(.985); animation: heroIn var(--dur-slow) var(--ease-out) .35s forwards; }
.demo__screen { background: var(--bg); border: 1px solid var(--hairline); border-radius: 24px;
  box-shadow: var(--shadow-md); overflow: hidden; }
.demo__header { display: flex; align-items: center; gap: 11px; padding: 14px 16px; border-bottom: 1px solid var(--hairline); background: var(--bg-alt); }
.demo__avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--night); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.demo__id { line-height: 1.2; }
.demo__name { font-weight: 600; font-size: var(--text-sm); color: var(--ink); }
.demo__status { font-size: var(--text-xs); color: var(--success); }
.demo__body { position: relative; padding: 18px 16px; display: flex; flex-direction: column; gap: 14px; min-height: 452px; }

/* sent photo bubble */
.demo__sent { align-self: flex-end; width: 60%; border-radius: 16px 16px 4px 16px; overflow: hidden;
  border: 1px solid var(--hairline); box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(12px); }
.demo__sent.show { opacity: 1; transform: none; transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.demo__sent img { width: 100%; height: 132px; object-fit: cover; }
.demo__sent .cap { font-size: 11px; color: var(--ink-faint); padding: 5px 9px; text-align: right; }

/* typing indicator */
.demo__typing { align-self: flex-start; display: inline-flex; gap: 4px; padding: 12px 14px;
  background: var(--bg-soft); border-radius: 4px 14px 14px 14px; opacity: 0; }
.demo__typing.show { opacity: 1; transition: opacity var(--dur-fast); }
.demo__typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-faint); animation: bob 1.2s infinite; }
.demo__typing span:nth-child(2) { animation-delay: .15s; }
.demo__typing span:nth-child(3) { animation-delay: .3s; }
@keyframes bob { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }

/* generated fiche */
.fiche { align-self: flex-start; width: 86%; background: var(--bg); border: 1px solid var(--hairline);
  border-radius: 4px 16px 16px 16px; overflow: hidden; box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(12px); }
.fiche.show { opacity: 1; transform: none; transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.fiche__photo { position: relative; height: 184px; background: #fff; overflow: hidden; }
.fiche__after, .fiche__before { position: absolute; inset: 0; }
.fiche__after img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.fiche__before img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.fiche__before { clip-path: inset(0 0 0 0); }
.fiche__before.detour { clip-path: inset(0 0 0 100%); transition: clip-path 1.1s var(--ease-out); }
.fiche__scan { position: absolute; top: -4%; bottom: -4%; width: 3px; left: 0; opacity: 0;
  background: linear-gradient(180deg, transparent, var(--gold-bright) 50%, transparent);
  box-shadow: 0 0 22px 6px rgba(224, 192, 116, .6); }
.fiche__scan.run { animation: scan 1.1s var(--ease-out) forwards; }
@keyframes scan { 0% { left: 0; opacity: 0; } 10% { opacity: 1; } 90% { left: 100%; opacity: 1; } 100% { left: 100%; opacity: 0; } }
.fiche__chip { position: absolute; top: 12px; left: 12px; font-size: 10.5px; font-weight: 600;
  color: var(--ink); background: rgba(255,255,255,.9); border: 1px solid var(--hairline);
  padding: 5px 9px; border-radius: 8px; backdrop-filter: blur(4px); opacity: 0; transition: opacity var(--dur); }
.fiche__chip.show { opacity: 1; }
.fiche__b { padding: 14px 15px 16px; }
.fiche__title { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; line-height: 1.35; color: var(--ink); min-height: 20px; }
.fiche__title .car { color: var(--gold); }
.fiche__desc { font-size: 12px; color: var(--ink-soft); line-height: 1.55; margin-top: 7px; min-height: 52px; }
.fiche__desc span { display: block; opacity: 0; transform: translateY(4px); }
.fiche__desc span.show { opacity: 1; transform: none; transition: all var(--dur) var(--ease-out); }
.fiche__foot { display: flex; align-items: center; gap: 10px; margin-top: 13px; }
.fiche__price { display: inline-flex; align-items: baseline; gap: 2px; font-family: var(--font-display);
  font-weight: 700; font-size: 21px; color: var(--ink); padding: 7px 13px; border-radius: var(--radius-sm);
  background: var(--bg-soft); transition: background var(--dur) var(--ease-out), color var(--dur), box-shadow var(--dur), transform var(--dur); }
.fiche__price.is-gold { background: var(--gold); color: var(--night); box-shadow: var(--shadow-gold); transform: scale(1.04); }
.fiche__price .cur { font-size: 14px; }
.fiche__badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--success);
  opacity: 0; transform: scale(.5) rotate(-7deg); transform-origin: left center; }
.fiche__badge svg { width: 13px; height: 13px; }
.fiche__badge.stamp { animation: stampIn .55s var(--ease-out) forwards; }
@keyframes stampIn { 0% { opacity: 0; transform: scale(.5) rotate(-7deg); }
  60% { opacity: 1; transform: scale(1.12) rotate(-7deg); } 100% { opacity: 1; transform: scale(1) rotate(-7deg); } }

/* floating reassurance chips around the demo (gold, rare) */
.demo__float { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--ink); background: var(--bg); border: 1px solid var(--hairline);
  padding: 9px 13px; border-radius: var(--radius-pill); box-shadow: var(--shadow-md); white-space: nowrap; }
.demo__float svg { width: 14px; height: 14px; color: var(--gold); }
.demo__float--1 { top: 64%; left: -8%; animation: floaty 5s var(--ease-in-out) infinite; }
.demo__float--2 { top: 14%; right: -6%; animation: floaty 5s var(--ease-in-out) 1.6s infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 560px) { .demo__float { display: none; } }

/* ---------- Scroll reveal (varied) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); transition-delay: var(--d, 0s); }
.reveal--left { transform: translateX(-32px); }
.reveal--scale { transform: scale(.96); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Shared section type ---------- */
.h-sec { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl);
  line-height: var(--lh-snug); letter-spacing: var(--track-tight); color: var(--ink); }
.eyebrow--light { color: rgba(255, 255, 255, .55); }
.eyebrow--light::before { background: rgba(255, 255, 255, .45); }
.g { color: var(--gold); }

/* ---------- 2 · Différenciateur (night band) ---------- */
.diff { background: var(--night); color: #fff; padding-block: var(--section-y); }
.diff .eyebrow { margin-bottom: clamp(28px, 4vw, 44px); }
.diff__lines { display: grid; gap: 6px; }
.diff__line { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 5.4vw, 4rem);
  line-height: 1.05; letter-spacing: var(--track-tight); color: #fff; }
.diff__line:nth-child(1), .diff__line:nth-child(2) { color: rgba(255, 255, 255, .4); }
.diff__line .g { color: var(--gold); }
.diff__sub { margin-top: 30px; font-size: var(--text-lg); color: var(--gold); max-width: 40ch; }

/* ---------- 3 · Transformation (zig-zag) ---------- */
.trans__row { display: grid; gap: clamp(32px, 5vw, 72px); align-items: center; margin-block: clamp(64px, 9vw, 120px); }
.trans__row:first-child { margin-top: 0; }
.trans__row:last-child { margin-bottom: 0; }
@media (min-width: 860px) { .trans__row { grid-template-columns: 1fr 1fr; } .trans__row--rev .trans__media { order: 2; } }
.trans__media { position: relative; margin: 0; }
.trans__media > img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.trans__tag { position: absolute; top: 14px; left: 14px; font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--track-label); color: var(--ink);
  background: rgba(255, 255, 255, .92); padding: 6px 12px; border-radius: var(--radius-pill); }
.mini-fiche { background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); max-width: 430px; }
.mini-fiche__img { aspect-ratio: 16 / 11; background: #0e1117; }
.mini-fiche__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; }
.mini-fiche__b { padding: 18px 20px 20px; }
.mini-fiche__t { font-family: var(--font-display); font-weight: 600; font-size: var(--text-base); line-height: 1.35; color: var(--ink); }
.mini-fiche__d { font-size: var(--text-sm); color: var(--ink-soft); margin-top: 8px; line-height: 1.5; }
.mini-fiche__row { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.mini-fiche__p { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg);
  color: var(--night); background: var(--gold); padding: 6px 14px; border-radius: var(--radius-sm); }
.mini-fiche__c { font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: var(--track-label); color: var(--ink-faint); }
.trans__step { display: inline-block; font-size: var(--text-xs); font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--track-label); color: var(--ink-faint); margin-bottom: 14px; }
.trans__step--gold { color: var(--gold); }
.trans__txt h2 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl);
  line-height: var(--lh-snug); letter-spacing: var(--track-tight); color: var(--ink); }
.trans__txt h2 .g { color: var(--gold); }
.trans__txt p { font-size: var(--text-lg); color: var(--ink-soft); line-height: 1.55; margin-top: 18px; max-width: 42ch; }
.trans__media--stat { display: grid; place-content: center; justify-items: center; text-align: center;
  aspect-ratio: 1 / 1; max-width: 420px; margin-inline: auto; background: var(--bg-soft);
  border: 1px solid var(--hairline); border-radius: var(--radius); }
.stat { display: inline-flex; align-items: baseline; gap: 6px; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(4rem, 11vw, 7.5rem);
  line-height: 1; letter-spacing: -.04em; color: var(--ink); }
.stat__unit { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl); color: var(--gold); }
.stat__cap { margin-top: 10px; font-size: var(--text-sm); color: var(--ink-soft); }

/* ---------- 4 · Comment ça marche (steps + progress) ---------- */
.howto__head { max-width: 640px; margin-bottom: clamp(48px, 7vw, 80px); }
.howto__head .h-sec { margin-top: 14px; }
.steps { position: relative; display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); } }
.steps__track { display: none; }
@media (min-width: 760px) {
  .steps__track { display: block; position: absolute; top: 23px; left: 9%; right: 9%; height: 2px; background: var(--hairline); }
  .steps__progress { display: block; height: 100%; width: 0; background: var(--gold); transition: width 1.2s var(--ease-out); }
  .steps.in .steps__progress { width: 100%; }
}
.step__n { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-alt); border: 2px solid var(--ink); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); position: relative; z-index: 1; }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); margin-top: 20px; color: var(--ink); }
.step p { font-size: var(--text-base); color: var(--ink-soft); margin-top: 8px; max-width: 28ch; }
.howto__cta { margin-top: clamp(40px, 6vw, 64px); }

/* ---------- 5 · Accès anticipé (encart) ---------- */
.founder { max-width: 720px; margin-inline: auto; text-align: center; background: var(--bg-alt);
  border: 1px solid var(--gold); border-radius: var(--radius); padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px); }
.founder__badge { display: inline-block; font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: var(--track-label); color: var(--night); background: var(--gold); padding: 7px 16px;
  border-radius: var(--radius-pill); margin-bottom: 24px; }
.founder p { font-size: var(--text-lg); color: var(--ink-soft); max-width: 44ch; margin: 16px auto 32px; }

/* ---------- 6 · Aperçu tarifs ---------- */
.price__head { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-end; justify-content: space-between;
  margin-bottom: clamp(40px, 6vw, 64px); }
.price__head .h-sec { margin-top: 12px; }
.seg { display: inline-flex; padding: 5px; border-radius: var(--radius-pill); background: var(--bg-soft); border: 1px solid var(--hairline); }
.seg button { padding: 10px 18px; border-radius: var(--radius-pill); font-weight: 600; font-size: var(--text-sm);
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: 7px; touch-action: manipulation;
  transition: background var(--dur-fast), color var(--dur-fast); }
.seg button.is-on { background: var(--ink); color: #fff; }
.seg__save { font-size: 11px; font-weight: 700; color: var(--gold-bright); }
.plans { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .plans { grid-template-columns: repeat(4, 1fr); align-items: stretch; } }
.plan { position: relative; display: flex; flex-direction: column; padding: 28px 24px; border: 1px solid var(--hairline);
  border-radius: var(--radius); background: var(--bg); transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), box-shadow var(--dur); }
.plan:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(46, 77, 128, .11); }
.plan--reco { border-color: var(--gold); box-shadow: var(--shadow-gold); }
@media (min-width: 1040px) { .plan--reco { transform: scale(1.04); } .plan--reco:hover { transform: scale(1.04) translateY(-4px); } }
.plan__flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--track-label); color: var(--night); background: var(--gold);
  padding: 5px 14px; border-radius: var(--radius-pill); white-space: nowrap; }
.plan__name { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); color: var(--ink); }
.plan__price { margin-top: 10px; display: flex; align-items: baseline; gap: 5px; }
.plan__amt { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl); letter-spacing: -.02em; color: var(--ink); }
.plan__per { font-size: var(--text-sm); color: var(--ink-faint); }
.plan__for { font-size: var(--text-sm); color: var(--ink-soft); margin-top: 10px; min-height: 40px; line-height: 1.45; }
.plan__feats { display: grid; gap: 10px; margin: 18px 0 24px; }
.plan__feats li { position: relative; padding-left: 24px; font-size: var(--text-sm); color: var(--ink); }
.plan__feats li::before { content: ""; position: absolute; left: 1px; top: 5px; width: 13px; height: 7px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.plan__cta { margin-top: auto; width: 100%; min-height: 46px; padding: 12px 20px; }
.price__foot { text-align: center; margin-top: 32px; font-size: var(--text-sm); color: var(--ink-faint); }
.price__foot a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 2px; }

/* ---------- 7 · FAQ ---------- */
.faq-sec__grid { display: grid; gap: clamp(40px, 6vw, 64px); }
@media (min-width: 880px) { .faq-sec__grid { grid-template-columns: .8fr 1.2fr; align-items: start; } .faq-sec__aside { position: sticky; top: 96px; } }
.faq-sec__aside .h-sec { margin: 14px 0 28px; }
.faq { border-top: 1px solid var(--hairline); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left;
  padding: 22px 6px; font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); color: var(--ink);
  touch-action: manipulation; transition: background var(--dur-fast); }
.faq__q:hover { background: rgba(255, 255, 255, .6); }
.faq__ic { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq__ic::before, .faq__ic::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px;
  background: var(--ink); border-radius: 2px; transform: translate(-50%, -50%);
  transition: transform var(--dur) var(--ease-out), background var(--dur); }
.faq__ic::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.open .faq__ic::before { background: var(--gold); transform: translate(-50%, -50%) rotate(45deg); }
.faq__item.open .faq__ic::after { background: var(--gold); transform: translate(-50%, -50%) rotate(-45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur) var(--ease-out); }
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 6px 24px; font-size: var(--text-base); color: var(--ink-soft); max-width: 62ch; }

/* ---------- 8 · CTA final (night) ---------- */
.cta-final { background: var(--night); color: #fff; padding-block: var(--section-y); text-align: center; }
.cta-final h2 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl); line-height: var(--lh-snug);
  letter-spacing: var(--track-tight); color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-final h2 .g { color: var(--gold); }
.cta-final .btn { margin-top: 36px; }
.cta-final__re { margin-top: 18px; font-size: var(--text-sm); color: rgba(255, 255, 255, .5); }

/* ---------- Footer (night) ---------- */
.footer { background: var(--night); color: rgba(255, 255, 255, .7); padding-block: clamp(56px, 8vw, 88px) 40px; }
.footer__grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__brand { color: #fff; margin-bottom: 16px; }
.footer__brand-col p { font-size: var(--text-sm); max-width: 32ch; }
.footer__mail { display: inline-block; margin-top: 14px; color: var(--gold); font-size: var(--text-sm); }
.footer__col h4 { color: #fff; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--track-label); margin-bottom: 16px; }
.footer__col a { display: block; padding: 7px 0; font-size: var(--text-sm); color: rgba(255, 255, 255, .7); transition: color var(--dur-fast); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; margin-top: 48px;
  padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: var(--text-xs); color: rgba(255, 255, 255, .5); }

/* ---------- 2.5 · Exemples (avant/après, format uniforme + crossfade) ---------- */
.examples__head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.examples__head .h-sec { margin-top: 12px; }
.ex-grid { display: grid; gap: clamp(14px, 1.6vw, 22px); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1040px) { .ex-grid { grid-template-columns: repeat(4, 1fr); } }
.ex__frame { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--hairline); box-shadow: var(--shadow-sm); background: #0e1117; cursor: pointer; }
.ex__after { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.ex:hover .ex__after { transform: scale(1.04); }
.ex__before { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity var(--dur) var(--ease-out); }
.ex__before img { width: 100%; height: 100%; object-fit: cover; }
.ex__before figcaption { position: absolute; top: 12px; left: 12px; font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--track-label); color: var(--ink);
  background: rgba(255, 255, 255, .92); padding: 5px 11px; border-radius: var(--radius-pill); }
.ex__badge { position: absolute; top: 12px; right: 12px; font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--track-label); color: var(--night); background: var(--gold);
  padding: 6px 12px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); transition: opacity var(--dur-fast); }
.ex:hover .ex__before, .ex__frame.is-before .ex__before { opacity: 1; }
.ex:hover .ex__badge, .ex__frame.is-before .ex__badge { opacity: 0; }
.ex__cap { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 13px; }
.ex__cap span { font-weight: 500; font-size: var(--text-sm); color: var(--ink); }
.ex__cap b { font-family: var(--font-display); font-weight: 700; color: var(--night); background: var(--gold);
  padding: 4px 11px; border-radius: var(--radius-sm); }
.examples__note { margin-top: 26px; font-size: var(--text-sm); color: var(--ink-faint); max-width: 60ch; }

/* ---------- FAQ — animations enrichies ---------- */
.faq__item { position: relative; overflow: hidden; }
.faq__item::before { content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 3px; border-radius: 2px;
  background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform var(--dur) var(--ease-out); }
.faq__item:hover::before, .faq__item.open::before { transform: scaleY(1); }
.faq__q { transition: padding-left var(--dur) var(--ease-out), color var(--dur-fast), background var(--dur-fast); }
.faq__item:hover .faq__q, .faq__item.open .faq__q { padding-left: 22px; }
.faq__item.open .faq__q { color: var(--gold); }
.faq__a p { opacity: 0; transform: translateY(10px);
  transition: opacity var(--dur) var(--ease-out) .06s, transform var(--dur) var(--ease-out) .06s; }
.faq__item.open .faq__a p { opacity: 1; transform: none; }
/* staggered entrance of items (parent .faq acts only as trigger) */
.faq.reveal { opacity: 1; transform: none; }
.faq.reveal .faq__item { opacity: 0; transform: translateY(14px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.faq.reveal.in .faq__item { opacity: 1; transform: none; }
.faq.reveal.in .faq__item:nth-child(1) { transition-delay: .04s; }
.faq.reveal.in .faq__item:nth-child(2) { transition-delay: .12s; }
.faq.reveal.in .faq__item:nth-child(3) { transition-delay: .20s; }
.faq.reveal.in .faq__item:nth-child(4) { transition-delay: .28s; }

/* ---------- Mode statique (capture/QA) : ?still=1 fige toute animation ---------- */
.is-still *, .is-still *::before, .is-still *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
/* éléments à entrée animée : forcer l'état final visible (sinon ils restent à opacity:0) */
.is-still .hero__text > *, .is-still .demo, .is-still .reveal,
.is-still .nav__mobile a, .is-still .nav__mobile .btn { opacity: 1 !important; transform: none !important; }
.is-still .nav__mobile::after, .is-still .nav__mobile::before { opacity: 1 !important; transform: none !important; }

/* ---------- A11y ---------- */
:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* =====================================================================
   SUBPAGES — comment-ca-marche · tarifs · pros · faq · legal
   Same tokens & visual language as home (white dominant · gold = rare
   reward · night = the one strong moment · AA-safe body text).
   ===================================================================== */

/* ---- Decorative background layers (kept whisper-subtle) ---- */
/* halo ambiant : rappelle le logo (bleu nuit + or) ET Telegram (azur) */
.bg-aura { position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(48vw 34vw at 50% -8%, rgba(201, 169, 97, .05), transparent 70%),    /* or du logo, en haut */
    radial-gradient(64vw 56vw at 99% -3%, rgba(42, 171, 238, .26), transparent 68%),     /* azur Telegram, haut-droite (fort) */
    radial-gradient(60vw 58vw at -2% 90%, rgba(10, 26, 58, .20), transparent 70%),       /* bleu nuit du logo, bas-gauche */
    radial-gradient(56vw 52vw at 92% 96%, rgba(42, 171, 238, .15), transparent 70%),     /* azur, bas-droite */
    radial-gradient(95vw 85vw at 45% 48%, rgba(42, 171, 238, .085), transparent 72%); }  /* voile azur central large */
.bg-grain { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .03; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---- Vêtements en filigrane bleu (touches floues, espacées dans les 4 coins) ---- */
.bg-shapes { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bsh, .bg-shapes::before { position: absolute; background-repeat: no-repeat; background-position: center; background-size: contain; filter: blur(3px); }
/* t-shirt — bleu nuit, haut-gauche */
.bsh--ring { top: 8%; left: -28px; width: 180px; height: 180px; opacity: .15; transform: rotate(-13deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E4D80' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z'/%3E%3C/svg%3E"); }
/* veste — bleu nuit, haut-droite */
.bsh--dot { top: 6%; right: -30px; width: 188px; height: 188px; opacity: .15; transform: rotate(11deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E4D80' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3 5 5 4 9 6.5 9 6.5 21 17.5 21 17.5 9 20 9 19 5 16 3 13 6 11 6Z'/%3E%3Cpath d='M12 6V21'/%3E%3C/svg%3E"); }
/* cintre — azur, bas-gauche */
.bsh--diamond { bottom: 11%; left: -20px; width: 168px; height: 168px; opacity: .18; transform: rotate(-8deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232AABEE' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 6a2 2 0 1 1 2 2'/%3E%3Cpath d='M12 8v1L4 15.5a1 1 0 0 0 .6 1.8h14.8a1 1 0 0 0 .6-1.8L12 9'/%3E%3C/svg%3E"); }
/* chaussures — azur, bas-droite */
.bg-shapes::before { content: ""; bottom: 7%; right: -8px; width: 178px; height: 178px; opacity: .16; transform: rotate(-5deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232AABEE' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 13.8C3.6 13 5 13 6 13.4L9.5 13.2 12.5 11 15 13.6 20 15C21.3 15.3 21.3 16.8 20 16.9L4 16.9C3 16.9 2.6 14.6 3 13.8Z'/%3E%3Cpath d='M9.5 13.2 10.5 14.6M12.5 11 13.6 12.6'/%3E%3C/svg%3E"); }
@media (max-width: 600px) { .bsh, .bg-shapes::before { width: 118px !important; height: 118px !important; } }

/* ---- Buttons (gold reward + large hero CTA) ---- */
.btn--gold { background: var(--gold); color: var(--night); box-shadow: 0 1px 2px rgba(10, 26, 58, .06); }
.btn--gold:hover { transform: translateY(-2px); background: var(--gold-bright); box-shadow: var(--shadow-gold); }
.btn--block { width: 100%; }
.btn-xl { display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg);
  min-height: 60px; padding: 18px 36px; border-radius: var(--radius-pill);
  background: var(--gold); color: var(--night); box-shadow: 0 1px 2px rgba(10, 26, 58, .06);
  touch-action: manipulation;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast); }
.btn-xl:hover { transform: translateY(-2px); background: var(--gold-bright); box-shadow: var(--shadow-gold); }
.btn-xl:active { transform: scale(.98); }
.ar { transition: transform var(--dur-fast) var(--ease-out); }
.btn-xl:hover .ar { transform: translateX(4px); }

/* ---- Page header (every subpage) ---- */
.phead { position: relative; padding-top: calc(64px + clamp(48px, 9vw, 116px)); padding-bottom: clamp(40px, 7vw, 88px); }
.phead__inner { max-width: var(--maxw-narrow); }
.phead h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1.05; letter-spacing: var(--track-tight); color: var(--ink); margin-top: 12px; }
.phead h1 .g { color: var(--gold); }
.phead .lead { margin-top: 20px; }
.phead__act { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 26px; margin-top: 34px; }
.hero__demolink { font-size: var(--text-sm); color: var(--ink-soft); text-decoration: underline;
  text-decoration-color: var(--gold); text-underline-offset: 3px; transition: color var(--dur-fast); }
.hero__demolink:hover { color: var(--ink); }

/* ---- Shared small type ---- */
.kicker { display: inline-flex; align-items: center; gap: 9px; font-size: var(--text-xs); font-weight: 700;
  letter-spacing: var(--track-label); text-transform: uppercase; color: var(--blue); }
.kicker::before { content: ""; width: 20px; height: 2px; border-radius: 2px; background: var(--blue); flex-shrink: 0; }
.kicker--dark { color: var(--blue); }
.cta .kicker { color: rgba(255, 255, 255, .6); }
.cta .kicker::before { background: rgba(255, 255, 255, .45); }
.lead { font-size: var(--text-lg); line-height: 1.55; color: var(--ink-soft); max-width: 54ch; }
.h-display { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl);
  line-height: var(--lh-snug); letter-spacing: var(--track-tight); color: var(--ink); }
.h-display .g { color: var(--gold); }

/* ---- "Paper" alt section ---- */
.section--paper { background: var(--bg-alt); border-block: 1px solid var(--hairline); }

/* ---- Shared CTA panel (night, gold reward button) ---- */
.cta { position: relative; overflow: hidden; text-align: center; background: var(--night); color: #fff;
  border-radius: var(--radius); padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 64px); }
.cta .kicker { color: rgba(255, 255, 255, .55); }
.cta__h { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl); line-height: var(--lh-snug);
  letter-spacing: var(--track-tight); color: #fff; max-width: 20ch; margin: 14px auto 0; }
.cta__h .g { color: var(--gold); }
.cta .btn-xl { margin-top: 34px; }
.cta__micro { margin-top: 18px; font-size: var(--text-sm); color: rgba(255, 255, 255, .55); }
.cta__deco { position: absolute; inset: 0; pointer-events: none; }
.cta__deco .spark { position: absolute; color: var(--gold); font-size: 20px;
  text-shadow: 0 0 14px rgba(224, 192, 116, .6); animation: twinkle 3s ease-in-out infinite; }
.spark--1 { top: 16%; left: 11%; } .spark--2 { top: 24%; right: 13%; font-size: 15px; animation-delay: 1s; }
.spark--3 { bottom: 20%; left: 16%; font-size: 24px; animation-delay: 1.8s; } .spark--4 { bottom: 16%; right: 11%; animation-delay: .6s; }

/* ---- reveal: add the missing rightward variant ---- */
.reveal--right { transform: translateX(32px); }

/* ---- Footer brand on subpages (div, not the nav anchor) ---- */
.footer__brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display);
  font-weight: 700; font-size: 1.25rem; letter-spacing: -.02em; color: #fff; }
.footer__brand img { width: 28px; height: 28px; object-fit: contain; }
.footer__brand-text { margin-top: 14px; font-size: var(--text-sm); color: rgba(255, 255, 255, .7); max-width: 36ch; line-height: 1.55; }

/* ---------- comment-ca-marche : benefits head + zig-zag steps ---------- */
.sec-ben__head, .sec-demo__head, .sec-price__head { max-width: 680px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-ben__head .h-display, .sec-price__head .h-display { margin-top: 12px; }
.sec-demo__head .lead, .sec-price__head .lead { margin-top: 16px; }

.zig { display: grid; gap: clamp(40px, 7vw, 92px); }
.zrow { display: grid; gap: clamp(20px, 4vw, 56px); align-items: center; }
@media (min-width: 820px) { .zrow { grid-template-columns: 1fr 1fr; } .zrow--rev .zrow__ill { order: 2; } }
.zrow__ill { position: relative; display: grid; place-items: center; aspect-ratio: 16 / 11;
  background: var(--bg-soft); border: 1px solid var(--hairline); border-radius: var(--radius); color: var(--night); }
.section--paper .zrow__ill { background: var(--bg); }
.zrow__ill svg { width: 36%; height: auto; color: var(--night); }
.zrow__no { position: absolute; top: 16px; left: 18px; font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-xl); color: var(--gold); }
.zrow__txt h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl);
  letter-spacing: var(--track-tight); color: var(--ink); }
.zrow__txt p { margin-top: 14px; font-size: var(--text-lg); color: var(--ink-soft); line-height: 1.55; max-width: 46ch; }

/* ---------- comment-ca-marche : before → after spread ---------- */
.sec-demo__spread { display: grid; gap: clamp(20px, 4vw, 40px); align-items: center; }
@media (min-width: 820px) { .sec-demo__spread { grid-template-columns: 1fr auto 1fr; } }
.shot { position: relative; margin: 0; }
.shot__tag { position: absolute; z-index: 2; top: 12px; left: 12px; font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--track-label); color: var(--ink);
  background: rgba(255, 255, 255, .92); padding: 6px 12px; border-radius: var(--radius-pill); }
.shot__tag--gold { color: var(--night); background: var(--gold); }
.shot--raw img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.sec-demo__arrow { display: grid; place-items: center; gap: 6px; }
.sec-demo__arrow svg { width: 52px; color: var(--gold); }
.sec-demo__arrow span { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: var(--track-label); color: var(--ink-faint); }
@media (max-width: 819px) { .sec-demo__arrow svg { transform: rotate(90deg); } }

.fiche-card { background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); }
.fiche-card__img { aspect-ratio: 4 / 3; background: #0e1117; }
.fiche-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.fiche-card__b { padding: 18px 20px 20px; }
.fiche-card__b h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-base); line-height: 1.35; color: var(--ink); }
.fiche-card__b p { margin-top: 8px; font-size: var(--text-sm); color: var(--ink-soft); line-height: 1.5; }
.fiche-card__row { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.fiche-card__price { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg);
  color: var(--night); background: var(--gold); padding: 6px 14px; border-radius: var(--radius-sm); }
.fiche-card__chip { font-size: var(--text-xs); font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--track-label); color: var(--ink-faint); }

/* flow A·B·C·D */
.flow { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: clamp(40px, 6vw, 72px); }
@media (min-width: 620px) { .flow { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .flow { grid-template-columns: repeat(4, 1fr); } }
.flow__step { position: relative; overflow: hidden; padding: 24px 22px; background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--radius);
  transition: border-color var(--dur-fast), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast); }
.flow__step::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue);
  transform: scaleY(0); transform-origin: top; transition: transform var(--dur) var(--ease-out); }
.flow__step:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 10px 26px rgba(46, 77, 128, .10); }
.flow__step:hover::before { transform: scaleY(1); }
.flow__n { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--night); color: #fff; font-family: var(--font-display); font-weight: 700; }
.flow__step h3 { margin-top: 16px; font-family: var(--font-display); font-weight: 600; font-size: var(--text-base); color: var(--ink); }
.flow__step p { margin-top: 6px; font-size: var(--text-sm); color: var(--ink-soft); }

/* ---------- tarifs : toggles + pricing tickets + comparison table ---------- */
.toggles { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 22px; margin-bottom: clamp(34px, 5vw, 56px); }
.toggles__row { display: inline-flex; align-items: center; gap: 14px; }
.save-badge { font-size: var(--text-xs); font-weight: 700; color: var(--night);
  background: rgba(201, 169, 97, .16); padding: 6px 12px; border-radius: var(--radius-pill); }

.tickets { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .tickets { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .tickets { grid-template-columns: repeat(4, 1fr); align-items: stretch; } }
.tk { position: relative; display: flex; flex-direction: column; padding: 28px 24px; background: var(--bg);
  border: 1px solid var(--hairline); border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), box-shadow var(--dur); }
.tk:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(46, 77, 128, .11); }
.tk--feat { border-color: var(--gold); box-shadow: var(--shadow-gold); }
@media (min-width: 1040px) { .tk--feat { transform: scale(1.03); } .tk--feat:hover { transform: scale(1.03) translateY(-4px); } }
.tk__flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--track-label); color: var(--night); background: var(--gold);
  padding: 5px 14px; border-radius: var(--radius-pill); white-space: nowrap; }
.tk__name { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); color: var(--ink); }
.tk__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 6px; margin-top: 10px; }
.tk__amt { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl); letter-spacing: -.02em; color: var(--ink); }
.tk__per { font-size: var(--text-sm); color: var(--ink-faint); }
.tk__old { font-size: var(--text-sm); color: var(--ink-faint); text-decoration: line-through; }
.tk__price[data-mode="m"] .tk__old { display: none; }
.tk__sub { margin-top: 12px; font-size: var(--text-sm); color: var(--ink-soft); line-height: 1.45; min-height: 38px; }
.tk__perf:empty { display: none; }
.tk__feats { display: grid; gap: 10px; margin: 16px 0 22px; }
.tk__feats li { position: relative; padding-left: 24px; font-size: var(--text-sm); color: var(--ink); }
.tk__feats li::before { content: ""; position: absolute; left: 1px; top: 5px; width: 13px; height: 7px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.tk__btn { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; width: 100%;
  min-height: 46px; padding: 12px 20px; border-radius: var(--radius-pill); font-weight: 600;
  background: transparent; color: var(--ink); border: 1px solid var(--hairline);
  transition: border-color var(--dur-fast), transform var(--dur-fast) var(--ease-out), background var(--dur-fast), box-shadow var(--dur-fast); }
.tk__btn:hover { border-color: var(--ink); transform: translateY(-2px); }
.tk__btn--gold { background: var(--gold); color: var(--night); border-color: var(--gold); }
.tk__btn--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); box-shadow: var(--shadow-gold); }

.ctable-wrap { margin-top: clamp(32px, 5vw, 56px); overflow-x: auto; border: 1px solid var(--hairline); border-radius: var(--radius); }
.ctable { width: 100%; border-collapse: collapse; min-width: 540px; background: var(--bg); }
.ctable th, .ctable td { padding: 14px 16px; text-align: center; font-size: var(--text-sm); border-bottom: 1px solid var(--hairline); }
.ctable thead th { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.ctable tbody th { text-align: left; font-weight: 600; color: var(--ink); }
.ctable td { color: var(--ink-soft); }
.ctable .is-feat { background: rgba(201, 169, 97, .08); color: var(--ink); font-weight: 600; }
.ctable tbody tr:last-child th, .ctable tbody tr:last-child td { border-bottom: none; }

.b2b-note { margin: 24px auto 0; max-width: 72ch; font-size: var(--text-sm); color: var(--ink-soft); line-height: 1.6; text-align: center; }
.b2b-note b { color: var(--ink); }
.b2b-note a, .sec-price__annual { color: var(--night); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 2px; font-weight: 600; }
.sec-price__note { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 12px;
  margin-top: 30px; font-size: var(--text-sm); color: var(--ink-faint); }
.sec-price__annual { margin-left: 6px; }

/* ---------- pros : value grid + note band ---------- */
.pros-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .pros-grid { grid-template-columns: repeat(2, 1fr); } }
.pros-card { position: relative; overflow: hidden; padding: 30px 28px; background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), box-shadow var(--dur); }
.pros-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue);
  transform: scaleY(0); transform-origin: top; transition: transform var(--dur) var(--ease-out); }
.pros-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(46, 77, 128, .10); }
.pros-card:hover::before { transform: scaleY(1); }
.pros-card__n { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--gold); }
.pros-card h3 { margin-top: 12px; font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl);
  letter-spacing: var(--track-tight); color: var(--ink); }
.pros-card p { margin-top: 10px; font-size: var(--text-base); color: var(--ink-soft); line-height: 1.55; }
.note-band { display: flex; align-items: flex-start; gap: 14px; margin-top: clamp(28px, 4vw, 44px);
  padding: 20px 24px; background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--radius); }
.section--paper .note-band { background: var(--bg); }
.note-band svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.note-band p { font-size: var(--text-sm); color: var(--ink-soft); line-height: 1.6; }
.note-band b { color: var(--ink); }

/* ---------- faq : categories + plus/cross icon for inline svg ---------- */
.faq-cat { margin-bottom: clamp(34px, 5vw, 56px); }
.faq-cat__title { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg);
  color: var(--night); margin-bottom: 2px; }
.faq__q .ic { flex-shrink: 0; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  color: var(--ink-soft); transition: transform var(--dur) var(--ease-out), color var(--dur-fast); }
.faq__q .ic svg { width: 15px; height: 15px; }
.faq__item.open .faq__q .ic { transform: rotate(135deg); color: var(--gold); }
.faq__a > p { overflow: hidden; }

/* =====================================================================
   MICRO-ANIMATIONS — premium, sobres, vanilla (inspiration 21st.dev)
   L'or reste la récompense : reflet sur les CTA dorés, respiration sur
   le plan recommandé, fil de progression doré. Tout coupé en reduced-motion.
   ===================================================================== */

/* ---- Reflet (sheen) qui balaie les CTA dorés au survol ---- */
.btn-primary, .btn--gold, .btn-xl, .tk__btn--gold { position: relative; overflow: hidden; }
.btn-primary::after, .btn--gold::after, .btn-xl::after, .tk__btn--gold::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 55%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, .55) 50%, transparent 100%);
  transform: translateX(-180%) skewX(-18deg); pointer-events: none; }
.btn-primary:hover::after, .btn--gold:hover::after, .btn-xl:hover::after, .tk__btn--gold:hover::after {
  transform: translateX(320%) skewX(-18deg); transition: transform var(--dur-slow) var(--ease-out); }

/* ---- Respiration dorée sur le plan / ticket recommandé ---- */
/* on n'anime que le box-shadow : le scale/translateY du hover reste géré
   par les règles existantes, sans conflit de transform. */
@media (prefers-reduced-motion: no-preference) {
  .tk--feat, .plan--reco { animation: recoGlow 3.6s var(--ease-in-out) infinite; }
  @keyframes recoGlow {
    0%, 100% { box-shadow: 0 6px 14px rgba(201, 169, 97, .14), 0 16px 44px rgba(201, 169, 97, .22); }
    50%      { box-shadow: 0 8px 18px rgba(201, 169, 97, .26), 0 22px 56px rgba(201, 169, 97, .40); }
  }
}

/* ---- Fil de progression doré (injecté par main.js, présent sur toutes les pages) ---- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 200; pointer-events: none;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright)); will-change: width; }

/* ---- Interactions au pointeur (desktop, géré par main.js) ---- */
/* tilt 3D générique (démo hero, cartes exemples, chat FAQ) */
[data-tilt] { transition: transform .3s var(--ease-out); transform-style: preserve-3d; will-change: transform; }

/* spotlight doré qui suit le curseur sur les bandes navy.
   Le glow passe par le background-image du panneau → derrière le texte, sans z-index. */
@property --spot { syntax: "<number>"; inherits: false; initial-value: 0; }
.diff, .cta, .cta-final {
  background-color: var(--night);
  background-image: radial-gradient(460px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 169, 97, calc(.16 * var(--spot))), transparent 60%);
  transition: --spot var(--dur) var(--ease-out);
}


/* =====================================================================
   FAQ — conversation Telegram (innovante, on-brand : Klyn EST un bot)
   ===================================================================== */
.faqchat__screen { display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--hairline);
  border-radius: 22px; box-shadow: var(--shadow-md); overflow: hidden; }
.faqchat__header { display: flex; align-items: center; gap: 11px; padding: 14px 16px;
  border-bottom: 1px solid var(--hairline); background: var(--bg-alt); }
.faqchat__body { display: flex; flex-direction: column; gap: 12px; padding: 18px 16px;
  min-height: 240px; max-height: 380px; overflow-y: auto; scroll-behavior: smooth; }
.faqchat__msg { max-width: 86%; animation: chatIn .4s var(--ease-out); }
@keyframes chatIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.faqchat__msg p { padding: 11px 14px; font-size: var(--text-sm); line-height: 1.5; }
.faqchat__msg--in { align-self: flex-start; }
.faqchat__msg--in p { background: var(--chat-blue); color: var(--ink); border-radius: 4px 16px 16px 16px; }
.faqchat__msg--out { align-self: flex-end; }
.faqchat__msg--out p { background: var(--night); color: #fff; border-radius: 16px 16px 4px 16px; }
.faqchat__typing { align-self: flex-start; display: inline-flex; gap: 4px; padding: 13px 15px;
  background: var(--chat-blue); border-radius: 4px 14px 14px 14px; }
.faqchat__typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-faint); animation: bob 1.2s infinite; }
.faqchat__typing span:nth-child(2) { animation-delay: .15s; }
.faqchat__typing span:nth-child(3) { animation-delay: .3s; }
.faqchat__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 16px;
  border-top: 1px solid var(--hairline); background: var(--bg); }
.faqchat__chip { font-size: var(--text-sm); font-weight: 500; color: var(--ink); background: var(--bg);
  border: 1px solid var(--hairline); padding: 9px 14px; border-radius: var(--radius-pill); touch-action: manipulation;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast); }
.faqchat__chip:hover { border-color: var(--gold); color: var(--night); transform: translateY(-1px); }
.faqchat__chip.is-answered { color: var(--ink-faint); border-style: dashed; }
.faqchat__chip.is-answered::before { content: "✓ "; color: var(--gold); font-weight: 700; }
.faqchat__noscript { padding: 14px 16px; font-size: var(--text-sm); color: var(--ink-soft); }
.faqchat__noscript a { color: var(--night); text-decoration: underline; text-decoration-color: var(--gold); }

/* =====================================================================
   LE VRAI PARCOURS — chat Klyn animé & interactif (recréé, pas de screenshot)
   ===================================================================== */
.realflow__head { max-width: 700px; margin-bottom: clamp(36px, 5vw, 60px); }
.realflow__head .h-sec { margin-top: 12px; }
.realflow__lead { margin-top: 14px; font-size: var(--text-lg); line-height: 1.5; color: var(--ink-soft); max-width: 52ch; }

.flowchat { display: grid; gap: clamp(24px, 4vw, 48px); align-items: center; }
@media (min-width: 880px) { .flowchat { grid-template-columns: minmax(0, 384px) 1fr; } }
.flowchat__panel { display: flex; flex-direction: column; width: 100%; max-width: 420px; margin-inline: auto;
  background: var(--bg); border: 1px solid var(--hairline); border-radius: 22px; box-shadow: var(--shadow-md); overflow: hidden; }
.flowchat__head { display: flex; align-items: center; gap: 11px; padding: 13px 16px; border-bottom: 1px solid var(--hairline); background: var(--bg-alt); }
.flowchat__replay { margin-left: auto; font-size: var(--text-xs); font-weight: 700; color: var(--blue);
  border: 1px solid var(--hairline); border-radius: var(--radius-pill); padding: 6px 12px; background: var(--bg);
  transition: border-color var(--dur-fast), color var(--dur-fast); }
.flowchat__replay:hover { border-color: var(--blue); }
.flowchat__body { display: flex; flex-direction: column; gap: 12px; padding: 18px 16px; min-height: 392px; }

.flowmsg { max-width: 88%; animation: chatIn .4s var(--ease-out); }
.flowmsg--in { align-self: flex-start; }
.flowmsg--out { align-self: flex-end; }
.flowmsg__txt { padding: 11px 14px; font-size: var(--text-sm); line-height: 1.5; }
.flowmsg--in .flowmsg__txt { background: var(--chat-blue); color: var(--ink); border-radius: 4px 16px 16px 16px; }
.flowmsg--out .flowmsg__txt { background: var(--night); color: #fff; border-radius: 16px 16px 4px 16px; }
.flowmsg__photo { position: relative; width: 66%; overflow: hidden; border: 1px solid var(--hairline); background: #0d0d11; }
.flowmsg--out .flowmsg__photo { margin-left: auto; border-radius: 16px 16px 4px 16px; }
.flowmsg--in .flowmsg__photo { width: 72%; border-radius: 4px 16px 16px 16px; }
.flowmsg__photo img { width: 100%; height: 158px; object-fit: cover; display: block; }
.flowmsg__badge { position: absolute; top: 9px; left: 9px; font-size: 10.5px; font-weight: 700;
  color: var(--night); background: var(--gold); padding: 4px 9px; border-radius: 7px; }
.flowmsg__cap { font-size: 11px; color: var(--ink-faint); padding: 4px 4px 0; text-align: right; }

.flowtyping { align-self: flex-start; display: inline-flex; gap: 4px; padding: 13px 15px; background: var(--chat-blue); border-radius: 4px 14px 14px 14px; }
.flowtyping span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-faint); animation: bob 1.2s infinite; }
.flowtyping span:nth-child(2) { animation-delay: .15s; }
.flowtyping span:nth-child(3) { animation-delay: .3s; }

.flowfiche { align-self: flex-start; max-width: 92%; background: var(--chat-blue); border-radius: 4px 16px 16px 16px; padding: 13px 15px; animation: chatIn .4s var(--ease-out); }
.flowfiche__t { font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm); color: var(--ink); line-height: 1.35; min-height: 18px; }
.flowfiche__d { margin-top: 7px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; }
.flowfiche__d span { display: block; opacity: 0; transform: translateY(4px); }
.flowfiche__d span.show { opacity: 1; transform: none; transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.flowfiche__foot { display: flex; align-items: center; gap: 10px; margin-top: 11px; }
.flowfiche__price { display: inline-flex; align-items: baseline; gap: 2px; font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--ink); background: var(--bg); border: 1px solid var(--hairline); padding: 6px 11px; border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease-out), color var(--dur), box-shadow var(--dur); }
.flowfiche__price.is-gold { background: var(--gold); color: var(--night); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.flowfiche__range { font-size: 11px; color: var(--ink-faint); }

.flowsteps { display: grid; gap: 10px; }
.flowstep { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; padding: 14px 16px;
  border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--bg);
  transition: border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast); }
.flowstep:hover { border-color: var(--blue); transform: translateX(2px); }
.flowstep.is-active { border-color: var(--gold); background: var(--blue-wash); }
.flowstep__n { flex-shrink: 0; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-soft); color: var(--ink-soft); font-family: var(--font-display); font-weight: 700; font-size: 14px;
  transition: background var(--dur-fast), color var(--dur-fast); }
.flowstep.is-active .flowstep__n { background: var(--gold); color: var(--night); }
.flowstep__t b { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--text-base); color: var(--ink); }
.flowstep__t i { font-style: normal; font-size: var(--text-sm); color: var(--ink-soft); }

/* =====================================================================
   VINTED — la présentation fait le prix (comparaison sans/avec Klyn)
   ===================================================================== */
.vsell__head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.vsell__head .h-sec { margin-top: 12px; }
.vsell__lead { margin-top: 14px; font-size: var(--text-lg); line-height: 1.5; color: var(--ink-soft); max-width: 50ch; }
.vsell__compare { display: grid; gap: 18px; align-items: center; grid-template-columns: 1fr; max-width: 860px; margin-inline: auto; }
@media (min-width: 720px) { .vsell__compare { grid-template-columns: 1fr auto 1fr; gap: clamp(18px, 3vw, 36px); } }
.vcard { background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.vcard--klyn { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.vcard__media { position: relative; aspect-ratio: 4 / 5; background: #0e0e12; }
.vcard__media img { width: 100%; height: 100%; object-fit: cover; }
.vcard__tag { position: absolute; top: 12px; left: 12px; font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: var(--track-label); color: var(--ink); background: rgba(255, 255, 255, .92); padding: 5px 11px; border-radius: var(--radius-pill); }
.vcard__tag--gold { color: var(--night); background: var(--gold); }
.vcard__b { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; }
.vcard__brand { font-size: var(--text-sm); color: var(--ink-soft); }
.vcard__price { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--ink-faint); }
.vcard__price--up { color: var(--night); font-size: var(--text-xl); }
.vsell__x { display: grid; place-items: center; text-align: center; padding: 4px; }
.vsell__x b { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl); line-height: 1; color: var(--gold); }
.vsell__x span { margin-top: 4px; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--track-label); color: var(--ink-faint); }
.vsell__note { margin: 24px auto 0; text-align: center; font-size: var(--text-sm); color: var(--ink-faint); max-width: 62ch; line-height: 1.6; }

/* =====================================================================
   ÉCHELLE TYPO MOBILE (≤600px) — réduit les très gros titres sur téléphone.
   N'affecte PAS le desktop (qui garde les valeurs hautes des clamp()).
   ===================================================================== */
@media (max-width: 600px) {
  /* --- textes plus petits --- */
  .hero__h1 { font-size: 1.7rem; line-height: 1.12; }
  .hero__sub { font-size: var(--text-sm); }
  .h-sec, .h-display { font-size: 1.65rem; }
  .phead h1 { font-size: 1.8rem; }
  .diff__line { font-size: 1.5rem; }
  .diff__sub, .lead, .realflow__lead, .vsell__lead { font-size: var(--text-sm); }
  .cta__h, .cta-final h2 { font-size: 1.55rem; }
  .zrow__txt h3, .pros-card h3, .h-display { font-size: var(--text-lg); }
  .zrow__txt p, .founder p, .trans__txt p { font-size: var(--text-sm); }
  .btn, .btn-xl, .btn-primary { font-size: var(--text-sm); min-height: 50px; }
  /* --- images / illustrations plus petites --- */
  .hero__pf-demo { width: min(290px, 74vw); }
  .vsell__compare { max-width: 300px; }
  .vsell__x b { font-size: var(--text-xl); }
  .zrow__ill { aspect-ratio: 16 / 9; }
  .zrow__ill svg { width: 28%; }
  .trans__media--stat { max-width: 280px; }
  .stat__num { font-size: clamp(3rem, 16vw, 4.5rem); }
  /* --- espacement plus compact --- */
  .section { padding-block: clamp(44px, 11vw, 64px); }
  .ex-grid { gap: 10px; }
  .hero { min-height: auto; }
}
