/* =====================================================================
   MEDIA SCALE — Feuille de style
   Direction artistique : "studio noir". Noir profond, blanc chaud,
   deux gélatines lumière (bleu studio / rouge déplacement), accent rouge, grain film,
   typographie grotesque serrée + italique éditoriale + mono technique.
   ===================================================================== */

:root {
  --bg: #070707;
  --bg-2: #0d0d0e;
  --bg-3: #141416;
  --fg: #f3efe8;
  --fg-2: rgba(243, 239, 232, .64);
  --fg-3: rgba(243, 239, 232, .40);
  --line: rgba(243, 239, 232, .10);
  --line-2: rgba(243, 239, 232, .20);
  --blue: #3f7cff;
  --accent: #ff3b30;
  --accent-2: #ff7b72;

  --font-sans: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
  --pad: clamp(20px, 4vw, 64px);
  --max: 1440px;
  --nav-h: 76px;
  --radius: 22px;
  --section: clamp(64px, 7vw, 104px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; -webkit-tap-highlight-color: transparent; }
a, button, input, textarea { touch-action: manipulation; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
[hidden] { display: none !important; }
::selection { background: var(--accent); color: #fff; }

.container { width: min(100% - 2 * var(--pad), var(--max)); margin-inline: auto; }
.mono { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); font-weight: 500; }

.skip { position: fixed; top: -100px; left: 16px; z-index: 10001; background: var(--fg); color: #000; padding: 10px 16px; border-radius: 99px; }
.skip:focus { top: 16px; }

/* ---------- Typographie ---------- */
h1, h2, h3 { font-weight: 600; letter-spacing: -.035em; line-height: 1; text-wrap: balance; }
h2 { font-size: clamp(2.2rem, 4.8vw, 4.6rem); letter-spacing: -.04em; line-height: .98; }
h3 { font-size: clamp(1.3rem, 1.9vw, 1.7rem); letter-spacing: -.025em; line-height: 1.1; }
h1 em, h2 em, h3 em, .bs__end h3 em, .bs__split em { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.1em; letter-spacing: -.01em; }
.label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 22px; }
.label::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.section-head { max-width: 900px; margin-bottom: clamp(36px, 4.5vw, 60px); }
.section-head--wide { max-width: none; }
.section-head__txt { margin-top: 24px; max-width: 620px; color: var(--fg-2); font-size: 1.1rem; }

/* ---------- Boutons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 26px; border-radius: 99px; overflow: hidden;
  font-weight: 500; font-size: .95rem; letter-spacing: -.01em; white-space: nowrap;
  border: 1px solid transparent; transition: transform .6s var(--ease), background .4s, color .4s, border-color .4s;
  will-change: transform;
}
.btn--lg { height: 58px; padding: 0 32px; font-size: 1rem; }
.btn--sm { height: 42px; padding: 0 20px; font-size: .88rem; }
.btn--primary { background: var(--fg); color: #000; }
.btn--primary:hover { background: #fff; }
.btn--ghost { border-color: var(--line-2); color: var(--fg); backdrop-filter: blur(6px); }
.btn--hero { --btn-c: #fff; height: 62px; padding: 0 36px; font-size: 1.05rem; font-weight: 600; background: var(--accent); color: #fff; box-shadow: 0 14px 40px -10px rgba(255,59,48,.7); animation: ctaPulse 2.6s ease-out infinite; }
.btn--hero:hover { background: #ff5247; }
@keyframes ctaPulse { 0% { box-shadow: 0 14px 40px -10px rgba(255,59,48,.7), 0 0 0 0 rgba(255,59,48,.45); } 70% { box-shadow: 0 14px 40px -10px rgba(255,59,48,.7), 0 0 0 16px rgba(255,59,48,0); } 100% { box-shadow: 0 14px 40px -10px rgba(255,59,48,.7), 0 0 0 0 rgba(255,59,48,0); } }
.section-cta { display: flex; justify-content: center; margin-top: clamp(36px, 4.5vw, 56px); }
.btn--ghost:hover { border-color: var(--fg); }
.btn { --btn-c: var(--fg); }
.btn--primary { --btn-c: #000; }
.btn__t { position: relative; display: block; overflow: hidden; line-height: 1.25; color: transparent; }
.btn__t::before, .btn__t::after { content: attr(data-text); position: absolute; left: 0; top: 0; width: 100%; text-align: center; color: var(--btn-c); transition: transform .55s var(--ease); }
.btn__t::after { top: 100%; }
.btn:hover .btn__t::before, .btn:hover .btn__t::after { transform: translateY(-100%); }

.chips, .hero__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li, .hero__chips li { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-2); border: 1px solid var(--line-2); border-radius: 99px; padding: 8px 12px; }

/* ---------- Preloader ---------- */
.loader { position: fixed; inset: 0; z-index: 10000; background: var(--bg); display: grid; place-items: center; transition: transform 1s var(--ease-io); }
.loader.is-done { transform: translateY(-100%); }
.loader__inner { position: relative; display: grid; place-items: center; gap: 18px; }
.loader__rec { position: absolute; top: -48px; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em; color: var(--fg-2); display: flex; align-items: center; gap: 8px; }
.loader__rec i, .rec { width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b; box-shadow: 0 0 10px #ff3b3b; animation: blink 1.1s steps(1) infinite; }
.loader__logo { font-weight: 800; font-size: clamp(2.6rem, 7vw, 5rem); line-height: .86; letter-spacing: -.055em; text-align: center; }
.loader__count { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .12em; color: var(--fg-3); }
@keyframes blink { 50% { opacity: .15; } }

/* ---------- Décor global : gélatines, grain, curseur, HUD ---------- */
.gel { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.gel span { position: absolute; width: 70vmax; height: 70vmax; border-radius: 50%; filter: blur(120px); opacity: 0; transition: opacity 1.6s var(--ease-io); }
.gel__blue { top: -25vmax; left: -20vmax; background: radial-gradient(circle, rgba(63,124,255,.34), transparent 65%); }
.gel__orange { bottom: -25vmax; right: -20vmax; background: radial-gradient(circle, rgba(255,59,48,.30), transparent 65%); }
body[data-gel="blue"] .gel__blue { opacity: 1; }
body[data-gel="orange"] .gel__orange { opacity: 1; }

.grain { position: fixed; inset: 0; z-index: 9990; pointer-events: none; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='260' height='260'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain .5s steps(4) infinite; }
@keyframes grain { 0% { background-position: 0 0; } 25% { background-position: -80px 40px; } 50% { background-position: 60px -90px; } 75% { background-position: -40px -30px; } 100% { background-position: 0 0; } }


.hud { position: fixed; left: 18px; top: 50%; z-index: 50; display: flex; gap: 14px; align-items: center; writing-mode: vertical-rl; transform: translateY(-50%) rotate(180deg); font-family: var(--font-mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-3); mix-blend-mode: difference; opacity: 0; transition: opacity .8s; white-space: nowrap; }
.is-loaded .hud { opacity: 1; }
.hud.is-off { opacity: 0; }
.hud b { color: var(--fg); font-weight: 500; }
.hud__name { color: var(--fg-2); }
@media (max-width: 1100px) { .hud { display: none; } }

/* ---------- Navigation ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: var(--nav-h); transition: transform .6s var(--ease), background .5s, border-color .5s; border-bottom: 1px solid transparent; transform: translateY(-100%); }
.is-loaded .nav { transform: translateY(0); }
.nav.is-scrolled { background: rgba(7,7,7,.72); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-color: var(--line); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner { height: 100%; width: min(100% - 2 * var(--pad), var(--max)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__mark { height: 30px; width: auto; }
.nav__word { height: 24px; width: auto; display: none; }
.nav__links { display: flex; gap: 6px; }
.nav__links a { position: relative; padding: 8px 14px; border-radius: 99px; font-size: .9rem; color: var(--fg-2); transition: color .3s, background .3s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--fg); }
.nav__links a.is-active { background: rgba(243,239,232,.07); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); position: relative; }
.nav__burger span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: var(--fg); transition: transform .4s var(--ease), top .4s var(--ease); top: 18px; }
.nav__burger span:last-child { top: 24px; }
.nav__burger[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__right .btn { display: none; }
}

.menu { position: fixed; inset: 0; z-index: 800; background: var(--bg); padding: calc(var(--nav-h) + 24px) var(--pad) 40px; display: flex; flex-direction: column; justify-content: space-between; clip-path: inset(0 0 100% 0); transition: clip-path .8s var(--ease); }
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu__links a { display: flex; align-items: baseline; gap: 18px; font-size: clamp(2.4rem, 10vw, 4rem); font-weight: 600; letter-spacing: -.04em; line-height: 1.15; padding: 6px 0; border-bottom: 1px solid var(--line); transform: translateY(30px); opacity: 0; transition: transform .8s var(--ease), opacity .8s; transition-delay: calc(var(--i, 0) * 60ms); }
.menu.is-open .menu__links a { transform: none; opacity: 1; }
.menu__n { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; color: var(--fg-3); }
.menu__foot { display: grid; gap: 18px; }
.menu__foot .btn { width: 100%; }
.menu__insta { font-size: 1rem; color: var(--fg-2); }

/* ---------- Animations d'apparition ---------- */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform 1s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
.is-in > .rv, .is-in.rv, .is-in .rv { opacity: 1; transform: none; }
.l { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.l__in { display: block; transform: translateY(110%); transition: transform 1.3s var(--ease); transition-delay: calc(var(--i, 0) * 110ms + .15s); }
.is-loaded .l__in { transform: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding: calc(var(--nav-h) + 40px) var(--pad) clamp(40px, 6vh, 72px); overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: var(--bg); }
.hero__media::before { content: ""; position: absolute; inset: -25%; background:
  radial-gradient(38% 46% at 66% 30%, rgba(243,239,232,.11), transparent 70%),
  radial-gradient(34% 38% at 16% 82%, rgba(255,59,48,.16), transparent 70%),
  radial-gradient(36% 38% at 90% 86%, rgba(63,124,255,.12), transparent 70%);
  animation: heroBreathe 16s ease-in-out infinite alternate; }
@keyframes heroBreathe { from { transform: translate3d(-1.5%, -1%, 0) scale(1); opacity: .85; } to { transform: translate3d(1.5%, 1.5%, 0) scale(1.06); opacity: 1; } }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,7,7,.62) 0%, rgba(7,7,7,.28) 40%, rgba(7,7,7,.55) 75%, var(--bg) 100%); }
.hero__shade::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 45%, transparent, rgba(7,7,7,.55)); }
.hero__light { position: absolute; inset: 0; opacity: 0; transition: opacity 1s; background: radial-gradient(560px circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,.13), transparent 62%); mix-blend-mode: screen; }
.is-loaded .hero__light { opacity: 1; }

.hero__hud { position: absolute; inset: calc(var(--nav-h) + 8px) var(--pad) 28px; pointer-events: none; }
.hero__corner { position: absolute; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-2); display: flex; align-items: center; gap: 8px; opacity: 0; transition: opacity 1s .8s; }
.is-loaded .hero__corner { opacity: 1; }
.hero__corner--tl { top: 0; left: 0; }
.hero__corner--tr { top: 0; right: 0; }
.hero__corner--bl { bottom: 0; left: 0; }
.hero__corner--br { bottom: 0; right: 0; }
.hero__frame { position: absolute; inset: 26px 0; opacity: 0; transition: opacity 1s .8s; }
.is-loaded .hero__frame { opacity: 1; }
.hero__frame::before, .hero__frame::after { content: ""; position: absolute; width: 22px; height: 22px; border: 1px solid rgba(243,239,232,.45); }
.hero__frame::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero__frame::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.hero__content { position: relative; width: min(100%, var(--max)); margin-inline: auto; }
.hero__kicker { margin-bottom: 26px; color: var(--fg-2); }
.hero__title { font-size: clamp(2.6rem, 6.6vw, 6.8rem); font-weight: 700; letter-spacing: -.05em; line-height: .92; max-width: 13ch; }
.hero__title .l--serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: .62em; letter-spacing: -.015em; color: var(--fg-2); margin-top: .18em; }
.hl { position: relative; display: inline-block; font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.08em; letter-spacing: -.01em; }
.hl__stroke { position: absolute; left: -2%; right: -2%; bottom: -.08em; width: 104%; height: .22em; overflow: visible; }
.hl__stroke path { fill: none; stroke: var(--accent); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 320; stroke-dashoffset: 320; transition: stroke-dashoffset 1.4s var(--ease-io) 1.3s; }
.is-loaded .hl__stroke path { stroke-dashoffset: 0; }
.hero__bottom { display: grid; grid-template-columns: minmax(0, 560px) auto; align-items: end; gap: 32px 64px; margin-top: clamp(32px, 5vh, 56px); }
.hero__sub { color: var(--fg-2); font-size: clamp(1rem, 1.25vw, 1.2rem); max-width: 54ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__chips { grid-column: 1 / -1; }
.hero .rv { transition-delay: calc(var(--i, 0) * 120ms + .9s); }
.is-loaded .hero .rv { opacity: 1; transform: none; }

.badge { position: absolute; right: var(--pad); bottom: clamp(120px, 20vh, 200px); width: 128px; height: 128px; z-index: 2; display: grid; place-items: center; opacity: 0; transition: opacity 1s 1.4s, transform .6s var(--ease); }
.is-loaded .badge { opacity: 1; }
.badge svg:first-child { position: absolute; inset: 0; animation: spin 18s linear infinite; }
.badge text { font-family: var(--font-mono); font-size: 13.6px; letter-spacing: 2.5px; fill: var(--fg-2); }
.badge__arrow { width: 34px; height: 34px; stroke: var(--fg); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: transform .5s var(--ease); }
.badge:hover .badge__arrow { transform: translate(3px, -3px); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__scroll { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; opacity: 0; transition: opacity 1s 1.8s; }
.is-loaded .hero__scroll { opacity: 1; }
.hero__scroll span { width: 1px; height: 36px; background: linear-gradient(var(--fg-3), transparent); position: relative; overflow: hidden; }
.hero__scroll span::after { content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: var(--fg); animation: drop 1.8s var(--ease-io) infinite; }
@keyframes drop { to { top: 100%; } }
@media (max-width: 900px) {
  .hero { padding-bottom: 72px; }
  .hero__bottom { grid-template-columns: 1fr; gap: 22px; }
  .hero__cta .btn { width: 100%; }
  .badge, .hero__scroll, .hero__corner--br { display: none; }
  .hero__title { max-width: none; }
}

/* ---------- Casting (pour qui) ---------- */
.cast { position: relative; z-index: 1; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(40px, 5vw, 68px) 0; background: var(--bg); }
.cast__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.cast__line { font-size: clamp(1.55rem, 2.9vw, 2.8rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.15; text-wrap: balance; }
.cast__line small { display: block; margin-top: .35em; font-size: .62em; font-weight: 400; color: var(--fg-2); letter-spacing: -.02em; }
.cast__slot { position: relative; display: inline-block; vertical-align: bottom; height: 1.15em; overflow: hidden; font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.12em; letter-spacing: -.01em; color: var(--accent-2); transition: width .6s var(--ease); white-space: nowrap; }
.cast__slot::after { content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease) .2s; }
.is-in .cast__slot::after { transform: scaleX(1); }
.cast__word { position: absolute; left: 0; top: 0; display: block; transform: translateY(110%); opacity: 0; transition: transform .7s var(--ease), opacity .5s; }
.cast__word.is-on { transform: none; opacity: 1; }
.cast__word.is-out { transform: translateY(-110%); opacity: 0; }
.cast__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.cast__list li { display: flex; align-items: baseline; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 1rem; font-weight: 500; letter-spacing: -.01em; color: var(--fg-2); transition: color .4s; }
.cast__list li .mono { font-size: .64rem; color: var(--fg-3); transition: color .4s; }
.cast__list li i { margin-left: auto; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); opacity: 0; transform: scale(.5); transition: opacity .4s, transform .5s var(--ease); }
.cast__list li.is-on { color: var(--fg); }
.cast__list li.is-on .mono { color: var(--accent-2); }
.cast__list li.is-on i { opacity: 1; transform: none; }
.cast__list li em { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.12em; color: var(--fg-2); }
@media (max-width: 900px) { .cast__grid { grid-template-columns: 1fr; gap: 32px; } .cast__list { grid-template-columns: 1fr; } .cast__list li { padding: 8px 0; } }

/* ---------- Sections communes ---------- */
main > section, .footer { position: relative; z-index: 1; }
.manifesto, .pillars, .proof, .services, .pricing, .testi, .faq, .contact { padding: var(--section) 0; }

/* ---------- Manifeste ---------- */
.manifesto__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.growth { position: relative; padding: clamp(18px, 2vw, 28px); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(243,239,232,.025), transparent); }
.growth__svg { width: 100%; height: auto; overflow: visible; }
.growth__grid line { stroke: rgba(243,239,232,.08); stroke-width: 1; }
.growth__bars rect { fill: rgba(243,239,232,.10); transform-box: fill-box; transform-origin: bottom; transform: scaleY(0); transition: transform 1.2s var(--ease); transition-delay: calc(var(--i, 0) * 70ms + .2s); }
.growth.is-in .growth__bars rect { transform: scaleY(1); }
.growth__line { fill: none; stroke: url(#gLine); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 820; stroke-dashoffset: 820; transition: stroke-dashoffset 2.4s var(--ease-io) .5s; }
.growth.is-in .growth__line { stroke-dashoffset: 0; }
.growth__area { fill: url(#gArea); opacity: 0; transition: opacity 1.4s 1.9s; }
.growth.is-in .growth__area { opacity: 1; }
.growth__dot { opacity: 0; transition: opacity .6s 2.7s; }
.growth.is-in .growth__dot { opacity: 1; }
.growth__dot circle:last-child { fill: var(--fg); }
.growth__pulse { fill: none; stroke: var(--accent); stroke-width: 2; transform-box: fill-box; transform-origin: center; opacity: 0; animation: gpulse 2.2s ease-out 2.9s infinite; }
@keyframes gpulse { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(2.6); opacity: 0; } }
.growth__tag { opacity: 0; transform: translateY(8px); transition: opacity .8s 2.9s, transform .8s var(--ease) 2.9s; }
.growth.is-in .growth__tag { opacity: 1; transform: none; }
.growth__tag rect { fill: var(--fg); }
.growth__tag text { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; fill: #000; }
.growth__axis text { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; fill: var(--fg-3); }
.growth figcaption { margin-top: 14px; }
@media (max-width: 900px) { .manifesto__grid { grid-template-columns: 1fr; gap: 40px; } }
.manifesto__text { font-size: clamp(1.35rem, 2.5vw, 2.4rem); font-weight: 500; letter-spacing: -.03em; line-height: 1.28; max-width: 28ch; text-wrap: pretty; }
.manifesto__text .w { display: inline-block; opacity: .16; transition: opacity .5s; }
.manifesto__text.is-in .w { opacity: 1; transition-delay: calc(var(--i) * 30ms); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: clamp(48px, 5.5vw, 80px); padding-top: 36px; border-top: 1px solid var(--line); }
.stats__n { display: flex; align-items: baseline; gap: 8px; font-size: clamp(2.6rem, 4.6vw, 4.4rem); font-weight: 600; letter-spacing: -.05em; line-height: 1; }
.stats__n em { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: .5em; color: var(--fg-2); letter-spacing: 0; }
.stats__l { display: block; margin-top: 12px; color: var(--fg-3); font-size: .92rem; max-width: 22ch; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }

/* ---------- Piliers ---------- */
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pillar { position: relative; background: var(--bg-2); padding: clamp(28px, 3vw, 44px); overflow: hidden; }
[data-spot] { --mx: 50%; --my: 50%; }
[data-spot]::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .5s; background: radial-gradient(380px circle at var(--mx) var(--my), rgba(243,239,232,.075), transparent 60%); }
[data-spot]:hover::before { opacity: 1; }
.pillar__ico { width: 40px; height: 40px; fill: none; stroke: var(--fg); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 44px; }
.pillar__ico path, .pillar__ico circle, .pillar__ico rect { stroke-dasharray: 160; stroke-dashoffset: 160; transition: stroke-dashoffset 1.6s var(--ease-io); transition-delay: calc(var(--i, 0) * 120ms + .2s); }
.is-in .pillar__ico path, .is-in .pillar__ico circle, .is-in .pillar__ico rect { stroke-dashoffset: 0; }
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--fg-2); font-size: .98rem; }
@media (max-width: 900px) { .pillars__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { display: grid; grid-template-columns: 34px 1fr; gap: 4px 18px; align-items: start; padding: 22px 20px; }
  .pillar__ico { width: 34px; height: 34px; margin: 2px 0 0; grid-row: 1 / 3; }
  .pillar h3 { font-size: 1.15rem; margin-bottom: 6px; }
  .pillar p { font-size: .92rem; }
}

/* ---------- Résultats ---------- */
.proof__grid { display: grid; grid-template-columns: minmax(300px, 1fr) minmax(0, 1.35fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.proof__phone { position: relative; display: grid; justify-items: center; gap: 22px; position: sticky; top: calc(var(--nav-h) + 24px); }
.phone { position: relative; width: min(320px, 78vw); aspect-ratio: 9 / 19.2; border-radius: 48px; padding: 11px; background: #0a0a0a; box-shadow: 0 0 0 1.5px #2c2c2e, 0 0 0 5px #0a0a0a, 0 0 0 6px #1c1c1e, 0 60px 100px -20px rgba(0,0,0,.8), 0 0 120px -30px rgba(63,124,255,.35); cursor: pointer; transition: transform .8s var(--ease); }
.phone:hover { transform: translateY(-4px); }
.phone__screen { position: relative; width: 100%; height: 100%; border-radius: 38px; overflow: hidden; background: #000; }
.phone__video { width: 100%; height: 100%; object-fit: cover; }
.phone__island { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 96px; height: 28px; border-radius: 20px; background: #000; z-index: 2; }
.phone__play { position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; border-radius: 50%; background: rgba(243,239,232,.92); color: #000; display: grid; place-items: center; z-index: 3; transition: transform .5s var(--ease), opacity .4s; backdrop-filter: blur(6px); }
.phone__play svg { width: 28px; height: 28px; fill: currentColor; margin-left: 3px; }
.phone.is-playing .phone__play { opacity: 0; transform: scale(.6); pointer-events: none; }
.phone__bar { position: absolute; left: 16px; right: 16px; bottom: 14px; height: 2px; background: rgba(255,255,255,.22); border-radius: 2px; z-index: 3; overflow: hidden; }
.phone__bar span { display: block; height: 100%; width: 0; background: var(--fg); }
.proof__caption { text-align: center; max-width: 30ch; line-height: 1.6; }
.proof__float { position: absolute; display: grid; gap: 2px; padding: 14px 18px; border-radius: 16px; background: rgba(13,13,14,.82); border: 1px solid var(--line-2); backdrop-filter: blur(12px); box-shadow: 0 30px 60px -20px rgba(0,0,0,.7); }
.proof__float strong { font-size: 1.35rem; letter-spacing: -.03em; font-weight: 600; }
.proof__float--views { right: -10px; top: 60%; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 50% { transform: translateY(-10px); } }
.kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 24px; margin-bottom: clamp(40px, 5vw, 64px); }
.kpi { padding-left: 18px; border-left: 1px solid var(--line-2); }
.kpi__n { display: block; font-size: clamp(2.6rem, 4.2vw, 4rem); font-weight: 600; letter-spacing: -.05em; line-height: 1; }
.kpi__l { display: block; margin-top: 10px; color: var(--fg-2); font-size: .95rem; }
.kpi__l em { font-style: normal; color: var(--fg-3); }
.ba { display: grid; gap: 14px; }
.ba__frame { position: relative; aspect-ratio: 1290 / 613; border-radius: 18px; overflow: hidden; border: 1px solid var(--line-2); background: #000; user-select: none; touch-action: pan-y; cursor: ew-resize; }
.ba__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__before::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.18); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--fg); }
.ba__handle span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: var(--fg); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.5); }
.ba__handle span::before { content: ""; width: 14px; height: 8px; border-left: 2px solid #000; border-right: 2px solid #000; }
.ba__handle:focus-visible { outline: none; }
.ba__handle:focus-visible span { box-shadow: 0 0 0 4px var(--accent); }
.ba__tag { position: absolute; top: 14px; padding: 6px 10px; border-radius: 99px; background: rgba(7,7,7,.7); backdrop-filter: blur(6px); color: var(--fg); }
.ba__tag--l { left: 14px; } .ba__tag--r { right: 14px; color: var(--accent-2); }
.ba__caption { color: var(--fg-3); font-size: .88rem; }
.proof__quote { margin-top: clamp(32px, 4vw, 48px); padding-top: 28px; border-top: 1px solid var(--line); }
.proof__quote p { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem, 2.1vw, 2rem); line-height: 1.25; letter-spacing: -.01em; }
.proof__quote cite { display: block; margin-top: 16px; font-style: normal; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); }
@media (max-width: 900px) {
  .proof__grid { grid-template-columns: 1fr; }
  .proof__caption { max-width: none; }
  .proof__phone { position: relative; top: auto; }
  .proof__float--views { right: 0; top: 55%; }
  .kpis { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
}

/* ---------- Méthode (quatre colonnes) ---------- */
.method { padding: var(--section) 0; }
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 clamp(20px, 3vw, 48px); }
.steps::before { content: ""; position: absolute; left: 0; right: 0; top: 11px; height: 1px; background: var(--line-2); transform: scaleX(0); transform-origin: left; transition: transform 1.8s var(--ease-io) .2s; }
.steps.is-in::before { transform: scaleX(1); }
.step { position: relative; padding-top: 36px; }
.step::before { content: ""; position: absolute; left: 0; top: 6px; width: 11px; height: 11px; border-radius: 50%; background: var(--bg); border: 1px solid var(--accent); box-shadow: 0 0 14px rgba(255,59,48,.55); }
.step::after { content: ""; position: absolute; left: 3px; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.step__n { display: block; margin-bottom: 14px; color: var(--accent-2); font-size: .74rem; }
.step h3 { margin-bottom: 8px; font-size: clamp(1.3rem, 1.7vw, 1.6rem); }
.step__sub { margin-bottom: 14px; }
.step p:last-child { color: var(--fg-2); font-size: .96rem; max-width: 30ch; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; } .steps::before { display: none; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; gap: 0; } .step { padding: 22px 0 22px 34px; border-top: 1px solid var(--line); } .step:last-child { border-bottom: 1px solid var(--line); } .step::before { top: 28px; } .step::after { top: 31px; } .step p:last-child { max-width: none; } }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service { position: relative; min-height: 460px; padding: clamp(24px, 2.4vw, 36px); border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; }
.service__bg { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; object-fit: cover; opacity: .26; transform: scale(1.08); filter: saturate(.7); transition: opacity .8s var(--ease-io), transform 1.6s var(--ease), filter .8s; }
.service::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,7,7,.15), rgba(7,7,7,.94) 68%); opacity: .85; transition: opacity .8s; }
.service:hover .service__bg { opacity: 1; transform: none; filter: saturate(.9); }
.service:hover::after { opacity: 1; }
.service__n { position: absolute; top: clamp(24px, 2.4vw, 36px); left: clamp(24px, 2.4vw, 36px); }
.service h3 { font-size: clamp(1.7rem, 2.3vw, 2.3rem); margin-bottom: 10px; }
.service__tags { margin-bottom: 18px; color: var(--accent-2); }
.service p:last-child { color: var(--fg-2); font-size: .98rem; }
@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr; } .service { min-height: 360px; } .service__bg { opacity: .55; transform: none; } .service::after { opacity: 1; } }

/* ---------- Backstages (défilement horizontal) ---------- */
.bs { position: relative; padding: var(--section) 0 0; }
.bs__sticky { display: flex; flex-direction: column; gap: clamp(36px, 5vh, 64px); }
.bs__head { max-width: 900px; }
.bs__head p:not(.label) { color: var(--fg-2); margin-top: 22px; max-width: 62ch; font-size: 1.05rem; }
.bs__track { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 24px); padding: 0 var(--pad) 40px; width: max-content; will-change: transform; }
.bs__panel { position: relative; flex: none; height: clamp(360px, 58vh, 620px); border-radius: var(--radius); overflow: hidden; background: var(--bg-3); }
.bs__panel--tall { aspect-ratio: 3 / 4; }
.bs__panel--wide { aspect-ratio: 4 / 3; }
.bs__panel img { width: 110%; height: 100%; object-fit: cover; margin-left: -5%; transition: transform 1.2s var(--ease); }
.bs__panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,7,7,.75)); }
.bs__panel--blue::before, .bs__panel--orange::before { content: ""; position: absolute; inset: 0; z-index: 1; mix-blend-mode: soft-light; opacity: .55; pointer-events: none; }
.bs__panel--orange::before { opacity: .35; }
.bs__panel--blue::before { background: var(--blue); }
.bs__panel--orange::before { background: var(--accent); }
.bs__panel figcaption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; display: grid; gap: 6px; font-size: 1rem; font-weight: 500; letter-spacing: -.01em; }
.bs__panel figcaption .mono { color: var(--fg-2); }
.bs__panel--blue figcaption .mono { color: #9dbcff; }
.bs__panel--orange figcaption .mono { color: var(--accent-2); }
.bs__split { flex: none; width: clamp(240px, 26vw, 380px); padding: 0 16px; font-size: clamp(1.8rem, 2.8vw, 3rem); font-weight: 600; letter-spacing: -.04em; line-height: 1.02; }
.bs__split em { color: var(--fg-2); }
.bs__end { flex: none; width: clamp(320px, 38vw, 560px); padding: 0 24px 0 40px; display: grid; gap: 22px; justify-items: start; }
.bs__end h3 { font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.04em; line-height: .98; }
@media (min-width: 901px) {
  .has-gsap .bs { padding: 0; }
  .has-gsap .bs__sticky { position: sticky; top: 0; height: 100vh; justify-content: center; overflow: hidden; padding-top: var(--nav-h); }
  .has-gsap .bs__panel { height: clamp(320px, 50vh, 600px); }
  .has-gsap .bs__head { max-width: none; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 0 64px; align-items: end; }
  .has-gsap .bs__head .label { grid-column: 1 / -1; }
  .has-gsap .bs__head p:not(.label) { margin-top: 0; margin-bottom: .3em; }
}
@media (max-width: 900px) {
  .bs__track { overflow-x: auto; width: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 24px; }
  .bs__track::-webkit-scrollbar { display: none; }
  .bs__panel, .bs__split, .bs__end { scroll-snap-align: center; }
  .bs__panel--tall { height: min(108vw, 540px); }
  .bs__panel--wide { height: min(64vw, 400px); }
  .bs__panel figcaption { left: 16px; right: 16px; bottom: 16px; font-size: .92rem; }
  .bs__split { width: 60vw; }
  .bs__end { width: 82vw; }
}
.bs__head { width: min(100% - 2 * var(--pad), var(--max)); margin-inline: auto; }
.bs__hint { display: none; align-items: center; gap: 8px; margin-top: 18px; color: var(--fg-2); }
.bs__hint svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateX(6px); } }
.mcta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 700; padding: 14px var(--pad) calc(12px + env(safe-area-inset-bottom, 0px)); background: linear-gradient(180deg, rgba(7,7,7,0), rgba(7,7,7,.94) 45%); transform: translateY(110%); visibility: hidden; transition: transform .6s var(--ease), visibility .6s; }
.mcta.is-on { transform: none; visibility: visible; }
.mcta .btn { width: 100%; height: 54px; box-shadow: 0 14px 40px rgba(0,0,0,.55); }

/* ---------- Offres ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; gap: 26px; padding: clamp(26px, 2.6vw, 40px); border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.plan--featured { border-color: rgba(255,123,114,.45); background: linear-gradient(180deg, rgba(255,59,48,.10), rgba(13,13,14,1) 55%); }
.plan__tag { position: absolute; top: 20px; right: 20px; padding: 6px 10px; border-radius: 99px; background: var(--accent); color: #fff; font-size: .62rem; }
.plan__head { display: grid; gap: 10px; }
.plan__name { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--fg); }
.plan__promise { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; line-height: 1.15; color: var(--fg-2); }
.plan__price { display: flex; align-items: baseline; gap: 12px; }
.plan__amount { font-size: clamp(2.6rem, 3.6vw, 3.6rem); font-weight: 600; letter-spacing: -.05em; line-height: 1; }
.plan__facts { display: grid; border-top: 1px solid var(--line); }
.plan__facts li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.plan__facts span { color: var(--fg-3); }
.plan__facts strong { font-weight: 500; text-align: right; }
.plan__inc { display: grid; gap: 10px; flex: 1; }
.plan__inc li { position: relative; padding-left: 22px; color: var(--fg-2); font-size: .95rem; }
.plan__inc li::before { content: ""; position: absolute; left: 0; top: .55em; width: 10px; height: 6px; border-left: 1.5px solid var(--accent-2); border-bottom: 1.5px solid var(--accent-2); transform: rotate(-45deg); }
.plan .btn { width: 100%; }
.plus { position: relative; margin-top: 16px; padding: clamp(28px, 3.6vw, 56px); border-radius: var(--radius); border: 1px solid rgba(255,59,48,.5); background: linear-gradient(120deg, rgba(255,59,48,.16), rgba(13,13,14,1) 62%); overflow: hidden; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px 56px; align-items: center; }
.plus::after { content: ""; position: absolute; top: -45%; left: -8%; width: 55%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,59,48,.32), transparent 65%); filter: blur(40px); pointer-events: none; }
.plus__body { position: relative; z-index: 1; }
.plus .label { font-size: .8rem; color: var(--accent-2); }
.plus__title { font-size: clamp(1.7rem, 3.3vw, 3.1rem); letter-spacing: -.035em; line-height: 1.02; margin: 2px 0 16px; max-width: 22ch; }
.plus__txt { color: var(--fg-2); max-width: 62ch; font-size: 1.02rem; }
.plus .btn { position: relative; z-index: 1; white-space: nowrap; }
.note--wide { margin-top: 16px; }
.pricing__notes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.note { padding: clamp(24px, 2.4vw, 32px); border-radius: var(--radius); border: 1px dashed var(--line-2); }
.note .label { margin-bottom: 10px; }
.note p { color: var(--fg-2); font-size: .98rem; }
.pricing__legal { margin-top: 28px; text-transform: none; letter-spacing: .04em; font-size: .74rem; }
@media (max-width: 1000px) { .plans { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } .plus { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } .plus .btn { width: 100%; } .note--wide { max-width: 560px; margin-inline: auto; } .pricing__notes { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* ---------- Témoignages ---------- */
.testi__grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.testi__card { position: relative; display: grid; gap: 22px; padding: clamp(24px, 2.4vw, 36px); border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.testi__card--lead { grid-row: 1 / 3; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: end; gap: 32px; }
.testi__photo { border-radius: 16px; overflow: hidden; aspect-ratio: 3 / 4; background: var(--bg-3); }
.testi__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.05); transition: filter .8s, transform 1.4s var(--ease); }
.testi__card:hover .testi__photo img { filter: none; transform: scale(1.04); }
.testi__photo--sm { aspect-ratio: 1; width: 96px; border-radius: 50%; }
.testi__card:not(.testi__card--lead) { grid-template-columns: 96px 1fr; align-items: start; }
.testi__body { display: grid; gap: 18px; }
.testi__mark { width: 36px; fill: var(--accent); }
.testi__card--lead .testi__body p { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.25rem, 1.7vw, 1.6rem); line-height: 1.3; }
.testi__card:not(.testi__card--lead) .testi__body p { color: var(--fg-2); font-size: 1rem; }
.testi__body footer { display: grid; gap: 4px; }
.testi__body footer strong { font-weight: 600; letter-spacing: -.01em; }
@media (max-width: 900px) {
  .testi__grid { grid-template-columns: 1fr; }
  .testi__card--lead { grid-row: auto; grid-template-columns: 1fr; }
  .testi__card--lead .testi__photo { max-width: 260px; }
}

/* ---------- Qui suis-je ---------- */
.founder { padding: var(--section) 0; }
.founder__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 6vw, 112px); align-items: center; }
.founder__visual { position: relative; isolation: isolate; }
.founder__visual::before { content: ""; position: absolute; inset: -12% -22%; z-index: -1; background: radial-gradient(closest-side at 38% 35%, rgba(255,60,60,.30), transparent 72%); filter: blur(50px); pointer-events: none; }
.founder__photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--bg-3); border: 1px solid var(--line); }
.founder__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.founder__photo:hover img { transform: scale(1.03); }
.founder__photo figcaption { position: absolute; left: 18px; bottom: 16px; padding: 8px 12px; border-radius: 99px; background: rgba(7,7,7,.6); backdrop-filter: blur(8px); color: var(--fg); }
.founder__corner { position: absolute; width: 18px; height: 18px; border: 1px solid rgba(243,239,232,.6); z-index: 2; }
.founder__corner--tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.founder__corner--br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
.founder__text h2 { margin-bottom: 28px; }
.founder__lead { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.5rem, 2.2vw, 2.1rem); line-height: 1.2; margin-bottom: 20px; }
.founder__text p:not(.label):not(.founder__lead) { color: var(--fg-2); margin-bottom: 16px; max-width: 58ch; }
.founder__text .chips { margin-top: 28px; }
.founder__text .btn { margin-top: 32px; }
@media (max-width: 900px) { .founder__grid { grid-template-columns: 1fr; } .founder__photo { max-width: 420px; } }

/* ---------- Instagram ---------- */
.insta { padding: 0 0 var(--section); }
.lp { padding: 0 0 var(--section); }
.insta__card--lp strong { font-size: clamp(1.35rem, 2vw, 1.9rem); letter-spacing: -.025em; line-height: 1.1; }
.lp__grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 6px; }
.lp__grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); filter: saturate(.85) brightness(.92); transition: filter .6s, transform .9s var(--ease); }
.insta__card--lp:hover .lp__grid img { filter: none; transform: translateY(-3px); }
.lp__grid img:nth-child(2) { transition-delay: .05s; } .lp__grid img:nth-child(3) { transition-delay: .1s; } .lp__grid img:nth-child(4) { transition-delay: .15s; }
@media (max-width: 900px) { .lp__grid { grid-template-columns: 1fr 1fr; gap: 10px; } }
.insta__card { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(20px, 3vw, 48px); padding: clamp(24px, 3vw, 40px); border-radius: var(--radius); border: 1px solid var(--line-2); background: var(--bg-2); overflow: hidden; transition: border-color .4s, transform .6s var(--ease); }
.insta__card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(640px circle at 12% 50%, rgba(255,59,48,.18), transparent 60%); opacity: .7; transition: opacity .6s; pointer-events: none; }
.insta__card:hover { border-color: rgba(255,123,114,.6); transform: translateY(-3px); }
.insta__card:hover::before { opacity: 1; }
.insta__icon { width: 76px; height: 76px; border-radius: 22px; display: grid; place-items: center; border: 1px solid var(--line-2); background: rgba(243,239,232,.04); color: var(--fg); }
.insta__icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.insta__body { display: grid; gap: 6px; }
.insta__body .label { margin-bottom: 4px; }
.insta__body strong { font-size: clamp(1.5rem, 2.4vw, 2.3rem); font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.insta__body > span:last-child { color: var(--fg-2); max-width: 52ch; }
@media (max-width: 900px) { .insta__card { grid-template-columns: 1fr; } .insta__card .btn { width: 100%; } }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq__left { position: sticky; top: calc(var(--nav-h) + 32px); display: grid; gap: 22px; justify-items: start; }
.faq__left p:not(.label) { color: var(--fg-2); }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; text-align: left; font-size: clamp(1.1rem, 1.5vw, 1.4rem); font-weight: 500; letter-spacing: -.02em; transition: color .3s; }
.faq__q:hover { color: var(--accent-2); }
.faq__q i { position: relative; flex: none; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); transition: transform .6s var(--ease), background .4s, border-color .4s; }
.faq__q i::before, .faq__q i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 1.5px; background: var(--fg); transform: translate(-50%, -50%); transition: transform .5s var(--ease); }
.faq__q i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__q[aria-expanded="true"] i { transform: rotate(45deg); background: var(--fg); border-color: var(--fg); }
.faq__q[aria-expanded="true"] i::before, .faq__q[aria-expanded="true"] i::after { background: #000; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .7s var(--ease); }
.faq__a > div { padding: 0 0 28px; color: var(--fg-2); max-width: 62ch; }
.faq__steps { display: grid; gap: 12px; counter-reset: s; }
.faq__steps li { position: relative; padding-left: 32px; counter-increment: s; }
.faq__steps li::before { content: counter(s, decimal-leading-zero); position: absolute; left: 0; top: .25em; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; color: var(--accent-2); }
.faq__steps strong { color: var(--fg); font-weight: 500; }
@media (max-width: 900px) { .faq__grid { grid-template-columns: 1fr; } .faq__left { position: relative; top: auto; } }

/* ---------- Contact / Audit ---------- */
.contact { border-top: 1px solid var(--line); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 112px); align-items: start; }
.contact__left { display: grid; gap: 24px; justify-items: start; }
.contact__left p:not(.label):not(.mono) { color: var(--fg-2); max-width: 52ch; font-size: 1.08rem; }
.contact__meta { text-transform: none; letter-spacing: .04em; line-height: 1.8; }
.form { display: grid; gap: 14px; padding: clamp(24px, 2.6vw, 40px); border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { position: relative; }
.field input, .field textarea { width: 100%; background: var(--bg-3); border: 1px solid var(--line); border-radius: 14px; color: var(--fg); padding: 26px 18px 10px; font: inherit; font-size: 1rem; outline: none; transition: border-color .3s, background .3s; resize: vertical; }
.field textarea { min-height: 130px; }
.field label { position: absolute; left: 18px; top: 18px; color: var(--fg-3); font-size: 1rem; pointer-events: none; transition: transform .3s var(--ease), font-size .3s, color .3s; transform-origin: left top; }
.field input:focus, .field textarea:focus { border-color: var(--fg-2); background: #191a1c; }
.field input:focus + label, .field input:not(:placeholder-shown) + label, .field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { transform: translateY(-11px); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-2); }
.field.is-error input { border-color: #ff5a5a; }
.form__foot { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 20px; margin-top: 8px; }
.form__note { text-transform: none; letter-spacing: .04em; line-height: 1.6; }
.form__status { min-height: 1.4em; color: var(--accent-2); font-size: .95rem; }
.form.is-sent .form__row, .form.is-sent .field--area, .form.is-sent .form__foot { display: none; }
.form.is-sent .form__status { font-size: 1.15rem; color: var(--fg); padding: 24px 0; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } .form__row { grid-template-columns: 1fr; } .form__foot { grid-template-columns: 1fr; } .form__foot .btn { width: 100%; } }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 80px) 0 28px; background: var(--bg); overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__col { display: grid; gap: 14px; align-content: start; }
.footer__col p { color: var(--fg-2); font-size: .95rem; max-width: 36ch; }
.footer__col .label { margin-bottom: 4px; }
.footer__col ul { display: grid; gap: 8px; }
.footer__col li a { color: var(--fg-2); font-size: .95rem; transition: color .3s; }
.footer__col li a:hover { color: var(--fg); }
.footer__logo { height: 34px; width: auto; }
.footer__big { display: flex; justify-content: space-between; margin-top: clamp(40px, 5vw, 72px); font-weight: 800; font-size: clamp(4rem, 15vw, 15rem); letter-spacing: -.06em; line-height: .78; color: var(--fg); opacity: .08; user-select: none; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px 24px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); text-transform: none; letter-spacing: .04em; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--fg); }
.footer__credit { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.footer__credit .mono { text-transform: none; letter-spacing: .04em; }
.footer__credit a { display: inline-flex; opacity: .85; transition: opacity .3s, transform .5s var(--ease); }
.footer__credit a:hover { opacity: 1; transform: translateY(-2px); }
.footer__credit img { height: 30px; width: auto; }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__big { flex-direction: column; font-size: 27vw; line-height: .82; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- Mobile : surcharges finales (après toutes les règles de base) ---------- */
@media (max-width: 900px) {
  .grain { display: none; }
  .gel span { filter: blur(70px); }
  .bs__hint { display: flex; }
  .mcta { display: block; }
}
@media (max-width: 600px) {
  .hero__title { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  .btn--hero { width: 100%; }
}
@media (max-width: 900px) {
  .founder__text .btn { display: flex; width: max-content; margin: 36px auto 0; }
}

/* Mobile : titres centrés, hero centré, voile renforcé */
@media (max-width: 900px) {
  main .label { display: flex; justify-content: center; width: 100%; }
  .note .label { display: inline-flex; width: auto; }
  .section-head, .bs__head, .faq__left, .contact__left, .cast__lead, .manifesto__text, .method__left > h2, .founder__text > h2, .founder__lead, .insta__card, .testi .section-head { text-align: center; }
  .section-head__txt, .bs__head p:not(.label), .faq__left p, .contact__left p, .manifesto__text, .founder__lead { margin-inline: auto; }
  .faq__left, .contact__left, .insta__card, .insta__body { justify-items: center; }
  .chips, .bs__hint { justify-content: center; }
  .stats li { text-align: center; }
  .stats__n { justify-content: center; }
  .stats__l { margin-inline: auto; }
  .hero__content, .hero__bottom { text-align: center; justify-items: center; }
  .hero__title, .hero__kicker, .hero__sub { margin-inline: auto; }
  .hero__cta, .hero__chips { justify-content: center; }
  .hero__shade { background: linear-gradient(180deg, rgba(7,7,7,.72) 0%, rgba(7,7,7,.58) 40%, rgba(7,7,7,.78) 78%, var(--bg) 100%); }
  .hero__shade::after { background: rgba(7,7,7,.22); }
}

/* Mobile : casting en nuage de pastilles */
@media (max-width: 900px) {
  .cast { padding: clamp(40px, 6vw, 64px) 0; }
  .cast__grid { gap: 26px; }
  .cast__line { font-size: clamp(1.6rem, 6.4vw, 2.2rem); }
  .cast__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 460px; margin-inline: auto; }
  .cast__list li { padding: 9px 14px; gap: 0; border: 1px solid var(--line-2); border-radius: 99px; font-size: .9rem; line-height: 1.2; color: var(--fg-2); transition: background .5s, border-color .5s, color .5s, box-shadow .5s, transform .5s var(--ease); }
  .cast__list li .mono, .cast__list li i { display: none; }
  .cast__list li.is-on { border-color: var(--accent); background: rgba(255,59,48,.14); color: var(--fg); box-shadow: 0 0 24px rgba(255,59,48,.3); transform: translateY(-2px); }
  .cast__list li em { font-size: 1.05em; }
}

/* Mobile : footer, navigation en grille sur trois colonnes */
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .footer__col--brand { grid-column: 1 / -1; order: -2; }
  .footer__col:nth-child(3) { grid-column: 1 / -1; order: -1; }
  .footer__col:nth-child(3) ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 12px; }
}

/* ---------- Popup Calendly ---------- */
.modal { position: fixed; inset: 0; z-index: 9500; display: grid; place-items: center; padding: 20px; opacity: 0; transition: opacity .4s; }
.modal.is-open { opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(7,7,7,.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.modal__panel { position: relative; width: min(980px, 100%); max-height: calc(100vh - 40px); max-height: calc(100dvh - 40px); display: flex; flex-direction: column; background: #1a1a1a; border: 1px solid var(--line-2); border-radius: var(--radius); box-shadow: 0 40px 120px -20px rgba(0,0,0,.8); overflow: hidden; transform: translateY(24px) scale(.98); transition: transform .6s var(--ease); }
.modal.is-open .modal__panel { transform: none; }
.modal__close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(26,26,26,.9); display: grid; place-items: center; transition: background .3s, color .3s, transform .5s var(--ease); }
.modal__close:hover { background: var(--fg); color: #000; transform: rotate(90deg); }
.modal__close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
.modal__head { padding: 26px 76px 18px 28px; border-bottom: 1px solid var(--line); }
.modal__head .label { margin-bottom: 10px; }
.modal__head h3 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); }
.modal__body { flex: 1; min-height: 0; overflow: auto; -webkit-overflow-scrolling: touch; }
.modal__widget { position: relative; min-width: 320px; height: 700px; }
.modal__widget iframe { display: block; }
.modal__loading { position: absolute; inset: 0; display: grid; place-items: center; }
.modal__widget.is-ready .modal__loading { display: none; }
@media (max-width: 900px) {
  .modal { padding: 0; }
  .modal__panel { width: 100%; height: 100%; max-height: none; border-radius: 0; border: 0; }
  .modal__head { padding: 22px 70px 14px 20px; }
  .modal__widget { height: calc(100dvh - 130px); min-height: 560px; }
}

/* ---------- Mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .rv, .l__in { opacity: 1; transform: none; }
  .grain { display: none; }
  .hero__media::before { animation: none; }
}
