/* Muffino — landing
   Palette : vert Muffino (#E4FF58) en fond de scène, encre olive, papier légèrement vert.
   Typo : Archivo condensé 800 pour l'affiche, Archivo 100 % pour le texte, DM Mono pour les valeurs. */

:root {
  color-scheme: light;
  --lime: #e4ff58;
  --lime-2: #d6f23f;
  --lime-dot: rgba(21, 22, 15, .09);
  --ink: #15160f;
  --ink-2: #3a3c31;
  --muted: #666958;
  --paper: #f5f6ef;
  --white: #ffffff;
  --line: #dcdfd0;
  --line-2: #c9ccbb;

  --studio: #131416;
  --studio-2: #1b1c1f;
  --studio-3: #242528;
  --studio-line: #2a2b2e;
  --studio-ink: #f2f2ef;
  --studio-muted: #8b8c8f;
  --studio-ok: #5fd08a;

  --font-display: "Archivo", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --gutter: clamp(16px, 4vw, 48px);
  --maxw: 1240px;
  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 8px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.55 var(--font-body);
  font-stretch: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
/* width/height en attribut : place réservée au chargement ; la taille affichée reste celle du CSS */
img { height: auto; }
a { color: inherit; }
button, input { font: inherit; color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ─────────── Typo */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 75%;
  text-transform: uppercase;
  line-height: .86;
  letter-spacing: -.012em;
  margin: 0;
  text-wrap: balance;
}
.eyebrow {
  font: 500 12px/1 var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.lede { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.55; color: var(--ink-2); max-width: 36em; margin: 0; text-wrap: pretty; }
.mono { font-family: var(--font-mono); }

/* ─────────── Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 22px;
  border-radius: 999px; border: 0;
  font-weight: 600; font-size: 15px; text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease), background-color .2s, box-shadow .25s;
  white-space: nowrap;
}
.btn-ink { background: var(--ink); color: var(--lime); }
.btn-ink:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(21, 22, 15, .6); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--lime); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ─────────── Navigation */
.nav {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
  background: var(--lime);
  transition: background-color .3s, box-shadow .3s;
}
.nav.is-scrolled { background: rgba(228, 255, 88, .92); backdrop-filter: saturate(1.4) blur(10px); box-shadow: 0 1px 0 rgba(21, 22, 15, .12); }
.nav-in { display: flex; align-items: center; gap: 28px; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo svg { width: 38px; height: 34px; --m-body: var(--ink); --m-eyes: var(--lime); }
.logo b { font: 800 26px/1 var(--font-display); font-stretch: 85%; letter-spacing: -.02em; text-transform: lowercase; }
.nav-links { display: flex; gap: 26px; margin-left: 12px; }
.nav-links a { text-decoration: none; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1.5px; }
.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.nav-cta .login { font-size: 15px; font-weight: 500; text-decoration: none; padding: 0 12px; }
.nav-cta .btn { height: 42px; padding: 0 18px; font-size: 14px; }

/* ─────────── Hero */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 1px 1px, var(--lime-dot) 1.2px, transparent 1.6px) 0 0 / 22px 22px,
    var(--lime);
  padding-block: clamp(36px, 6vw, 76px) 0;
}
.hero::after { /* bascule lime → papier sous la fenêtre du studio */
  content: ""; position: absolute; inset: auto 0 0 0; height: clamp(140px, 18vw, 260px);
  background: var(--paper);
}
.hero-top { display: block; }
.hero h1 { font-size: clamp(50px, 9.4vw, 136px); }
.hero h1 .l2 { display: block; color: var(--ink); position: relative; }
.hero h1 .l1 { display: block; color: rgba(21, 22, 15, .42); }
.scribble { position: relative; display: inline-block; }
.scribble svg { position: absolute; left: -2%; right: -2%; bottom: -.14em; width: 104%; height: .26em; overflow: visible; }
.scribble path { fill: none; stroke: var(--ink); stroke-width: 7; stroke-linecap: round; stroke-dasharray: 900; stroke-dashoffset: 0; }
.hero.is-ready .scribble path { animation: draw 1.1s .55s var(--ease) both; }
@keyframes draw { from { stroke-dashoffset: 900; } to { stroke-dashoffset: 0; } }

.hero-side { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 20px clamp(32px, 6vw, 96px); align-items: start; margin-top: clamp(28px, 3.4vw, 44px); }
.hero-act { display: grid; gap: 14px; }
.hero-side .lede { color: var(--ink); }
.site-form { display: flex; gap: 6px; padding: 6px; border-radius: 999px; background: var(--white); box-shadow: 0 1px 0 rgba(21, 22, 15, .1), 0 14px 30px -18px rgba(21, 22, 15, .45); }
.site-form label { display: flex; align-items: center; flex: 1; min-width: 0; padding-left: 16px; gap: 6px; color: var(--muted); font: 400 15px/1 var(--font-mono); }
.site-form input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font: 500 15px/1 var(--font-mono); color: var(--ink); padding: 0; height: 40px; }
.site-form input::placeholder { color: #a3a696; }
.site-form .btn { height: 44px; padding: 0 18px; }
.site-form:focus-within { box-shadow: 0 0 0 2px var(--ink), 0 14px 30px -18px rgba(21, 22, 15, .45); }
.hero-note { font-size: 13px; color: var(--ink-2); display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 0; }
.hero-note span::before { content: "✓"; margin-right: 6px; font-weight: 700; }

/* ─────────── Studio (démo animée) */
.stage { position: relative; z-index: 2; margin-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(56px, 7vw, 96px); }
.studio {
  position: relative;
  background: var(--studio);
  border-radius: var(--r-lg);
  color: var(--studio-ink);
  box-shadow: 0 0 0 1px rgba(21, 22, 15, .5), 0 50px 90px -40px rgba(21, 22, 15, .65), 0 18px 36px -24px rgba(21, 22, 15, .5);
  overflow: hidden;
  font-size: 13px;
}
.studio-bar { display: flex; align-items: center; gap: 12px; height: 52px; padding: 0 16px; border-bottom: 1px solid var(--studio-line); }
.studio-bar .mini { width: 26px; height: 23px; --m-body: #fff; --m-eyes: var(--studio); }
.brand-pill { display: inline-flex; align-items: center; gap: 8px; height: 30px; padding: 0 12px 0 5px; border-radius: 999px; background: var(--studio-2); box-shadow: inset 0 0 0 1px var(--studio-line); font-weight: 600; }
.brand-pill i { width: 20px; height: 20px; border-radius: 50%; background: var(--b1, #444); transition: background-color .5s; }
.brand-pill .chev { opacity: .5; font-style: normal; }
.studio-tabs { display: flex; gap: 4px; margin-left: 8px; }
.studio-tabs span { padding: 7px 12px; border-radius: 999px; color: var(--studio-muted); font-weight: 500; }
.studio-tabs span.on { color: var(--lime); background: rgba(228, 255, 88, .1); }
.studio-bar .credits { margin-left: auto; font: 500 12px/1 var(--font-mono); color: var(--studio-muted); display: flex; align-items: center; gap: 8px; }
.studio-bar .credits b { color: var(--studio-ink); font-weight: 500; }
.studio-bar .avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #ffa3b6, #c4435f); box-shadow: 0 0 0 2px var(--studio), 0 0 0 3.5px var(--lime); }

.studio-body { display: grid; grid-template-columns: minmax(0, 330px) minmax(0, 1fr) minmax(0, 300px); min-height: 560px; }
.s-col { padding: 20px; }
.s-col + .s-col { border-left: 1px solid var(--studio-line); }
.s-label { font: 500 11px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--studio-muted); margin: 0 0 10px; display: flex; justify-content: space-between; }

.s-url { display: flex; align-items: center; gap: 8px; height: 46px; padding: 0 6px 0 14px; border-radius: 12px; background: var(--studio-2); box-shadow: inset 0 0 0 1px var(--studio-line); font-family: var(--font-mono); font-size: 14px; }
.s-url .proto { color: var(--studio-muted); }
.s-url .typed { color: var(--studio-ink); white-space: nowrap; overflow: hidden; }
.s-url .caret { width: 1.5px; height: 18px; background: var(--lime); animation: blink 1s steps(1) infinite; }
.s-url .go { margin-left: auto; height: 34px; padding: 0 14px; border-radius: 9px; border: 0; background: var(--lime); color: var(--studio); font: 700 12px/1 var(--font-body); letter-spacing: .04em; text-transform: uppercase; transition: transform .15s, filter .2s; }
.s-url .go.press { transform: scale(.94); filter: brightness(.9); }
@keyframes blink { 50% { opacity: 0; } }

.s-log { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 2px; }
.s-log li { display: flex; align-items: center; gap: 10px; padding: 5px 2px; color: var(--studio-muted); opacity: .25; transition: opacity .3s, color .3s; }
.s-log li.run, .s-log li.done { opacity: 1; }
.s-log li.done { color: var(--studio-ink); }
.s-log li .st { width: 16px; height: 16px; flex: none; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--studio-line); position: relative; }
.s-log li.run .st { box-shadow: inset 0 0 0 1.5px var(--studio-line); border: 1.5px solid transparent; border-top-color: var(--lime); animation: spin .7s linear infinite; }
.s-log li.done .st { background: var(--studio-ok); box-shadow: none; }
.s-log li.done .st::after { content: ""; position: absolute; left: 5px; top: 3px; width: 4px; height: 7px; border: solid var(--studio); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.s-log li em { margin-left: auto; font: 400 11px/1 var(--font-mono); font-style: normal; color: var(--studio-muted); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Kit (système graphique) */
.s-kit { display: grid; gap: 16px; }
.kit-head { display: flex; align-items: center; gap: 12px; }
.kit-logo { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--b1); transition: background-color .5s; overflow: hidden; }
.kit-logo img { width: 78%; height: auto; }
.kit-name { display: grid; gap: 4px; }
.kit-name b { font-size: 15px; }
.kit-name span { color: var(--studio-muted); font-size: 12px; }
.swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sw { border-radius: 12px; overflow: hidden; background: var(--studio-2); box-shadow: inset 0 0 0 1px var(--studio-line); }
.sw i { display: block; height: 58px; background: var(--c); }
.sw span { display: block; padding: 8px 10px; font: 400 11px/1.35 var(--font-mono); color: var(--studio-muted); }
.sw span b { display: block; color: var(--studio-ink); font-weight: 500; font-family: var(--font-body); font-size: 12px; }
.fonts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ft { border-radius: 12px; padding: 12px; background: var(--studio-2); box-shadow: inset 0 0 0 1px var(--studio-line); min-width: 0; }
.ft .aa { font-size: 34px; line-height: 1; display: block; margin-bottom: 8px; }
.ft span { font: 400 11px/1.35 var(--font-mono); color: var(--studio-muted); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ft span b { color: var(--studio-ink); font: 500 12px/1.3 var(--font-body); display: block; }
.photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.photos img { aspect-ratio: 1; width: 100%; object-fit: cover; border-radius: 8px; }

.pop { opacity: 0; transform: translateY(8px) scale(.97); }
.pop.in { opacity: 1; transform: none; transition: opacity .45s var(--ease), transform .55s var(--spring); }

/* Colonne téléphone */
.s-feed { display: grid; place-items: center; background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255, 244, 224, .08), transparent 70%), var(--studio); padding: 24px 12px 0; overflow: hidden; }
.phone {
  width: min(100%, 318px); align-self: end;
  background: #fff; color: #111;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 0 0 8px #2a2b2e, 0 0 0 9px #3a3b3e;
  padding: 16px 0 0; margin-top: 10px;
  overflow: hidden;
  font-family: -apple-system, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}
.ig-top { display: flex; justify-content: space-between; align-items: center; padding: 0 16px 10px; font-weight: 700; font-size: 15px; }
.ig-top small { font-weight: 400; color: #888; font-size: 12px; }
.ig-prof { display: flex; align-items: center; gap: 14px; padding: 4px 16px 10px; }
.ig-av { width: 62px; height: 62px; flex: none; border-radius: 50%; padding: 3px; background: conic-gradient(from 200deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75); }
.ig-av div { width: 100%; height: 100%; border-radius: 50%; border: 2.5px solid #fff; background: var(--b1); display: grid; place-items: center; overflow: hidden; transition: background-color .5s; }
.ig-av img { width: 66%; }
.ig-meta { font-size: 12px; line-height: 1.35; min-width: 0; }
.ig-meta b { display: block; font-size: 13px; }
.ig-meta span { color: #555; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ig-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 0 16px 12px; }
.ig-btns span { text-align: center; background: #efefef; border-radius: 8px; padding: 6px; font-size: 12px; font-weight: 600; }
.ig-btns span:first-child { background: #0095f6; color: #fff; }
.ig-tabs { display: flex; justify-content: space-around; border-top: 1px solid #eee; padding: 8px 0; }
.ig-tabs i { width: 18px; height: 18px; border-radius: 3px; box-shadow: inset 0 0 0 2px #bbb; }
.ig-tabs i:first-child { box-shadow: inset 0 0 0 2px #111; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.ig-grid .tile { aspect-ratio: 3 / 4; background: #f1f1f1; position: relative; overflow: hidden; }
.ig-grid .tile img, .ig-grid .tile video { width: 100%; height: 100%; object-fit: cover; }
.ig-grid .tile .reel { position: absolute; top: 6px; right: 6px; width: 14px; height: 14px; }
.ig-grid .tile .reel::before { content: ""; position: absolute; inset: 0; border: 2px solid #fff; border-radius: 4px; }
.ig-grid .tile .reel::after { content: ""; position: absolute; left: 5px; top: 3.5px; border-left: 5px solid #fff; border-block: 3.5px solid transparent; }
.tile > * { opacity: 0; transform: scale(1.08); }
.tile.in > * { opacity: 1; transform: none; transition: opacity .5s var(--ease), transform .8s var(--ease); }

/* Colonne droite : sortie */
.s-out { display: flex; flex-direction: column; gap: 14px; }
.out-story { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 9 / 16; max-height: 360px; background: var(--studio-2); box-shadow: inset 0 0 0 1px var(--studio-line); align-self: center; width: 100%; max-width: 202px; }
.out-story video, .out-story img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.out-story .bars { position: absolute; top: 8px; left: 8px; right: 8px; display: flex; gap: 3px; z-index: 2; }
.out-story .bars i { flex: 1; height: 2px; border-radius: 2px; background: rgba(255, 255, 255, .4); overflow: hidden; }
.out-story .bars i:first-child::after { content: ""; display: block; height: 100%; width: 100%; background: #fff; transform-origin: left; animation: storybar 6s linear infinite; }
@keyframes storybar { from { transform: scaleX(0); } }
.out-meta { display: grid; gap: 8px; }
.out-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px; background: var(--studio-2); box-shadow: inset 0 0 0 1px var(--studio-line); }
.out-row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--studio-ok); flex: none; }
.out-row .dot.wait { background: #f0b44c; }
.out-row b { font-weight: 600; }
.out-row em { margin-left: auto; font: 400 11px/1 var(--font-mono); font-style: normal; color: var(--studio-muted); }

/* Flottants autour de la fenêtre */
.float {
  position: absolute; z-index: 3;
  background: var(--white); color: var(--ink);
  border-radius: 16px; padding: 12px 14px;
  box-shadow: 0 1px 0 rgba(21, 22, 15, .08), 0 22px 40px -20px rgba(21, 22, 15, .5);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; line-height: 1.3;
  animation: bob 6s ease-in-out infinite;
}
.float b { display: block; font-size: 14px; }
.float span { color: var(--muted); }
.float-sched { left: -34px; bottom: 58px; animation-delay: -2s; }
.float-sched .cal { width: 40px; flex: none; border-radius: 9px; overflow: hidden; text-align: center; box-shadow: inset 0 0 0 1px var(--line); }
.float-sched .cal i { display: block; background: var(--ink); color: var(--lime); font: 500 9px/1 var(--font-mono); padding: 4px 0; font-style: normal; letter-spacing: .06em; }
.float-sched .cal strong { display: block; font: 800 18px/1 var(--font-display); font-stretch: 80%; padding: 4px 0 5px; }
.float-edit { right: -30px; top: 46%; animation-delay: -4s; }
.float-edit .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--lime); display: grid; place-items: center; flex: none; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.mascot { position: absolute; right: 56px; top: -62px; z-index: 1; width: 92px; cursor: pointer; background: none; border: 0; padding: 0; }
.mascot svg { width: 100%; height: auto; overflow: visible; --m-body: #fff; --m-eyes: var(--ink); filter: drop-shadow(0 10px 12px rgba(21, 22, 15, .22)); transform-origin: 50% 100%; animation: breathe 3.6s ease-in-out infinite; }
.mascot.hop svg { animation: hop .7s var(--spring); }
@keyframes breathe { 0%, 100% { transform: scale(1, 1); } 50% { transform: scale(1.03, .97); } }
@keyframes hop { 0% { transform: scale(1.08, .88); } 40% { transform: translateY(-26px) scale(.95, 1.06) rotate(-6deg); } 70% { transform: translateY(0) scale(1.06, .92); } 100% { transform: none; } }

/* ─────────── Bandeau clients */
.clients { padding-block: 8px 72px; }
.clients-in { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; border-block: 1px solid var(--line); padding-block: 28px; }
.clients-list { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; justify-items: center; gap: 24px; }
.client { display: flex; align-items: center; justify-content: center; height: 48px; color: var(--ink); opacity: .82; transition: opacity .2s; }
.client:hover { opacity: 1; }
.client img { height: 100%; width: auto; filter: brightness(0) saturate(100%) invert(7%) sepia(10%) saturate(1500%) hue-rotate(30deg); }
.client-boostigo img { height: 36px; }
.client-chezb img { height: 46px; }
.client-pikpik { font: 800 27px/1 var(--font-display); font-stretch: 100%; letter-spacing: -.035em; text-transform: lowercase; }
.client-pikpik i { font-style: normal; color: var(--muted); font-weight: 600; }

/* ─────────── Sections */
.section { padding-block: clamp(72px, 10vw, 136px); }
.sec-head { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 24px 64px; align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head h2 { font-size: clamp(40px, 5.6vw, 84px); }
.sec-head h2 .dim { color: #a2a592; }
.sec-head .eyebrow { grid-column: 1 / -1; }

/* Comment ça marche */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; counter-reset: step; }
.step { display: grid; grid-template-rows: auto 1fr; gap: 22px; }
.step-vis { position: relative; aspect-ratio: 4 / 3.4; border-radius: var(--r-lg); overflow: hidden; background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.step h3 { font: 700 21px/1.2 var(--font-body); margin: 0 0 8px; display: flex; gap: 12px; align-items: baseline; letter-spacing: -.01em; }
.step h3::before { counter-increment: step; content: counter(step); font: 500 13px/1 var(--font-mono); color: var(--ink); background: var(--lime); border-radius: 999px; width: 26px; height: 26px; display: inline-grid; place-items: center; flex: none; transform: translateY(-2px); }
.step p { margin: 0; color: var(--ink-2); font-size: 16px; max-width: 32em; }

/* 1. scan du site */
.scan { background: #0b0d18; }
.scan .browser { position: absolute; inset: 18px 18px auto 18px; border-radius: 10px; overflow: hidden; box-shadow: 0 16px 30px -12px rgba(0, 0, 0, .6); }
.scan .bchrome { height: 24px; background: #202124; display: flex; align-items: center; padding: 0 10px; gap: 8px; }
.scan .bchrome span { flex: 1; height: 14px; border-radius: 7px; background: #35363a; font: 400 9px/14px var(--font-mono); color: #aaa; padding-left: 8px; }
.scan .shot { position: relative; }
.scan .shot img { width: 100%; }
.scan .beam { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--lime); box-shadow: 0 0 18px 4px rgba(228, 255, 88, .55); animation: beam 3.6s var(--ease) infinite; }
@keyframes beam { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 80% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
.mark { position: absolute; border: 1.5px solid var(--lime); border-radius: 4px; opacity: 0; animation: mark 3.6s infinite; }
.mark b { position: absolute; left: -1.5px; bottom: 100%; margin-bottom: 3px; background: var(--lime); color: var(--ink); font: 500 9px/1 var(--font-mono); padding: 3px 5px; border-radius: 3px; white-space: nowrap; letter-spacing: .03em; }
.mark.m1 { left: 45.5%; top: 6%; width: 10%; height: 12%; animation-delay: .25s; }
.mark.m2 { left: 23%; top: 31%; width: 55%; height: 40%; animation-delay: 1.1s; }
.mark.m3 { left: 7%; top: 18%; width: 22%; height: 22%; animation-delay: 1.7s; }
.mark.m3 b { bottom: auto; top: 100%; margin: 3px 0 0; }
@keyframes mark { 0%, 8% { opacity: 0; transform: scale(1.08); } 14%, 78% { opacity: 1; transform: none; } 92%, 100% { opacity: 0; } }
.scan .found { position: absolute; left: 18px; right: 18px; bottom: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.scan .found span { font: 500 11px/1 var(--font-mono); color: #d8dbe8; background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12); padding: 7px 9px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.scan .found i { width: 9px; height: 9px; border-radius: 50%; background: var(--c); box-shadow: 0 0 0 1px rgba(255, 255, 255, .3); }

/* 2. planche */
.board { background: #e9eadf; }
.board img { position: absolute; left: 50%; top: 0; width: 86%; transform: translateX(-50%); border-radius: 8px; box-shadow: 0 20px 40px -18px rgba(21, 22, 15, .45); animation: pan 18s ease-in-out infinite alternate; }
@keyframes pan { from { transform: translate(-50%, 4%); } to { transform: translate(-50%, calc(-100% + 300px)); } }
.board .tag { position: absolute; left: 14px; top: 14px; z-index: 1; background: var(--ink); color: var(--lime); font: 500 11px/1 var(--font-mono); padding: 7px 10px; border-radius: 999px; letter-spacing: .04em; }

/* 3. calendrier */
.cal-vis { background: var(--white); padding: 16px; display: grid; grid-template-rows: auto 1fr; gap: 10px; }
.cal-head { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 14px; }
.cal-head span { font: 500 11px/1 var(--font-mono); color: var(--muted); }
.week { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.day { border-radius: 10px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); padding: 6px; display: grid; align-content: start; gap: 6px; min-height: 100%; }
.day > b { font: 500 10px/1 var(--font-mono); color: var(--muted); text-transform: uppercase; letter-spacing: .05em; display: flex; justify-content: space-between; }
.slot { border-radius: 6px; overflow: hidden; background: #fff; box-shadow: 0 4px 10px -6px rgba(21, 22, 15, .4); }
.slot img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; }
.slot small { display: block; font: 500 9px/1 var(--font-mono); padding: 4px 5px; color: var(--ink-2); }
.slot.story img { aspect-ratio: 9 / 14; }
.slot.drop { animation: drop 6s var(--spring) infinite; }
@keyframes drop { 0%, 12% { transform: translateY(-40px) rotate(-6deg); opacity: 0; } 22%, 88% { transform: none; opacity: 1; } 100% { opacity: 0; } }

/* ─────────── Manifeste : pas une image générée */
.manifest { background: var(--white); border-block: 1px solid var(--line); overflow: hidden; }
.manifest-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.manifest h2 { font-size: clamp(40px, 5.2vw, 78px); margin-bottom: 28px; }
.manifest h2 .strike { position: relative; color: #a2a592; white-space: nowrap; }
.manifest h2 .strike::after { content: ""; position: absolute; left: -2%; right: -2%; top: 50%; height: .09em; background: var(--ink); transform: scaleX(var(--s, 0)) rotate(-2deg); transform-origin: left; transition: transform .8s .2s var(--ease); }
.manifest.in-view h2 .strike::after { --s: 1; }
.manifest .lede + .lede { margin-top: 16px; }
.proofs { list-style: none; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.proofs li { display: flex; gap: 10px; font-size: 15px; font-weight: 500; }
.proofs li::before { content: ""; width: 18px; height: 18px; flex: none; margin-top: 2px; border-radius: 50%; background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.4l2.6 2.6L13 6.6' fill='none' stroke='%2315160f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px; box-shadow: inset 0 0 0 1px rgba(21, 22, 15, .15); }

/* Vue éclatée d'un post : chaque calque est projeté seul (pas de tri de profondeur), peint dans l'ordre du DOM */
.layers { position: relative; height: 560px; --w: 270px; --gap: calc(var(--w) * .17); }
.layers-stack { position: absolute; left: 38%; top: 50%; width: var(--w); aspect-ratio: 4 / 5; transform: translate(-50%, -50%); transition: transform 1.2s var(--ease); }
.manifest.in-view .layers-stack, .layers:hover .layers-stack { transform: translate(-50%, calc(-50% + var(--gap) * 1.5)); }
.ly { position: absolute; inset: 0; border-radius: 4px; transform-origin: 50% 50%; transition: transform 1.2s var(--ease), background-color .8s .3s, box-shadow .8s .3s; }
.manifest.in-view .ly, .layers:hover .ly { transform: translateY(calc(var(--k) * var(--gap) * -1)) rotateX(52deg) rotateZ(-32deg); }
.manifest.in-view .ly:not(.ly-bg), .layers:hover .ly:not(.ly-bg) { background: rgba(255, 255, 255, .12); box-shadow: inset 0 0 0 1px rgba(33, 51, 138, .5); }
.ly-bg { background: #21338a; box-shadow: 0 30px 60px -20px rgba(21, 22, 15, .5); }
.ly-photo div { position: absolute; left: 7%; right: 7%; top: 16%; height: 46%; background: url("../assets/brand/chezb-photo-2.webp") center / cover; }
.ly-text div { position: absolute; left: 7%; right: 7%; top: 67%; color: #fadcb3; }
.ly-text small { display: block; font: 500 calc(var(--w) * .024) / 1 "Jost", sans-serif; letter-spacing: .22em; text-transform: uppercase; margin-bottom: calc(var(--w) * .022); }
.ly-text strong { display: block; font: 400 calc(var(--w) * .094) / 1 "Bodoni Moda", Didot, Georgia, serif; color: #fff; }
.ly-text strong i { font-style: italic; color: #fadcb3; }
.ly-logo div { position: absolute; left: 7%; right: 7%; top: 5%; display: flex; justify-content: space-between; align-items: center; font: 500 calc(var(--w) * .021) / 1 "Jost", sans-serif; letter-spacing: .2em; color: #fadcb3; text-transform: uppercase; }
.ly-logo img { width: auto; height: calc(var(--w) * .07); filter: brightness(0) invert(88%) sepia(20%) saturate(500%) hue-rotate(330deg); }
.ly-logo .ly-foot { top: auto; bottom: 5%; border-top: .5px solid rgba(250, 220, 179, .4); padding-top: calc(var(--w) * .018); }
.ly-tag { position: absolute; left: calc(50% + var(--w) * .756 + 16px); top: calc(50% + var(--w) * .1625 - 12px - var(--k) * var(--gap)); white-space: nowrap; opacity: 0; transform: translateX(-8px); transition: opacity .5s, transform .5s var(--ease); transition-delay: calc(.9s + var(--k) * .12s); background: var(--ink); color: var(--lime); font: 500 11px/1 var(--font-mono); padding: 6px 9px; border-radius: 6px; }
.ly-tag::before { content: ""; position: absolute; right: 100%; top: 50%; width: 14px; height: 1px; background: var(--ink); }
.manifest.in-view .ly-tag, .layers:hover .ly-tag { opacity: 1; transform: none; }
.layers-cap { display: none; margin: 0; position: absolute; left: 0; right: 0; bottom: 0; text-align: center; font: 500 12px/1.3 var(--font-mono); color: var(--muted); }

/* ─────────── Fonctionnalités */
.bento { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.cell { position: relative; border-radius: var(--r-lg); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); padding: 26px; overflow: hidden; display: flex; flex-direction: column; gap: 10px; min-height: 280px; }
.cell h3 { font: 700 21px/1.2 var(--font-body); letter-spacing: -.01em; margin: 0; max-width: 18em; }
.cell p { margin: 0; color: var(--ink-2); font-size: 15.5px; max-width: 34em; }
.cell .vis { margin-top: auto; }
.c-edit { grid-column: span 4; }
.c-anim { grid-column: span 2; grid-row: span 2; background: var(--ink); color: #fff; box-shadow: none; }
.c-anim p { color: #c9cbbd; }
.c-camp, .c-cal2 { grid-column: span 2; }
.c-da, .c-team { grid-column: span 3; }

/* éditeur */
.editor { display: grid; grid-template-columns: 200px 1fr; gap: 16px; align-items: center; margin-top: 18px; }
.ed-post { position: relative; aspect-ratio: 4 / 5; border-radius: 6px; background: #7a48f4; overflow: visible; font-family: Fredoka, "Arial Rounded MT Bold", sans-serif; box-shadow: 0 16px 30px -16px rgba(21, 22, 15, .6); }
.ed-post .t-eye { position: absolute; left: 10%; top: 26%; font-size: 7px; font-weight: 700; letter-spacing: .12em; color: #d9ccff; text-transform: uppercase; }
.ed-post .t-title { position: absolute; left: 10%; right: 10%; top: 32%; font-size: 25px; line-height: .98; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: -.01em; padding: 3px; border-radius: 2px; }
.ed-post .t-title .sw1, .ed-post .t-title .sw2 { display: block; }
.ed-post .t-cta { position: absolute; left: 10%; bottom: 10%; background: #fff; color: #7a48f4; font-size: 9px; font-weight: 700; padding: 6px 10px; border-radius: 999px; }
.ed-post .t-logo { position: absolute; left: 10%; top: 7%; width: auto; height: 9px; filter: brightness(0) invert(1); }
.ed-sel { position: absolute; left: 8%; right: 8%; top: 31%; height: 30%; border: 1.5px solid var(--lime); border-radius: 3px; pointer-events: none; }
.ed-sel i { position: absolute; width: 7px; height: 7px; background: #fff; border: 1.5px solid var(--ink); border-radius: 2px; }
.ed-sel i:nth-child(1) { left: -4px; top: -4px; } .ed-sel i:nth-child(2) { right: -4px; top: -4px; } .ed-sel i:nth-child(3) { left: -4px; bottom: -4px; } .ed-sel i:nth-child(4) { right: -4px; bottom: -4px; }
.cursor { position: absolute; width: 18px; height: 18px; left: 70%; top: 70%; z-index: 2; animation: cur 7s var(--ease) infinite; }
@keyframes cur { 0% { left: 80%; top: 90%; } 18%, 40% { left: 62%; top: 44%; } 55%, 100% { left: 80%; top: 90%; } }
.caretx { display: inline-block; width: 2px; height: .9em; background: var(--lime); vertical-align: -.08em; margin-left: 1px; animation: blink 1s steps(1) infinite; }
.ed-panel { display: grid; gap: 8px; }
.ed-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); font-size: 14px; }
.ed-row .k { width: 28px; height: 28px; border-radius: 8px; background: var(--white); box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; flex: none; }
.ed-row em { margin-left: auto; font: 500 11px/1 var(--font-mono); font-style: normal; background: var(--lime); padding: 5px 8px; border-radius: 999px; }

/* animés */
.anim-vis { position: relative; margin-top: auto; display: flex; justify-content: center; padding-top: 14px; }
.anim-vis .ph { width: min(100%, 230px); aspect-ratio: 9 / 16; border-radius: 24px; overflow: hidden; box-shadow: 0 0 0 6px #2c2d27, 0 30px 50px -20px rgba(0, 0, 0, .8); position: relative; }
.anim-vis video, .anim-vis img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fmt-list { display: flex; flex-wrap: wrap; gap: 6px; }
.fmt-list span { font: 500 11px/1 var(--font-mono); padding: 7px 9px; border-radius: 999px; background: rgba(228, 255, 88, .12); color: var(--lime); }

/* campagnes */
.camps { display: grid; gap: 8px; margin-top: auto; }
.camp { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 14px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); transition: transform .3s var(--ease); }
.camp:hover { transform: translateX(4px); }
.camp img { width: 40px; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 5px; }
.camp b { display: block; font-size: 14px; }
.camp span { font: 400 11px/1.3 var(--font-mono); color: var(--muted); }

/* mini calendrier */
.mini-cal { margin-top: auto; display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.mini-cal span { aspect-ratio: 1; border-radius: 7px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); font: 500 10px/1 var(--font-mono); color: var(--muted); display: grid; place-items: center; position: relative; overflow: hidden; }
.mini-cal span.on { background: var(--ink); color: var(--lime); box-shadow: none; }
.mini-cal span.post { background-size: cover; background-position: center; color: transparent; box-shadow: none; }
.mini-cal span.today { box-shadow: inset 0 0 0 2px var(--ink); color: var(--ink); }

/* reprise de DA */
.da-vis { margin-top: auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: center; }
.da-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border-radius: 10px; overflow: hidden; }
.da-grid img { aspect-ratio: 3 / 4; width: 100%; object-fit: cover; }
.da-grid.src img { filter: grayscale(.2) contrast(.95); }
.da-arrow { font: 500 11px/1.3 var(--font-mono); color: var(--muted); text-align: center; display: grid; gap: 6px; justify-items: center; }
.da-arrow i { width: 36px; height: 36px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; font-style: normal; font-size: 16px; color: var(--ink); }

/* équipe */
.team-vis { margin-top: auto; display: grid; gap: 8px; }
.ws { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 14px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); }
.ws .b { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; overflow: hidden; }
.ws .b img { width: 72%; }
.ws b { font-size: 14px; }
.ws .who { margin-left: auto; display: flex; }
.ws .who i { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--paper); margin-left: -7px; background: var(--g); }
.ws small { font: 400 11px/1 var(--font-mono); color: var(--muted); display: block; margin-top: 3px; }

/* ─────────── Mur de posts */
.wall { padding-block: clamp(72px, 10vw, 136px) clamp(56px, 7vw, 96px); overflow: hidden; }
.marquee { display: flex; gap: 14px; width: max-content; animation: slide var(--dur, 60s) linear infinite; }
.marquee.rev { animation-direction: reverse; }
.marquee-row + .marquee-row { margin-top: 14px; }
.marquee-row:hover .marquee { animation-play-state: paused; }
.marquee figure { margin: 0; width: clamp(180px, 17vw, 236px); flex: none; }
.marquee figure img, .marquee figure video { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 12px; box-shadow: 0 1px 0 rgba(21, 22, 15, .06); }
.marquee figcaption { font: 500 11px/1 var(--font-mono); color: var(--muted); margin-top: 8px; display: flex; gap: 6px; align-items: center; letter-spacing: .02em; }
.marquee figcaption i { width: 8px; height: 8px; border-radius: 50%; background: var(--c); }
@keyframes slide { to { transform: translateX(calc(-50% - 7px)); } }

/* ─────────── Fabriqué en France */
.made { padding-block: clamp(40px, 6vw, 80px) clamp(72px, 10vw, 136px); }
.made-card { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; padding: clamp(28px, 5vw, 64px); border-radius: 28px; background: #1a2a6c; color: #fff; overflow: hidden; }
.made-card .stripe { position: absolute; right: 0; top: 22%; bottom: 22%; width: 21px; border-radius: 4px 0 0 4px; background: linear-gradient(90deg, #3a5fe0 0 33.3%, #fff 33.3% 66.6%, #ef4135 66.6%); }
.stamp { position: relative; width: clamp(170px, 18vw, 220px); aspect-ratio: 1; flex: none; }
.stamp svg.ring { width: 100%; height: 100%; animation: turn 26s linear infinite; }
.stamp svg.ring text { font: 600 11.4px var(--font-mono); letter-spacing: .21em; fill: #fff; text-transform: uppercase; }
.stamp .core { position: absolute; inset: 22%; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 0 0 2px #fff, 0 0 0 7px #1a2a6c, 0 0 0 8.5px rgba(255, 255, 255, .5); }
.stamp .core svg { width: 62%; height: auto; --m-body: #1a2a6c; --m-eyes: #fff; filter: drop-shadow(0 4px 0 rgba(239, 65, 53, .55)); }
@keyframes turn { to { transform: rotate(360deg); } }
.made h2 { font-size: clamp(48px, 7vw, 108px); color: #fff; }
.made h2 .accent { color: #ff6b61; }
.made p { margin: 18px 0 0; max-width: 36em; font-size: clamp(17px, 1.4vw, 19px); color: rgba(255, 255, 255, .88); }
.made p b { color: #fff; }
.made .facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.made .facts span { font: 500 12px/1 var(--font-mono); letter-spacing: .04em; padding: 8px 11px; border-radius: 999px; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .45); }

/* ─────────── FAQ */
.faq-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: clamp(32px, 6vw, 96px); }
.faq h2 { font-size: clamp(40px, 5.6vw, 84px); position: sticky; top: 110px; }
.qa { border-top: 1px solid var(--line-2); }
.qa:last-child { border-bottom: 1px solid var(--line-2); }
.qa summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; font-size: 19px; font-weight: 600; position: relative; letter-spacing: -.01em; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: ""; position: absolute; right: 4px; top: 50%; width: 26px; height: 26px; margin-top: -13px; border-radius: 50%; background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26'%3E%3Cpath d='M13 8v10M8 13h10' stroke='%2315160f' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / 26px; box-shadow: inset 0 0 0 1px var(--line-2); transition: transform .3s var(--ease), background-color .2s; }
.qa[open] summary::after { transform: rotate(45deg); background-color: var(--lime); }
.qa p { margin: -6px 0 22px; color: var(--ink-2); max-width: 40em; }

/* ─────────── CTA final */
.final { position: relative; background: radial-gradient(circle at 1px 1px, var(--lime-dot) 1.2px, transparent 1.6px) 0 0 / 22px 22px, var(--lime); overflow: hidden; padding-block: clamp(80px, 11vw, 150px) 0; }
.final-in { display: grid; justify-items: center; text-align: center; gap: 28px; position: relative; z-index: 1; }
.final h2 { font-size: clamp(52px, 9vw, 150px); }
.final h2 .dim { color: rgba(21, 22, 15, .42); display: block; }
.final .site-form { width: min(100%, 520px); }
.final .peek { position: relative; width: clamp(150px, 16vw, 220px); margin-top: 32px; transform: translateY(24%); transition: transform .6s var(--spring); }
.final:hover .peek { transform: translateY(10%); }
.final .peek.eager { transform: translateY(4%); }
.final .peek svg { width: 100%; height: auto; --m-body: #fff; --m-eyes: var(--ink); filter: drop-shadow(0 -6px 20px rgba(21, 22, 15, .12)); }

/* ─────────── Pied de page */
.foot { background: var(--ink); color: #c9cbbd; padding-block: 56px 40px; font-size: 14px; }
.foot-in { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.foot .logo svg { --m-body: var(--lime); --m-eyes: var(--ink); }
.foot .logo b { color: #fff; }
.foot p { margin: 14px 0 0; max-width: 26em; }
.foot h4 { margin: 4px 0 14px; font: 500 11px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: #8b8d7e; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--lime); }
.foot-legal { display: flex; gap: 18px; }
.foot-legal a { color: inherit; text-decoration: none; }
.foot-legal a:hover { color: #e8e9dc; text-decoration: underline; text-underline-offset: 3px; }
.foot-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid #2d2f25; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font: 400 12px/1.4 var(--font-mono); color: #8b8d7e; }

/* ─────────── Apparitions au défilement (visibles par défaut, animées seulement si JS) */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .9s var(--ease); }
.js .reveal.in-view { opacity: 1; transform: none; }

/* ─────────── Responsive */
@media (max-width: 1180px) {
  .studio-body { grid-template-columns: minmax(0, 300px) minmax(0, 1fr); }
  .s-out { display: none; }
  .float-edit { right: -10px; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-side { grid-template-columns: 1fr; }
  .sec-head, .manifest-in, .faq-in { grid-template-columns: 1fr; }
  .faq h2 { position: static; }
  .steps { grid-template-columns: 1fr; max-width: 560px; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .c-edit, .c-da, .c-team { grid-column: span 2; }
  .c-anim { grid-column: span 2; grid-row: auto; }
  .c-camp, .c-cal2 { grid-column: span 1; }
  .layers { height: 500px; }
  .foot-in { grid-template-columns: 1fr 1fr; }
  .float { display: none; }
  .mascot { right: 24px; top: -52px; width: 76px; }
  .made-card { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .studio-body { grid-template-columns: 1fr; min-height: 0; }
  .s-col + .s-col { border-left: 0; border-top: 1px solid var(--studio-line); }
  .s-kit .photos, .s-log { display: none; }
  .studio-tabs, .studio-bar .credits b, .studio-bar .credits span { display: none; }
  .clients-in { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .clients-list { gap: 12px; }
  .client-pikpik { font-size: 21px; }
  .client-boostigo img { height: 22px; }
  .client-chezb img { height: 36px; }
  .editor { grid-template-columns: 1fr; }
  .ed-post { max-width: 220px; }
  .c-camp, .c-cal2 { grid-column: span 2; }
  .proofs { grid-template-columns: 1fr; }
  .layers { height: 420px; --w: 190px; }
  .layers-stack { left: 50%; }
  .ly-tag { display: none; }
  .layers-cap { display: block; }
  .da-vis { grid-template-columns: 1fr; }
  .da-arrow i { transform: rotate(90deg); }
  .foot-in { grid-template-columns: 1fr; }
  .nav-cta .login { display: none; }
  .site-form label span { display: none; }
}
@media (max-width: 420px) {
  .site-form { flex-direction: column; border-radius: 22px; }
  .site-form label { padding: 6px 12px; }
  .site-form .btn { width: 100%; }
}

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

/* ─────────── Hero : pastille clients (→ tarifs) et garanties */
.proof {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 6px 16px 6px 6px; margin-bottom: 26px; border-radius: 999px;
  background: rgba(21, 22, 15, .06); box-shadow: inset 0 0 0 1px rgba(21, 22, 15, .14);
  font-size: 14px; text-decoration: none; transition: background-color .2s, box-shadow .2s;
}
.proof:hover { background: rgba(21, 22, 15, .1); box-shadow: inset 0 0 0 1px rgba(21, 22, 15, .3); }
.proof-av { display: flex; }
.proof-av i { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; overflow: hidden; box-shadow: 0 0 0 2.5px var(--lime); }
.proof-av i + i { margin-left: -9px; }
.proof-av img { width: 100%; height: 100%; object-fit: cover; }
.proof-av .pik { background: var(--ink); color: var(--lime); font: 800 17px/1 var(--font-display); font-stretch: 100%; font-style: normal; letter-spacing: -.04em; }
.proof-txt b { font-weight: 700; }
.proof-cta { font-weight: 600; display: inline-flex; gap: 6px; padding-left: 12px; border-left: 1px solid rgba(21, 22, 15, .2); }
.proof:hover .proof-cta span { transform: translateX(3px); }
.proof-cta span { transition: transform .25s var(--ease); }

.assure { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 14px 30px; }
.assure li { display: flex; align-items: center; gap: 12px; }
.assure svg { width: 26px; height: 26px; flex: none; fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; opacity: .75; }
.assure b { display: block; font-size: 14.5px; line-height: 1.25; }
.assure span { display: block; font-size: 13.5px; line-height: 1.3; color: var(--ink-2); }

/* ─────────── Bandeau offre + badges */
.offer { padding-block: clamp(24px, 4vw, 48px) clamp(56px, 7vw, 96px); }
.offer-in { display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.offer-txt { display: grid; gap: 26px; justify-items: start; }
.offer h2 { font-size: clamp(38px, 4.2vw, 60px); }
.offer h2 .dim { color: #a2a592; display: block; }
.btn-lg { height: 56px; padding: 0 28px; font-size: 17px; }
.pennants { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; padding: 6px 2px 14px; }
.pennant {
  position: relative; min-width: 0; height: 226px; scroll-snap-align: start;
  background: var(--white); box-shadow: 0 0 0 1px var(--line), 0 18px 30px -24px rgba(21, 22, 15, .5);
  display: flex; flex-direction: column; align-items: center; text-align: center; overflow: hidden;
  transition: transform .35s var(--ease);
}
.pennant:hover { transform: translateY(-4px) rotate(-1deg); }
.pn-top { align-self: stretch; display: flex; justify-content: space-between; align-items: stretch; margin: 0; border-bottom: 1px solid var(--line); }
.pn-top span { padding: 9px 10px; font: 500 10px/1 var(--font-mono); letter-spacing: .1em; white-space: nowrap; text-transform: uppercase; color: var(--ink-2); }
.pn-top i { width: 30px; background: var(--lime); display: grid; place-items: center; }
.pn-top svg { width: 18px; height: auto; --m-body: var(--ink); --m-eyes: var(--lime); }
.pn-t { margin: 28px 10px 6px; font: 800 18px/1.1 var(--font-display); font-stretch: 90%; letter-spacing: -.01em; }
.pn-s { margin: 0 12px; font: 500 10px/1.4 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.pn-c { position: absolute; left: 0; right: 0; height: 64px; clip-path: polygon(0 55%, 50% 0, 100% 55%, 100% 100%, 50% 45%, 0 100%); }
.pn-c.c1 { bottom: 16px; background: var(--ink); }
.pn-c.c2 { bottom: 8px; background: #c7e03c; }
.pn-c.c3 { bottom: 0; background: var(--lime); }
@media (max-width: 980px) {
  .offer-in { grid-template-columns: 1fr; }
  .pennants { display: flex; overflow-x: auto; scroll-snap-type: x proximity; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
  .pennant { flex: none; width: 160px; }
}
@media (max-width: 640px) {
  .proof { border-radius: 22px; padding-right: 12px; font-size: 13px; gap: 8px 10px; }
  .proof-av i { width: 28px; height: 28px; }
  .proof-cta { border-left: 0; padding-left: 0; }
}

/* ─────────── Muffins vivants (js/site.js) : yeux mobiles, clin d'œil, muffin derrière la porte de la FAQ */
.live .eyes { transform-box: fill-box; transform-origin: 50% 50%; transform: translate(var(--ex, 0), var(--ey, 0)) scaleY(1); transition: transform .18s ease-out; }
.live.squint .eyes { transform: translate(var(--ex, 0), var(--ey, 0)) scaleY(.3); transition-duration: .08s; }
.faq { position: relative; overflow-x: clip; }
.door-peek { position: absolute; right: 0; top: 34%; width: min(230px, calc(var(--room, 150px) * 1.45)); aspect-ratio: 100 / 88.02; pointer-events: none; }
.door-lean { position: absolute; inset: 0; transform-origin: 100% 100%; transform: translateX(106%); transition: transform .75s var(--spring); pointer-events: auto; }
.door-lean svg { width: 100%; height: auto; overflow: visible; --m-body: #fff; --m-eyes: var(--ink); filter: drop-shadow(0 12px 18px rgba(21, 22, 15, .16)); }
.door-peek.in .door-lean { transform: translateX(52%) rotate(-14deg); transition-delay: .25s; }
.door-peek.in.shy .door-lean { transform: translateX(82%) rotate(-6deg); transition: transform .35s cubic-bezier(.5, 0, .75, 0); }
.door-bubble { position: absolute; right: 10px; bottom: 100%; margin-bottom: 14px; width: max-content; max-width: calc(var(--room, 150px) - 18px); padding: 10px 14px; border-radius: 16px 16px 4px 16px; background: var(--ink); box-sizing: border-box; color: var(--lime);
  font: 500 12.5px/1.4 var(--font-mono); text-decoration: none; pointer-events: auto; opacity: 0; transform: translateY(6px) scale(.92); transform-origin: 100% 100%;
  transition: opacity .25s, transform .35s var(--spring); }
.door-bubble b { display: block; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.door-peek.in .door-bubble { opacity: 1; transform: none; transition-delay: 1s; }
.door-peek.in.shy .door-bubble { opacity: 0; transition-delay: 0s; }
.door-peek[hidden] { display: none; }
