/* =====================================================================
   Clic and Connect — home.css
   « Atelier en fusion » — scène obsidienne cinématographique, métal en
   fusion WebGL, chaleur de forge bronze→ambre. Autonome (FR).
   Seed 02e1f084 · mode persuade · monde épinglé par le client.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Obsidienne indigo */
  --bg:        #0B0B16;
  --bg-2:      #0D0E1B;
  --bg-3:      #10111F;
  --panel:     #141527;
  --panel-2:   #1A1B30;
  --glass:     rgba(20, 21, 40, 0.62);
  --glass-2:   rgba(28, 30, 54, 0.7);

  /* Filets sur obsidienne */
  --line:      rgba(237, 235, 247, 0.10);
  --line-2:    rgba(237, 235, 247, 0.17);
  --line-heat: rgba(139, 124, 255, 0.30);

  /* Encre claire (teintée froide) */
  --ink:       #ECEAF6;
  --ink-soft:  #9B9AB8;   /* secondaire, teinté violet — jamais gris neutre */
  --ink-warm:  #BBB6DA;   /* légendes, labels */
  --ink-dim:   #8A8AA6;

  /* Accent neural indigo/violet (unique porteur) */
  --heat:      #8B7CFF;   /* violet clair — grand affichage, fills, filets */
  --heat-2:    #6366F1;   /* indigo — liens, connexions */
  --heat-deep: #4F46E5;   /* indigo profond */
  --heat-core: #C4B5FD;   /* cœur clair, hautes lumières */
  --heat-txt:  #A99CFF;   /* petit texte violet sur obsidienne (AA) */

  /* Profondeur */
  --sh-1: 0 2px 10px rgba(0,0,0,.45);
  --sh-2: 0 18px 48px -14px rgba(0,0,0,.72);
  --sh-3: 0 40px 90px -30px rgba(0,0,0,.85);
  --sh-glass: 0 30px 80px -24px rgba(0,0,0,.78), inset 0 1px 0 rgba(242,238,230,.07);
  --bloom: 0 26px 70px -22px rgba(124,110,255,.42);

  /* Type */
  --f-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --f-body:    "Libre Franklin", "Segoe UI", system-ui, sans-serif;
  --f-mono:    "Spline Sans Mono", ui-monospace, "SFMono-Regular", monospace;

  --wrap: 1200px;
  --pad: clamp(1.15rem, 4.4vw, 3rem);
  --head-h: 72px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; font-family: var(--f-display); font-weight: 700; letter-spacing: -0.03em; line-height: 1.02; text-wrap: balance; }
p { margin: 0; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: var(--heat); color: #10130c; }
:focus-visible { outline: 2px solid var(--heat); outline-offset: 3px; border-radius: 2px; }
::placeholder { color: var(--ink-dim); }

/* Fond global : obsidienne + très légère braise en pied */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 80% at 50% -10%, #14142c 0%, var(--bg) 55%, #06060e 100%);
}
body::after {
  content: "";
  position: fixed; left: 0; right: 0; bottom: 0; height: 42vh; z-index: -1;
  background: radial-gradient(60% 100% at 50% 130%, rgba(79,70,229,.16), transparent 70%);
  pointer-events: none;
}

/* Scrollbar thématisée */
* { scrollbar-width: thin; scrollbar-color: var(--heat-2) var(--bg-2); }
*::-webkit-scrollbar { width: 11px; height: 11px; }
*::-webkit-scrollbar-track { background: var(--bg-2); }
*::-webkit-scrollbar-thumb { background: linear-gradient(var(--heat-2), var(--heat-deep)); border-radius: 20px; border: 3px solid var(--bg-2); }
*::-webkit-scrollbar-thumb:hover { background: var(--heat); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.spread { padding-block: clamp(4.5rem, 9vw, 8rem); }
.plate { position: relative; }

.skip-link {
  position: fixed; top: -100px; left: 12px; z-index: 200;
  background: var(--heat); color: #10130c; padding: .6rem 1rem; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 12px; }

/* ---------- Masthead ---------- */
.masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  height: var(--head-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease), box-shadow .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.masthead .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.masthead.is-fixed {
  background: var(--glass);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--line);
  box-shadow: var(--sh-1);
}
.wordmark { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--f-display); font-weight: 700; font-size: 1.06rem; letter-spacing: -0.02em; color: var(--ink); }
.wordmark .dc {
  display: inline-grid; place-items: center; width: 34px; height: 34px;
  font-size: .82rem; letter-spacing: .02em;
  color: var(--heat-core);
  background: radial-gradient(120% 120% at 30% 20%, rgba(139,124,255,.22), rgba(79,70,229,.06));
  border: 1px solid var(--line-heat); border-radius: 9px;
  box-shadow: inset 0 1px 0 rgba(196,181,253,.18);
}
.w-mark { color: var(--heat); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav-l { position: relative; color: var(--ink-soft); font-size: .95rem; font-weight: 500; transition: color .25s var(--ease); }
.nav-l::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 100%; background: var(--heat); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-l:hover { color: var(--ink); } .nav-l:hover::after { transform: scaleX(1); }

/* ---------- Boutons ---------- */
.btn {
  --_bg: transparent;
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-body); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .82rem 1.35rem; border-radius: 12px; border: 1px solid var(--line-2);
  color: var(--ink); background: var(--_bg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.btn .btn-ar { transition: transform .3s var(--ease); }
.btn:hover .btn-ar { transform: translateX(4px); }
.btn--mark {
  color: #14100a; border-color: transparent;
  background: linear-gradient(135deg, var(--heat-core), var(--heat) 42%, var(--heat-2));
  box-shadow: var(--bloom), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--mark:hover { transform: translateY(-2px); box-shadow: 0 30px 70px -20px rgba(124,110,255,.55), inset 0 1px 0 rgba(255,255,255,.4); }
.btn--ghost { background: rgba(242,238,230,.03); }
.btn--ghost:hover { border-color: var(--line-heat); background: rgba(139,124,255,.06); }
.nav-cta { padding: .6rem 1.05rem; font-size: .92rem; }

/* ---------- Menu mobile ---------- */
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 10px; background: rgba(242,238,230,.03); position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; } .nav-toggle span:nth-child(2) { top: 21px; } .nav-toggle span:nth-child(3) { top: 27px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-scrim { position: fixed; inset: 0; z-index: 80; background: rgba(5,7,10,.6); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
.nav-open .nav-scrim { opacity: 1; visibility: visible; }
.nav-drawer {
  position: fixed; top: 0; right: 0; z-index: 85; height: 100dvh; width: min(82vw, 360px);
  background: linear-gradient(180deg, var(--panel-2), var(--bg-2));
  border-left: 1px solid var(--line-heat);
  box-shadow: -30px 0 80px rgba(0,0,0,.6);
  padding: calc(var(--head-h) + 1.4rem) clamp(1.4rem,5vw,2.2rem) 2rem;
  display: flex; flex-direction: column; gap: .3rem;
  transform: translateX(102%); transition: transform .42s var(--ease);
}
.nav-open .nav-drawer { transform: translateX(0); }
.nav-drawer a { display: flex; align-items: baseline; gap: .9rem; padding: 1rem 0; font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); transition: color .2s var(--ease), transform .25s var(--ease); }
.nav-drawer a:hover { color: var(--heat); transform: translateX(7px); }
.nav-drawer .idx { font-family: var(--f-mono); font-size: .82rem; color: var(--heat-txt); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; } .reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; } .reveal.d4 { transition-delay: .36s; }

/* ---------- Folio / sommaire ---------- */
.folio { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--f-mono); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.1rem; }
.folio-n { display: inline-grid; place-items: center; min-width: 26px; height: 26px; padding: 0 .35rem; color: var(--heat-core); background: rgba(139,124,255,.08); border: 1px solid var(--line-heat); border-radius: 6px; font-size: .8rem; }
.mark-ink { color: var(--heat); }
.mark { color: var(--heat); }

.h-sect { font-size: clamp(1.9rem, 1.2rem + 3vw, 3.4rem); font-weight: 700; }
.lead { margin-top: 1.1rem; max-width: 48ch; color: var(--ink-soft); font-size: 1.1rem; }
.spread-head { margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }

/* =====================================================================
   HERO — scène en fusion
   ===================================================================== */
.cover {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: calc(var(--head-h) + 3vh);
  padding-bottom: clamp(2rem, 5vh, 4rem);
}
.cover .wrap { min-width: 0; }
.cover-grid { min-width: 0; }
.forge-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; opacity: 0; transition: opacity 1.2s ease; }
.forge-canvas.is-live { opacity: 1; }
/* Repli statique (WebGL absent / reduced-motion) */
.cover { background:
    radial-gradient(68% 58% at 66% 34%, rgba(139,124,255,.10), transparent 62%),
    linear-gradient(180deg, #0d0d20, #06060e);
}
.forge-veil {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,9,13,.82) 0%, rgba(7,9,13,.45) 42%, transparent 72%),
    linear-gradient(0deg, rgba(7,9,13,.9) 2%, transparent 42%);
}
.cover .wrap { width: 100%; }
.cover-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(240px, .7fr); gap: clamp(1.6rem, 4vw, 4.5rem); align-items: end; }
.cover-copy { min-width: 0; }
.cover-portrait { justify-self: end; width: min(100%, 400px); margin-bottom: .4rem; }
.cover-portrait img { aspect-ratio: 4 / 5; }
.cover-fields { list-style: none; margin: clamp(1.1rem, 2vw, 1.5rem) 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.cover-fields a {
  display: inline-block; padding: .5rem .9rem; border-radius: 999px; font-size: .9rem; font-weight: 500; color: var(--ink);
  background: rgba(242,238,230,.04); border: 1px solid var(--line-2); transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.cover-fields a:hover { border-color: var(--line-heat); background: rgba(139,124,255,.10); color: var(--heat-core); }
.cover-tag { font-family: var(--f-mono); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-warm); margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.display {
  font-size: clamp(2.2rem, 1rem + 4.4vw, 4.9rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 0.98;
  text-shadow: 0 2px 40px rgba(0,0,0,.55);
  overflow-wrap: break-word;
}
.display .set { display: block; }
.display .mark-ink {
  color: var(--heat);
  /* métal incandescent : couleur pleine + halo de chaleur, pas un gradient-text */
  text-shadow: 0 0 34px rgba(139,124,255,.5), 0 0 6px rgba(196,181,253,.35);
}
.cover-lead { margin-top: clamp(1.3rem, 2.5vw, 1.9rem); max-width: 56ch; font-size: clamp(1.05rem, 1rem + .4vw, 1.24rem); color: #D9D7CF; }
.cover-lead em { color: var(--heat-txt); font-style: normal; }
.cover-actions { margin-top: clamp(1.8rem, 3vw, 2.6rem); display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); flex-wrap: wrap; }
.cover-phone { color: var(--ink-soft); font-size: .98rem; }
.cover-phone b { color: var(--ink); font-family: var(--f-mono); }
.cover-phone:hover b { color: var(--heat-txt); }

.cover-foot { margin-top: clamp(2.4rem, 5vw, 4rem); display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.facts { display: flex; gap: clamp(1.4rem, 4vw, 3.4rem); }
.fact { display: flex; flex-direction: column; }
.fact b { font-family: var(--f-display); font-size: clamp(1.8rem, 1.2rem + 2vw, 2.7rem); font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.fact span { margin-top: .35rem; font-size: .8rem; color: var(--ink-soft); letter-spacing: .01em; }

.sig { width: 168px; height: auto; overflow: visible; }
.sig path { fill: none; stroke: var(--heat); stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 8px rgba(139,124,255,.4)); }
.sig-cap { margin-top: .3rem; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }

.scroll-cue { position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%); z-index: 3; display: inline-flex; flex-direction: column; align-items: center; gap: .55rem; color: var(--ink-soft); }
.scroll-cue-txt { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; }
.scroll-cue-line { width: 1px; height: 46px; background: linear-gradient(var(--heat), transparent); position: relative; overflow: hidden; }
.scroll-cue-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--heat-core); animation: cueRun 2.2s var(--ease) infinite; }
@keyframes cueRun { 0% { top: -55%; } 70%,100% { top: 105%; } }
.scroll-cue:hover { color: var(--ink); }

/* =====================================================================
   THÈSE
   ===================================================================== */
.thesis { display: grid; gap: clamp(2.4rem, 5vw, 4rem); }
.statement { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.7rem, 1.1rem + 2.6vw, 3rem); letter-spacing: -.035em; line-height: 1.06; max-width: 20ch; }
.statement em { color: var(--heat); font-style: normal; }
.triad { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 2rem); }
.step {
  position: relative; padding: clamp(1.5rem, 2.4vw, 2.2rem);
  background: linear-gradient(180deg, rgba(23,28,40,.7), rgba(15,19,27,.5));
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--sh-2); overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.step::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--heat), transparent); opacity: .5; }
.step:hover { transform: translateY(-4px); border-color: var(--line-heat); }
.step .n { font-family: var(--f-mono); font-size: .84rem; color: var(--heat-txt); letter-spacing: .1em; }
.step h3 { margin: .9rem 0 .55rem; font-size: 1.5rem; font-weight: 700; }
.step .d { color: var(--ink-soft); font-size: .98rem; line-height: 1.6; }

/* =====================================================================
   TRAVAUX — vitrine
   ===================================================================== */
.works { border-top: 1px solid var(--line); }
.showcase { --sc-int: 3800ms; margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.showcase-stage {
  position: relative; border-radius: 22px; padding: clamp(1.6rem, 4vw, 3.6rem);
  background:
    radial-gradient(90% 120% at 50% -10%, rgba(139,124,255,.12), transparent 55%),
    linear-gradient(180deg, rgba(23,28,40,.62), rgba(12,15,22,.62));
  border: 1px solid var(--line-2);
  box-shadow: var(--sh-glass);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  perspective: 1400px; overflow: hidden;
}
.showcase-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 60% at 50% 120%, rgba(79,70,229,.16), transparent 70%); }
.devices { position: relative; transform-style: preserve-3d; transition: transform .35s var(--ease); cursor: pointer; will-change: transform; }
.devices.is-clickable:focus-visible { outline: 2px solid var(--heat); outline-offset: 8px; border-radius: 10px; }
.laptop-device { position: relative; transform-style: preserve-3d; transition: transform .35s var(--ease); }
.browser { border-radius: 12px; overflow: hidden; background: #0c0f15; border: 1px solid var(--line-2); box-shadow: var(--sh-3); }
.browser-bar { display: flex; align-items: center; gap: .5rem; padding: .6rem .9rem; background: linear-gradient(180deg,#191e29,#12161f); border-bottom: 1px solid var(--line); }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; background: #333b4b; }
.browser-dot:nth-child(1){ background:#6366F1; } .browser-dot:nth-child(2){ background:#3a3b58; } .browser-dot:nth-child(3){ background:#2a2c44; }
.browser-url { margin-left: .6rem; padding: .22rem .7rem; font-family: var(--f-mono); font-size: .74rem; color: var(--ink-soft); background: rgba(0,0,0,.35); border-radius: 20px; }
.browser-screen { position: relative; aspect-ratio: 16/10; background: #05070a; }
.browser-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: opacity .28s var(--ease), transform .5s var(--ease); }
.phone { position: absolute; right: -2%; bottom: -8%; width: 22%; min-width: 96px; transform-style: preserve-3d; transition: transform .35s var(--ease); }
.phone-screen { position: relative; aspect-ratio: 9/19.5; border-radius: 20px; overflow: hidden; background: #05070a; border: 2px solid #23293a; box-shadow: var(--sh-3); }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: opacity .28s var(--ease); }
.phone-island { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 34%; height: 9px; background: #05070a; border-radius: 20px; }
.phone-gloss { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,.10), transparent 40%); pointer-events: none; }
.is-swapping .browser-screen img, .is-swapping .phone-screen img { opacity: 0; transform: scale(1.02); }

.showcase-info { margin-top: clamp(1.6rem, 3vw, 2.4rem); display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.sc-kind { font-family: var(--f-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--heat-txt); }
.showcase-title { margin: .5rem 0 .4rem; font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.4rem); font-weight: 700; }
.showcase-desc { color: var(--ink-soft); max-width: 46ch; }
.sc-open { display: inline-flex; align-items: center; gap: .4rem; margin-top: .9rem; color: var(--heat-txt); font-weight: 600; border-bottom: 1px solid var(--line-heat); padding-bottom: 2px; transition: gap .25s var(--ease), color .25s var(--ease); }
.sc-open:hover { gap: .7rem; color: var(--heat-core); }
.sc-controls { display: flex; }
[data-sc-tabs] { display: flex; gap: .55rem; }
.sc-dot { width: 40px; height: 5px; padding: 0; border: none; border-radius: 20px; background: rgba(242,238,230,.14); position: relative; overflow: hidden; }
.sc-dot-fill { position: absolute; inset: 0; width: 0; background: linear-gradient(90deg, var(--heat), var(--heat-core)); border-radius: 20px; }
.sc-dot.active { background: rgba(139,124,255,.2); }
.is-live .sc-dot.active .sc-dot-fill { animation: dotFill var(--sc-int) linear forwards; }
.is-paused .sc-dot.active .sc-dot-fill { animation-play-state: paused; }
@keyframes dotFill { from { width: 0; } to { width: 100%; } }
.sc-note { margin-top: 1.1rem; font-family: var(--f-mono); font-size: .74rem; color: var(--ink-dim); letter-spacing: .04em; }

/* =====================================================================
   ARTISAN
   ===================================================================== */
.maker { border-top: 1px solid var(--line); }
.maker-copy { max-width: 72ch; }
.maker-copy .prose { margin-top: 1.4rem; }
.prose p { max-width: 62ch; color: var(--ink-soft); margin-bottom: 1rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.maker-sign { margin-top: 1.8rem; display: flex; align-items: center; gap: 1.2rem; }
.maker-sign .sig { width: 150px; }
.maker-sign .role { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); line-height: 1.5; }
.portrait { margin: 0; position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--sh-glass); }
.portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,9,13,.6)); pointer-events: none; }
.portrait img { width: 100%; aspect-ratio: 1/1; object-fit: cover; filter: contrast(1.04) saturate(1.02); }
.stamp { position: absolute; left: 14px; bottom: 12px; z-index: 2; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--heat-core); background: rgba(10,12,16,.6); border: 1px solid var(--line-heat); padding: .3rem .7rem; border-radius: 6px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.maker-facts { list-style: none; margin: 1.4rem 0 0; padding: 0; display: flex; gap: clamp(1rem, 3vw, 2.2rem); }
.maker-facts li { display: flex; flex-direction: column; }
.maker-facts b { font-family: var(--f-display); font-size: clamp(1.7rem,1.2rem+1.4vw,2.3rem); font-weight: 800; letter-spacing: -.03em; }
.maker-facts span { margin-top: .3rem; font-size: .78rem; color: var(--ink-soft); }

/* =====================================================================
   LE CHAMP — index typographique
   ===================================================================== */
.field-list { border-top: 1px solid var(--line-2); }
.field-row {
  position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem,3vw,2.4rem); align-items: center;
  padding: clamp(1.5rem, 2.6vw, 2.4rem) 0; border-bottom: 1px solid var(--line);
}
.field-row::before { content: ""; position: absolute; left: -1.4rem; top: 0; bottom: 0; width: 2px; background: var(--heat); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease); box-shadow: 0 0 12px rgba(139,124,255,.5); }
.field-row .idx, .field-row .body { transition: transform .35s var(--ease); }
a.field-row:hover .idx, a.field-row:hover .body { transform: translateX(14px); }
a.field-row:hover::before { transform: scaleY(1); }
.field-row .idx { font-family: var(--f-mono); font-size: .9rem; color: var(--ink-dim); padding-top: .35rem; }
a.field-row:hover .idx { color: var(--heat-txt); }
.field-row h3 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.3rem); font-weight: 700; transition: color .3s var(--ease); }
a.field-row:hover h3 { color: var(--heat); }
.field-row .body p { margin-top: .5rem; color: var(--ink-soft); max-width: 62ch; font-size: .98rem; }
.field-row .arrow { font-size: 1.5rem; color: var(--heat); opacity: 0; transform: translateX(-8px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
a.field-row:hover .arrow { opacity: 1; transform: none; }
.field-row.no-link { cursor: default; }

/* =====================================================================
   QUESTIONS
   ===================================================================== */
.qa { border-top: 1px solid var(--line-2); }
.qa-item { border-bottom: 1px solid var(--line); }
.qa-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 1rem; padding: 1.4rem 0; font-family: var(--f-display); font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem); font-weight: 600; transition: color .25s var(--ease); }
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary:hover { color: var(--heat); }
.qi { font-family: var(--f-mono); font-size: .82rem; color: var(--heat-txt); min-width: 2ch; }
.qa-item .plus { margin-left: auto; position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.qa-item .plus::before, .qa-item .plus::after { content: ""; position: absolute; background: var(--heat); border-radius: 2px; transition: transform .3s var(--ease); }
.qa-item .plus::before { top: 9px; left: 0; width: 20px; height: 2px; }
.qa-item .plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
.qa-item[open] .plus::after { transform: rotate(90deg); opacity: 0; }
.qa-body { overflow: hidden; }
.qa-body p { padding: 0 0 1.4rem 0; color: var(--ink-soft); max-width: 68ch; }
.qa-item[open] .qa-body { animation: qaOpen .4s var(--ease); }
@keyframes qaOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* =====================================================================
   COMMANDE — contact
   ===================================================================== */
.commission { border-top: 1px solid var(--line); }
.commission-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.cta-form { margin-top: 2rem; display: grid; gap: 1.6rem; max-width: 560px; }
.field { position: relative; }
.field label { display: block; font-family: var(--f-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .5rem; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  background: rgba(242,238,230,.02); border: none; border-bottom: 1px solid var(--line-2);
  padding: .7rem .2rem; border-radius: 0; transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field select {
  appearance: none; cursor: pointer; padding-right: 1.6rem;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: right .75rem center, right .5rem center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.field select option { background: #12131f; color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--heat); background: rgba(139,124,255,.03); }
.field input.invalid, .field textarea.invalid { border-bottom-color: #E5534B; }
.cta-form .btn { justify-self: start; margin-top: .4rem; }
.form-fallback { color: var(--heat-txt); text-decoration: underline; text-underline-offset: 3px; }
.form-rgpd { margin-top: 1.1rem; font-size: .82rem; color: var(--ink-dim); max-width: 52ch; }
.form-message { margin-top: 1rem; font-size: .95rem; }
.form-message.error { color: #F0938C; }
.form-message.success { color: var(--heat-core); }
.form-check { margin-top: 1rem; width: 52px; height: 52px; opacity: 0; transform: scale(.8); transition: opacity .3s var(--ease), transform .4s var(--ease); }
.form-check.show { opacity: 1; transform: none; }
.form-check svg { width: 52px; height: 52px; }
.form-check circle { fill: none; stroke: var(--line-heat); stroke-width: 2; }
.form-check path { fill: none; stroke: var(--heat); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; }
.form-check.show path { animation: checkDraw .5s var(--ease) forwards .1s; }
@keyframes checkDraw { to { stroke-dashoffset: 0; } }

.commission-side { padding: clamp(1.6rem, 3vw, 2.2rem); background: linear-gradient(180deg, rgba(23,28,40,.6), rgba(13,16,23,.5)); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--sh-2); }
.commission-side .folio { margin-bottom: 1.4rem; }
.contact-line { display: flex; align-items: center; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); color: var(--ink); transition: color .25s var(--ease), transform .25s var(--ease); }
.contact-line:last-child { border-bottom: none; }
.contact-line:hover { color: var(--heat-txt); transform: translateX(6px); }
.contact-line .ic { width: 22px; height: 22px; color: var(--heat); flex-shrink: 0; }

/* =====================================================================
   COLOPHON
   ===================================================================== */
.colophon { border-top: 1px solid var(--line-2); background: linear-gradient(180deg, transparent, rgba(7,9,13,.6)); padding-block: clamp(3rem, 6vw, 5rem) 2rem; margin-top: clamp(2rem,5vw,4rem); }
.colophon-grid { display: grid; grid-template-columns: 1.1fr 1.6fr; gap: clamp(2rem, 5vw, 4rem); }
.colophon .tag { margin-top: 1rem; color: var(--ink-soft); max-width: 40ch; font-size: .95rem; }
.colophon-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.colophon-cols h3 { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--heat-txt); font-weight: 500; margin-bottom: 1rem; }
.colophon-cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.colophon-cols a, .colophon-cols span { color: var(--ink-soft); font-size: .95rem; transition: color .2s var(--ease); }
.colophon-cols a:hover { color: var(--heat-txt); }
.colophon-bottom { margin-top: clamp(2.4rem, 5vw, 3.5rem); padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; }
.legal { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.legal a, .legal button { color: var(--ink-dim); font-size: .84rem; background: none; border: none; padding: 0; transition: color .2s var(--ease); }
.legal a:hover, .legal button:hover { color: var(--heat-txt); }
.legal .sep { color: var(--ink-dim); }
.sign-off { font-family: var(--f-mono); font-size: .8rem; color: var(--ink-soft); }

/* ---------- FAB WhatsApp + haut de page ---------- */
.wa-fab { position: fixed; right: 20px; bottom: 20px; z-index: 70; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(160deg,#3ecb5f,#1fa84a); box-shadow: 0 14px 34px -8px rgba(31,168,74,.6); transition: transform .3s var(--ease); }
.wa-fab:hover { transform: translateY(-3px) scale(1.04); }
.to-top { position: fixed; right: 22px; bottom: 86px; z-index: 69; width: 46px; height: 46px; border-radius: 50%; color: var(--ink); background: var(--glass-2); border: 1px solid var(--line-2); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: var(--sh-1); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, color .2s; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: var(--heat); border-color: var(--line-heat); }

/* ---------- Cookies ---------- */
.cookie-consent { position: fixed; left: 20px; bottom: 20px; z-index: 120; max-width: 380px; padding: 1.3rem 1.4rem; background: var(--glass-2); -webkit-backdrop-filter: blur(18px) saturate(1.3); backdrop-filter: blur(18px) saturate(1.3); border: 1px solid var(--line-2); border-radius: 16px; box-shadow: var(--sh-3); transform: translateY(140%); transition: transform .5s var(--ease); }
.cookie-consent.show { transform: none; }
.cookie-consent h3 { font-family: var(--f-display); font-size: 1.05rem; margin-bottom: .5rem; }
.cookie-consent p { font-size: .86rem; color: var(--ink-soft); }
.cookie-consent p a { color: var(--heat-txt); text-decoration: underline; text-underline-offset: 2px; }
.cookie-consent__actions { margin-top: 1rem; display: flex; gap: .7rem; flex-wrap: wrap; }
.c-accept, .c-refuse { padding: .55rem 1rem; border-radius: 10px; font-size: .86rem; font-weight: 600; border: 1px solid var(--line-2); }
.c-accept { color: #14100a; background: linear-gradient(135deg, var(--heat-core), var(--heat)); border-color: transparent; }
.c-refuse { color: var(--ink-soft); background: transparent; }
.c-refuse:hover { color: var(--ink); border-color: var(--line-heat); }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 960px) {
  .commission-grid, .colophon-grid { grid-template-columns: 1fr; }
  .triad { grid-template-columns: 1fr; }
  .colophon-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .cover-foot { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .showcase-info { flex-direction: column; align-items: flex-start; }
  .colophon-cols { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: auto 1fr; }
  .field-row .arrow { display: none; }
  .facts { gap: 1.4rem; }
  .phone { width: 26%; right: 0; }
  .colophon-cols { grid-template-columns: 1fr; }
  .cookie-consent { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .wa-fab { width: 52px; height: 52px; }
}

/* =====================================================================
   Expérience « réseau vivant » — parallaxe, fil conducteur, glow, scroll
   ===================================================================== */
#net-bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px; margin: -230px 0 0 -230px;
  border-radius: 50%; z-index: 60; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(139,124,255,.13), transparent 62%);
  mix-blend-mode: screen; transition: opacity .5s ease; will-change: transform;
}

/* Fil conducteur (spine) qui se dessine au scroll */
.spine { position: fixed; left: 28px; top: 16vh; bottom: 16vh; width: 2px; z-index: 60; pointer-events: none; }
.spine-track { position: absolute; inset: 0; background: var(--line-2); border-radius: 3px; }
.spine-fill { position: absolute; inset: 0; transform-origin: top; transform: scaleY(0); border-radius: 3px; background: linear-gradient(var(--heat-core), var(--heat) 40%, var(--heat-2)); box-shadow: 0 0 12px rgba(139,124,255,.7); }
.spine-node { position: absolute; left: 50%; top: 0; width: 10px; height: 10px; margin: -5px 0 0 -5px; border-radius: 50%; background: var(--heat-core); box-shadow: 0 0 14px 3px rgba(139,124,255,.8), 0 0 0 4px rgba(139,124,255,.12); }
@media (max-width: 1120px) { .spine { display: none; } }

/* Révélations enrichies (flou en desktop) — hero exclu pour préserver le LCP */
@media (min-width: 821px) {
  .reveal { filter: blur(12px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
  .reveal.in { filter: blur(0); }
  .cover .reveal { filter: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
}

/* Projecteur qui suit le curseur sur les cartes */
.step, .commission-side { --mx: 50%; --my: 50%; }
.commission-side { position: relative; overflow: hidden; }
.step::after, .commission-side::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0;
  background: radial-gradient(260px circle at var(--mx) var(--my), rgba(139,124,255,.16), transparent 60%);
  transition: opacity .35s var(--ease);
}
.step:hover::after, .commission-side:hover::after { opacity: 1; }

/* Hero : contenu piloté par le scroll */
.cover .wrap { will-change: transform, opacity; }

/* CTA hero — pulsation douce */
@keyframes ctaPulse {
  0%, 100% { box-shadow: var(--bloom), inset 0 1px 0 rgba(255,255,255,.35); }
  50% { box-shadow: 0 32px 80px -16px rgba(124,110,255,.6), inset 0 1px 0 rgba(255,255,255,.45); }
}
.cover-actions .btn--mark { animation: ctaPulse 3.4s ease-in-out infinite; }

/* Moment épinglé : « Le champ » — titre collant pendant que les services défilent */
@media (min-width: 900px) {
  #champ { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
  #champ .spread-head { position: sticky; top: 110px; margin-bottom: 0; }
}

/* Moment signature — particules qui se reforment en « C&C » (épinglé) */
.signature { position: relative; height: 210vh; }
.signature-inner { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; place-items: center; }
.sig-net { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.signature-copy { position: relative; z-index: 2; text-align: center; max-width: 42ch; padding: 0 var(--pad); opacity: 0; will-change: opacity, transform; }
.signature-copy .folio { justify-content: center; }
.signature-copy .h-sect { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4.2rem); }
@media (max-width: 700px) { .signature { height: 168vh; } }

/* Mode capture (revue plein-page uniquement, activé par ?still) */
.capture .cover { min-height: 620px; }
.capture .signature { height: auto !important; }
.capture .signature-inner { position: static !important; height: 640px !important; }
.capture .cookie-consent, .capture .wa-fab, .capture .to-top, .capture .spine, .capture .cursor-glow { display: none !important; }

/* =====================================================================
   Transitions de page (View Transitions API — repli silencieux)
   ===================================================================== */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtOut .3s cubic-bezier(.2,.7,.2,1) both; }
::view-transition-new(root) { animation: vtIn .42s cubic-bezier(.2,.7,.2,1) both; }
@keyframes vtOut { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vtIn { from { opacity: 0; transform: translateY(10px); } }
@media (prefers-reduced-motion: reduce) { ::view-transition-old(root), ::view-transition-new(root) { animation: none; } }

/* =====================================================================
   Reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .scroll-cue-line::after { display: none; }
  .forge-canvas { transition: none; }
}

/* Mobile : le repère de défilement chevauchait les faits du hero — décoratif, il s'efface */
@media (max-width: 720px) { .scroll-cue { display: none; } }

/* Hero personnel : sous 860px, le portrait passe au-dessus du titre, en petit */
@media (max-width: 860px) {
  .cover-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .cover-portrait { order: -1; justify-self: start; width: 132px; margin-bottom: 0; }
  .cover-portrait img { aspect-ratio: 1 / 1; }
  .cover-portrait .stamp { display: none; }
}

/* =====================================================================
   LA MÉTHODE — le parcours en quatre temps
   ===================================================================== */
.method { border-top: 1px solid var(--line); }
.route { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.2vw, 1.8rem); counter-reset: route; }
.route-step {
  position: relative; padding: clamp(1.5rem, 2.6vw, 2rem) clamp(1.3rem, 2.2vw, 1.7rem);
  background: linear-gradient(180deg, rgba(26,27,48,.55), rgba(13,14,27,.45));
  border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--sh-2);
}
/* Le fil qui relie les étapes, comme les arêtes du réseau de fond */
.route-step::before {
  content: ""; position: absolute; top: clamp(2.35rem, 3.4vw, 2.9rem); left: 100%; width: clamp(1rem, 2.2vw, 1.8rem); height: 1px;
  background: linear-gradient(90deg, var(--line-heat), transparent);
}
.route-step:last-child::before { display: none; }
.route-n {
  display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 1rem;
  font-family: var(--f-mono); font-size: .86rem; color: var(--heat-core);
  background: rgba(139,124,255,.09); border: 1px solid var(--line-heat); border-radius: 10px;
}
.route-step h3 { font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem); font-weight: 700; letter-spacing: -.01em; }
.route-step p { margin-top: .6rem; color: var(--ink-soft); font-size: .95rem; }
.route-when { margin-top: .9rem !important; padding-top: .8rem; border-top: 1px solid var(--line); font-family: var(--f-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--heat-txt) !important; }

/* =====================================================================
   LE BUDGET — ordres de grandeur, pas une grille tarifaire
   ===================================================================== */
.budget { border-top: 1px solid var(--line); }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.2vw, 1.8rem); align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column; padding: clamp(1.6rem, 2.8vw, 2.2rem);
  background: var(--glass); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--sh-glass);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.tier:hover { transform: translateY(-4px); border-color: var(--line-heat); }
.tier--lead { border-color: var(--line-heat); box-shadow: var(--sh-glass), var(--bloom); }
.tier-kind { font-family: var(--f-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--heat-txt); }
.tier-price { margin-top: .9rem; font-family: var(--f-display); font-weight: 700; font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.4rem); letter-spacing: -.03em; line-height: 1.05; color: var(--ink); text-wrap: balance; }
.tier-from, .tier-to { display: block; font-family: var(--f-body); font-size: .82rem; font-weight: 500; letter-spacing: .02em; color: var(--ink-dim); }
.tier-to { display: inline; color: var(--ink-dim); font-weight: 500; }
.tier-cur { color: var(--heat); }
.tier-for { margin-top: 1rem; color: var(--ink-warm); font-size: .96rem; }
.tier-list { list-style: none; margin: 1.3rem 0 0; padding: 1.3rem 0 0; border-top: 1px solid var(--line); display: grid; gap: .65rem; }
.tier-list li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); font-size: .93rem; }
.tier-list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--heat); box-shadow: 0 0 8px rgba(139,124,255,.6); }
.tier-flag {
  position: absolute; top: -.75rem; right: clamp(1.2rem, 2.4vw, 1.8rem);
  padding: .3rem .75rem; font-family: var(--f-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: #14100a; background: linear-gradient(135deg, var(--heat-core), var(--heat)); border-radius: 20px;
}

.budget-notes { margin-top: clamp(1.6rem, 3vw, 2.4rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.2vw, 1.8rem); }
.bnote { padding: clamp(1.2rem, 2.2vw, 1.6rem); border: 1px solid var(--line); border-left: 2px solid var(--line-heat); border-radius: 0 12px 12px 0; background: rgba(20,21,39,.4); }
.bnote h3 { font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.bnote p { margin-top: .55rem; color: var(--ink-soft); font-size: .93rem; }
.bnote b { color: var(--heat-core); }
.budget-foot { margin-top: clamp(1.6rem, 3vw, 2.2rem); color: var(--ink-dim); font-size: .95rem; max-width: 72ch; }
.reg-link { color: var(--heat-txt); font-weight: 600; border-bottom: 1px solid var(--line-heat); padding-bottom: 1px; transition: color .25s var(--ease); }
.reg-link:hover { color: var(--heat-core); }

/* =====================================================================
   CE QUE JE FAIS · QUESTIONS — raccords de section
   ===================================================================== */
.offer { border-top: 1px solid var(--line); }
.questions { border-top: 1px solid var(--line); }
.questions .qa { margin-top: clamp(.5rem, 1.5vw, 1rem); }
.qa-body a { color: var(--heat-txt); border-bottom: 1px solid var(--line-heat); padding-bottom: 1px; }
.qa-body a:hover { color: var(--heat-core); }

/* =====================================================================
   Responsive des nouvelles sections
   ===================================================================== */
@media (max-width: 1100px) {
  .route { grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
  .route-step:nth-child(2)::before { display: none; }
}
@media (max-width: 960px) {
  .tiers, .budget-notes { grid-template-columns: 1fr; }
  .tier--lead { order: -1; }
  .colophon-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .route { grid-template-columns: 1fr; }
  .route-step::before { display: none; }
}
@media (max-width: 520px) {
  .colophon-cols { grid-template-columns: 1fr; }
}

/* =====================================================================
   LES ENGAGEMENTS — six points vérifiables
   ===================================================================== */
.pledges { border-top: 1px solid var(--line); }
.pledge-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.2vw, 1.8rem); }
.pledge {
  position: relative; padding: clamp(1.4rem, 2.4vw, 1.9rem);
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, rgba(26,27,48,.5), rgba(13,14,27,.4));
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.pledge:hover { border-color: var(--line-heat); transform: translateY(-3px); }
.pledge-ic {
  display: inline-grid; place-items: center; width: 34px; height: 34px; margin-bottom: .95rem;
  color: var(--heat-core); background: rgba(139,124,255,.10);
  border: 1px solid var(--line-heat); border-radius: 50%;
}
.pledge-ic svg { width: 17px; height: 17px; }
.pledge h3 { font-size: clamp(1.05rem, .98rem + .45vw, 1.24rem); font-weight: 700; letter-spacing: -.015em; }
.pledge p { margin-top: .6rem; color: var(--ink-soft); font-size: .94rem; }

@media (max-width: 1000px) { .pledge-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pledge-grid { grid-template-columns: 1fr; } }
