/* =========================================================================
   Plexyia — Landing v2
   Palette Aube · Fraunces (display) + Inter (body) + JetBrains Mono (numbers)
   ========================================================================= */

:root {
  /* Palette Aube */
  --bg:           #FBF6F0;
  --bg-subtle:    #F5EBDD;
  --bg-section:   #FFFFFF;
  --bg-elevated:  #FFFFFF;
  --fg1:          #2A1F1A;
  --fg2:          #4A3D36;
  --fg3:          #6B5D54;
  --fg4:          #A89684;
  --accent:       #C24A1F;
  --accent-dark:  #A53D17;
  --accent-mid:   #E68565;
  --accent-light: #F9E5DC;
  --accent-bg:    #FCEFE7;
  --border:       #E8DDD0;
  --border-subtle:#EFE6D8;
  --footer-bg:    #2A1F1A;
  --muted-x:      #C9BDAF;

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "Menlo", monospace;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Container */
  --container: 1200px;
  --container-narrow: 1100px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg1);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--accent-light); color: var(--accent-dark); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

/* Fraunces — slight SOFT axis bump for the warmer cut */
.font-display { font-family: var(--font-display); font-variation-settings: "SOFT" 30, "opsz" 64; letter-spacing: -0.025em; }
.font-mono    { font-family: var(--font-mono); }
.italic       { font-style: italic; }
.accent       { color: var(--accent); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-stagger="1"] { transition-delay: 80ms; }
.reveal[data-stagger="2"] { transition-delay: 160ms; }
.reveal[data-stagger="3"] { transition-delay: 240ms; }
.reveal[data-stagger="4"] { transition-delay: 320ms; }
.reveal[data-stagger="5"] { transition-delay: 400ms; }
.reveal[data-stagger="6"] { transition-delay: 480ms; }

/* Containers */
.container        { max-width: var(--container);        margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
.container-text   { max-width: 800px;                   margin: 0 auto; padding: 0 32px; }

/* Eyebrow pill (pastille + mono uppercase) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out),
              border-color 180ms var(--ease-out), transform 180ms var(--ease-out);
  white-space: nowrap;
}
.btn .arrow { transition: transform 250ms var(--ease-out); display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--fg1);
  border-color: var(--fg1);
}
.btn-ghost:hover { background: var(--fg1); color: var(--bg); }

.btn-large { padding: 18px 32px; font-size: 16px; }

/* Section shell */
section { padding: 128px 0; position: relative; }
section.tight { padding: 100px 0; }

/* Section heading scaffolding */
.section-head { text-align: center; max-width: 760px; margin: 0 auto; }
.section-head .eyebrow { margin-bottom: 28px; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
h2.display {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--fg1);
  font-weight: 500;
  text-wrap: balance;
  font-variation-settings: "SOFT" 30;
}
.section-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg3);
  max-width: 620px;
  margin: 24px auto 0;
}

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  background: var(--bg);
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out), backdrop-filter 200ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(251, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav-inner {
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg1);
  font-variation-settings: "SOFT" 30;
}
.nav-logo svg { width: 22px; height: 22px; flex: 0 0 22px; color: var(--accent); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg1);
  position: relative;
  padding: 4px 0;
  transition: color 150ms var(--ease-out);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease-out);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  transition: background 150ms var(--ease-out);
}
.nav-cta:hover { background: var(--accent-dark); }

.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--fg1); }
.nav-burger svg { width: 22px; height: 22px; }
.mobile-menu { display: none; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .mobile-menu {
    display: none;
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 200;
    padding: 32px;
    flex-direction: column;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .mobile-menu-close { background: none; border: 0; cursor: pointer; color: var(--fg1); padding: 8px; }
  .mobile-menu-close svg { width: 24px; height: 24px; }
  .mobile-menu nav {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .mobile-menu nav a {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 28px;
    color: var(--fg1);
    font-variation-settings: "SOFT" 30;
  }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
}

/* =========================================================================
   HERO — version "scale & halo"
   ========================================================================= */
.hero {
  min-height: 100vh;
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
/* Subtil wash chaud en haut à droite (existant, conservé) */
.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -240px;
  width: 820px; height: 820px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 14%, transparent) 0%, transparent 60%);
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
/* Logo packshot — intro splash, centered over the hero stage.
   Plays once on load: mark draws → wordmark fades in → hold → cross-fade out
   as the claim "Pensé, piloté, livré." reveals into the same space. */
.hero-packshot {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  pointer-events: none;
  opacity: 0;
  color: var(--fg1);
  animation: hero-packshot-cycle 2600ms cubic-bezier(.5, 0, .2, 1) 100ms forwards;
}
@keyframes hero-packshot-cycle {
  0%   { opacity: 0; transform: translateY(6px); }
  14%  { opacity: 1; transform: translateY(0); }
  60%  { opacity: 1; transform: translateY(0); }
  92%  { opacity: 0; transform: translateY(-6px); filter: blur(2px); }
  100% { opacity: 0; visibility: hidden; }
}
.hero-mark {
  width: 88px;
  height: 88px;
  display: block;
  overflow: visible;
}
.hero-mark-leg {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: hero-mark-draw 760ms cubic-bezier(.7,0,.2,1) 220ms forwards;
}
.hero-mark-leg:nth-of-type(2) {
  animation-delay: 360ms;
}
.hero-mark-foot,
.hero-mark-apex {
  transform-origin: center;
  transform: scale(0);
  animation: hero-mark-pop 520ms cubic-bezier(.34,1.56,.64,1) forwards;
}
.hero-mark-foot:nth-of-type(3) { animation-delay: 780ms; }
.hero-mark-foot:nth-of-type(4) { animation-delay: 860ms; }
.hero-mark-apex { animation-delay: 1000ms; }
@keyframes hero-mark-draw { to { stroke-dashoffset: 0; } }
@keyframes hero-mark-pop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.hero-packshot-word {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg1);
  font-variation-settings: "SOFT" 30;
  padding-left: 0.18em; /* optical centering for tracked text */
  opacity: 0;
  animation: hero-packshot-word-in 600ms cubic-bezier(.2,.7,.15,1) 1180ms forwards;
}
@keyframes hero-packshot-word-in {
  from { opacity: 0; transform: translateY(6px); letter-spacing: 0.32em; }
  to   { opacity: 1; transform: translateY(0); letter-spacing: 0.18em; }
}

/* While the packshot plays, hold back the hero reveal so the claim arrives
   as the logo dissolves out. The IntersectionObserver still adds `.is-visible`
   on load — we just override the transition-delay on hero children. */
.hero .hero-title.reveal              { transition-delay: 2050ms; }
.hero .hero-sub.reveal[data-stagger="3"]      { transition-delay: 2300ms; }
.hero .hero-cta-row.reveal[data-stagger="4"]  { transition-delay: 2500ms; }
.hero .hero-trust.reveal[data-stagger="5"]    { transition-delay: 2700ms; }
/* Stagger the word-by-word reveal inside the title by the same offset */
.hero-title .hw-i { animation-delay: 0ms; }
.hero .hero-title.is-visible .hw-i {
  /* the existing rule transitions transform/opacity/filter using --d (per-word delay).
     Add a base offset so words begin rising as the packshot fades. */
  transition-delay: calc(var(--d, 0ms) + 2050ms);
}

@media (prefers-reduced-motion: reduce) {
  .hero-packshot { animation: none; opacity: 0; visibility: hidden; }
  .hero-mark-leg { stroke-dashoffset: 0; animation: none; }
  .hero-mark-foot,
  .hero-mark-apex { transform: none; animation: none; }
  .hero-packshot-word { opacity: 0; animation: none; }
  .hero .hero-title.reveal,
  .hero .hero-sub.reveal,
  .hero .hero-cta-row.reveal,
  .hero .hero-trust.reveal { transition-delay: 0ms; }
}

/* Le stage prend toute la largeur — fini les 920px serrés au milieu */
.hero-stage {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  padding: 56px 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Pill badge "2026 · Studio digital · Lyon" */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 5px 5px 5px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(42, 31, 26, 0.02);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg2);
  margin-bottom: 40px;
  white-space: nowrap;
}
.hero-pill-year {
  display: inline-block;
  background: var(--fg1);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.hero-pill-label {
  padding: 0 10px 0 2px;
  text-transform: uppercase;
}

/* Titre massif, edge-to-edge */
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(80px, 17vw, 240px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--fg1);
  margin: 0;
  font-variation-settings: "SOFT" 30, "opsz" 144;
  text-wrap: balance;
  width: 100%;
  max-width: 1500px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

/* Word-by-word reveal — each word rises from below a clip-line, fades in, and
   the italic "livré." gets a subtle blur-clear + color settle. */
.hero-title .hw {
  display: inline-block;
  /* Was `overflow: hidden`, which cropped italic right-overhang (livré) and
     the comma/accents on the right edge of each word. Switch to a clip-path
     that only clips the BOTTOM edge — the slide-up reveal still works,
     but italic terminals, accents and commas can breathe sideways. */
  overflow: visible;
  clip-path: inset(-0.4em -0.6em 0 -0.1em);
  vertical-align: baseline;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.hero-title .hw-i {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  filter: blur(6px);
  will-change: transform, opacity, filter;
  transition:
    transform 900ms cubic-bezier(.2,.7,.15,1) var(--d, 0ms),
    opacity   600ms cubic-bezier(.2,.7,.15,1) var(--d, 0ms),
    filter    600ms cubic-bezier(.2,.7,.15,1) var(--d, 0ms);
}
.hero-title.is-visible .hw-i {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}
/* Italic "livré." gets a tiny extra accent-pop: starts ink, settles to terracotta */
.hero-title .hw-i.hw-i,
.hero-title em.hw-i {
  /* nothing extra — color stays accent. We add a subtle underline-from-left swipe instead. */
}
.hero-title em.hw-i {
  position: relative;
}
.hero-title em.hw-i::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.06em;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 700ms cubic-bezier(.2,.7,.15,1) calc(var(--d, 0ms) + 500ms);
  opacity: 0.35;
}
.hero-title.is-visible em.hw-i::after {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .hero-title .hw-i { transition: none; transform: none; opacity: 1; filter: none; }
  .hero-title em.hw-i::after { transition: none; transform: scaleX(1); }
}

/* Sub courte, max-width contenu mais centré */
.hero-sub {
  margin: 40px auto 0;
  max-width: 640px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg2);
  text-wrap: pretty;
}
.hero-sub b {
  color: var(--fg1);
  font-weight: 600;
}
.hero-sub em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero-sub .font-mono {
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* CTA row */
.hero-cta-row {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-secondary {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 4px 2px;
}
.hero-secondary::after {
  content: "→";
  font-family: var(--font-mono);
  transition: transform 200ms var(--ease-out);
}
.hero-secondary:hover { color: var(--fg1); }
.hero-secondary:hover::after { transform: translateX(3px); }

/* Trust line */
.hero-trust {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg3);
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust .sep { color: var(--accent); font-weight: 700; }

/* =========================================================================
   Vague clients — halo terracotta + wordmarks placeholders
   ========================================================================= */
.hero-clients {
  margin-top: 80px;
  width: 100%;
  position: relative;
  padding: 80px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
/* L'arc : grand cercle ancré sous la baseline, dégradé terracotta vers transparent */
.hero-clients-halo {
  position: absolute;
  left: 50%;
  bottom: -40%;
  transform: translateX(-50%);
  width: min(1400px, 120%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, color-mix(in oklab, var(--accent) 24%, transparent) 0%, color-mix(in oklab, var(--accent) 8%, transparent) 38%, transparent 62%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
/* Léger trait d'arc pour suggérer la "vague" */
.hero-clients-halo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid color-mix(in oklab, var(--accent) 22%, transparent);
  mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 55%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 55%);
}
.hero-clients-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg3);
}
.hero-clients-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.hero-client {
  font-size: clamp(18px, 2vw, 26px);
  color: var(--fg2);
  opacity: 0.78;
  transition: opacity 200ms var(--ease-out), color 200ms var(--ease-out);
  white-space: nowrap;
}
.hero-client:hover {
  opacity: 1;
  color: var(--fg1);
}

/* Tablet & below */
@media (max-width: 880px) {
  .hero { padding: 96px 0 0; }
  .hero-stage { padding: 32px 24px 0; }
  .hero-pill { margin-bottom: 28px; font-size: 11px; }
  .hero-mark { width: 64px; height: 64px; }
  .hero-packshot-word { font-size: 16px; letter-spacing: 0.14em; }
  .hero-title { letter-spacing: -0.035em; }
  .hero-sub { font-size: 17px; margin-top: 28px; }
  .hero-cta-row { margin-top: 28px; gap: 16px; }
  .hero-clients { margin-top: 56px; padding: 56px 16px 40px; }
  .hero-clients-halo { bottom: -30%; }
}

/* Carousel principes */
.principles {
  margin-top: 96px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.principles::before,
.principles::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.principles::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-subtle), transparent);
}
.principles::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-subtle), transparent);
}
.principles-tag {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg3);
  z-index: 3;
  background: var(--bg-subtle);
  padding-right: 16px;
}
.principles-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll-x 50s linear infinite;
  padding-left: 140px;
}
.principles:hover .principles-track { animation-play-state: paused; }
.principles-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--fg2);
  display: inline-flex;
  align-items: center;
  gap: 48px;
  font-variation-settings: "SOFT" 30;
}
.principles-item::after {
  content: "·";
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================================
   À PROPOS
   ========================================================================= */
.about {
  padding: 140px 0;
  text-align: center;
}
.about-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.35;
  color: var(--fg1);
  max-width: 760px;
  margin: 32px auto 40px;
  font-variation-settings: "SOFT" 30;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.about-text em {
  font-style: italic;
  color: var(--accent);
}

/* =========================================================================
   NOTRE SOLUTION (orbite + cards)
   ========================================================================= */
.solution { background: var(--bg); padding: 100px 0 140px; }
.orbit {
  position: relative;
  height: 480px;
  margin: 0 auto 80px;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-halo {
  position: absolute;
  left: 50%; top: calc(50% + 60px);
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 9%, transparent) 0%, transparent 55%);
  filter: blur(60px);
  pointer-events: none;
}
.orbit-arc {
  position: absolute;
  left: 50%; top: calc(50% + 60px);
  transform: translate(-50%, -50%);
  width: 980px; height: 980px;
  border-radius: 50%;
  border: 1px dashed color-mix(in oklab, var(--accent) 28%, transparent);
  opacity: 0.5;
  pointer-events: none;
}
.orbit-arc-2 {
  width: 740px; height: 740px;
  border-color: color-mix(in oklab, var(--accent) 18%, transparent);
  opacity: 0.35;
}
.orbit {
  /* anchor for the absolutely-positioned center */
}
.orbit-center {
  position: absolute;
  left: 50%;
  top: calc(50% + 60px);
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px -8px rgba(42, 31, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-center svg {
  width: 48px; height: 48px;
  color: var(--accent);
  animation: orbit-spin 60s linear infinite;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.orbit-icon {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(42, 31, 26, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
  cursor: default;
  animation: orbit-breathe 6s ease-in-out infinite;
}
.orbit-icon:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 31, 26, 0.12);
  z-index: 4;
}
.orbit-icon:hover .orbit-tip { opacity: 1; transform: translateX(-50%) translateY(0); }
.orbit-tip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--fg2);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 200ms, transform 200ms;
  pointer-events: none;
  font-variation-settings: "SOFT" 30;
}
@keyframes orbit-breathe {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -5px; }
}
.orbit-icon img,
.orbit-icon svg.brand { width: 30px; height: 30px; object-fit: contain; }
.orbit-icon .glyph {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--fg1);
  font-variation-settings: "SOFT" 30;
}

/* =========================================================================
   Solution cards — version "magazine" avec visuels signature
   ========================================================================= */
.caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.cap {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-out);
  isolation: isolate;
}
.cap::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 22%, transparent) 0%, transparent 65%);
  filter: blur(28px);
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.cap:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--accent) 35%, var(--border));
  box-shadow: 0 20px 50px -22px rgba(42, 31, 26, 0.16), 0 2px 8px rgba(42, 31, 26, 0.04);
}
.cap:hover::before { opacity: 1; }

/* Visual signature (top half) */
.cap-art {
  position: relative;
  height: 220px;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, color-mix(in oklab, var(--bg-subtle) 70%, var(--bg)) 100%);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* ── 01 Sites — mini browser mock with pulsing CTA ── */
.cap-art--sites .cap-art-browser {
  width: 78%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 28px -16px rgba(42, 31, 26, 0.18);
  transform: translateY(14px);
  transition: transform 400ms var(--ease-out);
  position: relative;
}
.cap:hover .cap-art--sites .cap-art-browser { transform: translateY(6px) rotate(-0.4deg); }
.cap-art-chrome {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 10px;
  border-bottom: 1px solid var(--border-subtle);
}
.cap-art-chrome > span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
}
.cap-art-chrome > i {
  margin-left: auto;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg4);
  padding: 1px 6px;
  background: var(--bg);
  border-radius: 3px;
}
.cap-art-page {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cap-art-h {
  height: 8px;
  background: linear-gradient(90deg, var(--fg2), color-mix(in oklab, var(--fg2) 40%, transparent));
  border-radius: 2px;
  width: 90%;
}
.cap-art-h--short { width: 55%; opacity: 0.6; }
.cap-art-cta {
  margin-top: 4px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--accent);
  padding: 5px 10px;
  border-radius: 4px;
  position: relative;
}
.cap-art-cta::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 6px;
  border: 1.5px solid var(--accent);
  opacity: 0;
  animation: cap-pulse 2.4s ease-in-out infinite;
}
@keyframes cap-pulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.35); }
}
.cap-art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 6px;
}
.cap-art-grid span {
  height: 10px;
  background: var(--bg-subtle);
  border-radius: 2px;
}

/* ── 02 Flow — three nodes connected by animated dashed path ── */
.cap-art--flow { color: var(--fg2); }
.cap-art--flow svg.cap-art-flow { width: 90%; height: 80%; }
.cap-art--flow .cap-art-path {
  stroke: color-mix(in oklab, var(--fg2) 55%, transparent);
  animation: cap-dash 8s linear infinite;
}
@keyframes cap-dash { to { stroke-dashoffset: -120; } }
.cap-art--flow .cap-art-dot { color: var(--accent); }
.cap-art--flow .cap-art-lbl {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  fill: var(--fg3);
}
.cap-art--flow g circle[fill="currentColor"] { color: var(--accent); }
.cap-art--flow g rect { stroke: var(--accent); }

/* ── 03 Tools — mini app dashboard ── */
.cap-art--tools { padding: 18px; }
.cap-art-app {
  width: 86%;
  height: 88%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 28px -16px rgba(42, 31, 26, 0.18);
  display: grid;
  grid-template-columns: 60px 1fr;
  overflow: hidden;
  transform: translateY(8px);
  transition: transform 400ms var(--ease-out);
}
.cap:hover .cap-art--tools .cap-art-app { transform: translateY(0); }
.cap-art-sidebar {
  background: var(--bg-subtle);
  border-right: 1px solid var(--border-subtle);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cap-art-pill {
  height: 8px;
  background: color-mix(in oklab, var(--fg3) 25%, transparent);
  border-radius: 2px;
}
.cap-art-pill.active { background: var(--accent); }
.cap-art-main {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cap-art-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cap-art-stat-n {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--fg1);
  letter-spacing: -0.01em;
}
.cap-art-stat-bar {
  flex: 1;
  height: 4px;
  background: var(--bg-subtle);
  border-radius: 2px;
  overflow: hidden;
}
.cap-art-stat-bar i {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transform-origin: left;
  animation: cap-grow 2.4s ease-in-out infinite alternate;
}
@keyframes cap-grow {
  from { transform: scaleX(0.45); }
  to   { transform: scaleX(0.92); }
}
.cap-art-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cap-art-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dashed var(--border-subtle);
}
.cap-art-row > span:first-child {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 2px;
}
.cap-art-tag {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  color: var(--accent-dark);
}
.cap-art-tag.warn {
  background: color-mix(in oklab, var(--fg2) 14%, transparent);
  color: var(--fg2);
}

/* Body */
.cap-body {
  position: relative;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  z-index: 1;
}
.cap-num {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: color-mix(in oklab, var(--accent) 18%, transparent);
  font-variation-settings: "SOFT" 30, "opsz" 144;
  transition: color 300ms var(--ease-out), transform 300ms var(--ease-out);
  pointer-events: none;
}
.cap:hover .cap-num {
  color: var(--accent);
  transform: translateY(-2px);
}
.cap-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg3);
  font-weight: 500;
}
.cap-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg1);
  margin: 0;
  font-variation-settings: "SOFT" 30;
  text-wrap: balance;
}
.cap-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.cap-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg3);
  margin: 0;
}
.cap-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px dashed var(--border-subtle);
}
.cap-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--fg2);
  line-height: 1.45;
}
.cap-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 12px; height: 7px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.cap-cta {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  position: relative;
}
.cap-cta::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease-out);
}
.cap:hover .cap-cta::after { transform: scaleX(1); }
.cap-cta .arrow { transition: transform 200ms var(--ease-out); }
.cap:hover .cap-cta .arrow { transform: translateX(3px); }

@media (max-width: 1100px) {
  .caps { grid-template-columns: 1fr; gap: 20px; }
  .cap-art { height: 200px; }
}

/* =========================================================================
   INTÉGRATIONS
   ========================================================================= */
.integrations { background: var(--bg-section); }

/* Integration cards — same magazine treatment as .cap, with logos grid */
.int-caps { margin-top: 64px; }
.int-art { padding: 24px; }
.int-logos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: center;
  justify-items: center;
}
.int-logo {
  width: 76px;
  height: 76px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px -8px rgba(42, 31, 26, 0.10);
  transition: transform 240ms var(--ease-out), border-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.int-logo svg { width: 38px; height: 38px; display: block; }
.cap:hover .int-logo {
  border-color: color-mix(in oklab, var(--accent) 22%, var(--border));
}
.cap:hover .int-logo:nth-child(1) { transform: translateY(-3px); transition-delay: 0ms;   }
.cap:hover .int-logo:nth-child(2) { transform: translateY(-3px); transition-delay: 60ms;  }
.cap:hover .int-logo:nth-child(3) { transform: translateY(-3px); transition-delay: 120ms; }
.cap:hover .int-logo:nth-child(4) { transform: translateY(-3px); transition-delay: 180ms; }
.integrations-footnote {
  margin-top: 48px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--fg3);
  font-variation-settings: "SOFT" 30;
}

/* Agence partenaire badges — Make / n8n, sit above the footnote */
.int-partners {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.int-partner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(42, 31, 26, 0.04);
  transition: border-color 280ms var(--ease-out), box-shadow 280ms var(--ease-out), transform 280ms var(--ease-out);
}
.int-partner:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 18px -10px rgba(194, 74, 31, 0.4);
  transform: translateY(-2px);
}
.int-partner img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.int-partner-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.int-partner-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg3);
}
.int-partner-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg1);
  letter-spacing: -0.01em;
  margin-top: 2px;
}

/* --- Editorial "rails" : 3 lignes éditoriales, pas de cards ----------- */
.int-stack {
  margin-top: 72px;
  border-top: 1px solid var(--border);
}
.int-rail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.4fr;
  gap: 64px;
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  position: relative;
}
/* Vertical orange tick on the left, like an editorial index */
.int-rail::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 48px;
  bottom: 56px;
  width: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
}
.int-rail:hover::before { opacity: 1; }

.int-rail-head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto auto;
  column-gap: 18px;
  row-gap: 8px;
  align-items: baseline;
}
.int-rail-num {
  grid-row: 1 / span 4;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "SOFT" 30, "opsz" 144;
  font-weight: 400;
  font-size: 76px;
  line-height: 0.85;
  color: var(--accent);
  letter-spacing: -0.04em;
  align-self: start;
  padding-top: 6px;
}
.int-rail-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg3);
}
.int-rail-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 30, "opsz" 64;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg1);
}
.int-rail-title em {
  font-style: italic;
  color: var(--accent);
}
.int-rail-desc {
  margin: 4px 0 0;
  color: var(--fg2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 44ch;
}
.int-rail-cta {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 200ms var(--ease-out), gap 200ms var(--ease-out);
}
.int-rail-cta .arrow { transition: transform 200ms var(--ease-out); }
.int-rail-cta:hover { border-color: var(--accent); }
.int-rail-cta:hover .arrow { transform: translateX(3px); }

/* The actual "rail" — horizontal dashed line with logo beads on it */
.int-rail-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 160px;
  padding: 24px 0;
}
.int-rail-line {
  position: absolute;
  top: 50%;
  left: 4%;
  right: 4%;
  height: 1px;
  background-image: linear-gradient(to right, var(--accent) 50%, transparent 0);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  opacity: 0.45;
  transform: translateY(-1px);
}
.int-bead {
  position: relative;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "SOFT" 30;
  font-size: 13px;
  color: var(--fg2);
  text-align: center;
  line-height: 1.2;
  transition: transform 280ms var(--ease-out);
}
.int-bead svg,
.int-bead img {
  display: block;
  background: var(--bg-section);
  padding: 12px;
  width: 64px;
  height: 64px;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(42, 31, 26, 0.04);
  transition: border-color 280ms var(--ease-out), box-shadow 280ms var(--ease-out), transform 280ms var(--ease-out);
  box-sizing: border-box;
  object-fit: contain;
}
.int-bead em {
  display: block;
  max-width: 11ch;
}
.int-bead:hover {
  transform: translateY(-4px);
}
.int-bead:hover svg,
.int-bead:hover img {
  border-color: var(--accent);
  box-shadow: 0 8px 18px -10px rgba(194, 74, 31, 0.4);
}
/* The "+ N autres" terminal bead — text instead of logo */
.int-bead--text {
  color: var(--fg3);
}
.int-bead--text .int-bead-mono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px dashed var(--fg4);
  border-radius: 50%;
  background: var(--bg-section);
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  color: var(--fg2);
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0 6px;
  line-height: 1.1;
}

/* Staggered bead entrance on rail reveal */
.int-rail.reveal .int-bead {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.int-rail.reveal.is-visible .int-bead { opacity: 1; transform: none; }
.int-rail.reveal.is-visible .int-bead:nth-child(2) { transition-delay: 120ms; }
.int-rail.reveal.is-visible .int-bead:nth-child(3) { transition-delay: 200ms; }
.int-rail.reveal.is-visible .int-bead:nth-child(4) { transition-delay: 280ms; }
.int-rail.reveal.is-visible .int-bead:nth-child(5) { transition-delay: 360ms; }
.int-rail.reveal.is-visible .int-bead:nth-child(6) { transition-delay: 440ms; }

/* Responsive — stack rail-head over track on narrow screens */
@media (max-width: 900px) {
  .int-rail {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }
  .int-rail-num { font-size: 56px; }
  .int-rail-track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    min-height: 130px;
  }
  .int-bead { font-size: 11px; gap: 8px; }
  .int-bead svg, .int-bead img, .int-bead--text .int-bead-mono { width: 52px; height: 52px; }
  .int-bead svg, .int-bead img { padding: 10px; }
}
@media (max-width: 560px) {
  .int-rail-track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 12px 0;
  }
  .int-bead svg, .int-bead img, .int-bead--text .int-bead-mono { width: 44px; height: 44px; }
  .int-bead svg, .int-bead img { padding: 8px; }
  .int-bead em { font-size: 10px; max-width: 9ch; }
  .int-bead--text .int-bead-mono { font-size: 9px; }
}

/* =========================================================================
   SITE AUGMENTÉ (signature) — modernisé
   ========================================================================= */
.site-augmente {
  background: var(--bg-subtle);
  overflow: hidden;
  isolation: isolate;
}
.sa-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sa-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(color-mix(in oklab, var(--fg1) 10%, transparent) 1px, transparent 1.4px);
  background-size: 28px 28px;
  background-position: 0 0;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, black 0%, transparent 70%);
}
.sa-bg-glow {
  position: absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 520px;
  background: radial-gradient(ellipse at center, color-mix(in oklab, var(--accent) 14%, transparent) 0%, transparent 60%);
  filter: blur(60px);
  opacity: 0.55;
}
.site-augmente > .container-narrow { position: relative; z-index: 1; }

/* ── HEADER ───────────────────────────────────────────────────────── */
.sa-head {
  max-width: 820px;
  text-align: center;
}
.sa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg2);
  font-weight: 500;
  margin-bottom: 28px;
}
.sa-live {
  position: relative;
  display: inline-flex;
  width: 8px; height: 8px;
}
.sa-live i {
  position: absolute; inset: 0;
  background: #2A8A4F;
  border-radius: 50%;
}
.sa-live::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: 50%;
  background: #2A8A4F;
  opacity: 0.35;
  animation: sa-ping 2s ease-out infinite;
}
@keyframes sa-ping {
  0% { transform: scale(0.8); opacity: 0.55; }
  80%, 100% { transform: scale(2.2); opacity: 0; }
}
.sa-edition {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--fg3);
  background: var(--bg-subtle);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
}

.sa-title {
  font-size: clamp(40px, 5.4vw, 60px);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.05;
}

.sa-lead {
  margin: 24px auto 0;
  max-width: 680px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg2);
  text-wrap: pretty;
}
.sa-lead em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30;
  font-weight: 400;
}

.sa-stats {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  padding: 14px 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 32px -18px rgba(42,31,26,0.18);
}
.sa-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.sa-stat-num {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg1);
  letter-spacing: -0.01em;
}
.sa-stat-unit { color: var(--fg3); font-weight: 500; }
.sa-stat-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg3);
}
.sa-stat-sep {
  width: 1px; height: 28px;
  background: var(--border);
}

/* ── COMPARE — side-by-side cards, classique → augmenté ─────────── */
.sa-compare {
  margin-top: 72px;
}
.sa-compare-pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.sa-col {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 36px 40px;
  box-shadow: 0 12px 32px -24px rgba(42, 31, 26, 0.16);
  position: relative;
  isolation: isolate;
}
.sa-col--classic {
  background: linear-gradient(180deg, color-mix(in oklab, var(--bg-subtle) 70%, var(--bg-elevated)) 0%, var(--bg-elevated) 100%);
}
.sa-col--augmented {
  border-color: color-mix(in oklab, var(--accent) 22%, var(--border));
  box-shadow: 0 18px 44px -22px color-mix(in oklab, var(--accent) 35%, transparent);
}
.sa-col--augmented::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, color-mix(in oklab, var(--accent) 10%, transparent) 0%, transparent 50%);
  pointer-events: none;
  border-radius: var(--radius-xl);
}

.sa-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.sa-col-head h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--fg1);
  font-variation-settings: "SOFT" 30;
}
.sa-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sa-tag--muted { color: var(--fg3); }
.sa-tag--active {
  border-color: color-mix(in oklab, var(--accent) 40%, var(--border));
  background: var(--accent-bg);
  color: var(--accent-dark);
}
.sa-tag--active i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 60%, transparent);
  animation: sa-pulse 2.2s var(--ease-out) infinite;
}
@keyframes sa-pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 50%, transparent); }
  70%  { box-shadow: 0 0 0 6px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.sa-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.sa-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.sa-compare.is-visible .sa-list--classic li { opacity: 1; transform: none; }
.sa-compare.is-visible .sa-list--augmented li {
  opacity: 1; transform: none;
  transition-delay: calc(550ms + var(--i, 0) * 90ms);
}
.sa-list li::before {
  content: "";
  flex: 0 0 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
}
.sa-list--classic li {
  color: var(--fg3);
}
.sa-list--classic li span { position: relative; }
.sa-list--classic li span::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 52%;
  height: 1px;
  background: color-mix(in oklab, var(--fg3) 35%, transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 540ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms + 320ms);
}
.sa-compare.is-visible .sa-list--classic li span::after { transform: scaleX(1); }
.sa-list--classic li::before {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none' stroke='%23A89684' stroke-width='1.5' stroke-linecap='round'><line x1='5' y1='5' x2='13' y2='13'/><line x1='13' y1='5' x2='5' y2='13'/></svg>") center / contain no-repeat,
    color-mix(in oklab, var(--fg4) 18%, transparent);
  border-radius: 50%;
}
.sa-list--augmented li {
  color: var(--fg1);
  font-weight: 500;
}
.sa-list--augmented li::before {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='4,9 8,13 14,5'/></svg>") center / 12px no-repeat,
    var(--accent);
  box-shadow: 0 4px 10px -4px color-mix(in oklab, var(--accent) 50%, transparent);
}

/* central transformation divider with badge */
.sa-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sa-divider-line {
  position: absolute;
  top: 18%; bottom: 18%;
  left: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, color-mix(in oklab, var(--accent) 30%, transparent) 0 4px, transparent 4px 10px);
  opacity: 0;
  transform: scaleY(0.3);
  transform-origin: center;
  transition: opacity 700ms var(--ease-out) 250ms, transform 800ms var(--ease-out) 250ms;
}
.sa-compare.is-visible .sa-divider-line { opacity: 1; transform: scaleY(1); }
.sa-divider-badge {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 6px var(--bg),
    0 10px 24px -8px color-mix(in oklab, var(--accent) 65%, transparent);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 500ms var(--ease-out) 850ms, transform 600ms cubic-bezier(0.16, 1, 0.3, 1) 850ms;
}
.sa-compare.is-visible .sa-divider-badge { opacity: 1; transform: scale(1); }
.sa-divider-badge svg { width: 20px; height: 20px; }

/* ── BRIQUES ─────────────────────────────────────────────────────── */
.briques-head {
  margin-top: 88px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.briques-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg3);
  margin-bottom: 10px;
}
.briques-head h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 500;
  color: var(--fg1);
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 30;
  text-wrap: balance;
  line-height: 1.1;
}
.briques-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
  transition: border-color 200ms var(--ease-out), gap 200ms var(--ease-out);
}
.briques-link:hover { border-color: var(--accent); gap: 14px; }
.briques-link .arrow { transition: transform 200ms var(--ease-out); }
.briques-link:hover .arrow { transform: translateX(2px); }

.briques-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.brique {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px 20px;
  transition: border-color 220ms var(--ease-out), transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
  overflow: hidden;
  isolation: isolate;
}
.brique::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 5%, transparent) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
  pointer-events: none;
  z-index: -1;
}
.brique:hover {
  border-color: color-mix(in oklab, var(--accent) 50%, var(--border));
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(42, 31, 26, 0.18);
}
.brique:hover::after { opacity: 1; }
.brique-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.brique .num {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.brique-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.brique:hover .brique-dot {
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 20%, transparent);
}
.brique .name {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg1);
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}
.brique-tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg4);
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

/* ── BRIQUES — bespoke "activation" reveal ──────────────────────────
   Each module tilts up from its base with a perspective hinge, while
   an accent line sweeps diagonally across, and the status dot briefly
   "switches on". Cascades evenly across all 8 cards. */
.briques-grid {
  perspective: 1600px;
}
.briques-grid .brique.reveal {
  opacity: 0;
  transform: rotateX(-26deg) translateY(18px) scale(0.96);
  transform-origin: 50% 100%;
  transition:
    opacity 620ms var(--ease-out),
    transform 880ms cubic-bezier(0.22, 0.78, 0.28, 1),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}
.briques-grid .brique.reveal.is-visible {
  opacity: 1;
  transform: rotateX(0) translateY(0) scale(1);
}
/* keep hover lift working after the reveal lands */
.briques-grid .brique.reveal.is-visible:hover {
  transform: translateY(-3px);
}

/* Diagonal accent sweep across each card as it activates */
.briques-grid .brique.reveal::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    color-mix(in oklab, var(--accent) 32%, transparent) 50%,
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-130%);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  border-radius: inherit;
}
.briques-grid .brique.reveal.is-visible::before {
  animation: brique-sweep 1100ms cubic-bezier(0.25, 0.7, 0.3, 1) forwards;
}
@keyframes brique-sweep {
  0%   { transform: translateX(-130%); opacity: 0; }
  18%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { transform: translateX(130%); opacity: 0; }
}

/* Status dot "switches on" mid-reveal, then settles back */
.briques-grid .brique.reveal.is-visible .brique-dot {
  animation: brique-dot-pulse 900ms cubic-bezier(0.3, 0.7, 0.3, 1);
}
@keyframes brique-dot-pulse {
  0%   { transform: scale(0.4); background: var(--border); box-shadow: none; }
  40%  { transform: scale(1.6); background: var(--accent);
         box-shadow: 0 0 0 5px color-mix(in oklab, var(--accent) 18%, transparent); }
  100% { transform: scale(1); background: var(--border); box-shadow: none; }
}

/* Cascade across all 8 cards — overrides the generic data-stagger delays */
.briques-grid .brique.reveal:nth-child(1) { transition-delay: 0ms;   }
.briques-grid .brique.reveal:nth-child(2) { transition-delay: 85ms;  }
.briques-grid .brique.reveal:nth-child(3) { transition-delay: 170ms; }
.briques-grid .brique.reveal:nth-child(4) { transition-delay: 255ms; }
.briques-grid .brique.reveal:nth-child(5) { transition-delay: 340ms; }
.briques-grid .brique.reveal:nth-child(6) { transition-delay: 425ms; }
.briques-grid .brique.reveal:nth-child(7) { transition-delay: 510ms; }
.briques-grid .brique.reveal:nth-child(8) { transition-delay: 595ms; }
.briques-grid .brique.reveal:nth-child(1).is-visible::before,
.briques-grid .brique.reveal:nth-child(1).is-visible .brique-dot { animation-delay: 120ms; }
.briques-grid .brique.reveal:nth-child(2).is-visible::before,
.briques-grid .brique.reveal:nth-child(2).is-visible .brique-dot { animation-delay: 205ms; }
.briques-grid .brique.reveal:nth-child(3).is-visible::before,
.briques-grid .brique.reveal:nth-child(3).is-visible .brique-dot { animation-delay: 290ms; }
.briques-grid .brique.reveal:nth-child(4).is-visible::before,
.briques-grid .brique.reveal:nth-child(4).is-visible .brique-dot { animation-delay: 375ms; }
.briques-grid .brique.reveal:nth-child(5).is-visible::before,
.briques-grid .brique.reveal:nth-child(5).is-visible .brique-dot { animation-delay: 460ms; }
.briques-grid .brique.reveal:nth-child(6).is-visible::before,
.briques-grid .brique.reveal:nth-child(6).is-visible .brique-dot { animation-delay: 545ms; }
.briques-grid .brique.reveal:nth-child(7).is-visible::before,
.briques-grid .brique.reveal:nth-child(7).is-visible .brique-dot { animation-delay: 630ms; }
.briques-grid .brique.reveal:nth-child(8).is-visible::before,
.briques-grid .brique.reveal:nth-child(8).is-visible .brique-dot { animation-delay: 715ms; }

@media (prefers-reduced-motion: reduce) {
  .briques-grid .brique.reveal {
    transform: none;
    transition: opacity 400ms var(--ease-out);
  }
  .briques-grid .brique.reveal.is-visible::before,
  .briques-grid .brique.reveal.is-visible .brique-dot { animation: none; }
}

/* responsive */
@media (max-width: 960px) {
  .sa-compare-pair { grid-template-columns: 1fr; gap: 28px; }
  .sa-divider {
    position: relative;
    left: auto;
    width: auto;
    height: 28px;
    margin: -14px 0;
  }
  .sa-divider-line {
    top: auto; bottom: auto;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: scaleY(1);
    opacity: 1;
  }
  .sa-divider-badge { transform: rotate(90deg); }
  .sa-compare.is-visible .sa-divider-badge { transform: rotate(90deg) scale(1); }
  .briques-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .sa-eyebrow { flex-wrap: wrap; justify-content: center; padding: 8px 14px; }
  .sa-stats { flex-wrap: wrap; gap: 14px 20px; padding: 14px 20px; border-radius: var(--radius-xl); }
  .sa-stat-sep { display: none; }
  .sa-col { padding: 28px 22px; }
  .briques-head { flex-direction: column; align-items: flex-start; }
}

/* =========================================================================
   DASHBOARD
   ========================================================================= */
.dashboard-section { background: var(--bg); }
.dash-frame {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(42, 31, 26, 0.08), 0 2px 8px rgba(42, 31, 26, 0.04);
  background: var(--bg-elevated);
}
.dash-chrome {
  background: #F0E8DC;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
}
.dash-chrome .dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-chrome .dot.red    { background: #E66B5C; }
.dash-chrome .dot.yellow { background: #E8C25C; }
.dash-chrome .dot.green  { background: #6DBB8B; }
.dash-chrome .url {
  margin-left: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg3);
  flex: 1;
  max-width: 460px;
}
.dash-body { padding: 32px; }
.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.dash-brand {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
  box-shadow: 0 0 0 3px var(--accent-light);
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.45; }
}
.dash-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg3);
}
.dash-greeting {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--fg1);
  padding: 14px 0 24px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
  font-variation-settings: "SOFT" 30;
  letter-spacing: -0.01em;
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.kpi {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.kpi .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg3);
}
.kpi .value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg1);
  margin: 6px 0 2px;
  font-variation-settings: "SOFT" 30;
}
.kpi .delta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
}
.kpi .delta.neutral { color: var(--fg3); }
.dash-mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.dash-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.dash-card-head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg3);
  margin-bottom: 16px;
}
.bar-row {
  display: grid;
  grid-template-columns: 1fr 1fr 40px;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--fg1);
}
.bar-row:last-child { margin-bottom: 0; }
.bar { height: 6px; background: #F0E8DC; border-radius: 3px; overflow: hidden; }
.bar > i { display: block; height: 100%; background: var(--accent); border-radius: 3px; }
.bar-pct { font-family: var(--font-mono); font-size: 11px; color: var(--fg3); text-align: right; }
.lead-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
}
.lead-row:first-of-type { border-top: 0; padding-top: 0; }
.lead-row:last-of-type { padding-bottom: 0; }
.lead-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-score {
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.lead-cta { color: var(--accent); font-size: 12px; font-weight: 500; }
.lead-cta:hover { text-decoration: underline; }
.report {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.report p { font-size: 13.5px; color: var(--fg2); margin: 0 0 10px; line-height: 1.6; }
.report p b { color: var(--fg1); font-weight: 600; }
.report-foot {
  display: flex;
  justify-content: flex-end;
}
.report-foot a { color: var(--accent); font-size: 12px; font-weight: 500; }

/* =========================================================================
   TROIS FAÇONS DE TRAVAILLER
   ========================================================================= */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.offer-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 220ms var(--ease-out), transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.offer-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -16px rgba(42, 31, 26, 0.1);
}
.offer-card.featured {
  border: 1.5px solid var(--accent);
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 5%, var(--bg-elevated)) 0%, var(--bg-elevated) 220px);
}
.offer-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  white-space: nowrap;
}
.offer-badge--soft {
  background: var(--accent-bg);
  color: var(--accent-dark);
  border: 1px solid color-mix(in oklab, var(--accent) 28%, var(--border));
}
.offer-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.offer-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--fg1);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.2;
  font-variation-settings: "SOFT" 30;
  text-wrap: balance;
}
.offer-desc {
  font-size: 15px;
  color: var(--fg3);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.offer-items-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-bg);
  border: 1px solid color-mix(in oklab, var(--accent) 25%, var(--border));
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.offer-items-label::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.offer-items {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.offer-items li {
  font-size: 14px;
  color: var(--fg2);
  position: relative;
  padding-left: 14px;
  line-height: 1.5;
}
.offer-items li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.offer-items li b { color: var(--fg1); font-weight: 600; }
.offer-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg1);
  margin-bottom: 14px;
}
.offer-link {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  gap: 6px;
}
.offer-link:hover { text-decoration: underline; }

/* =========================================================================
   MÉTHODE
   ========================================================================= */
.method { background: var(--bg-section); }
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 72px;
  position: relative;
}
.method-grid::before {
  content: "";
  position: absolute;
  top: 38px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
  opacity: 0.25;
  z-index: 0;
}
.method-step { position: relative; z-index: 1; }
.method-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 60px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  font-variation-settings: "SOFT" 30;
}
.method-sep {
  width: 32px; height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.method-step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--fg1);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  font-variation-settings: "SOFT" 30;
}
.method-step p {
  font-size: 15px;
  color: var(--fg3);
  line-height: 1.6;
  margin: 0 0 16px;
}
.method-step .duration {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg3);
}

/* =========================================================================
   COMPARISON
   ========================================================================= */
.comparison .compare-grid { margin-top: 64px; }
.comparison .compare-col.classic ul,
.comparison .compare-col.augmented ul { gap: 18px; }
.comparison .compare-col.classic li { font-size: 15px; line-height: 1.7; }
.comparison .compare-col.augmented li { font-size: 15px; line-height: 1.7; }
.comparison h2 .it { font-style: italic; }

/* =========================================================================
   CAS CLIENTS
   ========================================================================= */
.cases { background: var(--bg-section); }
.cases-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.cases-intro h2 {
  margin: 24px 0 24px;
}
.cases-intro p {
  font-size: 17px;
  color: var(--fg3);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 0 32px;
}
.cases-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.case-card.highlight {
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 4%, var(--bg)) 0%, var(--bg) 100%);
  border-color: color-mix(in oklab, var(--accent) 30%, transparent);
}
.case-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg3);
  margin-bottom: 18px;
}
.case-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg1);
  margin: 0 0 12px;
  line-height: 1.2;
  font-variation-settings: "SOFT" 30;
  text-wrap: balance;
}
.case-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg2);
  font-variation-settings: "SOFT" 30;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: pretty;
}
.case-kpis {
  display: flex;
  gap: 0;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}
.case-kpi {
  flex: 1;
  padding: 0 16px;
  border-left: 1px solid var(--border-subtle);
}
.case-kpi:first-child { padding-left: 0; border-left: 0; }
.case-kpi .v {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.case-kpi .l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg3);
  margin-top: 4px;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-wrap {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 64px;
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 100px;
}
.faq-intro h2 { margin-top: 24px; text-align: left; }
.faq-intro p {
  font-size: 16px;
  color: var(--fg3);
  margin: 24px 0 0;
  max-width: 320px;
  line-height: 1.65;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 200ms var(--ease-out);
  overflow: hidden;
}
.faq-item.open {
  border-color: color-mix(in oklab, var(--accent) 50%, transparent);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg1);
  transition: background 150ms var(--ease-out);
}
.faq-q:hover { background: var(--bg); }
.faq-item.open .faq-q { background: var(--bg); }
.faq-icon {
  flex: 0 0 18px;
  color: var(--accent);
  transition: transform 280ms var(--ease-out);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease-out);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--fg3);
  line-height: 1.65;
}

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact { padding: 160px 0; text-align: center; }
.contact-inner { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 56px);
  font-weight: 500;
  color: var(--fg1);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-top: 28px;
  font-variation-settings: "SOFT" 30;
  text-wrap: balance;
}
.contact h2 .it { font-style: italic; color: var(--accent); }
.contact-sub {
  font-size: 18px;
  color: var(--fg2);
  margin: 24px auto 0;
  max-width: 560px;
  line-height: 1.6;
}
.contact-cta { margin-top: 44px; }

/* Calendly inline embed */
.contact-calendly {
  margin: 48px auto 0;
  max-width: 900px;
  width: 100%;
}
.contact-calendly-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 24px 60px -28px rgba(0,0,0,0.18);
  overflow: hidden;
}
.contact-calendly .calendly-inline-widget {
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  width: 100%;
}
@media (max-width: 600px) {
  .contact-calendly { margin-top: 32px; }
  .contact-calendly-frame { padding: 4px; border-radius: var(--radius-md); }
  .contact-calendly .calendly-inline-widget { height: 720px !important; }
}

/* Contact form — inline fields above the CTA */
.contact-form {
  margin-top: 48px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 36px 32px;
  box-shadow: 0 18px 44px -28px rgba(42, 31, 26, 0.18);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-field-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg3);
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fg1);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  width: 100%;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
}
.contact-field textarea {
  resize: vertical;
  min-height: 96px;
  font-family: var(--font-sans);
  line-height: 1.5;
}
.contact-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2371717A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='4,6 8,10 12,6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--fg4); }
.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover { border-color: color-mix(in oklab, var(--accent) 25%, var(--border)); }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 18%, transparent);
}
.contact-form .contact-cta { margin-top: 14px; text-align: center; }
.contact-form-foot {
  margin: 4px 0 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg3);
}
@media (max-width: 600px) {
  .contact-form { padding: 26px 22px 24px; border-radius: var(--radius-lg); }
  .contact-form-row { grid-template-columns: 1fr; gap: 14px; }
}
.contact-email {
  margin-top: 20px;
  font-size: 14px;
  color: var(--fg3);
}
.contact-email a {
  color: var(--accent);
  font-weight: 500;
}
.contact-email a:hover { text-decoration: underline; }
.reassurance {
  margin-top: 56px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg3);
}
.reassurance span { display: inline-flex; gap: 18px; align-items: center; }
.reassurance .sep { color: var(--accent); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--footer-bg);
  color: var(--bg);
  padding: 80px 0 40px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 20px;
  font-variation-settings: "SOFT" 30;
  text-decoration: none;
}
.footer-brand svg { width: 22px; height: 22px; flex: 0 0 22px; }
.footer-desc {
  font-size: 14px;
  color: var(--muted-x);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 280px;
}
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted-x);
  font-variation-settings: "SOFT" 30;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-x);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--bg);
  margin-bottom: 12px;
  transition: color 150ms;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover { color: var(--accent-mid); }
.footer-col a svg { width: 14px; height: 14px; opacity: 0.7; }
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 246, 240, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-x);
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer-legal .sep { color: var(--accent-mid); }
.footer-legal a { color: inherit; transition: color 150ms var(--ease-out); }
.footer-legal a:hover { color: var(--accent-mid); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  section { padding: 96px 0; }
  .orbit { height: 380px; }
  .orbit-arc { width: 760px; height: 760px; }
  .orbit-arc-2 { width: 560px; height: 560px; }
  .caps,
  .offers-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid::before { display: none; }
  .briques-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .dash-mid { grid-template-columns: 1fr; }
  .cases-wrap, .faq-wrap { grid-template-columns: 1fr; gap: 48px; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 72px 0; }
  .container, .container-narrow, .contact-inner { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav { height: 64px; }
  .hero { padding-top: 120px; min-height: auto; }
  .principles { margin-top: 64px; }
  .principles-tag { left: 20px; }
  .principles-track { padding-left: 90px; gap: 32px; }
  .principles-item { font-size: 15px; gap: 32px; }
  .compare-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .briques-grid { grid-template-columns: 1fr 1fr; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .dash-body { padding: 20px; }
  .kpi .value { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .orbit { height: 340px; }
  .orbit-arc { width: 540px; height: 540px; }
  .orbit-arc-2 { width: 380px; height: 380px; }
  .orbit-icon { width: 44px; height: 44px; }
  .orbit-center { width: 80px; height: 80px; }
  .case-kpis { flex-direction: column; gap: 16px; }
  .case-kpi { padding: 0; border-left: 0; border-top: 1px solid var(--border-subtle); padding-top: 12px; }
  .case-kpi:first-child { border-top: 0; padding-top: 0; }
}
