/* === BOOM MAKER v2 — Living Workflow === */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800;900&family=Geist+Mono:wght@400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  /* Dark premium AI palette */
  --bg: #07070A;
  --bg-rgb: 7, 7, 10;
  --bg-2: #0E0E14;
  --surface: #14141C;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --ink: #F5F5F7;
  --ink-2: #D8D8E0;
  --mute: #9A9AA8;
  --ink-on-accent: #FFFFFF;

  /* Accents */
  --violet: #8B5CFF;
  --violet-rgb: 139, 92, 255;
  --violet-2: #B794FF;
  --violet-deep: #6841D9;
  --cyan: #00E0D5;
  --cyan-rgb: 0, 224, 213;
  --boom: #FFE94A;
  --boom-rgb: 255, 233, 74;
  --pink: #FF4FA6;
  --pink-rgb: 255, 79, 166;

  /* Functional / surface overlays */
  --live-pulse: #FF4F66;
  --nav-bg: rgba(20, 20, 28, 0.6);
  --canvas-bg: linear-gradient(160deg, rgba(28,22,48,0.85) 0%, rgba(14,18,30,0.85) 60%, rgba(20,12,8,0.85) 100%);
  --ticker-bg: rgba(8, 8, 14, 0.6);
  --cover-bg: linear-gradient(135deg, #2A1A4A, #1A3A4A, var(--bg));
  --news-featured-bg: linear-gradient(160deg, rgba(28,22,48,0.6), rgba(14,11,26,0.6));

  --serif: 'Instrument Serif', serif;
  --sans: 'Geist', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'Geist Mono', 'JetBrains Mono', monospace;

  --gutter: 32px;
  --section-py: 180px;
  --radius: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* `overflow-x: hidden` casse `position: sticky` sur les descendants
   * (le scroll context remonte au html). `overflow-x: clip` clippe sans
   * créer de scroll container → sticky continue de fonctionner. */
  overflow-x: clip;
}

body {
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(var(--violet-rgb),0.15), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(var(--cyan-rgb),0.10), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

/* Grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.theme-light body::before { opacity: 0.25; }

/* Dot grid background signature (inspiré des templates LinkedIn Boom Maker) —
 * pattern subtle qui donne un sens d'ordre/structure sans encombrer. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.theme-light body::after {
  background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  opacity: 0.5;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
input, textarea { font-family: inherit; }

#root { position: relative; z-index: 2; }

/* === Layout === */
.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.section { padding: var(--section-py) 0; position: relative; }

/* === Type === */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 0 var(--cyan);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--cyan-rgb),0.7); }
  70% { box-shadow: 0 0 0 12px rgba(var(--cyan-rgb),0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--cyan-rgb),0); }
}

.display {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(44px, 6.5vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.display em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: inline-block;
  padding-right: 0.12em;
  position: relative;
}
.display em::after {
  content: "";
  position: absolute;
  left: 0; right: 0.12em; bottom: 0.04em;
  height: 0.08em;
  background: linear-gradient(90deg, var(--violet-2), var(--cyan));
  border-radius: 999px;
  opacity: 0.9;
}

.h1 { font-size: clamp(40px, 6vw, 96px); font-weight: 600; letter-spacing: -0.035em; line-height: 0.96; text-wrap: balance; }
.h2 { font-size: clamp(34px, 4.4vw, 72px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.02; text-wrap: balance; }
.h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--ink-2); }

.lead { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.5; color: var(--ink-2); max-width: 60ch; }
.label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); }
.mono { font-family: var(--mono); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, box-shadow .25s, border-color .25s;
  isolation: isolate;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  z-index: -1;
  opacity: 0;
  filter: blur(14px);
  transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:hover::after { opacity: 0.8; }

.btn-glow {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-deep) 100%);
  color: var(--ink-on-accent);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1) inset, 0 8px 30px -6px rgba(var(--violet-rgb),0.5);
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18) inset, 0 14px 40px -6px rgba(var(--violet-rgb),0.7);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}

.btn .arr {
  width: 18px; height: 18px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.btn:hover .arr { transform: translateX(4px) translateY(-4px); }

/* CTA style variants */
.cta-style-square .btn { border-radius: 8px; }
.cta-style-block .btn { border-radius: 4px; }

/* === Theme variants === */
.theme-violet {
  /* default — values from :root */
}
.theme-cyber {
  --violet: #FF4FA6;
  --violet-rgb: 255, 79, 166;
  --violet-2: #FF8AC2;
  --violet-deep: #C92D7E;
  --cyan: #00FFB8;
  --cyan-rgb: 0, 255, 184;
  /* pink stays #FF4FA6 — and is now visible in this theme */
}
.theme-mono {
  --violet: #FFFFFF;
  --violet-rgb: 255, 255, 255;
  --violet-2: #E5E5EA;
  --violet-deep: #C9C9D2;
  --cyan: #C9C9D2;
  --cyan-rgb: 201, 201, 210;
}
.theme-light {
  --bg: #F5F4EE;
  --bg-rgb: 245, 244, 238;
  --bg-2: #ECEAE0;
  --surface: #FFFFFF;
  --line: rgba(0,0,0,0.08);
  --line-strong: rgba(0,0,0,0.16);
  --ink: #0A0A0E;
  --ink-2: #2A2A34;
  --mute: #5A5A66;
  --violet: #5B2DE6;
  --violet-rgb: 91, 45, 230;
  --violet-2: #7C5CE6;
  --violet-deep: #4A22B8;
  --cyan: #007D78;
  --cyan-rgb: 0, 125, 120;
  --nav-bg: rgba(255, 255, 255, 0.7);
  --ticker-bg: rgba(255, 255, 255, 0.7);
  --canvas-bg: linear-gradient(160deg, rgba(255,255,255,0.7), rgba(255,255,255,0.5));
  --cover-bg: linear-gradient(135deg, #E8E0F5, #DCEBF0, var(--bg));
  --news-featured-bg: linear-gradient(160deg, rgba(255,255,255,0.6), rgba(245,244,238,0.6));
}

/* Density */
.density-cozy { --section-py: 120px; }
.density-comfy { --section-py: 180px; }
.density-spacious { --section-py: 240px; }

/* === Theme light: contrast adjustments ============================= */
/* Le theme-light a besoin d'overrides spécifiques car beaucoup de surfaces
 * utilisent rgba(255,255,255, X) — invisibles sur fond clair. Aussi: aurora
 * trop violente en light, hero canvas semi-transparent qui laisse trop voir
 * les blobs derrière. */

/* Aurora globale: opacités très basses en light pour préserver la lisibilité */
.theme-light body {
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(var(--violet-rgb), 0.05), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(var(--cyan-rgb), 0.03), transparent 60%),
    var(--bg);
}
.theme-light .aurora-blob.b1 { opacity: 0.05; }
.theme-light .aurora-blob.b2 { opacity: 0.04; }
.theme-light .aurora-blob.b3 { opacity: 0; }

/* Hero canvas en light: blanc + gradient TRÈS subtle violet/cyan en
 * haut-gauche, coins arrondis 26px pour casser l'effet "boîte Windows",
 * bordure ultra-light pour cadrer sans sur-souligner. Shadow douce. */
.theme-light .hero-canvas {
  background:
    linear-gradient(160deg, rgba(var(--violet-rgb), 0.06) 0%, rgba(var(--cyan-rgb), 0.03) 50%, transparent 80%),
    var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 26px;
  box-shadow:
    0 30px 80px -30px rgba(var(--violet-rgb), 0.18),
    0 8px 24px -12px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

/* Buttons ghost (rgba blanc-transparent → invisible) */
.theme-light .btn-ghost {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--line-strong);
}
.theme-light .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.25);
}

/* Cards (.pillar, .pricing .plan, .news-card, .article-stat, .fit-col) */
.theme-light .pillar {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.06);
}
.theme-light .pillar:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.12);
}
.theme-light .plan {
  background: var(--surface);
  border-color: rgba(0, 0, 0, 0.06);
}
.theme-light .plan.featured {
  border-color: var(--violet);
  background: var(--surface);
}
.theme-light .news-card {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.06);
}
.theme-light .news-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.12);
}
.theme-light .blog-card {
  background: rgba(255, 255, 255, 0.6);
}
.theme-light .blog-card:hover {
  background: rgba(255, 255, 255, 0.95);
}
.theme-light .fit-col {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.06);
}
.theme-light .fit-col:hover {
  background: rgba(255, 255, 255, 0.95);
}

/* Article surfaces */
.theme-light .article-stat {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.06);
}
.theme-light .article-related {
  background: rgba(0, 0, 0, 0.02);
}
.theme-light .article-author-block {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Problems (".problem" cards) */
.theme-light .problem {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.06);
}

/* Testimonials cards */
.theme-light .testimonial {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.06);
}

/* News-newsletter inline en light */
.theme-light .news-newsletter {
  background:
    radial-gradient(500px 300px at 20% 0%, rgba(var(--violet-rgb), 0.05), transparent 60%),
    radial-gradient(400px 280px at 90% 100%, rgba(var(--cyan-rgb), 0.04), transparent 60%),
    rgba(255, 255, 255, 0.7);
}

/* Input newsletter en light : sans override, il hérite du fond
 * rgba(0,0,0,0.4) du dark theme et apparaît gris/désactivé. */
.theme-light .news-newsletter-form input {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--ink);
}
.theme-light .news-newsletter-form input::placeholder {
  color: var(--mute);
}

/* News filters sticky bar */
.theme-light .news-filters {
  background: rgba(245, 244, 238, 0.85);
}

/* Badges sur les cards blog (page News + section Blog home).
 * Avant: fond noir/sombre rgba(0,0,0,0.5) sur card claire → effet pastille
 * mal posée. En light: blanc avec border + violet deep. Plus pro. */
.theme-light .news-card-cat,
.theme-light .news-featured-thumb-tag {
  background: rgba(255, 255, 255, 0.94);
  color: var(--violet-deep);
  border-color: rgba(0, 0, 0, 0.06);
  font-weight: 600;
}
/* Tags sur la section Blog de la home (.blog-card .thumb-tag) */
.theme-light .blog-card .thumb-tag {
  background: rgba(255, 255, 255, 0.94);
  color: var(--violet-deep);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.theme-light .blog-card .thumb-meta {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Article body code (le bg sombre passe mal en light) */
.theme-light .article-body code {
  background: rgba(0, 0, 0, 0.05);
  color: var(--violet);
}
.theme-light .article-body pre {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

/* FAQ accordion */
.theme-light .article-faq-item summary::after {
  background: rgba(var(--violet-rgb), 0.1);
}
.theme-light .article-faq-item[open] summary::after {
  background: rgba(var(--violet-rgb), 0.18);
}

/* Big stats (".big-stats > div") */
.theme-light .big-stats > div {
  border-color: rgba(0, 0, 0, 0.08);
}

/* Accent helper — replaces inline styles { color: var(--violet-2) } in JSX */
.accent { color: var(--violet-2); }

/* === Fit check (qualifier audience) === */
.fit-check { padding: 80px 0 100px; }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.fit-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 32px;
  transition: background .3s, border-color .3s;
}
.fit-col:hover { background: rgba(255,255,255,0.08); border-color: var(--line-strong); }
.fit-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.fit-icon {
  width: 36px; height: 36px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 600; font-size: 16px;
  flex-shrink: 0;
}
.fit-yes .fit-icon { background: rgba(var(--cyan-rgb), 0.15); color: var(--cyan); border: 1px solid rgba(var(--cyan-rgb), 0.3); }
.fit-no  .fit-icon { background: rgba(var(--violet-rgb), 0.15); color: var(--violet-2); border: 1px solid rgba(var(--violet-rgb), 0.3); }
.fit-col h3 {
  font-family: var(--sans); font-weight: 600; font-size: 22px;
  letter-spacing: -0.02em; margin: 0;
}
.fit-col ul { list-style: none; padding: 0; margin: 0; }
.fit-col li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.fit-col li:last-child { border-bottom: none; }
@media (max-width: 800px) {
  .fit-grid { grid-template-columns: 1fr; gap: 20px; }
  .fit-col { padding: 28px 22px; }
}

/* === Nav === */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 10px 10px 22px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 999px;
  width: calc(100% - 32px);
  max-width: 1100px;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.6);
}
.nav-logo { height: 32px; flex-shrink: 0; color: var(--ink); display: inline-flex; align-items: center; }
.nav-logo svg { height: 100%; width: auto; fill: currentColor; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 8px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav .btn { padding: 12px 18px; font-size: 13px; }

/* === Nav dropdown ("Maison" : À propos · Partenaires · Contact) ===
 * Le wrapper reste `position: relative`. Le menu est en absolute juste sous
 * le trigger, masqué par défaut. Visible sur :hover ou aria-expanded="true"
 * (pour clavier/clic). Le padding-top du menu empêche le "hover gap". */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-trigger {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  transition: color .15s;
}
.nav-dropdown-trigger:hover,
.nav-dropdown:focus-within .nav-dropdown-trigger { color: var(--ink); }
.nav-dropdown-trigger.active { color: var(--cyan); }
.nav-dropdown-caret {
  font-size: 10px;
  line-height: 1;
  transition: transform .2s ease;
  display: inline-block;
  margin-top: 2px;
}
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  margin-top: 14px;
  min-width: 200px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 110;
}
.theme-light .nav-dropdown-menu {
  background: var(--surface);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 50px -16px rgba(0, 0, 0, 0.18);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}
/* Bridge invisible : comble le gap entre trigger et menu pour ne pas perdre le hover */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}
.nav-dropdown-menu a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 10px 14px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  display: block;
}
.nav-dropdown-menu a:hover {
  background: rgba(var(--violet-rgb), 0.10);
  color: var(--ink);
}
.theme-light .nav-dropdown-menu a:hover {
  background: rgba(var(--violet-rgb), 0.08);
}
.nav-dropdown-menu a.active {
  color: var(--cyan);
  background: rgba(var(--cyan-rgb), 0.08);
}

/* === Theme toggle button (sun/moon dans la nav) === */
.nav-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  flex-shrink: 0;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
  padding: 0;
}
.nav-theme-toggle:hover {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(var(--violet-rgb), 0.08);
  transform: rotate(15deg);
}
.nav-theme-toggle svg { display: block; }

/* === Burger / Mobile menu === */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border: 0; background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-burger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .15s ease, top .25s ease;
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 25px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(var(--bg-rgb), 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 88px 28px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile a {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color .15s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--violet-2); }
.nav-mobile-group {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 20px 0 4px;
  border-bottom: 0;
}
/* CTA "Audit gratuit" en sticky bas : poussé tout en bas du flex column
 * avec margin-top:auto, pour rester visible sans avoir à scroller. */
.nav-mobile .btn {
  margin-top: auto;
  align-self: stretch;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  padding: 18px 28px;
}

@media (max-width: 1100px) {
  .nav-burger { display: inline-flex; }
  .nav-cta-desktop { display: none; }
}

/* === Hero === */
.hero {
  padding: 90px 0 40px;
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
}

/* Aurora glow */
.aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  animation: float 20s ease-in-out infinite;
}
.aurora-blob.b1 { width: 600px; height: 600px; background: var(--violet); top: -200px; left: -100px; opacity: 0.15; animation-duration: 22s; }
.aurora-blob.b2 { width: 500px; height: 500px; background: var(--cyan); top: 100px; right: -100px; opacity: 0.10; animation-duration: 28s; animation-delay: -5s; }
.aurora-blob.b3 { width: 400px; height: 400px; background: var(--pink); bottom: -100px; left: 30%; opacity: 0; animation-duration: 30s; animation-delay: -10s; }
.theme-cyber .aurora-blob.b3 { opacity: 0.15; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -60px) scale(1.1); }
  66% { transform: translate(-50px, 80px) scale(0.95); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-layout-stacked .hero-grid {
  grid-template-columns: 1fr;
  text-align: left;
}
.hero-layout-stacked .hero-canvas {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  padding: 24px 24px 22px;
  background: var(--canvas-bg);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  box-shadow:
    0 30px 90px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.02),
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 60px -20px rgba(var(--violet-rgb),0.25);
  overflow: hidden;
}
.hero-canvas::before {
  content: none;
}

/* Header */
.hc-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.hc-live {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(var(--cyan-rgb),0.1);
  border: 1px solid rgba(var(--cyan-rgb),0.3);
  border-radius: 999px;
}
.hc-live-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan), 0 0 4px var(--cyan);
  animation: pulse 1.6s ease-out infinite;
}
.hc-meta-tag {
  font-family: var(--mono); font-size: 10px;
  color: var(--mute); letter-spacing: 0.1em;
}

/* Headline metric */
.hc-hero-stat {
  padding: 18px 4px 22px;
  border-bottom: 1px dashed var(--line-strong);
  margin-bottom: 22px;
}
.hc-hero-lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
}
.hc-hero-num {
  display: flex; align-items: baseline; gap: 2px;
  font-family: var(--sans); font-weight: 600;
  font-size: 56px; line-height: 0.95;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, var(--cyan) 0%, var(--violet-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 24px rgba(var(--violet-rgb),0.25));
  white-space: nowrap;
}
.hc-hero-num .num { font-variant-numeric: tabular-nums; }
.hc-hero-num .cur {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 48px;
  background: inherit; -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-left: 2px;
}
.hc-hero-delta {
  margin-top: 12px;
  font-family: var(--mono); font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 8px;
}
.hc-hero-delta .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
  animation: pulse 1.6s ease-out infinite;
}

/* Pipeline river */
.hc-river {
  position: relative;
  margin-bottom: 22px;
  padding: 12px 0 4px;
}
.hc-river-svg {
  position: absolute;
  top: 19px;
  left: 0; right: 0;
  width: 100%;
  height: 14px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.hc-river-line {
  fill: none;
  stroke: url(#riverGrad);
  stroke-width: 2;
  stroke-dasharray: 4 6;
  animation: dashflow 1.4s linear infinite;
}
@keyframes dashflow { to { stroke-dashoffset: -20; } }
.hc-river-dot {
  fill: var(--cyan);
  filter: drop-shadow(0 0 8px var(--cyan));
}
.hc-river-stops {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.hc-stop {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 4px;
  position: relative;
  min-width: 0;
  padding: 0 4px;
}
.hc-stop-dot {
  width: 11px; height: 11px; border-radius: 999px;
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px currentColor;
  z-index: 2;
  position: relative;
}
.hc-stop-dot.cyan   { background: var(--cyan);     color: var(--cyan); }
.hc-stop-dot.violet { background: var(--violet-2); color: var(--violet-2); }
.hc-stop-dot.boom   { background: var(--boom);     color: var(--boom); }
.hc-stop-icon {
  margin-top: 6px;
  width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
}
.hc-stop-icon.cyan   { background: rgba(var(--cyan-rgb),0.12);   color: var(--cyan);     border-color: rgba(var(--cyan-rgb),0.4); }
.hc-stop-icon.violet { background: rgba(var(--violet-rgb),0.18);  color: var(--violet-2); border-color: rgba(var(--violet-rgb),0.4); }
.hc-stop-icon.boom   { background: rgba(var(--boom-rgb),0.18);  color: var(--boom);     border-color: rgba(var(--boom-rgb),0.5);
  box-shadow: 0 0 18px -4px var(--boom);
  animation: boomPulse 2s ease-in-out infinite;
}
@keyframes boomPulse {
  0%, 100% { box-shadow: 0 0 18px -4px var(--boom); }
  50%      { box-shadow: 0 0 30px -2px var(--boom); }
}
.hc-stop-name {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.01em;
  margin-top: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 100%;
}
.hc-stop-sub {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 100%;
}

/* Live event ticker */
.hc-ticker {
  background: var(--ticker-bg);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 12px 14px 14px;
}
.hc-ticker-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.hc-ticker-head .t-pulse {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--live-pulse);
  box-shadow: 0 0 8px var(--live-pulse);
  animation: pulse 1.4s ease-out infinite;
}
.hc-ticker-head .t-label { color: var(--ink-2); }
.hc-ticker-head .t-time { margin-left: auto; color: var(--mute); }
.hc-ticker-body {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  animation: tickerIn 0.4s ease-out;
}
@keyframes tickerIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hc-ticker-body .t-avatar {
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: var(--ink-on-accent);
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.hc-ticker-body .t-text { min-width: 0; }
.hc-ticker-body .t-line1 {
  font-family: var(--sans); font-size: 13px; color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hc-ticker-body .t-line1 strong { font-weight: 600; }
.hc-ticker-body .t-co { color: var(--mute); }
.hc-ticker-body .t-line2 {
  font-family: var(--mono); font-size: 10px;
  color: var(--cyan); letter-spacing: 0.04em;
  margin-top: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hc-ticker-body .t-score {
  text-align: right;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}
.hc-ticker-body .t-score-num {
  font-family: var(--sans); font-weight: 600; font-size: 22px;
  background: linear-gradient(135deg, var(--cyan), var(--violet-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; letter-spacing: -0.02em;
}
.hc-ticker-body .t-score-lbl {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}

/* === Hero meta — bandeau horizontal === */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 32px calc(50% - 50vw) 0;
  padding: 22px max(24px, calc(50vw - 600px));
  background: linear-gradient(90deg,
    rgba(var(--cyan-rgb),0.04) 0%,
    rgba(var(--violet-rgb),0.06) 50%,
    rgba(var(--boom-rgb),0.04) 100%);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  position: relative;
}
.hero-meta.hero-meta-2col {
  grid-template-columns: 1fr 1fr;
}
.hero-meta::before, .hero-meta::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
}
.hero-meta::before { top: -1px; } .hero-meta::after { bottom: -1px; }
.hero-meta > div {
  padding: 4px 24px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
  justify-content: center;
}
.hero-meta > div:last-child { border-right: 0; }
.hero-meta .num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  padding-bottom: 4px;
}
.hero-meta .num em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  margin-left: 2px;
  color: var(--violet-2);
}
.hero-meta .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  line-height: 1.3;
}

/* === Marquee === */
.marquee {
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 22px 0;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  align-items: center;
  gap: 60px;
}
.marquee-track > * {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  gap: 12px;
}
.marquee-track svg { color: var(--violet-2); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* === Logos band === */
.logos-section { padding: 24px 0 48px; }
.logos-title {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}
.logos-rule {
  flex: 0 0 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.logos-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
}
.logos-lead {
  text-align: center;
  font-size: 18px;
  color: var(--ink);
  max-width: 50ch;
  margin: 0 auto 36px;
  letter-spacing: -0.005em;
}
.logos-wrap {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.logos-track {
  display: flex;
  gap: 16px;
  animation: marquee 50s linear infinite;
  animation-direction: reverse;
  width: max-content;
  align-items: center;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.logo-chip:hover {
  border-color: var(--line-strong);
  background: var(--surface-2, rgba(255,255,255,0.04));
}
.brand-mark {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; }
.logo-name { line-height: 1; }

/* === Section header (unified style across all sections) === */
.sect-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}
.sect-head .meta { padding-top: 8px; }
.sect-head .meta .label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  text-transform: none;
  font-family: var(--mono);
  margin-bottom: 10px;
  display: block;
}
.sect-head .meta .eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  font-family: var(--mono);
  font-weight: 400;
}

/* === Reveal animation === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* === Problem (3 anti-options) === */
.problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.problem {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .4s, border-color .4s;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.problem:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.problem::before {
  content: "✕";
  position: absolute;
  top: 22px; right: 24px;
  font-size: 22px;
  color: var(--pink);
  opacity: 0.7;
}
.problem h4 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 12px;
  padding-right: 36px;
  min-height: 2.6em;
  display: flex;
  align-items: flex-end;
}
.problem p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}
.problem .price {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--pink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* Solution intro */
.solution-arrow {
  text-align: center;
  margin: 32px auto 20px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--cyan);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.solution-arrow .arrow-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  animation: arrowFlow 2s ease-in-out infinite;
}
@keyframes arrowFlow {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* === Pillars === */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), border-color .5s;
  cursor: default;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px at var(--mx, 50%) var(--my, 0%), rgba(var(--violet-rgb),0.18), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.pillar:hover::before { opacity: 1; }
.pillar .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pillar .icon-circle {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(var(--violet-rgb),0.25), rgba(var(--cyan-rgb),0.15));
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
}
.pillar h3 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.pillar h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--violet-2); }
.pillar > p { color: var(--ink-2); font-size: 15px; line-height: 1.55; margin-bottom: 28px; }
.pillar ul { list-style: none; margin-top: auto; }
.pillar ul li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pillar ul li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--cyan);
  flex-shrink: 0;
}

/* === Process === */
.process-stage {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  position: relative;
}
.process-spine {
  position: relative;
}
.process-spine .step-pill {
  position: sticky;
  top: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  position: relative;
  transition: padding-left .4s;
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--violet), var(--cyan));
  opacity: 0;
  transition: opacity .4s;
}
.process-step:hover::before { opacity: 1; }
.process-step:hover { padding-left: 16px; }
.process-step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(135deg, var(--violet-2), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.process-step h3 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 12px;
}
.process-step p { color: var(--ink-2); font-size: 15px; line-height: 1.55; max-width: 50ch; }
.process-step .deliv {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}
.process-step .deliv .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.process-step .deliv .lbl::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 999px;
}
.process-step .deliv .v { font-size: 13px; color: var(--ink); line-height: 1.5; }

/* === Stats numbers === */
.big-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.big-stats > div {
  padding: 60px 28px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.big-stats > div:last-child { border-right: 0; }
.big-stats .num {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(56px, 6.5vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.big-stats .num em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--violet-2), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.big-stats .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 16px;
}
.big-stats .desc {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 12px;
  line-height: 1.5;
  max-width: 30ch;
}

/* === Pricing === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .4s, border-color .4s;
}
.plan:hover { transform: translateY(-6px); }
.plan.featured {
  border-color: rgba(var(--violet-rgb),0.4);
  background:
    linear-gradient(180deg, rgba(var(--violet-rgb),0.06), transparent 50%),
    var(--surface);
  box-shadow: 0 20px 50px -20px rgba(var(--violet-rgb),0.4);
}
.plan.featured::before {
  content: "★ Le plus choisi";
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-2);
  background: rgba(var(--violet-rgb),0.15);
  border: 1px solid rgba(var(--violet-rgb),0.3);
  padding: 6px 10px;
  border-radius: 999px;
}
.plan .name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.plan .display-name {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.plan .price-prefix {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: 6px;
}
.plan .price {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.plan .price em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--violet-2); }
.plan .price .unit {
  font-size: 14px;
  font-family: var(--mono);
  font-style: normal;
  color: var(--mute);
  margin-left: 6px;
  vertical-align: middle;
}
.plan .summary {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 18px 0 28px;
  min-height: 80px;
}
.plan ul {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-bottom: 28px;
}
.plan li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan li svg { color: var(--cyan); flex-shrink: 0; }
.plan .btn { margin-top: auto; align-self: flex-start; }

/* === Testimonials carousel === */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .4s, border-color .4s;
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.testimonial .qmark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.5;
  background: linear-gradient(135deg, var(--violet-2), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.testimonial blockquote {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
  flex: 1;
  font-weight: 400;
}
.testimonial .metric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 8px 12px;
  background: rgba(var(--cyan-rgb),0.08);
  border: 1px solid rgba(var(--cyan-rgb),0.2);
  border-radius: 999px;
  margin-bottom: 24px;
  align-self: flex-start;
}
.testimonial .footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}
.testimonial .name { font-weight: 500; font-size: 14px; }
.testimonial .role { font-size: 12px; color: var(--mute); font-family: var(--mono); margin-top: 2px; }

/* === FAQ === */
.faq {
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  text-align: left;
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  transition: color .2s;
}
.faq-q:hover { color: var(--violet-2); }
.faq-q .toggle {
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
  transition: transform .35s, background .35s, border-color .35s;
}
.faq-q .toggle::before, .faq-q .toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transition: opacity .25s;
}
.faq-q .toggle::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-q .toggle::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .toggle {
  transform: rotate(45deg);
  background: var(--violet);
  border-color: var(--violet);
}
.faq-item.open .faq-q .toggle::before, .faq-item.open .faq-q .toggle::after { background: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 0 36px;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* === Blog === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.blog-card .thumb {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
}
.blog-card .thumb-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 50%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6));
}
.blog-card .thumb-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.blog-card .thumb-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  padding: 6px 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.blog-card .thumb-meta {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: white;
  opacity: 0.85;
  letter-spacing: 0.05em;
}
.blog-card .body { padding: 28px; }
.blog-card h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
  text-wrap: balance;
}
.blog-card .desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 20px;
}
.blog-card .read {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s;
}
.blog-card:hover .read { gap: 14px; color: var(--cyan); }

/* === CTA banner === */
.cta-banner {
  position: relative;
  border-radius: 32px;
  padding: 100px 60px;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(var(--violet-rgb),0.15), transparent 60%),
    radial-gradient(600px 300px at 80% 100%, rgba(var(--cyan-rgb),0.10), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-strong);
  overflow: hidden;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 36px;
  text-wrap: balance;
}
.cta-banner h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--violet-2), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.cta-banner .row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.cta-banner .label { color: var(--mute); padding-left: 16px; }

/* Star bg in CTA */
.cta-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-stars span {
  position: absolute;
  width: 2px; height: 2px;
  background: white;
  border-radius: 999px;
  box-shadow: 0 0 6px white;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* === Footer === */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer-lockup {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(48px, 14vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin-bottom: 60px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--mute) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  word-break: break-word;
}
.footer-lockup em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--violet-2), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
.footer h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mute);
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; font-size: 14px; }
.footer li a { color: var(--ink-2); transition: color .2s; }
.footer li a:hover { color: var(--violet-2); }
.footer-todo { color: var(--mute); cursor: default; }
.footer .legal {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 600px) {
  .footer { padding: 60px 0 32px; }
  .footer-lockup { margin-bottom: 36px; }
  .footer .legal { flex-direction: column; align-items: flex-start; gap: 8px; }
}
.footer .pitch { font-size: 14px; color: var(--ink-2); line-height: 1.55; max-width: 32ch; margin-bottom: 24px; }
.footer-legal-links a {
  color: var(--mute);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-legal-links a:hover { color: var(--violet-2); }
.theme-light .footer-legal-links a:hover { color: var(--violet-deep); }
.footer .socials { display: flex; gap: 10px; }
.footer .socials a {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: all .2s;
}
.footer .socials a:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--ink-on-accent);
  transform: translateY(-2px);
}

/* Newsletter inline */
.nl-form { display: flex; gap: 8px; max-width: 320px; }
.nl-form input {
  flex: 1;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
}
.nl-form input:focus { border-color: var(--violet); }
.nl-form button {
  padding: 12px 16px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: transform .2s;
}
.nl-form button:hover { transform: scale(1.05); }

/* === Responsive === */
@media (max-width: 1100px) {
  :root { --section-py: 120px; }
  .hero { padding-top: 120px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-canvas { max-width: 480px; margin: 0 auto; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .hero-meta > div:nth-child(2) { border-right: 0; }
  .hero-meta > div:nth-child(3) { padding-left: 0; padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--line); }
  .hero-meta > div:nth-child(4) { padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--line); }
  .sect-head { grid-template-columns: 1fr; gap: 24px; }
  .pillars, .problems, .pricing-grid, .testimonials-row, .blog-grid { grid-template-columns: 1fr; }
  .big-stats { grid-template-columns: 1fr 1fr; }
  .big-stats > div:nth-child(2) { border-right: 0; }
  .process-stage { grid-template-columns: 1fr; gap: 32px; }
  .process-step { grid-template-columns: 60px 1fr; }
  .process-step .deliv { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .big-stats { grid-template-columns: 1fr; }
  .big-stats > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 60px 24px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta > div { border-right: 0; padding: 16px 0; border-bottom: 1px solid var(--line); }
}


/* === Section spacing utilities (replace inline styles) === */
.section-tight   { padding-top: 40px; padding-bottom: 20px; }
.section-compact { padding-top: 40px; }
.section-cta     { padding-top: 60px; }

/* Process step pill dot */
.step-pill .step-pill-dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--cyan);
  vertical-align: middle;
  margin-right: 4px;
}

/* CTA banner content */
.cta-banner .cta-content {
  position: relative;
  z-index: 2;
}
.cta-banner .cta-eyebrow {
  margin-bottom: 32px;
}

/* Footer newsletter blurb */
.footer-nl-blurb {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 14px;
  line-height: 1.5;
}
.theme-light .footer-nl-blurb { color: var(--ink-2); }

/* Footer lockup em — already styled but ensure violet tint */


/* === Hero rhythm (aération demandée) === */
.hero-display {
  margin: 0 0 28px;
}
.hero-eyebrow-row {
  margin-bottom: 24px;
}
.hero .lead {
  margin: 0 0 36px;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
}
.hero-cta-row {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-cta-row .btn { white-space: nowrap; }
.hero-meta {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px dashed var(--line);
}

/* Tighten global section spacing slightly */
:root { --section-py: 140px; }
.density-comfy { --section-py: 140px; }
.density-cozy  { --section-py: 100px; }
.density-spacious { --section-py: 200px; }

/* ===========================================================================
 * Footer enrichi — partagé sur toutes les pages secondaires (news, article,
 * a-propos, légal, etc.) via le composant <FooterMin /> de shared.jsx.
 * Anciennement dans legal.css — déplacé ici 2026-05-03 pour qu'il soit
 * disponible sur toutes les pages qui chargent style.css.
 * 2 niveaux : haut (logo + email/CTA + socials) // bas (copyright + liens légaux).
 * ========================================================================= */
.footer-min {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 36px 0 28px;
  color: var(--mute);
}
.footer-min-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.footer-min-brand {
  display: inline-flex;
  align-items: center;
  height: 28px;
  color: var(--ink);
  transition: opacity .18s ease;
}
.footer-min-brand:hover { opacity: 0.7; }
.footer-min-brand svg { height: 24px; width: auto; }
.footer-min-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-min-email {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  transition: color .18s ease;
}
.footer-min-email:hover { color: var(--violet-2); }
.footer-min-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--violet);
  color: var(--ink-on-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.footer-min-cta:hover {
  background: var(--violet-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(139, 92, 255, 0.25);
}
.footer-min-review {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
.footer-min-review:hover {
  color: var(--ink);
  border-color: rgba(255, 200, 0, 0.45);
  background: rgba(255, 200, 0, 0.06);
  transform: translateY(-1px);
}
.theme-light .footer-min-review:hover {
  border-color: rgba(230, 160, 0, 0.5);
  background: rgba(255, 200, 0, 0.10);
}
.footer-min-review-star {
  color: #FFC700;
  font-size: 14px;
  line-height: 1;
}
.footer-min-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-min-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-min-links a {
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-min-links a:hover { color: var(--violet-2); }
.footer-min-socials {
  display: flex;
  gap: 8px;
}
.footer-min-socials a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.footer-min-socials a:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--ink-on-accent);
  transform: translateY(-2px);
}
@media (max-width: 700px) {
  .footer-min-top,
  .footer-min-bottom { flex-direction: column; align-items: flex-start; }
  .footer-min-actions { width: 100%; justify-content: flex-start; }
}
