:root {
  /* === PURE BLUE/WHITE DA === */
  --bg: #ffffff;           /* pure white dominant */
  --bg-pure: #ffffff;
  --bg-2: #f6f8fc;         /* very subtle blue-tinted off-white for layered sections */
  --bg-soft: #f0f4fb;      /* slightly deeper blue tint */
  
  /* Blue is THE signature */
  --blue: #1a66e0;         /* primary brand blue */
  --blue-dark: #0d4cb8;    /* deeper blue for signature dark modules */
  --blue-darkest: #062c80; /* deepest navy for newsletter closing block */
  --blue-soft: #e1ecff;    /* light blue for soft backgrounds */
  --blue-tint: #f0f6ff;    /* very light blue wash */
  
  /* Ink stays simple, neutral dark for text */
  --ink: #0a0e1a;          /* near-black with cool sub-tone (sits well with blue) */
  --ink-soft: #1a1f2e;
  --ink-2: #2a3142;
  --soft: #4a5568;
  --muted: #4b5563;        /* gray-600: 7.5:1 on white, passes WCAG AA for body */
  --line: #e5e9f0;         /* subtle blue-tinted line */
  --line-2: #eef1f6;
  
  /* === Aliases (kept for backwards-compat with old code paths) === */
  --cream: var(--bg-2);    /* maps any cream reference to the soft blue-white */
  --cream-deep: var(--bg-soft);
  
  --green: #10b981;
  --green-soft: #d1fae5;
  --orange: #f97316;
  --white: #ffffff;
  --signal: #f4c544;
  --f-display: 'Inter Tight', -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-2: cubic-bezier(.65, 0, .35, 1);
  --r: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: light; }
body {
  font-family: var(--f-display);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
em, i { font-style: italic; }
::selection { background: var(--blue); color: var(--white); }


/* === GRAIN TEXTURE OVERLAY (sur sections sombres et bleues) === */
.section--dark::before,
.section--blue::after,
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: overlay;
}

/* Custom scrollbar - distinctive */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-2);
}
::-webkit-scrollbar-thumb {
  background: var(--ink);
  border-radius: 100px;
  border: 2px solid var(--bg-2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

/* Selection: more dramatic */
::selection {
  background: var(--blue);
  color: var(--white);
  text-shadow: none;
}
::-moz-selection {
  background: var(--blue);
  color: var(--white);
}

/* Focus rings - uses box-shadow so it respects element border-radius */
*:focus {
  outline: none;
}
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 102, 224, 0.35);
}

/* === DECORATIVE CORNER MARKS sur les sections clés === */
.section--blue {
  position: relative;
}

/* Asterisk decorative en haut à gauche des sections bleues */
.blue-banner::before {
  content: '✦';
  position: absolute;
  top: 32px; left: 32px;
  font-size: 24px;
  color: rgba(255,255,255,.4);
  font-family: var(--f-display);
  z-index: 2;
  animation: spin 20s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Numéro en gros en filigrane sur certaines sections */
.section-decoration-num {
  position: absolute;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 400;
  color: rgba(26,102,224,.04);
  line-height: .8;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.05em;
}

/* === DOTTED LINE PATTERNS pour decorative === */
.dot-pattern {
  background-image: 
    radial-gradient(circle, var(--line) 1px, transparent 1px);
  background-size: 16px 16px;
}

/* === HOVER LIGHT TRAIL sur les liens du nav === */
.nav__link {
  position: relative;
  overflow: hidden;
}
.nav__link::before {
  content: '';
  position: absolute;
  bottom: -2px; left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transition: left .6s var(--ease);
}
.nav__link:hover::before {
  left: 100%;
}

/* === DECORATIVE LINE between sections === */
.section + .section {
  position: relative;
}

/* === HERO ENHANCED === */
.hero h1 {
  position: relative;
}

/* Drop shadow premium for bold elements on white */
.case-detail__metrics .case-metric {
  position: relative;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.case-detail__metrics .case-metric:hover {
  box-shadow: 0 12px 32px -8px rgba(26,102,224,.15);
  transform: translateY(-4px);
}

/* === GROS CHIFFRES SERIF sur stats === */
.stat__num em,
.approche-stat__num em {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -.04em;
}

/* === HOVER EFFECT MAGNETIC sur le logo === */
.nav__logo {
  transition: transform .35s var(--ease);
}
.nav__logo:hover {
  transform: scale(1.02);
}
.nav__logo em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
}

/* Footer wordmark italic en serif */
.footer__wordmark em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
}

/* === BANNER BLUE - amélioration === */
.blue-banner {
  position: relative;
  isolation: isolate;
}
.blue-banner::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}

/* === CASES VIBRATION - subtle pulse on hover === */
.case {
  transition: transform .5s var(--ease), filter .3s;
}
.case:hover {
  filter: saturate(1.1);
}

/* === CHIFFRES dans hero plus expressifs === */
.hero__top {
  position: absolute;
  z-index: 5;
}

/* === SCROLL INDICATOR refined === */
.scroll-indicator {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--ink);
  opacity: .5;
}

/* === LISTES - bullets décoratifs subtils === */
.collective-list li::before {
  font-family: var(--f-display);
  font-style: italic;
}

/* === PROCESS STEP-ROW NUM en serif italic gros === */
.process-step-row__num,
.pillar-row__num {
  letter-spacing: -.05em;
}

/* === MARQUEE - gestion serif italic === */
.marquee__sep {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--blue);
  font-size: 28px;
  font-weight: 400;
}

/* === HOVER: button "ghost" maintenant - plus subtil === */
.btn--ghost {
  letter-spacing: .005em;
}

/* === EYEBROW raffiné === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* === Approche pillars - num bigger === */
.pillar-row__num {
  font-size: clamp(56px, 6vw, 88px);
}


/* === ORCHESTRATED PAGE LOAD === */
/* Top bar du hero arrive en premier */
.hero__top {
  opacity: 0;
  transform: translateY(-8px);
  animation: fadeInDown .9s var(--ease) .2s forwards;
}

/* Hero h1 mots avec stagger plus refined */
.hero h1 .word {
  display: inline-block;
  filter: blur(12px);
  opacity: 0;
  transform: translateY(0.6em) rotate(.5deg);
  transition: 
    opacity 1.4s var(--ease),
    transform 1.4s var(--ease),
    filter 1.4s var(--ease);
}
.hero.in h1 .word {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* Lede + boutons après les mots */
.hero__bottom {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.2s var(--ease) 1.3s,
    transform 1.2s var(--ease) 1.3s;
}
.hero.in .hero__bottom {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll indicator vient en tout dernier */
.scroll-indicator {
  opacity: 0;
  animation: fadeInUp 1s var(--ease) 2.2s forwards;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Marquee fade-in après le hero */
.marquee {
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.8s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* === TYPE: serif italic vraiment plus distinctif === */
/* Make instrument serif italic appear larger and more present */
.hero h1 em {
  letter-spacing: -.025em;
  /* Slightly larger than surrounding to balance */
}

/* === SECTIONS BLUE - heavy duty styles === */
/* Permettre que le grain texture apparaisse aussi sur les bandes bleues */
.section--blue {
  isolation: isolate;
  position: relative;
}

/* === SECTION DARK - améliorations avec textures === */
.section--dark::before {
  z-index: 0;
}
.section--dark > * {
  position: relative;
  z-index: 1;
}

/* === GRAIN sur la home hero === */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(0,0,0,.012) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}

/* Application uniquement sur les em dans les titres pour un contraste éditorial */
.hero h1 em,
.thesis-home__title em,
.work-section__title em,
.svc-page-hero h1 em,
.page-header h1 em,
.case-detail h1 em,
.cta h2 em,
.thesis__title em,
.about-vision h2 em,
.founder__name em,
.blue-banner__title em,
.approche-vision__title em,
.pillar-row__title em,
.manifesto__title em,
.ritual__title em,
.process-step-row__title em,
.media-card__title em,
.medias-block__title em,
.constat-item__title em,
.howto-item__title em,
.value-item__title em,
.format-card__title em,
.svc-feature h3 em,
.svc-cases-title em,
.snapshot__caption em,
.section--blue h2 em,
.section--dark h2 em,
.join-collective__title em,
.faq-block__title em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
}

/* Le manifesto__num utilise aussi le serif pour effet éditorial premium */
.manifesto__num,
.pillar-row__num,
.process-step-row__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
}


/* PROCESS CARDS GRID */
.process-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
}
.process-card {
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
  transition: background .35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-card:last-child { border-right: 0; }
.process-card:hover { background: rgba(255,255,255,.04); }
.process-card--success { background: rgba(26,102,224,.08); }
.process-card--success:hover { background: rgba(26,102,224,.14); }
.process-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.process-card__num {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -.04em;
  color: var(--blue);
  font-style: italic;
  line-height: 1;
}
.process-card--success .process-card__num { color: var(--blue); }
.process-card__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
}
.process-card__connector {
  color: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  transition: color .3s;
}
.process-card:hover .process-card__connector { color: var(--blue); }
.process-card__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--bg);
}
.process-card__num {
  position: relative;
}
.process-card__num::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.process-card:hover .process-card__num::after {
  transform: scaleX(1);
}
.process-card__desc {
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,.65) !important;
}
/* Bloc Principe : ancrage théorique en bas de chaque card méthode */
.process-card__principle {
  margin-top: clamp(20px, 2.5vw, 32px);
  padding-top: clamp(16px, 2vw, 22px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.process-card__principle-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.process-card__principle-text {
  font-family: var(--f-display);
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.process-card--success .process-card__principle {
  border-top-color: rgba(26, 102, 224, 0.25);
}
/* Increase padding for more visual weight */
.process-card {
  padding: clamp(28px, 3.5vw, 48px) clamp(22px, 3vw, 36px) !important;
}
.process-card__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.process-card__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.6);
  flex: 1;
}
@media (max-width: 900px) {
  .process-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(2) { border-right: 0; }
  .process-card { border-bottom: 1px solid rgba(255,255,255,.1); }
  .process-card:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 540px) {
  .process-cards-grid { grid-template-columns: 1fr; }
  .process-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .process-card:last-child { border-bottom: 0; }
}

/* PROGRESS */
.progress {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--blue);
  width: 0; z-index: 200;
}

/* CURSOR */
/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  padding: 0 clamp(20px, 3vw, 40px);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: transform .4s var(--ease);
}
.nav.hidden { transform: translateY(-100%); }

.nav__logo {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.03em;
  display: flex; align-items: center;
}
.nav__logo em { font-style: italic; color: var(--blue); font-weight: 400; margin-left: 1px; }
.nav__logo::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin-left: 4px;
}

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  cursor: pointer;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width .3s var(--ease);
}
.nav__link:hover::after { width: 100%; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
}
.nav__dropdown-trigger svg {
  width: 10px; height: 10px;
  transition: transform .3s var(--ease);
}
.nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: 100%; left: -16px;
  min-width: 320px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  margin-top: 12px;
}
/* Invisible bridge to keep hover continuous between the trigger and the menu */
.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -16px;
  height: 16px;
  background: transparent;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px;
  border-radius: 4px;
  transition: background .2s;
}
.nav__dropdown-item:hover { background: var(--bg-2); }
.nav__dropdown-num {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: .04em;
}
.nav__dropdown-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.nav__dropdown-desc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 400;
}

.nav__cta {
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  transition: all .3s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav__cta:hover { background: var(--ink); color: var(--bg); }
.nav__cta::after { content: '→'; transition: transform .25s var(--ease); }
.nav__cta:hover::after { transform: translateX(2px); }

.nav__burger { display: none; width: 24px; height: 14px; position: relative; }
.nav__burger span {
  position: absolute; left: 0; right: 0; height: 1.5px;
  background: var(--ink); transition: all .3s;
}
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 6px; }
.nav__burger span:nth-child(3) { top: 12px; }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
}

.nav__mobile {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 80px 24px 32px;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.03em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.nav__mobile a::after { content: '→'; opacity: .3; }
.nav__mobile a em { font-style: italic; color: var(--blue); margin-left: 4px; }

/* HERO */
.hero {
  min-height: 100vh;
  padding: 96px clamp(20px, 3vw, 40px) 40px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,102,224,.08) 0%, transparent 65%);
  pointer-events: none;
  animation: heroGlow 12s ease-in-out infinite alternate;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244,197,68,.04) 0%, transparent 60%);
  pointer-events: none;
  animation: heroGlow 16s ease-in-out infinite alternate-reverse;
  z-index: 0;
}
@keyframes heroGlow {
  0% { transform: translate(0,0) scale(1); opacity: .8; }
  100% { transform: translate(-40px, 30px) scale(1.15); opacity: 1; }
}
.hero > * { position: relative; z-index: 1; }
.hero__top {
  position: absolute;
  top: 84px; left: clamp(20px, 3vw, 40px); right: clamp(20px, 3vw, 40px);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
}
.hero__location { display: flex; align-items: center; gap: 8px; }
.hero__location::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.hero__clock { font-variant-numeric: tabular-nums; }

.hero__main {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  margin-top: 60px;
  max-width: 1400px;
}

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.045em;
  margin-bottom: 36px;
  max-width: 16ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%);
  transition: transform .9s var(--ease), opacity .9s var(--ease);
}
.hero.in h1 .word { opacity: 1; transform: translateY(0); }
.hero.in h1 .word:nth-child(1) { transition-delay: .15s; }
.hero.in h1 .word:nth-child(2) { transition-delay: .25s; }
.hero.in h1 .word:nth-child(3) { transition-delay: .35s; }
.hero.in h1 .word:nth-child(4) { transition-delay: .45s; }
.hero.in h1 .word:nth-child(5) { transition-delay: .55s; }
.hero.in h1 .word:nth-child(6) { transition-delay: .65s; }
.hero.in h1 .word:nth-child(7) { transition-delay: .75s; }

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-top: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s .9s var(--ease), transform .8s .9s var(--ease);
}
.hero.in .hero__bottom { opacity: 1; transform: translateY(0); }

.hero__lede {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.5;
  color: var(--soft);
  max-width: 480px;
  font-weight: 400;
}
.hero__lede em { color: var(--blue); font-style: italic; }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  padding: 12px 22px;
  border-radius: 100px;
  letter-spacing: -.005em;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
/* Arrow only added to buttons that explicitly opt-in with .btn--arrow class
   Avoids double-arrows on buttons with SVG, wrong arrows on mailto, etc. */
.btn--arrow::after {
  content: '→';
  font-size: 14px;
  transition: transform .25s var(--ease);
  margin-left: 4px;
}
.btn--arrow:hover::after { transform: translateX(4px); }
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: var(--blue); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.btn--white { background: var(--white); color: var(--ink); }
.btn--white:hover { background: var(--blue); color: var(--white); }
.btn--blue { background: var(--blue); color: var(--white); }
.btn--blue:hover { background: var(--ink); color: var(--bg); }

/* MARQUEE */
.marquee {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
}
.marquee__track {
  display: flex;
  animation: scrollLeft 50s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scrollLeft { to { transform: translateX(-50%); } }
.marquee__item {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -.025em;
  white-space: nowrap;
  padding: 0 32px;
  color: var(--ink);
}
.marquee__sep {
  display: flex; align-items: center;
  padding: 0 4px;
  font-size: 24px;
  color: var(--blue);
}

/* SECTIONS */
.section {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 3vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.section--dark {
  background: var(--ink);
  color: var(--bg);
  max-width: none;
  margin: 0;
}

/* === RYTHME DE FONDS HOMOGÉNÉISÉ ===
   Pour casser le tout-blanc et créer des respirations posées,
   on introduit un fond crème subtil (--bg-2 existe déjà) sur certaines sections.
   Et on prépare la transition douce entre blanc et noir/bleu. */
.section--cream {
  background: var(--cream);
  max-width: none;
  margin: 0;
}
.section--cream > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Transition douce du blanc vers les sections sombres
   (un dégradé fin de 80px en haut/bas pour éviter la cassure nette) */
.section--dark::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none;
  z-index: 0;
  display: none; /* activé seulement quand suivi d'un autre bloc sombre */
}

/* Quand un bloc sombre est suivi d'un autre bloc sombre ou du footer,
   on retire la respiration blanche entre eux (continuité visuelle) */
.section--dark + .section--dark,
.section--dark + .cta,
.cta + .footer,
.section--dark + .footer {
  margin-top: 0;
}

/* Transition douce hero → bannière bleue */
.section--blue {
  position: relative;
}
.section--blue::before {
  content: '';
  position: absolute;
  top: -60px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--blue));
  pointer-events: none;
  opacity: .15;
  z-index: 0;
}

/* EYEBROW */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 32px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--blue);
}
.section--dark .eyebrow { color: rgba(255,255,255,.6); }

/* STATS */
.stats {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 3vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-bottom: 1px solid var(--line);
}
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--ink);
}
.stat__num em { color: var(--blue); font-style: italic; font-weight: 400; }
.stat__label {
  margin-top: 12px;
  font-size: 13px;
  color: var(--soft);
  font-weight: 400;
  line-height: 1.4;
  max-width: 200px;
}
@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* Variante sombre : stats sur fond noir, en continuité avec le marquee au-dessus.
   Le fond noir déborde bord à bord du viewport via box-shadow latéral. */
.stats--dark {
  background: var(--ink);
  /* déborde sur toute la largeur du viewport sans casser le centrage */
  box-shadow: 50vw 0 0 var(--ink), -50vw 0 0 var(--ink);
  clip-path: inset(0 -100vw 0 -100vw);
  border-bottom: 0;
}
.stats--dark .stat__num { color: var(--bg); }
.stats--dark .stat__label { color: rgba(255,255,255,.55); }
/* le em bleu reste bleu : visible et joli sur noir */
/* Neutraliser le hover gris clair hérité de .stats > div qui crée un flash blanc */
.stats--dark > div:hover { background: transparent; }

/* THESIS */
.thesis {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

/* THESIS HOME (with photo) */
.thesis-home {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.thesis-home__photo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.thesis-home__photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--ink) 100%);
}
.thesis-home__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease);
}
.thesis-home__photo:hover img { transform: scale(1.04); }
.thesis-home__photo--placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, var(--blue) 0%, #0a0a0a 100%);
}
.thesis-home__photo--placeholder::after {
  content: 'WAY-MARK';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,.18);
  letter-spacing: -.04em;
  white-space: nowrap;
}
.thesis-home__badge {
  position: absolute;
  top: 20px; left: 20px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
}
.thesis-home__badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
}
/* Légende sobre sous la photo (remplace l'ancienne pastille qui flottait sur l'image) */
.thesis-home__caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.thesis-home__caption-dot {
  width: 5px; height: 5px;
  background: var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
}
.thesis-home__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
  margin-bottom: 24px;
}
.thesis-home__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.thesis-home__body {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--soft);
  max-width: 540px;
}
.thesis-home__body p + p { margin-top: 16px; }
.thesis-home__body em { color: var(--ink); font-style: italic; font-weight: 500; }
@media (max-width: 768px) {
  .thesis-home { grid-template-columns: 1fr; }
}
.thesis-home__header {
  max-width: 1400px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding-bottom: clamp(32px, 4vw, 56px);
}
.thesis-home__header .eyebrow { margin-bottom: 24px; }
.thesis-home__title--top {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.02;
  margin: 0;
  max-width: none;
}
.thesis-home__title--top em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.thesis__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
  margin-bottom: 24px;
}
.thesis__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.thesis__body {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--soft);
  max-width: 540px;
}
.thesis__body p + p { margin-top: 16px; }
.thesis__body em { color: var(--ink); font-style: italic; font-weight: 500; }
@media (max-width: 768px) {
  .thesis { grid-template-columns: 1fr; }
}

/* WORK GRID */
.work-section__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.work-section__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
}
.work-section__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1vw, 16px);
}
.case {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-2);
  transition: transform .5s var(--ease);
}
.case--lg,
.case--md,
.case--sm { grid-column: span 4; aspect-ratio: 1/1; }
@media (max-width: 1024px) {
  .case--lg,
  .case--md,
  .case--sm { grid-column: span 6; aspect-ratio: 1/1; }
}
@media (max-width: 600px) {
  .case--lg,
  .case--md,
  .case--sm { grid-column: span 12; aspect-ratio: 4/3; }
}

.case__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease);
}
.case:hover .case__bg { transform: scale(1.05); }

.case__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7) 100%);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--white);
}

.case__top {
  display: flex; justify-content: space-between; align-items: start;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.case__metric {
  background: var(--white);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -.005em;
  text-transform: none;
  font-family: var(--f-display);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.case__metric::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.case__bottom h3 {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-bottom: 4px;
}
.case__bottom p {
  font-size: 13px;
  opacity: .8;
}

.case__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: grid; place-items: center;
  transition: transform .4s var(--ease);
  pointer-events: none;
  font-size: 14px;
}
.case:hover .case__play { transform: translate(-50%, -50%) scale(1); }

/* SERVICES (Sleeq 2-col) */

/* === SERVICES BLOCK - Layout pleine largeur cards 2x2 === */
.services-block {
  position: relative;
}
.services-block__head {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-block__head .eyebrow {
  margin-bottom: 24px;
}
.services-block__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.services-block__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.services-block__sub {
  font-size: 16px;
  color: var(--soft);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.svc-card {
  position: relative;
  padding: 36px;
  background: var(--bg-2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  transition: transform .4s var(--ease), background .3s, box-shadow .4s var(--ease);
  cursor: pointer;
}
.svc-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: 0 20px 40px -16px rgba(26,102,224,.15);
  border: 1px solid var(--line);
}
.svc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.svc-card__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--blue);
  font-weight: 600;
}
.svc-card__arrow {
  font-size: 18px;
  color: var(--muted);
  transition: transform .3s var(--ease), color .25s;
}
.svc-card:hover .svc-card__arrow {
  transform: translate(4px, -4px);
  color: var(--blue);
}
.svc-card__name {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-bottom: 16px;
  margin-top: auto;
}
.svc-card__name em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.svc-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--soft);
}
@media (max-width: 768px) {
  .services-cards { grid-template-columns: 1fr; }
}

/* === FAQ BLOCK reverse (questions left, intro right) === */
.faq-block--reverse {
  grid-template-columns: 1.6fr 1fr !important;
}
.faq-block__head {
  position: sticky;
  top: 100px;
  align-self: start;
}
.faq-block__sub {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.5;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .faq-block--reverse {
    grid-template-columns: 1fr !important;
  }
  .faq-block--reverse .faq-block__head {
    position: static;
    order: -1;
  }
  .faq-block--reverse .faq-list {
    order: 1;
  }
}

/* === MEDIA CARDS - réduire taille (était trop grand) === */
.media-card--lg {
  /* Was huge, reduce */
}
.media-card__visual {
  padding: 24px 24px 0;
  min-height: 180px;
}
.media-card__cover {
  max-width: 280px;
  aspect-ratio: 1;
  padding: 18px;
}
.media-card__cover--yt {
  max-width: 320px;
  aspect-ratio: 16/10;
  padding: 18px;
}
.media-card__cover-title {
  font-size: clamp(20px, 2.5vw, 32px);
}
.media-card__cover-tag {
  font-size: 9px;
}
.media-card__cover-meta {
  font-size: 10px;
}
.media-card__cover-wave {
  height: 18px;
}
.media-card__cover-wave span {
  width: 2px;
}
.media-card__play {
  width: 44px; height: 44px;
}
.media-card__play svg {
  width: 16px; height: 16px;
}
.media-card__body {
  padding: 20px 28px 28px;
}
.media-card__platform {
  font-size: 10px;
  margin-bottom: 12px;
}
.media-card__title {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 8px;
}
.media-card__desc {
  font-size: 13px;
  margin-bottom: 16px;
}
.media-card__cta {
  padding-top: 14px;
}
.media-card__cta-btn {
  font-size: 13px;
}

/* LinkedIn card aussi plus compact */
.media-card--linkedin {
  min-height: 220px;
}
.media-card__linkedin-content {
  padding: 28px;
}
.media-card__linkedin-visual {
  padding: 28px;
}
.media-card__post {
  max-width: 280px;
  padding: 16px;
}
.media-card__post-head {
  margin-bottom: 10px;
}
.media-card__post-avatar {
  width: 32px; height: 32px;
  font-size: 14px;
}
.media-card__post-name {
  font-size: 12px;
}
.media-card__post-time {
  font-size: 10px;
}
.media-card__post-text {
  font-size: 12px;
  margin-bottom: 10px;
}
.media-card__post-stats {
  font-size: 10px;
  padding-top: 10px;
}
.services {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
}
.services__intro h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
  margin-bottom: 24px;
}
.services__intro h2 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.services__intro p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--soft);
  max-width: 380px;
}
.services__list { display: flex; flex-direction: column; }
.svc {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: padding .3s var(--ease);
}
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc:hover { padding-left: 12px; }
.svc__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.svc__name {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
  transition: color .25s;
}
.svc__name em { font-style: italic; color: var(--blue); font-weight: 400; }
.svc:hover .svc__name { color: var(--blue); }
.svc__desc {
  font-size: 13px;
  color: var(--soft);
  line-height: 1.45;
}
.svc__arrow {
  font-size: 18px;
  color: var(--muted);
  transition: transform .3s var(--ease), color .25s;
}
.svc:hover .svc__arrow {
  transform: translate(4px, -4px);
  color: var(--blue);
}
@media (max-width: 768px) {
  .services { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 40px 1fr 24px; }
  .svc__desc { display: none; }
}

/* FAQ (Sleeq) */
.faq-block {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.faq-block__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
}
.faq-block__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: var(--f-display);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--ink);
  transition: color .25s;
}
.faq-q:hover { color: var(--blue); }
.faq-q__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.faq-q__icon {
  font-size: 20px;
  color: var(--muted);
  transition: transform .35s var(--ease);
  font-weight: 300;
}
.faq-item.open .faq-q__icon { transform: rotate(45deg); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a__inner {
  padding: 0 0 28px 60px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--soft);
  max-width: 620px;
}
@media (max-width: 768px) {
  .faq-block { grid-template-columns: 1fr; }
  .faq-q { grid-template-columns: 30px 1fr 20px; }
  .faq-a__inner { padding-left: 30px; }
}

/* CTA */
.cta {
  padding: clamp(80px, 10vw, 160px) clamp(20px, 3vw, 40px);
  text-align: center;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,102,224,.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.cta__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.cta h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .98;
  margin-bottom: 32px;
}
.cta h2 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.cta__sub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.5;
}


/* === ANIMATIONS AVANCÉES === */

/* Smooth scroll universel */
html { scroll-behavior: smooth; }

/* Reveal mask - texte qui apparaît derrière un masque */
.mask-reveal {
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: bottom;
}
.mask-reveal__inner {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1s var(--ease);
  transition-delay: var(--delay, 0s);
}
.mask-reveal.in .mask-reveal__inner {
  transform: translateY(0);
}

/* Letter stagger reveal */
.letter-reveal {
  display: inline-block;
}
.letter-reveal__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.letter-reveal.in .letter-reveal__char {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax subtil sur les visuels */
.parallax-img {
  transition: transform .1s linear;
  will-change: transform;
}

/* Count-up effet */
.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* Border-line draw on scroll */
@keyframes drawLine {
  to { transform: scaleX(1); }
}
.draw-line::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease);
  margin-top: 16px;
}
.draw-line.in::after {
  transform: scaleX(1);
}

/* Hover "view" cursor on cases */
.case {
  cursor: pointer;
}

/* Magnetic effect for primary CTAs */
.btn--magnetic {
  transition: transform .35s var(--ease-2), background .25s, color .25s;
}

/* Grain overlay subtle (Bulldozer-like) */
.grain-bg {
  position: relative;
  isolation: isolate;
}
.grain-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.03) 1px, transparent 0);
  background-size: 4px 4px;
  pointer-events: none;
  z-index: 1;
}

/* Sticky scroll indicator hero */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  opacity: 0;
  animation: fadeInUp 1s var(--ease) 1.5s forwards;
  pointer-events: none;
}
.scroll-indicator__line {
  width: 1px;
  height: 32px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.scroll-indicator__line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--blue);
  animation: scrollDown 2s var(--ease) infinite;
}
@keyframes scrollDown {
  to { top: 100%; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Section bg gradient lights (subtle) */
.section--gradient-bg {
  position: relative;
}
.section--gradient-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 100vw;
  max-width: 1200px;
  height: 600px;
  background: radial-gradient(ellipse 800px 400px at center, rgba(26,102,224,.06) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

/* Smooth focus on links */
a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 102, 224, 0.35);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Section number badges - sticky labels */
.section-num {
  position: absolute;
  top: 60px;
  right: clamp(20px, 3vw, 40px);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  opacity: .6;
  z-index: 5;
}

/* Image lazy fade-in */
img {
  transition: opacity .6s var(--ease);
}
img[loading="lazy"] {
  opacity: 0;
}
img[loading="lazy"].loaded {
  opacity: 1;
}


/* === CARDS HOVER GLOW (cas clients enhanced) === */
.case::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), transparent 50%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: -1;
  filter: blur(20px);
}
.case:hover::before {
  opacity: .35;
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.8);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s, background .3s;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  background: var(--blue);
  transform: translateY(-4px) scale(1);
}
.back-to-top svg {
  width: 16px; height: 16px;
  transition: transform .3s var(--ease);
}
.back-to-top:hover svg {
  transform: translateY(-3px);
}
@media (max-width: 600px) {
  .back-to-top { bottom: 20px; right: 20px; }
}

/* === MOBILE MENU - amélioré === */
.nav__mobile {
  background: var(--bg);
  background-image: 
    radial-gradient(circle at 20% 10%, rgba(26,102,224,.06), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(244,197,68,.04), transparent 50%);
}
.nav__mobile a {
  position: relative;
  transform: translateX(-20px);
  opacity: 0;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.nav__mobile.open a {
  opacity: 1;
  transform: translateX(0);
}
.nav__mobile.open a:nth-child(1) { transition-delay: .05s; }
.nav__mobile.open a:nth-child(2) { transition-delay: .1s; }
.nav__mobile.open a:nth-child(3) { transition-delay: .15s; }
.nav__mobile.open a:nth-child(4) { transition-delay: .2s; }
.nav__mobile.open a:nth-child(5) { transition-delay: .25s; }
.nav__mobile.open a:nth-child(6) { transition-delay: .3s; }
.nav__mobile.open a:nth-child(7) { transition-delay: .35s; }
.nav__mobile.open a:nth-child(8) { transition-delay: .4s; }
.nav__mobile.open a:nth-child(9) { transition-delay: .45s; }
.nav__mobile.open a:nth-child(10) { transition-delay: .5s; }

/* Burger animé */
.nav__burger {
  cursor: pointer;
}
.nav__burger span {
  transition: transform .35s var(--ease), opacity .25s, width .35s var(--ease);
}
.nav__burger.active span:nth-child(1) {
  transform: translate(0, 6px) rotate(45deg);
}
.nav__burger.active span:nth-child(2) {
  opacity: 0;
}
.nav__burger.active span:nth-child(3) {
  transform: translate(0, -6px) rotate(-45deg);
}


/* === SECTION BLUE (fond bleu plein, type bannière Way-mark) === */
.section--blue {
  background: var(--blue);
  color: var(--white);
  max-width: none;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.section--blue .eyebrow {
  color: rgba(255,255,255,.7);
}
.section--blue .eyebrow::before {
  background: var(--white);
}
.section--blue h2,
.section--blue h3 {
  color: var(--white);
}
.section--blue h2 em,
.section--blue h3 em,
.section--blue p em {
  color: rgba(255,255,255,.85);
  font-style: italic;
  font-weight: 400;
  /* texte italic en blanc opacité, pas bleu sur bleu */
}
.section--blue p {
  color: rgba(255,255,255,.85);
}
.section--blue::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 65%);
  pointer-events: none;
  animation: heroGlow 14s ease-in-out infinite alternate;
}
.section--blue .btn--white {
  background: var(--white);
  color: var(--blue);
}
.section--blue .btn--white:hover {
  background: var(--ink);
  color: var(--white);
}
.section--blue .btn--ghost {
  border-color: rgba(255,255,255,.3);
  color: var(--white);
}
.section--blue .btn--ghost:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.section--blue > * { position: relative; z-index: 1; }


/* BLUE BANNER */
.blue-banner {
  padding: clamp(80px, 10vw, 120px) clamp(20px, 3vw, 40px);
  text-align: left;
}
.blue-banner__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.blue-banner__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 24px;
  max-width: 18ch;
  color: var(--white);
}
.blue-banner__title em {
  font-style: italic;
  color: rgba(255,255,255,.85);
  font-weight: 400;
}
.blue-banner__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  max-width: 540px;
}


/* Override quand process est dans une section bleue */
.section--blue .process-step-row__num {
  color: var(--white) !important;
  opacity: .9;
}
.section--blue .process-step-row__title em {
  color: rgba(255,255,255,.85) !important;
}
.section--blue .process-step-row--success .process-step-row__num {
  color: var(--green) !important;
  opacity: 1;
}
.section--blue .process-step-row::before {
  background: rgba(255,255,255,.5);
}
.section--blue .process-step-row:hover::before {
  background: var(--white);
}
.section--blue .process-step-row {
  border-color: rgba(255,255,255,.15);
}
.section--blue .process-step-row__title {
  color: var(--white);
}
.section--blue .process-step-row__desc {
  color: rgba(255,255,255,.75);
}
.section--blue .process-split__steps {
  border-top-color: rgba(255,255,255,.15);
}

/* Override pour collective sur fond bleu */
.section--blue .collective-col h4 {
  color: rgba(255,255,255,.7);
  border-bottom-color: rgba(255,255,255,.2);
}
.section--blue .collective-list li {
  color: rgba(255,255,255,.9);
}
.section--blue .collective-list li::before {
  color: var(--white);
  opacity: .7;
}
.section--blue .collective-list li em {
  color: rgba(255,255,255,.95);
}
.section--blue .sectors-covered {
  border-top-color: rgba(255,255,255,.15);
}
.section--blue .sectors-covered__title {
  color: rgba(255,255,255,.65);
}
.section--blue .sector-tag {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.95);
}
.section--blue .sector-tag:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

/* Override pour approche-section-num--dark et eyebrows quand dans section bleue */
.section--blue .approche-section-num,
.section--blue .approche-section-num--dark {
  color: var(--white);
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
}
.section--blue .eyebrow {
  color: rgba(255,255,255,.8);
}
.section--blue .eyebrow::before {
  background: var(--white);
}

/* Approche page : process en bleu - loop steps */
.section--blue .loop {
  border-color: rgba(255,255,255,.12);
}
.section--blue .loop__step {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(255,255,255,.12);
}
.section--blue .loop__step-num {
  color: var(--white) !important;
  opacity: .8;
}
.section--blue .loop__step-title {
  color: var(--white) !important;
}
.section--blue .loop__step-title em {
  color: rgba(255,255,255,.85);
}
.section--blue .loop__step-desc {
  color: rgba(255,255,255,.7) !important;
}
.section--blue .loop__step::after {
  background: var(--blue);
  color: var(--white);
}

/* Section--blue : page header sticky text */
.section--blue .process-split__sub {
  color: rgba(255,255,255,.85);
}
.section--blue .process-split__title {
  color: var(--white);
}
.section--blue .process-split__title em {
  color: rgba(255,255,255,.9);
}

/* === SECTION TRANSITIONS - smooth === */
.page {
  animation: pageEnter .5s var(--ease);
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === STATS HOVER ENHANCED === */
.stats > div {
  position: relative;
  padding: 16px;
  margin: -16px;
  border-radius: 8px;
  cursor: default;
  transition: background .3s var(--ease);
}
.stats > div:hover {
  background: var(--bg-2);
}

/* === MARQUEE GRADIENT FADE EDGES === */
.marquee {
  position: relative;
  overflow: hidden;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 100%);
}
.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--ink) 0%, transparent 100%);
}

/* === LOGOS GRID - alternative pour les marques === */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1400px;
}
.logos-grid__item {
  aspect-ratio: 3/2;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--ink);
  transition: background .3s var(--ease), color .3s;
  cursor: default;
}
.logos-grid__item:hover {
  background: var(--bg-2);
  color: var(--blue);
}
@media (max-width: 980px) {
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === FAQ TRANSITION améliorée === */
.faq-item {
  transition: background .3s var(--ease);
}
.faq-item.open {
  background: linear-gradient(90deg, rgba(26,102,224,.02) 0%, transparent 100%);
}
.faq-q__icon {
  transition: transform .4s cubic-bezier(.65, 0, .35, 1), color .3s;
}

/* === HEADER PARALLAX === */
.page-header {
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,102,224,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* === PROCESS CTA */

/* PROCESS CTA */
.process-cta {
  margin-top: 60px;
  padding: 32px 40px;
  background: rgba(26,102,224,.08);
  border: 1px solid rgba(26,102,224,.3);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: background .3s var(--ease), border-color .3s;
}
.process-cta:hover {
  background: rgba(26,102,224,.12);
  border-color: var(--blue);
}
.process-cta__text {
  display: flex; flex-direction: column; gap: 6px;
}
.process-cta__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.process-cta__title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--bg);
  line-height: 1.1;
}
.process-cta__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
@media (max-width: 768px) {
  .process-cta { flex-direction: column; align-items: flex-start; }
}

/* MEDIAS BLOCK (Nos médias - inspired) */



/* === HERO V2, editorial margins + status === */
.hero--v2 {
  position: relative;
  min-height: 100vh;
  padding: clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
}
.hero__top--v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(15, 15, 15, 0.55);
  padding-bottom: clamp(16px, 2vw, 32px);
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
}
.hero__top-left, .hero__top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.hero__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ed47a;
  box-shadow: 0 0 0 0 rgba(46, 212, 122, 0.6);
  animation: pulse-dot 2s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(46, 212, 122, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(46, 212, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 212, 122, 0); }
}
.hero__id {
  color: var(--blue);
}
.hero__annotation {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(15, 15, 15, 0.4);
  z-index: 2;
}
.hero__annotation--left {
  top: 38%;
  left: clamp(12px, 2vw, 32px);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__annotation--right {
  bottom: 12%;
  right: clamp(12px, 2vw, 32px);
  writing-mode: vertical-rl;
}
.hero__annotation-num {
  color: var(--blue);
  font-weight: 500;
}
.hero__main--v2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 100px) 0;
}
.hero__title-v2 .word--indent {
  display: block;
  padding-left: clamp(48px, 8vw, 160px);
}
.hero__bottom--v2 {
  margin-top: clamp(40px, 5vw, 72px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.hero__bottom--v2 .hero__lede {
  max-width: 480px;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.55;
  margin: 0;
}
.hero__foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: clamp(16px, 2vw, 32px);
  border-top: 1px solid rgba(15, 15, 15, 0.08);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__foot-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__foot-item--align-right {
  text-align: right;
  align-items: flex-end;
}
.hero__foot-label {
  color: rgba(15, 15, 15, 0.4);
}
.hero__foot-value {
  color: var(--ink);
}
@media (max-width: 700px) {
  .hero__annotation { display: none; }
  .hero__title-v2 .word--indent { padding-left: 0; }
  .hero__foot { grid-template-columns: 1fr 1fr; }
  .hero__foot-item--align-right { grid-column: span 2; align-items: flex-start; text-align: left; }
  .hero__top--v2 { font-size: 9px; }
  .hero__top-left, .hero__top-right { gap: 10px; }
}

/* === TICKER DIVIDER (mono row between sections) === */
.ticker-divider {
  background: var(--ink);
  padding: 14px clamp(24px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ticker-divider__row {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.ticker-divider__label {
  color: var(--blue);
  font-weight: 500;
}
.ticker-divider__title {
  color: var(--bg);
}
.ticker-divider__meta {
  color: rgba(255, 255, 255, 0.35);
}

/* === STATS V2, asymmetric with bg index === */
.stats--v2 {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.stats__bg-num {
  position: absolute;
  top: -30px;
  right: -20px;
  font-family: var(--f-display);
  font-size: clamp(200px, 30vw, 480px);
  line-height: 0.85;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -.04em;
}
.stat--v2 {
  position: relative;
  z-index: 1;
}
.stat--v2.stat--offset {
  padding-top: clamp(48px, 8vw, 96px);
}
.stat--v2 .stat__label {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 800px) {
  .stats--v2 { grid-template-columns: repeat(2, 1fr); }
  .stat--v2.stat--offset { padding-top: 0; }
}

/* === MANIFESTO V2, side rail + pillars === */
.manifesto-light--v2 {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 4vw, 48px);
}
.manifesto-v2-rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 0 8px 20px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.manifesto-v2-rail__top { display: flex; flex-direction: column; gap: 8px; }
.manifesto-v2-rail__num { color: var(--blue); font-weight: 500; }
.manifesto-v2-rail__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: -.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.4);
  max-width: 100px;
  line-height: 1.3;
}
.manifesto-light__inner--v2 {
  max-width: none !important;
}
.manifesto-v2-eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: clamp(20px, 2vw, 32px);
}
.manifesto-v2-pillars {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.manifesto-v2-pillar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -.01em;
}
.manifesto-v2-pillar__n {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--blue);
}
@media (max-width: 800px) {
  .manifesto-light--v2 { grid-template-columns: 1fr; }
  .manifesto-v2-rail { flex-direction: row; justify-content: space-between; border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 16px 0 0; }
  .manifesto-v2-rail__quote { max-width: 200px; }
  .manifesto-v2-pillars { grid-template-columns: repeat(2, 1fr); }
}

/* === SECTION MARKER (used across multiple sections) === */
.section-marker {
  max-width: 1400px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: clamp(48px, 6vw, 72px) clamp(24px, 4vw, 48px) 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-marker__num {
  color: var(--blue);
  font-weight: 500;
  flex-shrink: 0;
}
.section-marker__label {
  color: rgba(15, 15, 15, 0.55);
  flex-shrink: 0;
}
.section-marker__line {
  flex: 1;
  height: 1px;
  background: rgba(15, 15, 15, 0.12);
}
.section-marker--dark .section-marker__label { color: rgba(15, 15, 15, 0.65); }
.section-marker--dark .section-marker__line { background: rgba(15, 15, 15, 0.18); }
.section-marker--light .section-marker__label { color: rgba(255, 255, 255, 0.55); }
.section-marker--light .section-marker__line { background: rgba(255, 255, 255, 0.12); }

/* === SECONDARY MARQUEE, between work and services === */
.marquee--secondary {
  background: var(--bg);
  border-top: 1px solid rgba(15, 15, 15, 0.08);
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
  padding: 18px 0;
  overflow: hidden;
}
.marquee__track--secondary {
  display: flex;
  gap: 48px;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
}
.marquee__track--secondary span {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === WORK V2, bigger header with mix typography === */
.work-section__header--v2 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.work-section__title--v2 {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.95;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--ink);
}
.work-section__title--v2 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.work-section__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(15, 15, 15, 0.65);
  max-width: 480px;
  margin: 0;
}
.work-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  justify-self: end;
}
.work-section__btn svg { transition: transform .3s var(--ease); }
.work-section__btn:hover svg { transform: translateX(4px); }
@media (max-width: 800px) {
  .work-section__header--v2 { grid-template-columns: 1fr; }
  .work-section__btn { justify-self: start; }
}


/* ============================================================
   STATS V3, editorial track record
   ============================================================ */
.stats-v3 {
  background: var(--blue);
  color: var(--bg);
  padding: clamp(72px, 10vw, 140px) clamp(24px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.stats-v3__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.stats-v3__bg-line {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.08);
  padding-right: clamp(24px, 4vw, 48px);
  margin-bottom: -10px;
}
.stats-v3__bg-num {
  font-family: var(--f-display);
  font-size: clamp(180px, 28vw, 480px);
  line-height: 0.78;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: -.05em;
  margin-right: -0.05em;
  transform: translateY(8%);
}

.stats-v3__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stats-v3__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: clamp(40px, 5vw, 64px);
  margin-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.stats-v3__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.stats-v3__eyebrow-num { color: var(--bg); font-weight: 500; }
.stats-v3__eyebrow-label { color: rgba(255,255,255,0.75); }
.stats-v3__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0;
  text-align: right;
  color: var(--bg);
}
.stats-v3__title em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.stats-v3__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.14);
}
.stats-v3-cell {
  background: var(--blue);
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background .35s ease;
}
.stats-v3-cell:hover {
  background: var(--blue-dark);
}
.stats-v3-cell--feature {
  background: var(--blue-dark);
}
.stats-v3-cell--feature:hover {
  background: var(--blue-darkest);
}
.stats-v3-cell__index {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: clamp(24px, 3vw, 40px);
}
.stats-v3-cell__num {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -.04em;
  font-weight: 500;
  color: var(--bg);
  display: block;
}
.stats-v3-cell__num em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.stats-v3-cell__num sup {
  font-size: 0.5em;
  color: rgba(255,255,255,0.7);
  vertical-align: super;
  margin-left: 2px;
}
.stats-v3-cell__label {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  letter-spacing: -.01em;
  margin-top: 6px;
}
.stats-v3-cell__meta {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: auto;
  padding-top: 16px;
}

.stats-v3__footer {
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.stats-v3__footer-dot {
  width: 6px;
  height: 6px;
  background: var(--bg);
  border-radius: 50%;
  flex-shrink: 0;
}
.stats-v3__footer a {
  color: var(--bg);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: border-color .25s ease;
}
.stats-v3__footer a:hover { border-color: var(--bg); color: var(--bg); }

@media (max-width: 900px) {
  .stats-v3__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-v3__title { text-align: left; }
  .stats-v3__header { align-items: flex-start; }
}
@media (max-width: 500px) {
  .stats-v3__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NEWSLETTER V3, issue style with preview teaser
   ============================================================ */
.newsletter-v3 {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
  border-top: 1px solid rgba(15,15,15,0.06);
  border-bottom: 1px solid rgba(15,15,15,0.06);
}
.newsletter-v3__bg-text {
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-family: var(--f-display);
  font-size: clamp(180px, 24vw, 380px);
  line-height: 0.85;
  font-weight: 500;
  letter-spacing: -.04em;
  color: rgba(15, 15, 15, 0.03);
  pointer-events: none;
  user-select: none;
  font-style: italic;
  z-index: 0;
}
.newsletter-v3__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter-v3__marker {
  margin: 0 0 clamp(48px, 6vw, 72px);
  padding: 0;
}

.newsletter-v3__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.newsletter-v3__left {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}
.newsletter-v3__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.newsletter-v3__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.newsletter-v3__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(15,15,15,0.7);
  max-width: 480px;
  margin: 0;
}
.newsletter-v3__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,15,15,0.08);
}
.newsletter-v3__bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(15,15,15,0.75);
  letter-spacing: -.01em;
}
.newsletter-v3__bullet-num {
  color: var(--blue);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 14px;
  flex-shrink: 0;
}

.newsletter-v3__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* preview card */
.newsletter-v3__preview {
  background: var(--bg);
  border: 1px solid rgba(15,15,15,0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s var(--ease);
}
.newsletter-v3__preview:hover {
  border-color: rgba(26, 102, 224, 0.3);
  transform: translateY(-2px);
}
.newsletter-v3__preview-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(15,15,15,0.025);
  border-bottom: 1px solid rgba(15,15,15,0.06);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(15,15,15,0.5);
}
.newsletter-v3__preview-dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}
.newsletter-v3__preview-body {
  padding: 24px 20px 20px;
}
.newsletter-v3__preview-tag {
  display: inline-block;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.newsletter-v3__preview-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ink);
}
.newsletter-v3__preview-extract {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(15,15,15,0.65);
  margin: 0 0 16px;
}
.newsletter-v3__preview-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(15,15,15,0.4);
}
.newsletter-v3__preview-meta-sep { color: rgba(15,15,15,0.2); }

/* form */
.newsletter-v3__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter-v3__form-row {
  display: flex;
  gap: 8px;
  background: var(--bg);
  border: 1px solid rgba(15,15,15,0.15);
  border-radius: 999px;
  padding: 6px;
  transition: border-color .3s ease;
}
.newsletter-v3__form-row:focus-within {
  border-color: var(--blue);
}
.newsletter-v3__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -.01em;
  min-width: 0;
}
.newsletter-v3__input::placeholder {
  color: rgba(15,15,15,0.4);
}
.newsletter-v3__btn {
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: background .25s ease, transform .25s var(--ease);
  white-space: nowrap;
}
.newsletter-v3__btn:hover:not(:disabled) {
  background: var(--blue);
  transform: translateY(-1px);
}
.newsletter-v3__btn:disabled { opacity: .7; cursor: default; }
.newsletter-v3__form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}
.newsletter-v3__fine {
  font-size: 12px;
  color: rgba(15,15,15,0.45);
  letter-spacing: .01em;
  margin: 0;
}
.newsletter-v3__readers {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(15,15,15,0.4);
  margin: 0;
}

@media (max-width: 900px) {
  .newsletter-v3__grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 500px) {
  .newsletter-v3__form-row { flex-direction: column; border-radius: 16px; padding: 8px; }
  .newsletter-v3__input { text-align: center; padding: 14px 16px; }
  .newsletter-v3__btn { width: 100%; padding: 14px; }
  .newsletter-v3__form-foot { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ============================================================
   CTA V3, closing statement
   ============================================================ */
.cta-v3 {
  background: var(--blue-dark);
  color: var(--bg);
  padding: clamp(96px, 12vw, 180px) clamp(24px, 4vw, 48px) clamp(96px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}
.cta-v3__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  padding: 0 clamp(24px, 4vw, 48px);
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -.05em;
  color: rgba(255, 255, 255, 0.06);
  line-height: 0.85;
  font-size: clamp(180px, 24vw, 380px);
}
.cta-v3__bg-text--italic {
  font-style: italic;
  color: rgba(255, 255, 255, 0.08);
  align-self: flex-end;
  text-align: right;
}
.cta-v3__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-v3__marker {
  margin: 0 0 clamp(56px, 7vw, 96px);
  padding: 0;
}

.cta-v3__hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.cta-v3__title {
  font-family: var(--f-display);
  font-size: clamp(64px, 11vw, 200px);
  line-height: 0.92;
  letter-spacing: -.04em;
  font-weight: 500;
  margin: 0;
}
.cta-v3__title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

.cta-v3__pitch {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: clamp(8px, 1vw, 16px);
}
.cta-v3__pitch-text {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.cta-v3__pitch-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-v3__pitch-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: -.01em;
}
.cta-v3__pitch-check {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 14px;
}

.cta-v3__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: clamp(40px, 5vw, 64px) 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0;
}
.cta-v3__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.01em;
  transition: all .3s var(--ease);
}
.cta-v3__btn--primary {
  background: var(--bg);
  color: var(--ink);
  flex: 1;
  justify-content: space-between;
  min-width: 280px;
  max-width: 420px;
}
.cta-v3__btn--primary:hover {
  background: var(--blue-darkest);
  color: var(--bg);
}
.cta-v3__btn--primary .cta-v3__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--ink);
  border-radius: 50%;
  color: var(--bg);
  transition: transform .3s var(--ease);
}
.cta-v3__btn--primary:hover .cta-v3__btn-arrow {
  background: var(--bg);
  color: var(--blue-dark);
  transform: translateX(4px);
}
.cta-v3__btn--secondary {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.cta-v3__btn--secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.3);
  color: var(--bg);
}

.cta-v3__footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.cta-v3__footer-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-v3__footer-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.cta-v3__footer-value {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-v3__footer-dot {
  width: 7px;
  height: 7px;
  background: #2ed47a;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-out infinite;
}

@media (max-width: 900px) {
  .cta-v3__hero { grid-template-columns: 1fr; }
  .cta-v3__footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-v3__btn--primary { width: 100%; }
}
@media (max-width: 500px) {
  .cta-v3__footer-grid { grid-template-columns: 1fr; }
}




/* === NEWSLETTER signature (replaces fake preview card) === */
.newsletter-v3__signature {
  padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 36px);
  background: var(--bg);
  border: 1px solid rgba(15,15,15,0.1);
  border-radius: 4px;
  position: relative;
  transition: border-color .3s ease;
}
.newsletter-v3__signature::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 32px;
  height: 32px;
  border-top: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
}
.newsletter-v3__signature::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 32px;
  height: 32px;
  border-bottom: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
}
.newsletter-v3__signature-head {
  margin-bottom: 20px;
}
.newsletter-v3__signature-kicker {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(15,15,15,0.5);
}
.newsletter-v3__signature-quote {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  letter-spacing: -.02em;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 24px;
  padding: 0;
  border: none;
}
.newsletter-v3__signature-quote em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.newsletter-v3__signature-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid rgba(15,15,15,0.08);
}
.newsletter-v3__signature-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.newsletter-v3__signature-role {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(15,15,15,0.5);
}

/* Newsletter form label */
.newsletter-v3__form-label {
  display: block;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(15,15,15,0.55);
  margin-bottom: 10px;
}

/* === CTA pitch meta (replaces operational checklist) === */
.cta-v3__pitch-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-v3__pitch-meta-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: baseline;
}
.cta-v3__pitch-meta-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.cta-v3__pitch-meta-value {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  letter-spacing: -.01em;
}
@media (max-width: 500px) {
  .cta-v3__pitch-meta-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* === CLIENTS ROW, senior typology block === */
.clients-row {
  background: var(--cream);
  padding: clamp(56px, 8vw, 96px) clamp(24px, 4vw, 48px);
  border-top: 1px solid rgba(15,15,15,0.06);
}
.clients-row__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.clients-row__head {
  margin-bottom: clamp(24px, 3vw, 40px);
}
.clients-row__kicker {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(15,15,15,0.5);
}
.clients-row__main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.clients-row__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.clients-row__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.clients-row__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(15,15,15,0.08);
  border: 1px solid rgba(15,15,15,0.08);
}
.clients-row__cell {
  background: var(--cream);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .3s ease;
}
.clients-row__cell:hover {
  background: var(--bg);
}
.clients-row__cell-num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--blue);
  margin-bottom: 4px;
}
.clients-row__cell-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(15,15,15,0.45);
}
.clients-row__cell-value {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .clients-row__main { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .clients-row__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   LOGOS GRID, static client showcase (replaces top marquee)
   ============================================================ */
.logos-grid {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(64px, 8vw, 112px) clamp(24px, 4vw, 48px);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.logos-grid__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.logos-grid__head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.logos-grid__kicker {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 20px;
}
.logos-grid__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 500;
  margin: 0;
  color: var(--bg);
}
.logos-grid__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.logos-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin: 0 auto;
  max-width: 1100px;
}
.logos-grid__slot {
  background: var(--ink);
  aspect-ratio: 5 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: background .3s ease;
  position: relative;
}
.logos-grid__slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(26, 102, 224, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.logos-grid__slot:hover {
  background: #0a0a0a;
}
.logos-grid__slot:hover::before {
  opacity: 1;
}
.logos-grid__logo {
  width: 100%;
  max-width: 130px;
  height: auto;
  color: rgba(255,255,255,0.7);
  transition: color .3s ease;
}
.logos-grid__slot:hover .logos-grid__logo {
  color: var(--bg);
}
.logos-grid__foot {
  margin-top: clamp(40px, 4vw, 56px);
  text-align: center;
}
.logos-grid__foot-text {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  display: inline-block;
}

@media (max-width: 900px) {
  .logos-grid__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .logos-grid__grid { grid-template-columns: repeat(2, 1fr); }
  .logos-grid__title { font-size: 28px; }
}

/* ============================================================
   NEWSLETTER FINAL, Sleeq-style post-CTA immersive block
   ============================================================ */
.newsletter-final {
  position: relative;
  background: var(--blue-darkest);
  color: var(--bg);
  padding: clamp(96px, 14vw, 200px) clamp(24px, 4vw, 48px);
  overflow: hidden;
  isolation: isolate;
}
.newsletter-final__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(26, 102, 224, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(26, 102, 224, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--blue-darkest) 0%, #04204d 100%);
  z-index: -1;
}
.newsletter-final__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.6;
}
.newsletter-final__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.newsletter-final__head {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.newsletter-final__kicker {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.newsletter-final__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0 0 28px;
  color: var(--bg);
}
.newsletter-final__title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}
.newsletter-final__lede {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto clamp(36px, 4vw, 52px);
}
.newsletter-final__form {
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-final__field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 6px 6px 6px 24px;
  transition: border-color .3s ease;
}
.newsletter-final__field:focus-within {
  border-color: var(--bg);
}
.newsletter-final__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 0;
  font-family: inherit;
  font-size: 15px;
  color: var(--bg);
  letter-spacing: -.01em;
  min-width: 0;
}
.newsletter-final__input::placeholder {
  color: rgba(255,255,255,0.45);
}
.newsletter-final__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background .25s ease, transform .25s var(--ease);
  flex-shrink: 0;
}
.newsletter-final__btn:hover:not(:disabled) {
  background: var(--blue-soft);
  color: var(--blue-darkest);
  transform: translateX(3px);
}
.newsletter-final__btn:disabled {
  opacity: 0.7;
  cursor: default;
}
.newsletter-final__fine {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: .02em;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .newsletter-final__field {
    padding: 6px 6px 6px 20px;
  }
  .newsletter-final__input {
    font-size: 14px;
  }
}



/* ============================================================
   SCROLL REVEALS, creative agency motion (subtle, not overdone)
   ============================================================ */

/* Base reveal: hidden by default, revealed when .is-revealed is added */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(0.22, 1, 0.36, 1), transform .9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Slide-in from left (for section markers, eyebrows, mono labels) */
[data-reveal="slide-left"] {
  opacity: 0;
  transform: translateX(-32px);
}
[data-reveal="slide-left"].is-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Fade only (no movement) - for backgrounds & large bg numbers */
[data-reveal="fade"] {
  opacity: 0;
  transform: none;
}
[data-reveal="fade"].is-revealed {
  opacity: 1;
}

/* Slow rise (for hero titles & large display titles) */
[data-reveal="rise"] {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal="rise"].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays via data-reveal-delay */
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }
[data-reveal-delay="6"] { transition-delay: .48s; }

/* Number counter, when revealed, the number itself "rises" with a slight blur */
[data-reveal="count"] {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition: opacity .8s cubic-bezier(0.22, 1, 0.36, 1), transform .8s cubic-bezier(0.22, 1, 0.36, 1), filter .8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal="count"].is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal="slide-left"], [data-reveal="fade"], [data-reveal="rise"], [data-reveal="count"] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}


/* Cream variant for home manifesto (warm creative agency feel) */
.manifesto-light--cream {
  background: var(--cream) !important;
  color: var(--ink) !important;
}
.manifesto-light--cream .manifesto-light__title { color: var(--ink); }
.manifesto-light--cream .manifesto-light__title em { color: var(--blue); }
.manifesto-light--cream .manifesto-light__hl { color: var(--blue); }
.manifesto-light--cream .manifesto-light__sub { color: rgba(22,19,16,0.7); }
.manifesto-light--cream .manifesto-v2-rail {
  border-left: 1px solid rgba(22,19,16,0.12);
  color: rgba(22,19,16,0.5);
}
.manifesto-light--cream .manifesto-v2-rail__num { color: var(--blue); }
.manifesto-light--cream .manifesto-v2-rail__quote { color: rgba(22,19,16,0.5); }
.manifesto-light--cream .manifesto-v2-eyebrow { color: var(--blue); }
.manifesto-light--cream .manifesto-v2-pillars {
  border-top: 1px solid rgba(22,19,16,0.1);
}
.manifesto-light--cream .manifesto-v2-pillar { color: rgba(22,19,16,0.85); }
.manifesto-light--cream .manifesto-v2-pillar__n { color: var(--blue); }
@media (max-width: 800px) {
  .manifesto-light--cream .manifesto-v2-rail {
    border-left: none;
    border-top: 1px solid rgba(22,19,16,0.12);
  }
}


/* Cream variant for home process */
.section--process-cream {
  background: var(--cream) !important;
  color: var(--ink) !important;
}
.section--process-cream .process-split__intro h2,
.section--process-cream .process-split__intro p,
.section--process-cream .process-split__step,
.section--process-cream .step-row__num,
.section--process-cream .step-row__title,
.section--process-cream .step-row__desc {
  color: inherit;
}
.section--process-cream .eyebrow { color: var(--blue); }
.section--process-cream .process-split__intro h2 { color: var(--ink); }
.section--process-cream .process-split__intro p { color: rgba(22,19,16,0.7); }
.section--process-cream .step-row {
  border-bottom-color: rgba(22,19,16,0.1) !important;
}
.section--process-cream .step-row__num {
  color: var(--blue) !important;
}
.section--process-cream .step-row__title { color: var(--ink) !important; }
.section--process-cream .step-row__desc { color: rgba(22,19,16,0.7) !important; }
.section--process-cream .step-row:last-child .step-row__num { color: var(--green) !important; }
.section--process-cream .section-marker--light .section-marker__label { color: rgba(22,19,16,0.55) !important; }
.section--process-cream .section-marker--light .section-marker__line { background: rgba(22,19,16,0.12) !important; }



.section--cream-deep {
  background: var(--cream-deep) !important;
}

/* === Bridge variants for cream-heavy palette === */
.bridge--cream-soft {
  background: var(--cream);
  color: rgba(22,19,16,0.55);
}
.bridge--cream-soft .bridge__num { color: var(--blue); border-color: rgba(22,19,16,0.2); }
.bridge--cream-soft .bridge__text { color: var(--ink); }

.bridge--cream-to-white {
  background: linear-gradient(to bottom, var(--cream) 0%, var(--cream) 50%, var(--bg) 50%, var(--bg) 100%);
}
.bridge--cream-to-white .bridge__inner {
  background: var(--bg);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(22,19,16,0.1);
  max-width: max-content;
  margin: 0 auto;
  color: rgba(22,19,16,0.55);
}
.bridge--cream-to-white .bridge__num { color: var(--blue); border-color: rgba(22,19,16,0.2); }
.bridge--cream-to-white .bridge__text { color: var(--ink); }

.bridge--white-to-cream {
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg) 50%, var(--cream) 50%, var(--cream) 100%);
}
.bridge--white-to-cream .bridge__inner {
  background: var(--cream);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(22,19,16,0.1);
  max-width: max-content;
  margin: 0 auto;
  color: rgba(22,19,16,0.55);
}
.bridge--white-to-cream .bridge__num { color: var(--blue); border-color: rgba(22,19,16,0.2); }
.bridge--white-to-cream .bridge__text { color: var(--ink); }



/* Soft blue-tinted variant for work section (alternation in white-dominant flow) */
.section--work-tinted {
  background: var(--bg-2) !important;
}

/* Clean white variant for home manifesto */
.manifesto-light--clean {
  background: var(--bg) !important;
  color: var(--ink) !important;
}
.manifesto-light--clean .manifesto-light__title { color: var(--ink); }
.manifesto-light--clean .manifesto-light__title em { color: var(--blue); }
.manifesto-light--clean .manifesto-light__hl { color: var(--blue); }
.manifesto-light--clean .manifesto-light__sub { color: rgba(10,14,26,0.7); }
.manifesto-light--clean .manifesto-v2-rail {
  border-left: 1px solid rgba(10,14,26,0.1);
  color: rgba(10,14,26,0.5);
}
.manifesto-light--clean .manifesto-v2-rail__num { color: var(--blue); }
.manifesto-light--clean .manifesto-v2-rail__quote { color: rgba(10,14,26,0.5); }
.manifesto-light--clean .manifesto-v2-eyebrow { color: var(--blue); }
.manifesto-light--clean .manifesto-v2-pillars {
  border-top: 1px solid rgba(10,14,26,0.1);
}
.manifesto-light--clean .manifesto-v2-pillar { color: rgba(10,14,26,0.85); }
.manifesto-light--clean .manifesto-v2-pillar__n { color: var(--blue); }
@media (max-width: 800px) {
  .manifesto-light--clean .manifesto-v2-rail {
    border-left: none;
    border-top: 1px solid rgba(10,14,26,0.1);
  }
}


/* Clean white variant for home process */
.section--process-clean {
  background: var(--bg) !important;
  color: var(--ink) !important;
}
.section--process-clean .eyebrow { color: var(--blue); }
.section--process-clean .process-split__intro h2 { color: var(--ink); }
.section--process-clean .process-split__intro p { color: rgba(10,14,26,0.7); }
.section--process-clean .step-row {
  border-bottom-color: rgba(10,14,26,0.08) !important;
}
.section--process-clean .step-row__num { color: var(--blue) !important; }
.section--process-clean .step-row__title { color: var(--ink) !important; }
.section--process-clean .step-row__desc { color: rgba(10,14,26,0.7) !important; }
.section--process-clean .step-row:last-child .step-row__num { color: var(--blue-dark) !important; }
.section--process-clean .section-marker--light .section-marker__label { color: rgba(10,14,26,0.55) !important; }
.section--process-clean .section-marker--light .section-marker__line { background: rgba(10,14,26,0.1) !important; }


/* === Bridge variants for pure blue/white DA === */
.bridge--blue-to-white {
  background: linear-gradient(to bottom, var(--blue) 0%, var(--blue) 50%, var(--bg) 50%, var(--bg) 100%);
}
.bridge--blue-to-white .bridge__inner {
  background: var(--bg);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  max-width: max-content;
  margin: 0 auto;
  color: rgba(10,14,26,0.55);
  box-shadow: 0 6px 24px -8px rgba(10, 14, 26, 0.12);
}
.bridge--blue-to-white .bridge__num { color: var(--blue); border-color: rgba(10,14,26,0.2); }
.bridge--blue-to-white .bridge__text { color: var(--ink); }

.bridge--white-soft {
  background: var(--bg);
  color: rgba(10,14,26,0.5);
  padding: 24px clamp(24px, 4vw, 48px);
}
.bridge--white-soft .bridge__num { color: var(--blue); border-color: rgba(10,14,26,0.18); }
.bridge--white-soft .bridge__text { color: var(--ink); }
.bridge--white-soft .bridge__line { background: rgba(10,14,26,0.1); }

.bridge--white-to-blue {
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg) 50%, var(--blue-dark) 50%, var(--blue-dark) 100%);
}
.bridge--white-to-blue .bridge__inner {
  background: var(--blue-dark);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  max-width: max-content;
  margin: 0 auto;
  color: rgba(255,255,255,0.7);
  box-shadow: 0 8px 32px -8px rgba(13, 76, 184, 0.4);
}
.bridge--white-to-blue .bridge__num { color: var(--bg); border-color: rgba(255,255,255,0.3); }
.bridge--white-to-blue .bridge__text { color: var(--bg); }


/* ============================================================
   PROCESS V4, proper card grid on white background
   Each step is a distinct visual unit with hairlines, num index,
   phase tag, body and foot meta. Inspired by Pentagram/Locomotive.
   ============================================================ */
.process-v4 {
  background: var(--bg);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
  position: relative;
}
.process-v4__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.process-v4__header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.process-v4__header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-v4__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.process-v4__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.process-v4__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.process-v4__header-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: clamp(8px, 1vw, 16px);
  align-items: flex-start;
}
.process-v4__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(10,14,26,0.65);
  margin: 0;
  max-width: 480px;
}
.process-v4__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink);
  transition: gap .3s var(--ease), border-color .25s ease, color .25s ease;
}
.process-v4__cta:hover {
  gap: 14px;
  color: var(--blue);
  border-color: var(--blue);
}
.process-v4__cta svg {
  transition: transform .3s var(--ease);
}
.process-v4__cta:hover svg {
  transform: translateX(2px);
}

/* GRID */
.process-v4__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.process-v4-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .35s ease, transform .35s var(--ease), box-shadow .35s ease;
  min-height: 320px;
}
.process-v4-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--blue);
  transition: width .4s var(--ease);
}
.process-v4-card:hover {
  border-color: rgba(26, 102, 224, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px rgba(10, 14, 26, 0.12);
}
.process-v4-card:hover::before {
  width: 100%;
}

.process-v4-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.process-v4-card__num {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 500;
  color: var(--ink);
}
.process-v4-card__phase {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10,14,26,0.4);
}

.process-v4-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.process-v4-card__title {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.process-v4-card__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.process-v4-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(10,14,26,0.7);
  margin: 0;
}

.process-v4-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.process-v4-card__foot-label {
  color: rgba(10,14,26,0.4);
}
.process-v4-card__foot-value {
  color: var(--blue);
  font-weight: 500;
}

/* Feature card (last step, execution) */
.process-v4-card--feature {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--bg);
}
.process-v4-card--feature::before {
  background: var(--bg);
}
.process-v4-card--feature:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(26, 102, 224, 0.35);
}
.process-v4-card--feature .process-v4-card__num { color: var(--bg); }
.process-v4-card--feature .process-v4-card__phase { color: rgba(255,255,255,0.55); }
.process-v4-card--feature .process-v4-card__title { color: var(--bg); }
.process-v4-card--feature .process-v4-card__title em { color: rgba(255,255,255,0.75); }
.process-v4-card--feature .process-v4-card__desc { color: rgba(255,255,255,0.85); }
.process-v4-card--feature .process-v4-card__foot { border-top-color: rgba(255,255,255,0.2); }
.process-v4-card--feature .process-v4-card__foot-label { color: rgba(255,255,255,0.55); }
.process-v4-card--feature .process-v4-card__foot-value { color: var(--bg); }

@media (max-width: 1100px) {
  .process-v4__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .process-v4__header { grid-template-columns: 1fr; align-items: flex-start; }
  .process-v4__header-right { padding-bottom: 0; }
}
@media (max-width: 600px) {
  .process-v4__grid { grid-template-columns: 1fr; }
  .process-v4-card { min-height: auto; }
}



/* ============================================================
   NAV HOVER POLISH
   ============================================================ */
.nav__link {
  position: relative;
  transition: color 0.25s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

/* ============================================================
   HERO ENTRANCE, word-by-word cascade at page load
   ============================================================ */
.hero--v2 .hero__top--v2,
.hero--v2 .hero__title-v2 .word,
.hero--v2 .hero__bottom--v2,
.hero--v2 .hero__annotation,
.hero--v2 .hero__foot {
  opacity: 0;
  transform: translateY(20px);
}
.hero--v2.in .hero__top--v2,
.hero--v2.in .hero__title-v2 .word,
.hero--v2.in .hero__bottom--v2,
.hero--v2.in .hero__annotation,
.hero--v2.in .hero__foot {
  animation: hero-cascade 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero--v2.in .hero__top--v2 { animation-delay: 0.05s; }
.hero--v2 .hero__title-v2 .word:nth-child(1) { transform: translateY(40px); }
.hero--v2 .hero__title-v2 .word:nth-child(2) { transform: translateY(40px); }
.hero--v2 .hero__title-v2 .word:nth-child(3) { transform: translateY(40px); }
.hero--v2.in .hero__title-v2 .word:nth-child(1) { animation-delay: 0.25s; }
.hero--v2.in .hero__title-v2 .word:nth-child(2) { animation-delay: 0.40s; }
.hero--v2.in .hero__title-v2 .word:nth-child(3) { animation-delay: 0.55s; }
.hero--v2.in .hero__annotation--left { animation-delay: 0.80s; }
.hero--v2.in .hero__annotation--right { animation-delay: 0.85s; }
.hero--v2.in .hero__bottom--v2 { animation-delay: 0.70s; }
.hero--v2.in .hero__foot { animation-delay: 0.95s; }

@keyframes hero-cascade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--v2 .hero__top--v2,
  .hero--v2 .hero__title-v2 .word,
  .hero--v2 .hero__bottom--v2,
  .hero--v2 .hero__annotation,
  .hero--v2 .hero__foot {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ============================================================
   MANIFESTO PULL-QUOTE polish + pillar hover
   ============================================================ */
.manifesto-light--clean .manifesto-light__title {
  position: relative;
}
.manifesto-light--clean .manifesto-light__title::before {
  content: '"';
  position: absolute;
  font-family: var(--f-display);
  font-size: clamp(120px, 18vw, 280px);
  line-height: 0.8;
  font-weight: 500;
  font-style: italic;
  color: var(--blue);
  opacity: 0.08;
  top: -0.3em;
  left: -0.15em;
  z-index: 0;
  pointer-events: none;
}
.manifesto-light--clean .manifesto-light__title > * {
  position: relative;
  z-index: 1;
}

.manifesto-light--clean .manifesto-v2-pillar {
  padding: 16px 18px 16px 0;
  margin: 0;
  position: relative;
  cursor: default;
  transition: transform 0.4s var(--ease);
}
.manifesto-light--clean .manifesto-v2-pillar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--blue);
  transition: width 0.45s var(--ease);
}
.manifesto-light--clean .manifesto-v2-pillar:hover {
  transform: translateY(-2px);
}
.manifesto-light--clean .manifesto-v2-pillar:hover::before {
  width: 100%;
}

/* ============================================================
   THESIS polish
   ============================================================ */
.thesis-home__body p:first-child {
  position: relative;
}
.thesis-home__body p::first-letter {
  font-family: var(--f-display);
  font-size: 1.2em;
  font-weight: 500;
  color: var(--ink);
}
.thesis-home__caption-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

/* ============================================================
   MAGNETIC BUTTONS, subtle attraction on hover
   ============================================================ */
/* Btn transition + hover - SINGLE source of truth */
.btn, .btn--primary, .btn--ghost, .btn--white, .btn--blue {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  will-change: transform;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(26, 102, 224, 0.3);
}
/* Link arrow animation, common pattern across the site */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  position: relative;
  color: inherit;
}
.link-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.link-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   SMOOTH SCROLL behavior
   ============================================================ */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================================
   LINK UNDERLINE refinement (text links inline)
   ============================================================ */
a:not(.btn):not(.logo-marquee__item):not(.nav__link):not(.thesis-home__caption-dot):not([class*="cta-"]):not([class*="process-"]):not([class*="newsletter-"]):not([class*="logo-"]):not([class*="stats-"]):not([class*="bridge"]):not([class*="hero"]):not([class*="manifesto-"]):not([class*="footer"]):not([class*="logos-"]):not([class*="svc-"]):not([class*="link-arrow"]):not([class*="article-v2__"]):not([class*="article-related"]):not([class*="blog-featured__"]):not([class*="blog-card"]):not([class*="contact-"]):not([class*="case-"]):not([class*="work-"]) {
  position: relative;
  text-decoration: none;
  color: var(--blue);
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  padding-bottom: 1px;
  transition: background-size 0.3s var(--ease);
}
a:not(.btn):not(.logo-marquee__item):not(.nav__link):hover {
  background-size: 0% 1px;
}



/* ============================================================
   SERVICES CARDS V2, distinctive with deliverables
   ============================================================ */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.svc-card--v2 {
  background: var(--bg);
  padding: clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
  text-decoration: none;
  color: var(--ink);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.45s var(--ease), transform 0.45s var(--ease);
  overflow: hidden;
  min-height: 320px;
}
.svc-card--v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.55s var(--ease);
}
.svc-card--v2:hover {
  background: var(--bg-2);
}
.svc-card--v2:hover::before {
  width: 100%;
}

.svc-card--v2 .svc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.svc-card--v2 .svc-card__num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--blue);
  text-transform: uppercase;
}
.svc-card--v2 .svc-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: rgba(10, 14, 26, 0.5);
  transition: transform 0.45s var(--ease), 
              background 0.3s ease, 
              color 0.3s ease,
              border-color 0.3s ease;
}
.svc-card--v2:hover .svc-card__arrow {
  background: var(--blue);
  color: var(--bg);
  border-color: var(--blue);
  transform: rotate(0deg) translate(2px, -2px);
}

.svc-card--v2 .svc-card__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.svc-card--v2 .svc-card__name {
  font-family: var(--f-display);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.svc-card--v2 .svc-card__name em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.svc-card--v2 .svc-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.65);
  margin: 0;
}

/* Bottom, deliverables list, revealed smoothly on hover */
.svc-card--v2 .svc-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  opacity: 1;
  transition: border-color 0.3s ease;
}
.svc-card--v2:hover .svc-card__bottom {
  border-color: var(--blue);
}
.svc-card--v2 .svc-card__deliv-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.45);
}
.svc-card--v2 .svc-card__deliv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.svc-card--v2 .svc-card__deliv-item {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(10, 14, 26, 0.78);
  padding-left: 14px;
  position: relative;
}
.svc-card--v2 .svc-card__deliv-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 1px;
  background: var(--blue);
}

@media (max-width: 900px) {
  .services-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS V4 CARDS, add outputs section
   ============================================================ */
.process-v4-card__outputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 14, 26, 0.08);
}
.process-v4-card--feature .process-v4-card__outputs {
  border-top-color: rgba(255, 255, 255, 0.15);
}
.process-v4-card__outputs-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.45);
}
.process-v4-card--feature .process-v4-card__outputs-label {
  color: rgba(255, 255, 255, 0.55);
}
.process-v4-card__outputs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.process-v4-card__outputs-item {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(10, 14, 26, 0.75);
  padding-left: 14px;
  position: relative;
}
.process-v4-card--feature .process-v4-card__outputs-item {
  color: rgba(255, 255, 255, 0.85);
}
.process-v4-card__outputs-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 1px;
  background: var(--blue);
}
.process-v4-card--feature .process-v4-card__outputs-item::before {
  background: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   SCROLL PROGRESS, vertical thin blue line on right
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  width: 2px;
  height: 100vh;
  background: rgba(10, 14, 26, 0.06);
  z-index: 9999;
  pointer-events: none;
}
.scroll-progress__bar {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--blue), var(--blue-dark));
  transition: height 0.1s linear;
}
@media (max-width: 700px) {
  .scroll-progress { width: 1px; }
}








/* ============================================================
   /404 PAGE, editorial error page
   ============================================================ */
.error-404 {
  min-height: 70vh;
  padding: clamp(48px, 6vw, 96px) clamp(24px, 4vw, 48px) clamp(72px, 9vw, 120px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.error-404__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* The gigantesque 404 in filigrane behind */
.error-404__bg-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(220px, 36vw, 540px);
  line-height: 0.85;
  font-weight: 500;
  letter-spacing: -.06em;
  color: var(--bg-2);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  display: flex;
  white-space: nowrap;
}
.error-404__bg-num--italic {
  font-style: italic;
  color: var(--blue-tint);
}

/* Content on top */
.error-404__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: clamp(40px, 6vw, 80px);
}
.error-404__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ff5a5a;
}
.error-404__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -.04em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.error-404__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.error-404__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.7);
  margin: 8px 0 16px;
  max-width: 540px;
}

/* Quick links grid */
.error-404__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}
.error-404__link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 8px 20px 0;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.3s var(--ease), background 0.3s ease;
}
.error-404__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-tint), transparent);
  z-index: -1;
  transition: width 0.5s var(--ease);
  pointer-events: none;
}
.error-404__link:hover::before {
  width: 100%;
}
.error-404__link:hover {
  padding-left: 16px;
}
.error-404__link-arrow {
  font-family: var(--f-display);
  font-size: 32px;
  color: rgba(10, 14, 26, 0.35);
  width: 40px;
  transition: color 0.3s ease, transform 0.3s var(--ease);
}
.error-404__link:hover .error-404__link-arrow {
  color: var(--blue);
  transform: translateX(4px);
}
.error-404__link--primary .error-404__link-arrow {
  color: var(--blue);
}
.error-404__link--primary:hover .error-404__link-arrow {
  transform: translateX(-4px);
}
.error-404__link-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.error-404__link-eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}
.error-404__link-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 500;
  color: var(--ink);
}
.error-404__link--primary .error-404__link-eyebrow {
  color: var(--blue);
}

/* Footer suggestion */
.error-404__suggest {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.error-404__suggest-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}
.error-404__suggest-link {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: -.015em;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}
.error-404__suggest-link:hover {
  opacity: 0.7;
}

@media (max-width: 700px) {
  .error-404__bg-num { font-size: 180px; }
  .error-404__link { gap: 16px; padding: 16px 8px 16px 0; }
  .error-404__link-arrow { font-size: 24px; width: 30px; }
}

/* ============================================================
   HERO SCROLL CUE, minimal indicator at bottom of hero
   ============================================================ */
.hero__scroll-cue {
  position: absolute;
  bottom: 32px;
  right: clamp(24px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(10, 14, 26, 0.45);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.3s var(--ease);
  opacity: 0;
  animation: fade-in-cue 0.8s ease 1.2s forwards;
  z-index: 5;
}
@keyframes fade-in-cue {
  to { opacity: 1; }
}
.hero__scroll-cue:hover {
  color: var(--blue);
  gap: 16px;
}
.hero__scroll-cue-line {
  width: 24px;
  height: 1px;
  background: currentColor;
  position: relative;
  overflow: hidden;
  transition: width 0.3s var(--ease);
}
.hero__scroll-cue-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -24px;
  width: 24px;
  height: 100%;
  background: var(--blue);
  animation: scroll-line-anim 2s ease-in-out infinite;
}
@keyframes scroll-line-anim {
  0% { transform: translateX(0); }
  50% { transform: translateX(48px); }
  100% { transform: translateX(48px); }
}
.hero__scroll-cue:hover .hero__scroll-cue-line {
  width: 36px;
  color: var(--blue);
}
.hero__scroll-cue-num {
  color: rgba(10, 14, 26, 0.3);
  transition: color 0.3s ease;
}
.hero__scroll-cue:hover .hero__scroll-cue-num {
  color: var(--blue);
}
@media (max-width: 700px) {
  .hero__scroll-cue { display: none; }
}

/* ============================================================
   THESIS PHOTO PARALLAX, very subtle on Jules image
   ============================================================ */
.section--thesis-v2 .thesis-v2__visual img,
.section--thesis-v2 .thesis-v2__visual {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}


/* ============================================================
   PROCESS V5 LITE, version synthétique (num + titre + durée)
   ============================================================ */
.process-v5__timeline--lite {
  padding-top: 8px;
}
.process-v5__timeline--lite .process-v5-step {
  gap: 20px;
}
.process-v5__timeline--lite .process-v5-step__top {
  margin-bottom: 4px;
  gap: 16px;
  align-items: center;
}
.process-v5__timeline--lite .process-v5-step__num {
  font-size: clamp(48px, 5.2vw, 72px);
}
.process-v5__timeline--lite .process-v5-step__title {
  font-size: clamp(20px, 1.7vw, 26px);
  margin-bottom: 4px;
}
.process-v5__timeline--lite .process-v5-step__duration {
  font-size: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* Footnote sous timeline */
.process-v5__footnote {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line);
}
.process-v5__footnote-line {
  display: none;
}
.process-v5__footnote-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(10, 14, 26, 0.55);
  max-width: 640px;
}
.process-v5__footnote-text a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.25s ease;
}
.process-v5__footnote-text a:hover {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .process-v5__timeline--lite .process-v5-step__num {
    font-size: 36px;
  }
}

/* ============================================================
   VISUALS SECTION, mockups graphiques pure CSS/SVG
   ============================================================ */
.section--visuals {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
  background: var(--bg);
  position: relative;
}

.visuals {
  max-width: 1400px;
  margin: 0 auto;
}

.visuals__header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: end;
  padding-bottom: clamp(48px, 6vw, 72px);
  margin-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}
.visuals__header-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.visuals__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.visuals__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -.04em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.visuals__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.visuals__header-right {
  padding-bottom: 12px;
}
.visuals__sub {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.7);
  margin: 0;
  max-width: 400px;
}
@media (max-width: 900px) {
  .visuals__header { grid-template-columns: 1fr; }
}

/* Grid asymétrique 4 mockups */
.visuals__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.2fr 1fr;
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: clamp(48px, 6vw, 72px);
}
@media (max-width: 1100px) {
  .visuals__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .visuals__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.visual-mockup {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.visual-mockup__frame {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2vw, 28px);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.visual-mockup:hover .visual-mockup__frame {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(10, 14, 26, 0.12);
}
.visual-mockup__caption {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.visual-mockup__caption-num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--blue);
  padding-top: 1px;
}
.visual-mockup__caption-text {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  font-family: var(--f-mono, ui-monospace, monospace);
  letter-spacing: .04em;
}

/* === Mockup 1 : Poster A0 éditorial === */
.visual-mockup--poster .visual-mockup__frame {
  background: var(--bg);
  padding: 0;
}
.visual-mockup__poster {
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: clamp(14px, 1.8vw, 22px);
  position: relative;
}
.visual-mockup__poster-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.55);
}
.visual-mockup__poster-id {
  color: var(--blue);
}
.visual-mockup__poster-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.visual-mockup__poster-num {
  display: flex;
  font-family: var(--f-display);
  font-size: clamp(54px, 7vw, 84px);
  line-height: 0.85;
  letter-spacing: -.06em;
  font-weight: 500;
  margin: clamp(14px, 2vw, 24px) 0 8px;
  color: var(--ink);
}
.visual-mockup__poster-num-em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.visual-mockup__poster-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 0.98;
  letter-spacing: -.025em;
  font-weight: 500;
  color: var(--ink);
  margin-top: auto;
  margin-bottom: 12px;
}
.visual-mockup__poster-title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.visual-mockup__poster-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.55);
}

/* === Mockup 2 : Phone avec stack de 2 posts === */
.visual-mockup--social .visual-mockup__frame {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--blue-tint) 100%);
}
.visual-mockup__phone {
  width: 70%;
  max-width: 180px;
  aspect-ratio: 9 / 19;
  background: var(--ink);
  border-radius: 22px;
  padding: 10px 6px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px -12px rgba(10, 14, 26, 0.25);
}
.visual-mockup__phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 5px;
  background: var(--bg-2);
  border-radius: 4px;
  opacity: 0.3;
}
.visual-mockup__phone-screen {
  flex: 1;
  background: var(--bg);
  border-radius: 14px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  overflow: hidden;
}
.visual-mockup__post {
  flex: 1;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.visual-mockup__post--1 {
  background: var(--bg);
  border: 1px solid var(--line);
}
.visual-mockup__post--2 {
  background: var(--blue);
  color: var(--bg);
}
.visual-mockup__post-head {
  display: flex;
  align-items: center;
  gap: 5px;
}
.visual-mockup__post-avatar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
}
.visual-mockup__post--2 .visual-mockup__post-avatar {
  background: var(--bg);
}
.visual-mockup__post-name {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 7px;
  letter-spacing: .08em;
  color: rgba(10, 14, 26, 0.7);
}
.visual-mockup__post--2 .visual-mockup__post-name {
  color: rgba(255, 255, 255, 0.85);
}
.visual-mockup__post-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.visual-mockup__post-headline {
  font-family: var(--f-display);
  font-size: clamp(13px, 1.6vw, 18px);
  line-height: 1;
  letter-spacing: -.025em;
  font-weight: 500;
  text-align: center;
  color: var(--ink);
}
.visual-mockup__post--2 .visual-mockup__post-headline {
  color: var(--bg);
}
.visual-mockup__post-headline em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.visual-mockup__post--2 .visual-mockup__post-headline em {
  color: rgba(255, 255, 255, 0.75);
}
.visual-mockup__post-cta {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 7px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
}

/* === Mockup 3 : DOOH panneau urbain === */
.visual-mockup--dooh .visual-mockup__frame {
  padding: 0;
  background: var(--ink);
}
.visual-mockup__dooh {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.visual-mockup__dooh-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #1a2538 0%, #2a3a5a 50%, #3a4a6a 100%);
}
.visual-mockup__dooh-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
}
.visual-mockup__dooh-bldg {
  position: absolute;
  bottom: 0;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.visual-mockup__dooh-billboard {
  position: absolute;
  top: 26%;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  aspect-ratio: 16 / 9;
  background: var(--bg);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8% 6%;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.visual-mockup__dooh-billboard-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.visual-mockup__dooh-kicker {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.4vw, 30px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 500;
  color: var(--ink);
}
.visual-mockup__dooh-tag {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: clamp(7px, 0.7vw, 9px);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue);
}
.visual-mockup__dooh-billboard-leg {
  position: absolute;
  bottom: -54%;
  width: 3px;
  height: 54%;
  background: var(--ink);
  z-index: 1;
}
.visual-mockup__dooh-billboard-leg--l { left: 18%; }
.visual-mockup__dooh-billboard-leg--r { right: 18%; }

/* === Mockup 4 : Wordmark identité === */
.visual-mockup--wordmark .visual-mockup__frame {
  background: var(--bg);
  padding: 0;
}
.visual-mockup__wordmark {
  width: 100%;
  height: 100%;
  padding: clamp(14px, 1.8vw, 22px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.visual-mockup__wordmark-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: clamp(14px, 2vw, 22px);
}
.visual-mockup__wordmark-tick {
  height: 1px;
  background: var(--line);
}
.visual-mockup__wordmark-tick:nth-child(2),
.visual-mockup__wordmark-tick:nth-child(5),
.visual-mockup__wordmark-tick:nth-child(7) {
  background: var(--blue);
}
.visual-mockup__wordmark-text {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 500;
  color: var(--ink);
  margin: auto 0;
  text-align: center;
}
.visual-mockup__wordmark-text em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.visual-mockup__wordmark-rule {
  height: 1px;
  background: var(--ink);
  margin-bottom: 10px;
}
.visual-mockup__wordmark-foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.55);
}

/* Footer rotator under the grid */
.visuals__foot {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line);
  overflow: hidden;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  position: relative;
}
.visuals__foot-label {
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
  background: var(--bg);
  /* Add a soft fade-out edge so the marquee disappears smoothly behind the label */
  padding-right: 14px;
  position: relative;
}
.visuals__foot-label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to right, var(--bg), transparent);
  pointer-events: none;
}
/* Track is the visible viewport for the marquee */
.visuals__foot-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
}
.visuals__foot-track::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to left, var(--bg), transparent);
  pointer-events: none;
  z-index: 2;
}
.visuals__foot-rotator {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  animation: rotator-scroll 45s linear infinite;
  color: rgba(10, 14, 26, 0.55);
  white-space: nowrap;
  width: max-content;
}
.visuals__foot-rotator span {
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}
.visuals__foot-sep {
  color: rgba(10, 14, 26, 0.25);
}
@keyframes rotator-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.visuals__foot:hover .visuals__foot-rotator {
  animation-play-state: paused;
}
@media (max-width: 600px) {
  .visuals__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .visuals__foot-label::after {
    display: none;
  }
  .visuals__foot-track {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .visuals__foot-rotator {
    animation: none;
  }
}

/* ============================================================
   SERVICES V3, liste éditoriale pleine largeur (style Pentagram / KOM)
   ============================================================ */
.section--services-v3 {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
  background: var(--bg);
  position: relative;
}

.services-v3 {
  max-width: 1400px;
  margin: 0 auto;
}

.services-v3__header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: end;
  padding-bottom: clamp(48px, 6vw, 72px);
  margin-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.services-v3__header-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-v3__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}

.services-v3__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -.04em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.services-v3__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}

.services-v3__header-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 12px;
}

.services-v3__sub {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.7);
  margin: 0;
  max-width: 360px;
}

.services-v3__count {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  width: max-content;
}
.services-v3__count-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--blue);
  font-weight: 400;
}
.services-v3__count-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.55);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .services-v3__header { grid-template-columns: 1fr; }
}

/* Liste des services, chaque service est une ligne pleine largeur */
.services-v3__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.svc-line {
  display: grid;
  grid-template-columns: 80px 1.4fr 1fr 60px;
  gap: clamp(20px, 3vw, 56px);
  align-items: center;
  padding: clamp(28px, 3.5vw, 44px) 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.5s var(--ease);
}

/* Hairline d'accent qui apparaît au hover */
.svc-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-tint), transparent);
  z-index: 0;
  transition: width 0.6s var(--ease);
  pointer-events: none;
}
.svc-line:hover::before {
  width: 100%;
}

/* Hairline en haut sur hover */
.svc-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--blue);
  transition: width 0.5s var(--ease);
  z-index: 1;
}
.svc-line:hover::after {
  width: 100%;
}

.svc-line > * {
  position: relative;
  z-index: 1;
}

/* Numéro géant en italique display */
.svc-line__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(10, 14, 26, 0.25);
  font-weight: 400;
  transition: color 0.4s ease, transform 0.45s var(--ease);
}
.svc-line:hover .svc-line__num {
  color: var(--blue);
  transform: translateX(4px);
}

/* Bloc nom + desc */
.svc-line__main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.svc-line__name {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.svc-line__name em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.svc-line__desc {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(10, 14, 26, 0.6);
  margin: 0;
  max-width: 480px;
}

/* Livrables : alignés à droite en pills mono très subtiles */
.svc-line__deliv {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.svc-line__deliv-item {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(10, 14, 26, 0.55);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.svc-line__deliv-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 1px;
  background: rgba(10, 14, 26, 0.3);
  transition: background 0.3s ease, width 0.3s ease;
}
.svc-line:hover .svc-line__deliv-item::before {
  background: var(--blue);
  width: 10px;
}

/* Flèche à droite */
.svc-line__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: rgba(10, 14, 26, 0.4);
  transition: all 0.45s var(--ease);
  justify-self: end;
}
.svc-line:hover .svc-line__arrow {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--bg);
  transform: rotate(-45deg);
}
.svc-line:hover .svc-line__arrow svg {
  transform: rotate(45deg);
}
.svc-line__arrow svg {
  transition: transform 0.45s var(--ease);
}

/* Responsive */
@media (max-width: 1100px) {
  .svc-line {
    grid-template-columns: 60px 1fr 48px;
  }
  .svc-line__deliv {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: -4px;
    padding-left: calc(60px + clamp(20px, 3vw, 56px));
  }
  .svc-line__deliv-item {
    padding-left: 12px;
  }
}
@media (max-width: 700px) {
  .svc-line {
    grid-template-columns: 44px 1fr 36px;
    gap: 16px;
    padding: 20px 4px;
  }
  .svc-line__num { font-size: 32px; }
  .svc-line__name { font-size: 22px; }
  .svc-line__deliv {
    padding-left: calc(44px + 16px);
  }
  .svc-line__arrow {
    width: 36px;
    height: 36px;
  }
}

/* ============================================================
   PROCESS V5, timeline horizontale éditoriale
   ============================================================ */
.process-v5 {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
  background: var(--bg-2);
  position: relative;
}
.process-v5__inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header asymétrique */
.process-v5__header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: end;
  padding-bottom: clamp(48px, 6vw, 72px);
  margin-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.process-v5__header-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.process-v5__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.process-v5__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -.04em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.process-v5__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.process-v5__header-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 12px;
}
.process-v5__sub {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.7);
  margin: 0;
  max-width: 380px;
}
.process-v5__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}
.process-v5__cta:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}
.process-v5__cta svg {
  transition: transform 0.3s var(--ease);
}
.process-v5__cta:hover svg {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .process-v5__header { grid-template-columns: 1fr; }
}

/* Timeline horizontale - line positioned below the top row of each step
   so it doesn't cut through the big italic numbers */
.process-v5__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  position: relative;
  padding-top: 0;
}

/* La ligne horizontale - positionnée juste sous les dots/nodes,
   au-dessus du titre. Calculée pour aligner avec le centre vertical des nodes. */
.process-v5__timeline-line {
  position: absolute;
  /* Position the line below the entire top row of each step
     (which contains the giant italic number + node + phase).
     This way the line is a clean separator and never crosses the numbers. */
  top: clamp(72px, 8vw, 100px);
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  z-index: 0;
  pointer-events: none;
}
/* Connect the line directly to each node visually with a small vertical mark */
.process-v5-step__node::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 1px;
  height: clamp(8px, 1vw, 12px);
  background: var(--line);
  pointer-events: none;
}
.process-v5__timeline-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 75%;
  background: linear-gradient(to right, var(--blue), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  animation: timeline-fill 1.8s cubic-bezier(0.7, 0, 0.3, 1) 0.4s forwards;
}

/* Ensure steps content sits clearly above the line */
.process-v5-step {
  z-index: 2;
}
/* The numbers and nodes still get z-index above the line for safety */
.process-v5-step__num,
.process-v5-step__node {
  position: relative;
  z-index: 3;
}
/* The number doesn't need to mask the line because the line passes BELOW
   but in lite mode, the dot needs background to mask the line where they cross */
.process-v5-step__node {
  /* Existing dot - keep its visual integrity */
  background: var(--bg) !important;
  border: 2px solid var(--line);
  box-shadow: 0 0 0 4px var(--bg);
}
.process-v5-step__node--blue {
  background: var(--blue) !important;
  border-color: var(--blue);
}
@keyframes timeline-fill {
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .process-v5__timeline-line-fill { transform: scaleX(1); animation: none; }
}

/* Chaque step */
.process-v5-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.process-v5-step__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.process-v5-step__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--blue);
  font-weight: 400;
  width: 80px;
  flex-shrink: 0;
}
.process-v5-step__node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--blue);
  position: relative;
  z-index: 2;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.process-v5-step__node--blue {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 102, 224, 0.15);
  animation: node-pulse 2s ease-in-out infinite;
}
@keyframes node-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(26, 102, 224, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(26, 102, 224, 0.05); }
}
.process-v5-step:hover .process-v5-step__node {
  transform: scale(1.3);
  background: var(--blue);
}
.process-v5-step__phase {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
  margin-left: auto;
}
.process-v5-step--loop .process-v5-step__phase {
  color: var(--blue);
}

.process-v5-step__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.process-v5-step__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.process-v5-step__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.65);
  margin: 0;
}
.process-v5-step__duration {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.process-v5-step__duration--loop {
  color: var(--blue);
  border-top-color: var(--blue);
  display: flex;
  align-items: center;
}

/* Responsive timeline → stack vertical sur mobile */
@media (max-width: 900px) {
  .process-v5__timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-v5__timeline-line {
    top: 0;
    bottom: 0;
    left: 6px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .process-v5__timeline-line-fill {
    width: 100%;
    height: 75%;
    transform: scaleY(0);
    transform-origin: top;
    background: var(--blue);
    animation: timeline-fill-vertical 1.8s cubic-bezier(0.7, 0, 0.3, 1) 0.4s forwards;
  }
  @keyframes timeline-fill-vertical {
    to { transform: scaleY(1); }
  }
  .process-v5-step {
    padding: 24px 0 24px 32px;
    border-bottom: 1px solid var(--line);
  }
  .process-v5-step:last-child { border-bottom: none; }
  .process-v5-step__top {
    margin-left: -32px;
  }
  .process-v5-step__num {
    width: auto;
    font-size: 36px;
  }
}

/* ============================================================
   /ARTICLE V2, editorial reading experience
   ============================================================ */
.article-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
}
.article-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--blue), var(--blue-dark));
  transition: width 0.1s linear;
}

.article-v2__id-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(24px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.article-v2__id-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(10, 14, 26, 0.55);
}
.article-v2__id { color: var(--blue); }
.article-v2__id-sep { color: rgba(10, 14, 26, 0.3); }
.article-v2__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(10, 14, 26, 0.6);
  transition: color 0.25s ease, gap 0.25s var(--ease);
}
.article-v2__back:hover {
  color: var(--blue);
  gap: 12px;
}
.article-v2__back svg {
  transition: transform 0.25s var(--ease);
}
.article-v2__back:hover svg {
  transform: translateX(-3px);
}

.article-v2__hero {
  padding: clamp(48px, 6vw, 96px) clamp(24px, 4vw, 48px) 0;
  max-width: 1400px;
  margin: 0 auto;
}
.article-v2__hero-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 920px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.article-v2__hero-eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.article-v2__hero-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.article-v2__hero-title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.article-v2__hero-excerpt {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
  color: rgba(10, 14, 26, 0.7);
  margin: 8px 0 16px;
  max-width: 720px;
}

.article-v2__meta {
  display: grid;
  grid-template-columns: repeat(4, auto) 1fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: flex-start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 12px;
}
.article-v2__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article-v2__meta-item--share {
  margin-left: auto;
  align-items: flex-end;
}
.article-v2__meta-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.45);
}
.article-v2__meta-value {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.article-v2__share {
  display: flex;
  gap: 6px;
}
.article-v2__share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
  color: rgba(10, 14, 26, 0.55);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  padding: 0;
}
.article-v2__share-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--bg);
}
.article-v2__share-link.is-copied {
  background: #2ed47a;
  border-color: #2ed47a;
  color: var(--bg);
}
@media (max-width: 800px) {
  .article-v2__meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .article-v2__meta-item--share {
    grid-column: span 2;
    margin-left: 0;
    align-items: flex-start;
  }
}

.article-v2__visual {
  aspect-ratio: 21 / 9;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 4vw, 64px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.article-v2__visual-num {
  position: absolute;
  top: clamp(32px, 4vw, 64px);
  left: clamp(32px, 4vw, 64px);
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 120px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.04em;
  color: rgba(255, 255, 255, 0.18);
  line-height: 0.9;
}
.article-v2__visual-tag {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.article-v2__main {
  padding: 0 clamp(24px, 4vw, 48px) clamp(72px, 9vw, 120px);
  max-width: 1400px;
  margin: 0 auto;
}
.article-v2__main-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 1100px) {
  .article-v2__main-inner { grid-template-columns: 1fr; }
  .article-v2__toc { display: none; }
}

.article-v2__toc {
  order: 2;
  position: sticky;
  top: 96px;
}
.article-v2__toc-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(20px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-2);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.article-v2__toc-eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.article-v2__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.article-v2__toc-item {
  border-top: 1px solid var(--line);
}
.article-v2__toc-item:last-child { border-bottom: 1px solid var(--line); }
.article-v2__toc-link {
  display: flex;
  gap: 10px;
  padding: 10px 4px;
  text-decoration: none;
  color: rgba(10, 14, 26, 0.7);
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.25s ease;
  align-items: baseline;
}
.article-v2__toc-link:hover {
  color: var(--blue);
}
.article-v2__toc-link.is-active {
  color: var(--blue);
  font-weight: 500;
}
.article-v2__toc-link.is-active .article-v2__toc-num {
  color: var(--blue);
}
.article-v2__toc-num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  color: rgba(10, 14, 26, 0.4);
  min-width: 22px;
  flex-shrink: 0;
}
.article-v2__toc-text {
  flex: 1;
}
.article-v2__toc-meta {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}

.article-v2__body {
  order: 1;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 720px;
}
.article-v2__body h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 56px 0 20px;
  color: var(--ink);
  scroll-margin-top: 100px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.article-v2__body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-v2__body h2 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.article-v2__body h3 {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 36px 0 12px;
  color: var(--ink);
}
.article-v2__body p {
  margin: 0 0 20px;
  color: rgba(10, 14, 26, 0.85);
}
.article-v2__body p em {
  font-style: italic;
  color: var(--blue);
}
.article-v2__body p strong {
  font-weight: 600;
  color: var(--ink);
}
.article-v2__body a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.25s ease;
}
.article-v2__body a:hover { opacity: 0.7; }

.article-v2__author {
  padding: 0 clamp(24px, 4vw, 48px);
  max-width: 1400px;
  margin: 0 auto;
}
.article-v2__author-inner {
  border-top: 2px solid var(--ink);
  padding: clamp(40px, 5vw, 64px) 0;
}
.article-v2__author-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  max-width: 920px;
}
.article-v2__author-bio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-v2__author-eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.article-v2__author-name {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1;
  color: var(--ink);
  margin: 0;
}
.article-v2__author-name em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.article-v2__author-desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.7);
  max-width: 480px;
  margin: 0;
}
.article-v2__author-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s var(--ease);
}
.article-v2__author-cta:hover {
  background: var(--blue);
  transform: translateY(-2px);
}
.article-v2__author-cta svg {
  transition: transform 0.25s var(--ease);
}
.article-v2__author-cta:hover svg {
  transform: translateX(3px);
}
@media (max-width: 800px) {
  .article-v2__author-row { grid-template-columns: 1fr; align-items: flex-start; }
  .article-v2__author-cta { align-self: flex-start; }
}

.article-v2__next {
  background: var(--blue-dark);
  color: var(--bg);
}
.article-v2__next-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 48px);
  max-width: 1400px;
  margin: 0 auto;
  transition: padding 0.4s var(--ease);
}
.article-v2__next-link:hover {
  padding-left: clamp(32px, 5vw, 64px);
}
.article-v2__next-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.article-v2__next-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  grid-column: 1 / 2;
}
.article-v2__next-eyebrow,
.article-v2__next-num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.article-v2__next-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.article-v2__next-num {
  color: rgba(255, 255, 255, 0.5);
}
.article-v2__next-title {
  grid-column: 1 / 2;
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 500;
  margin: 12px 0 0;
  color: var(--bg);
}
.article-v2__next-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}
.article-v2__next-arrow {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--bg);
  transition: transform 0.4s var(--ease), border-color 0.3s ease, background 0.3s ease;
}
.article-v2__next-link:hover .article-v2__next-arrow {
  transform: translateX(8px);
  border-color: var(--bg);
  background: rgba(255, 255, 255, 0.08);
}

.article-v2__related {
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 48px) clamp(72px, 9vw, 120px);
  max-width: 1400px;
  margin: 0 auto;
}
.article-v2__related-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.article-v2__related-eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.article-v2__related-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(10, 14, 26, 0.7);
  font-size: 13px;
  transition: color 0.25s ease, gap 0.25s var(--ease);
}
.article-v2__related-all:hover {
  color: var(--blue);
  gap: 12px;
}
.article-v2__related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.article-related {
  background: var(--bg);
  padding: clamp(28px, 3vw, 40px);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s ease;
  position: relative;
}
.article-related::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.45s var(--ease);
}
.article-related:hover {
  background: var(--bg-2);
}
.article-related:hover::before {
  width: 100%;
}
.article-related__cat {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.article-related__title {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.article-related__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.article-related__meta {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
  margin-top: auto;
}
@media (max-width: 700px) {
  .article-v2__related-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   /MENTIONS LÉGALES, editorial 2-col layout (sticky TOC + content)
   ============================================================ */
.legal-v2 {
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 48px) clamp(72px, 9vw, 120px);
  background: var(--bg);
}
.legal-v2__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .legal-v2__inner { grid-template-columns: 1fr; }
}

/* TOC sticky */
.legal-v2__toc {
  position: sticky;
  top: 96px;
}
.legal-v2__toc-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 2.5vw, 32px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-2);
}
.legal-v2__toc-eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.legal-v2__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.legal-v2__toc-item {
  border-top: 1px solid var(--line);
}
.legal-v2__toc-item:last-child {
  border-bottom: 1px solid var(--line);
}
.legal-v2__toc-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 4px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  transition: color 0.25s ease, padding 0.25s var(--ease);
}
.legal-v2__toc-link:hover {
  color: var(--blue);
  padding-left: 8px;
}
.legal-v2__toc-num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(10, 14, 26, 0.45);
  min-width: 22px;
}
.legal-v2__toc-link:hover .legal-v2__toc-num {
  color: var(--blue);
}
.legal-v2__toc-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}

/* Content sections */
.legal-v2__content {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
}
.legal-v2__section {
  scroll-margin-top: 100px;
}
.legal-v2__section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.legal-v2__section-num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--blue);
  padding: 4px 8px;
  border: 1px solid var(--blue);
  border-radius: 100px;
}
.legal-v2__section-tag {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}
.legal-v2__section-line {
  flex-grow: 1;
  height: 1px;
  background: var(--line);
}
.legal-v2__section-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--ink);
}
.legal-v2__section-title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.legal-v2__body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(10, 14, 26, 0.75);
  margin: 0 0 16px;
  max-width: 720px;
}
.legal-v2__inline-link {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}
.legal-v2__inline-link:hover {
  opacity: 0.7;
}
.legal-v2__pending {
  font-style: italic;
  color: rgba(10, 14, 26, 0.45);
  background: var(--bg-2);
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px dashed rgba(10, 14, 26, 0.15);
}

/* Meta grid for company info */
.legal-v2__meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.legal-v2__meta-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.legal-v2__meta-row--feature {
  background: var(--bg-2);
  padding-left: 12px;
  padding-right: 12px;
  margin: 8px -8px -1px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.legal-v2__meta-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.55);
}
.legal-v2__meta-value {
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
}
.legal-v2__meta-value--link {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  width: max-content;
}
@media (max-width: 600px) {
  .legal-v2__meta-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* RGPD rights cards */
.legal-v2__rights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
  border: 1px solid var(--line);
}
.legal-v2__right {
  background: var(--bg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.legal-v2__right-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  color: var(--blue);
  font-weight: 400;
  letter-spacing: -.02em;
  width: 28px;
}
.legal-v2__right-title {
  display: block;
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: -.02em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.legal-v2__right-desc {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(10, 14, 26, 0.65);
}
@media (max-width: 800px) {
  .legal-v2__rights { grid-template-columns: 1fr; }
}

/* Cookie status indicator */
.legal-v2__cookie-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 16px;
  border: 1px solid #2ed47a;
  background: rgba(46, 212, 122, 0.05);
  border-radius: 100px;
  width: max-content;
}
.legal-v2__cookie-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ed47a;
  animation: pulse-dot 2s ease-out infinite;
}
.legal-v2__cookie-text {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #218c4f;
}

/* ============================================================
   WORK GRID hover polish (existing class .work-grid > .case)
   ============================================================ */
.work-grid .case,
.work-grid .work-case {
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.work-grid .case:hover,
.work-grid .work-case:hover {
  transform: translateY(-4px);
}

/* ============================================================
   /CONTACT, step indicator + fieldsets + aside v2
   ============================================================ */
.contact-section-v2 {
  padding: 0 0 clamp(72px, 9vw, 120px);
}

/* Step indicator */
.contact-steps {
  background: var(--bg-2);
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.contact-steps__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-steps__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.contact-steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.contact-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 24px 32px 24px 0;
  border-right: 1px solid var(--line);
  align-items: flex-start;
}
.contact-step:last-child { border-right: none; }
.contact-step__num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(10, 14, 26, 0.4);
  padding-top: 4px;
  width: 32px;
}
.contact-step.is-active .contact-step__num {
  color: var(--blue);
}
.contact-step__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-step__title {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 500;
  color: var(--ink);
}
.contact-step.is-active .contact-step__title {
  color: var(--blue);
}
.contact-step__desc {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(10, 14, 26, 0.6);
}
.contact-step__line {
  display: none;
}
@media (max-width: 800px) {
  .contact-steps__list { grid-template-columns: 1fr; }
  .contact-step {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
  }
  .contact-step:last-child { border-bottom: none; }
}

/* Layout: form + aside */
.contact-section-v2 .contact {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-section-v2 .contact {
    grid-template-columns: 1fr;
  }
}

/* Form fieldsets */
.contact-fieldset {
  border: none;
  padding: 0 0 32px;
  margin: 0 0 32px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-fieldset:last-of-type {
  border-bottom: none;
}
.contact-fieldset__legend {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 0 0 8px;
  width: 100%;
  border-bottom: none;
}
.contact-fieldset__num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--blue);
}
.contact-fieldset__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: -.025em;
  font-weight: 500;
  color: var(--ink);
}
.contact-fieldset__optional {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.4);
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.contact-fieldset__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 600px) {
  .contact-fieldset__grid { grid-template-columns: 1fr; }
}

.field__hint {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.4);
  margin-left: 6px;
  font-weight: 400;
}

.contact-form__submit {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-form__submit-meta {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}

/* Contact side V2 */
.contact-side--v2 {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 100px;
}
.contact-side--v2 .contact-side__hero {
  background: var(--blue-dark);
  color: var(--bg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.contact-side--v2 .contact-side__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--blue), transparent);
}
.contact-side--v2 .contact-side__hero-eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.contact-side--v2 .contact-side__hero-time {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 500;
  color: var(--bg);
}
.contact-side--v2 .contact-side__hero-meta {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}
.contact-side--v2 .contact-side__block {
  padding: clamp(24px, 2.5vw, 32px);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-side--v2 .contact-side__block-title {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
  font-weight: 500;
}
.contact-side--v2 .contact-side__timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-timeline-item {
  display: grid;
  grid-template-columns: 14px 80px 1fr;
  gap: 14px;
  align-items: baseline;
}
.contact-timeline-item__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 6px;
}
.contact-timeline-item__when {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}
.contact-timeline-item__what {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
}
.contact-side--v2 .contact-side__metrics {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-side--v2 .contact-side__metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.contact-side--v2 .contact-side__metric:last-child { border-bottom: none; }
.contact-side--v2 .contact-side__metric span:first-child {
  color: rgba(10, 14, 26, 0.65);
}
.contact-side--v2 .contact-side__metric em {
  font-style: italic;
  color: var(--blue);
  font-weight: 500;
}
.contact-side--v2 .contact-side__block--direct {
  background: var(--bg-2);
}
.contact-side--v2 .contact-side__email {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -.02em;
  color: var(--blue);
  text-decoration: none;
  display: block;
  margin: -4px 0 4px;
  transition: opacity 0.2s ease;
}
.contact-side--v2 .contact-side__email:hover {
  opacity: 0.75;
}
.contact-side--v2 .contact-side__direct-note {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(10, 14, 26, 0.6);
  margin: 0;
}



/* ============================================================
   SERVICE PAGE, FAQ + new CTA
   ============================================================ */
.svc-faq-section {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 4vw, 48px);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc-faq-section__head {
  max-width: 1400px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: clamp(28px, 3.5vw, 40px);
  border-bottom: 1px solid var(--line);
}
.svc-faq-section__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.svc-faq-section__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.svc-faq-section__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}

.svc-faq-list {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.svc-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.svc-faq-item__summary {
  display: grid;
  grid-template-columns: 64px 1fr 24px;
  align-items: center;
  gap: 24px;
  padding: clamp(20px, 2vw, 28px) 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: opacity 0.25s ease;
}
.svc-faq-item__summary::-webkit-details-marker { display: none; }
.svc-faq-item__num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--blue);
}
.svc-faq-item__q {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 500;
  color: var(--ink);
}
.svc-faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: rgba(10, 14, 26, 0.5);
  transition: transform 0.4s var(--ease), color 0.3s ease;
}
.svc-faq-item[open] .svc-faq-item__icon {
  transform: rotate(180deg);
  color: var(--blue);
}
.svc-faq-item[open] .svc-faq-item__num,
.svc-faq-item[open] .svc-faq-item__q {
  color: var(--blue);
}
.svc-faq-item__a {
  padding: 0 24px clamp(20px, 2vw, 28px) calc(64px + 24px);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: rgba(10, 14, 26, 0.72);
  max-width: 920px;
}
@media (max-width: 700px) {
  .svc-faq-item__summary {
    grid-template-columns: 36px 1fr 20px;
    gap: 14px;
  }
  .svc-faq-item__a {
    padding-left: 50px;
  }
}

/* SVC CTA V2, dark blue editorial */
.svc-cta-v2 {
  background: var(--blue-dark);
  color: var(--bg);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 4vw, 48px);
  text-align: center;
}
.svc-cta-v2__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.svc-cta-v2__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.svc-cta-v2__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0;
  color: var(--bg);
}
.svc-cta-v2__title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}
.svc-cta-v2__sub {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 8px 0 16px;
  max-width: 520px;
}
.svc-cta-v2__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}
.svc-cta-v2 .btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--bg);
}
.svc-cta-v2 .btn--ghost:hover {
  border-color: var(--bg);
  background: rgba(255, 255, 255, 0.08);
}
.svc-cta-v2__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}
.svc-cta-v2__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-cta-v2__meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ed47a;
  animation: pulse-dot 2s ease-out infinite;
}
.svc-cta-v2__meta-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   CASE DETAIL V2, editorial layout
   ============================================================ */

/* ID BAR */
.case-detail-v2__id-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(24px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.case-detail-v2__id-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.case-detail-v2__id {
  color: var(--blue);
}
.case-detail-v2__id-sep {
  color: rgba(10, 14, 26, 0.25);
}
.case-detail-v2__id-label {
  color: rgba(10, 14, 26, 0.6);
}
.case-detail-v2__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(10, 14, 26, 0.6);
  transition: color 0.25s ease, gap 0.3s var(--ease);
}
.case-detail-v2__back:hover {
  color: var(--blue);
  gap: 12px;
}

/* HERO */
.case-detail-v2__hero {
  padding: clamp(48px, 6vw, 96px) clamp(24px, 4vw, 48px) clamp(32px, 4vw, 56px);
}
.case-detail-v2__hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.case-detail-v2__hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case-detail-v2__hero-eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.case-detail-v2__hero-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0;
}
.case-detail-v2__hero-brand {
  font-size: clamp(48px, 7vw, 112px);
  color: var(--ink);
  line-height: 0.95;
}
.case-detail-v2__hero-desc {
  font-size: clamp(28px, 4vw, 56px);
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1.05;
  font-weight: 500;
}
.case-detail-v2__hero-tagline {
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-top: 12px;
}

.case-detail-v2__hero-info {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(20px, 2vw, 28px);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-detail-v2__info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.case-detail-v2__info-row:last-child { border-bottom: none; }
.case-detail-v2__info-row--feature {
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.case-detail-v2__info-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}
.case-detail-v2__info-value {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}
.case-detail-v2__info-value--blue {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--blue);
  font-style: italic;
  font-weight: 400;
}

/* Visual full-width */
.case-detail-v2__visual {
  max-width: 1400px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 3vw, 40px);
}
.case-detail-v2__visual-overlay {
  position: relative;
  z-index: 1;
}
.case-detail-v2__visual-meta {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 900px) {
  .case-detail-v2__hero-grid {
    grid-template-columns: 1fr;
  }
}

/* METRICS HERO */
.case-detail-v2__metrics {
  background: var(--blue);
  color: var(--bg);
  padding: clamp(56px, 7vw, 96px) clamp(24px, 4vw, 48px);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.case-detail-v2__metrics-head {
  max-width: 1400px;
  margin: 0 auto clamp(28px, 3vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.case-detail-v2__metrics-eyebrow,
.case-detail-v2__metrics-count {
  color: rgba(255, 255, 255, 0.75);
}
.case-detail-v2__metrics-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.case-detail-v2__metric {
  background: var(--blue);
  padding: clamp(28px, 3vw, 48px) clamp(24px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.case-detail-v2__metric-index {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.case-detail-v2__metric-num {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -.045em;
  font-weight: 500;
  color: var(--bg);
}
.case-detail-v2__metric-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

@media (max-width: 800px) {
  .case-detail-v2__metrics-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 500px) {
  .case-detail-v2__metrics-grid { grid-template-columns: 1fr !important; }
}

/* BODY SECTIONS */
.case-detail-v2__body {
  padding: clamp(72px, 9vw, 120px) clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 7vw, 96px);
  max-width: 1400px;
  margin: 0 auto;
}
.case-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.case-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.case-section__marker {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 6px;
}
.case-section__marker-num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--blue);
}
.case-section__marker-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}
.case-section__marker-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--blue);
  margin-top: 8px;
}
.case-section__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case-section__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.case-section__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.case-section__body {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.78);
  margin: 0;
  max-width: 720px;
}
.case-section__body::first-letter {
  font-family: var(--f-display);
  font-size: 1.2em;
  font-weight: 500;
  color: var(--ink);
}

.case-section__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.case-pill:hover {
  border-color: var(--blue);
  background: var(--blue-tint);
  color: var(--blue);
}

.case-awards-v2 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-award-v2 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: 4px;
  transition: border-color 0.25s ease;
}
.case-award-v2:hover {
  border-color: var(--blue);
}
.case-award-v2__icon {
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}
.case-award-v2__name {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 800px) {
  .case-section { grid-template-columns: 1fr; gap: 24px; }
  .case-section__marker { position: static; flex-direction: row; align-items: center; gap: 12px; }
  .case-section__marker-line { margin-top: 0; }
}

/* MEDIA */
.case-detail-v2__media {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 4vw, 48px);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.case-detail-v2__media-head {
  max-width: 1400px;
  margin: 0 auto clamp(28px, 3vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.case-detail-v2__media-eyebrow { color: var(--blue); }
.case-detail-v2__media-count { color: rgba(10, 14, 26, 0.5); }
.case-detail-v2__media-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-detail-v2__media-grid .case-media-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a0e1a;
}
.case-detail-v2__media-grid .case-media-item--portrait {
  aspect-ratio: 9 / 16;
  max-width: 360px;
  margin: 0 auto;
}
.case-detail-v2__media-grid .case-media-item--square {
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin: 0 auto;
}
.case-media-item__sound {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s ease;
}
.case-media-item__sound:hover { background: rgba(0,0,0,.8); transform: scale(1.06); }
.case-media-item__sound .case-media-item__sound-on { display: none; }
.case-media-item__sound.is-on .case-media-item__sound-off { display: none; }
.case-media-item__sound.is-on .case-media-item__sound-on { display: block; }

.case-detail-v2__media-grid .case-media-item__num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.case-detail-v2__media-grid .case-media-item video,
.case-detail-v2__media-grid .case-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .case-detail-v2__media-grid { grid-template-columns: 1fr; }
}

/* RELATED */
.case-detail-v2__related {
  padding: clamp(72px, 9vw, 120px) clamp(24px, 4vw, 48px);
}
.case-detail-v2__related-head {
  max-width: 1400px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.case-detail-v2__related-eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.case-detail-v2__related-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.25s ease, gap 0.3s var(--ease);
}
.case-detail-v2__related-all:hover {
  color: var(--blue);
  gap: 14px;
}
.case-detail-v2__related-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-related-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease);
}
.case-related-v2:hover {
  transform: translateY(-4px);
}
.case-related-v2__visual {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.case-related-v2__num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.case-related-v2__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 2px;
  position: relative;
}
.case-related-v2__sector {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.case-related-v2__brand {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.case-related-v2__desc {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(10, 14, 26, 0.65);
  margin: 0;
}
.case-related-v2__arrow {
  margin-top: 6px;
  color: var(--blue);
  font-size: 16px;
  transition: transform 0.3s var(--ease);
  width: max-content;
}
.case-related-v2:hover .case-related-v2__arrow {
  transform: translateX(6px);
}
@media (max-width: 900px) {
  .case-detail-v2__related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .case-detail-v2__related-grid { grid-template-columns: 1fr; }
}

/* CTA FINAL */
.case-detail-v2__cta {
  background: var(--blue-dark);
  color: var(--bg);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 4vw, 48px);
  text-align: center;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.case-detail-v2__cta-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.case-detail-v2__cta-eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.case-detail-v2__cta-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0;
  color: var(--bg);
  max-width: 100%;
  overflow-wrap: break-word;
  padding-bottom: .08em;
}
.case-detail-v2__cta-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  display: inline-block;
  padding-right: .08em;
}
.case-detail-v2__cta-sub {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 8px 0 16px;
  max-width: 520px;
}
.case-detail-v2__cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.case-detail-v2__cta .btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--bg);
}
.case-detail-v2__cta .btn--ghost:hover {
  border-color: var(--bg);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   /WORK, editorial stats bar + filters section + closing
   ============================================================ */
.work-stats-bar {
  background: var(--bg-2);
  padding: clamp(48px, 5vw, 72px) clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.work-stats-bar__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.work-stat {
  background: var(--bg-2);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.work-stat__num {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 500;
  color: var(--blue);
}
.work-stat__sup {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 400;
}
.work-stat__label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.6);
}
@media (max-width: 800px) {
  .work-stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
}

.work-filters-section {
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 48px) clamp(32px, 4vw, 48px);
}
.work-filters-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(28px, 3.5vw, 40px);
}
.work-filters-section__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.work-filters-section__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.work-filters-section__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.work-filters-section__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.work-filters.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
@media (max-width: 800px) {
  .work-filters-section__inner { grid-template-columns: 1fr; }
}

.work-grid-section { padding-top: 0 !important; }

.work-brand-marquee {
  background: var(--bg-2);
  padding: clamp(48px, 5vw, 72px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.work-brand-marquee__head {
  max-width: 1400px;
  margin: 0 auto 32px;
  padding: 0 clamp(24px, 4vw, 48px);
}
.work-brand-marquee__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}

.work-cta-final {
  background: var(--blue-dark);
  color: var(--bg);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 4vw, 48px);
  text-align: center;
}
.work-cta-final__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.work-cta-final__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.work-cta-final__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0;
  color: var(--bg);
}
.work-cta-final__sub {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 8px 0 16px;
  max-width: 520px;
}
.work-cta-final__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.work-cta-final .btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--bg);
}
.work-cta-final .btn--ghost:hover {
  border-color: var(--bg);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   /BLOG, featured + filters + newsletter reminder
   ============================================================ */
.blog-featured-section {
  padding: clamp(32px, 4vw, 56px) clamp(24px, 4vw, 48px) clamp(32px, 4vw, 48px);
  max-width: 1400px;
  margin: 0 auto;
}
.blog-featured-section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.blog-featured-section__eyebrow,
.blog-featured-section__count {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.blog-featured-section__eyebrow {
  color: var(--blue);
}
.blog-featured-section__count {
  color: rgba(10, 14, 26, 0.5);
}

.blog-featured {
  display: block;
}
.blog-featured__visual {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 3vw, 48px);
}
.blog-featured__visual-num {
  position: absolute;
  top: clamp(28px, 3vw, 48px);
  left: clamp(28px, 3vw, 48px);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
.blog-featured__visual-tag {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.blog-featured__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.blog-featured__cat {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.blog-featured__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.blog-featured__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.blog-featured__excerpt {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.7);
  margin: 0;
}
.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(10, 14, 26, 0.5);
  text-transform: uppercase;
}
.blog-featured__meta-sep { color: rgba(10, 14, 26, 0.25); }
.blog-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  text-decoration: none;
  color: var(--blue);
  font-size: 15px;
  font-weight: 500;
  width: max-content;
  transition: gap 0.3s var(--ease);
}
.blog-featured__cta::after {
  content: '→';
  transition: transform 0.3s var(--ease);
}
.blog-featured__cta:hover::after {
  transform: translateX(4px);
}
@media (max-width: 800px) {
  .blog-featured { grid-template-columns: 1fr; }
}

.blog-grid-section {
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 48px);
  max-width: 1400px;
  margin: 0 auto;
}
.blog-grid-section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.blog-grid-section__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.blog-grid-section__filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.blog-filter {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: rgba(10, 14, 26, 0.6);
  cursor: pointer;
  transition: all 0.25s ease;
}
.blog-filter:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.blog-filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.blog-newsletter-reminder {
  background: var(--bg-soft);
  padding: clamp(48px, 5vw, 80px) clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
.blog-newsletter-reminder__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.blog-newsletter-reminder__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-newsletter-reminder__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.blog-newsletter-reminder__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.blog-newsletter-reminder__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.blog-newsletter-reminder__form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-newsletter-reminder__input {
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  border-radius: 4px;
  min-width: 280px;
  transition: border-color 0.25s ease;
}
.blog-newsletter-reminder__input:focus {
  outline: none;
  border-color: var(--blue);
}
@media (max-width: 800px) {
  .blog-newsletter-reminder__inner { grid-template-columns: 1fr; }
  .blog-newsletter-reminder__form { flex-direction: column; align-items: stretch; }
  .blog-newsletter-reminder__input { min-width: 0; }
}

/* ============================================================
   SECTION INDICATOR RAIL, vertical ticks (left side)
   ============================================================ */
.section-rail {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 50;
  pointer-events: auto;
}
.section-rail__tick {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(10, 14, 26, 0.4);
  padding: 6px 0;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}
.section-rail__tick::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease), background 0.3s ease;
}
.section-rail__num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 9px;
  letter-spacing: .12em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.section-rail__name {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}
.section-rail:hover .section-rail__num,
.section-rail:hover .section-rail__name {
  opacity: 1;
  transform: translateX(0);
}
.section-rail__tick:hover {
  color: var(--blue);
}
.section-rail__tick:hover::before {
  width: 24px;
  background: var(--blue);
}
.section-rail__tick.is-active::before {
  width: 28px;
  background: var(--blue);
}
.section-rail__tick.is-active {
  color: var(--blue);
}
.section-rail__tick.is-active .section-rail__num,
.section-rail__tick.is-active .section-rail__name {
  opacity: 1;
  transform: translateX(0);
}

/* On dark sections (stats, CTA, newsletter), invert colors */
.section-rail.is-on-dark .section-rail__tick {
  color: rgba(255, 255, 255, 0.5);
}
.section-rail.is-on-dark .section-rail__tick:hover,
.section-rail.is-on-dark .section-rail__tick.is-active {
  color: var(--bg);
}
.section-rail.is-on-dark .section-rail__tick:hover::before,
.section-rail.is-on-dark .section-rail__tick.is-active::before {
  background: var(--bg);
}

@media (max-width: 1100px) {
  .section-rail { display: none; }
}

/* ============================================================
   STATS COUNTER ANIMATION
   ============================================================ */
.stats-v3-cell__num[data-counter] {
  display: inline-block;
}

/* ============================================================
   NAV scrolled state, backdrop blur + reduced padding
   ============================================================ */
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 24px -8px rgba(10, 14, 26, 0.08);
}
.nav {
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}


/* ============================================================
   PAGE TRANSITION OVERLAY
   Used: 2 bars sliding from top + bottom on route change
   ============================================================ */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.page-transition.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.page-transition__bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--blue-dark);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.page-transition__bar--top {
  top: 0;
  transform: translateY(-100%);
}
.page-transition__bar--bottom {
  bottom: 0;
  transform: translateY(100%);
}
.page-transition.is-active .page-transition__bar--top,
.page-transition.is-active .page-transition__bar--bottom {
  transform: translateY(0);
}
.page-transition__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  letter-spacing: -.035em;
  color: var(--bg);
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
  z-index: 1;
}
.page-transition__logo em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}
.page-transition.is-active .page-transition__logo {
  opacity: 1;
}

/* ============================================================
   FOOTER V2, editorial multi-column
   ============================================================ */
.footer--v2 {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 4vw, 48px) 32px;
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 5vw, 72px);
  margin-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__logo {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
  color: var(--bg);
}
.footer__logo em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.footer__tagline {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 320px;
}
.footer__tagline em {
  font-style: italic;
  color: var(--blue);
}
.footer__status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.footer__status-dot {
  width: 7px;
  height: 7px;
  background: #2ed47a;
  border-radius: 50%;
  animation: pulse-dot 2s ease-out infinite;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col-title {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 4px;
  font-weight: 500;
}
.footer__link {
  display: inline-block;
  font-size: 14px;
  color: rgba(10, 14, 26, 0.75);
  text-decoration: none;
  width: max-content;
  position: relative;
  transition: color 0.25s ease, transform 0.25s var(--ease);
}
.footer__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width 0.3s var(--ease);
}
.footer__link:hover {
  color: var(--ink);
}
.footer__link:hover::after {
  width: 100%;
}
.footer__location {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__location-label {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.footer__location-zone {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(10, 14, 26, 0.5);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(10, 14, 26, 0.5);
}
.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__sep {
  color: rgba(10, 14, 26, 0.25);
}
.footer__link--small {
  color: rgba(10, 14, 26, 0.5);
  font-size: 11px;
  text-transform: uppercase;
}
.footer__build {
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .footer__nav { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   IMAGE LAZY REVEAL, blur-up on intersection
   ============================================================ */
img[data-lazy-reveal] {
  filter: blur(10px);
  opacity: 0;
  transition: filter 0.8s ease, opacity 0.8s ease;
}
img[data-lazy-reveal].is-loaded {
  filter: blur(0);
  opacity: 1;
}

/* ============================================================
   LOGO MARQUEE, animated logo strip (replaces broken grid)
   ============================================================ */
.logo-marquee-section {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.logo-marquee-section__head {
  max-width: 1100px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: 0 clamp(24px, 4vw, 48px);
  text-align: center;
}
.logo-marquee-section__kicker {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 20px;
}
.logo-marquee-section__title {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  max-width: 800px;
  margin-inline: auto;
}
.logo-marquee-section__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* fade out edges */
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
  width: max-content;
  animation: logo-marquee-scroll 60s linear infinite;
  padding: 16px 0;
}
.logo-marquee:hover .logo-marquee__track {
  animation-play-state: paused;
}
@keyframes logo-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-marquee__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 56px;
  padding: 0 8px;
  opacity: 0.78;
  transition: opacity .3s ease;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
.logo-marquee__item:hover {
  opacity: 1;
}
.logo-marquee__svg {
  width: auto;
  height: 32px;
  max-width: 160px;
  color: var(--ink);
  display: block;
  background: transparent !important;
  overflow: visible;
}
.logo-marquee__word {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: none;
  line-height: 1;
  white-space: nowrap;
  opacity: .85;
}
.logo-marquee__sep { display: none !important; }
.logo-marquee__img {
  width: auto;
  height: 56px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.logo-marquee-section--dark { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.logo-marquee-section--dark .logo-marquee__item { opacity: .92; height: 78px; padding: 0 14px; }
.logo-marquee-section--dark .logo-marquee__item:hover { opacity: 1; }
.logo-marquee-section--dark .logo-marquee__svg { color: #fff; height: 22px; max-width: 200px; }
.logo-marquee-section--dark .logo-marquee__img {
  height: 58px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: none;
}
.logo-marquee__item[data-brand="Starbucks"] .logo-marquee__img,
.logo-marquee__item[data-brand="Red Bull"] .logo-marquee__img,
.logo-marquee__item[data-brand="Meta"] .logo-marquee__img,
.logo-marquee__item[data-brand="Ubisoft"] .logo-marquee__img {
  height: 64px;
}
.logo-marquee__item[data-brand="Microsoft"] .logo-marquee__img,
.logo-marquee__item[data-brand="Lacoste"] .logo-marquee__img,
.logo-marquee__item[data-brand="Courir"] .logo-marquee__img,
.logo-marquee__item[data-brand="BlaBlaCar"] .logo-marquee__img,
.logo-marquee__item[data-brand="Adidas"] .logo-marquee__img {
  height: 54px;
}
.logo-marquee-section--dark .logo-marquee::before,
.logo-marquee-section--dark .logo-marquee::after { background: linear-gradient(to right, #0a0a0c, transparent) !important; }
.logo-marquee-section--dark .logo-marquee::after { background: linear-gradient(to left, #0a0a0c, transparent) !important; }




.logo-marquee__foot {
  max-width: 700px;
  margin: clamp(40px, 5vw, 56px) auto 0;
  padding: 0 clamp(24px, 4vw, 48px);
  text-align: center;
}
.logo-marquee__foot-text {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(10,14,26,0.5);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .logo-marquee__track { gap: 40px; animation-duration: 45s; }
  .logo-marquee__svg { height: 26px; }
  .logo-marquee__img { height: 32px; max-width: 130px; }
  .logo-marquee__item { height: 44px; }
}

/* === SVC PAGE BAR (status row for service pages) === */
.svc-page-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(15,15,15,0.08);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.svc-page-bar__left, .svc-page-bar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-page-bar__id { color: var(--blue); font-weight: 500; }
.svc-page-bar__sep { color: rgba(15,15,15,0.2); }
.svc-page-bar__label { color: rgba(15,15,15,0.55); }
.svc-page-bar__dot {
  width: 7px;
  height: 7px;
  background: #2ed47a;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-out infinite;
}
.svc-page-bar__status { color: rgba(15,15,15,0.55); }
@media (max-width: 600px) {
  .svc-page-bar { font-size: 9px; padding: 12px 0 18px; }
  .svc-page-bar__left { gap: 6px; }
}

/* ============================================================
   TRANSITION BRIDGES, section connectors
   ============================================================ */
.bridge {
  width: 100%;
  padding: 32px clamp(24px, 4vw, 48px);
  position: relative;
}
.bridge__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bridge__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: 0;
  flex-shrink: 0;
  animation: bridge-arrow-bounce 2s ease-in-out infinite;
}
@keyframes bridge-arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(2px); }
}
.bridge__text {
  font-weight: 500;
  flex-shrink: 0;
}
.bridge__line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.2;
}
.bridge__meta {
  opacity: 0.5;
  flex-shrink: 0;
}

/* dark variant, on dark sections */
.bridge--dark {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
}
.bridge--dark .bridge__num { color: var(--blue); border-color: rgba(255,255,255,0.2); }
.bridge--dark .bridge__text { color: var(--bg); }

/* dark-to-light: gradient transition zone */
.bridge--dark-to-light {
  background: linear-gradient(to bottom, var(--ink) 0%, var(--ink) 50%, var(--bg) 50%, var(--bg) 100%);
  color: var(--ink);
}
.bridge--dark-to-light .bridge__inner {
  background: var(--bg);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(15,15,15,0.1);
  max-width: max-content;
  margin: 0 auto;
}
.bridge--dark-to-light .bridge__num { color: var(--blue); border-color: rgba(15,15,15,0.2); }
.bridge--dark-to-light .bridge__text { color: var(--ink); }

/* light-to-dark: same logic inverted */
.bridge--light-to-dark {
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg) 50%, var(--ink) 50%, var(--ink) 100%);
}
.bridge--light-to-dark .bridge__inner {
  background: var(--ink);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  max-width: max-content;
  margin: 0 auto;
  color: rgba(255,255,255,0.55);
}
.bridge--light-to-dark .bridge__num { color: var(--blue); border-color: rgba(255,255,255,0.2); }
.bridge--light-to-dark .bridge__text { color: var(--bg); }

/* dark-to-cream: process → newsletter */
.bridge--dark-to-cream {
  background: linear-gradient(to bottom, var(--ink) 0%, var(--ink) 50%, var(--cream) 50%, var(--cream) 100%);
}
.bridge--dark-to-cream .bridge__inner {
  background: var(--cream);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(15,15,15,0.08);
  max-width: max-content;
  margin: 0 auto;
  color: rgba(15,15,15,0.55);
}
.bridge--dark-to-cream .bridge__num { color: var(--blue); border-color: rgba(15,15,15,0.18); }
.bridge--dark-to-cream .bridge__text { color: var(--ink); }

/* cream-to-dark: newsletter → CTA */
.bridge--cream-to-dark {
  background: linear-gradient(to bottom, var(--cream) 0%, var(--cream) 50%, var(--ink) 50%, var(--ink) 100%);
}
.bridge--cream-to-dark .bridge__inner {
  background: var(--ink);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  max-width: max-content;
  margin: 0 auto;
  color: rgba(255,255,255,0.55);
}
.bridge--cream-to-dark .bridge__num { color: var(--blue); border-color: rgba(255,255,255,0.2); }
.bridge--cream-to-dark .bridge__text { color: var(--bg); }

@media (max-width: 700px) {
  .bridge { padding: 24px clamp(16px, 4vw, 32px); }
  .bridge__inner { gap: 12px; }
  .bridge__meta { display: none; }
  .bridge__text { font-size: 10px; }
}
@media (max-width: 500px) {
  .bridge__inner { padding: 10px 16px !important; }
  .bridge__num { width: 22px; height: 22px; font-size: 11px; }
}

/* ============================================================
   PAGE-HEADER editorial bar, for DCP pages
   ============================================================ */
.page-header__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid rgba(15,15,15,0.08);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.page-header__bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-header__bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-header__id {
  color: var(--blue);
  font-weight: 500;
}
.page-header__bar-sep {
  color: rgba(15,15,15,0.2);
}
.page-header__bar-label {
  color: rgba(15,15,15,0.55);
}
.page-header__bar-dot {
  width: 7px;
  height: 7px;
  background: #2ed47a;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-out infinite;
}
.page-header__bar-status {
  color: rgba(15,15,15,0.55);
}

/* dark variant for dark page headers (if any) */
.page-header--dark .page-header__bar {
  border-color: rgba(255,255,255,0.1);
}
.page-header--dark .page-header__bar-label,
.page-header--dark .page-header__bar-status {
  color: rgba(255,255,255,0.55);
}
.page-header--dark .page-header__bar-sep {
  color: rgba(255,255,255,0.2);
}

@media (max-width: 600px) {
  .page-header__bar { font-size: 9px; padding: 12px 0; }
  .page-header__bar-left { gap: 6px; }
}

/* === NEWSLETTER EDITO, standalone editorial section === */
.newsletter-edito {
  background: var(--cream);
  border-top: 1px solid rgba(15, 15, 15, 0.06);
  border-bottom: 1px solid rgba(15, 15, 15, 0.06);
  padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 96px);
  position: relative;
  overflow: hidden;
}
.newsletter-edito::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(26, 102, 224, 0.3) 50%, transparent 100%);
}
.newsletter-edito__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: end;
}
.newsletter-edito__left {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
}
.newsletter-edito__meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.newsletter-edito__meta-num {
  color: var(--blue);
  font-weight: 500;
}
.newsletter-edito__meta-label {
  color: rgba(15, 15, 15, 0.55);
}
.newsletter-edito__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.newsletter-edito__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.newsletter-edito__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(15, 15, 15, 0.7);
  max-width: 480px;
  margin: 0;
}
.newsletter-edito__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.newsletter-edito__form {
  width: 100%;
}
.newsletter-edito__label {
  display: block;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(15, 15, 15, 0.5);
  margin-bottom: 14px;
}
.newsletter-edito__field {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: border-color .3s ease;
}
.newsletter-edito__field:focus-within {
  border-color: var(--blue);
}
.newsletter-edito__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 0;
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.02em;
  min-width: 0;
}
.newsletter-edito__input::placeholder {
  color: rgba(15, 15, 15, 0.3);
  font-style: italic;
}
.newsletter-edito__btn {
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body, inherit);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: background .3s ease, transform .3s var(--ease);
  white-space: nowrap;
  margin-left: 16px;
  align-self: center;
  height: 44px;
}
.newsletter-edito__btn:hover:not(:disabled) {
  background: var(--blue);
  transform: translateX(2px);
}
.newsletter-edito__btn svg {
  transition: transform .3s var(--ease);
}
.newsletter-edito__btn:hover:not(:disabled) svg {
  transform: translateX(3px);
}
.newsletter-edito__btn:disabled {
  opacity: .7;
  cursor: default;
}
.newsletter-edito__fine {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(15, 15, 15, 0.45);
  letter-spacing: .01em;
}
@media (max-width: 900px) {
  .newsletter-edito__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
@media (max-width: 560px) {
  .newsletter-edito__field {
    flex-direction: column;
    align-items: stretch;
    border-bottom: none;
  }
  .newsletter-edito__input {
    border-bottom: 1px solid var(--ink);
    padding: 12px 0 16px;
    font-size: 22px;
    text-align: left;
  }
  .newsletter-edito__btn {
    margin: 16px 0 0;
    width: 100%;
    justify-content: center;
    height: 50px;
  }
}

/* === CTA EDITORIAL, final invitation === */
.cta--editorial {
  background: var(--ink);
  padding: clamp(96px, 14vw, 200px) clamp(24px, 6vw, 96px) clamp(64px, 8vw, 120px);
  position: relative;
  overflow: hidden;
  display: block;
}
.cta--editorial::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 102, 224, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-editorial {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-editorial__top {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.cta-editorial__index {
  color: var(--blue);
  font-weight: 500;
}
.cta-editorial__meta {
  color: rgba(255, 255, 255, 0.55);
}
.cta-editorial__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(64px, 9vw, 120px);
}
.cta-editorial__title {
  font-family: var(--f-display);
  font-size: clamp(72px, 11vw, 200px);
  line-height: 0.92;
  letter-spacing: -.04em;
  font-weight: 500;
  margin: 0;
  color: var(--bg);
}
.cta-editorial__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.cta-editorial__side {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: clamp(8px, 1vw, 24px);
}
.cta-editorial__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
  margin: 0;
}
.cta-editorial__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-editorial__btn svg {
  transition: transform .3s var(--ease);
}
.cta-editorial__btn:hover svg {
  transform: translateX(4px);
}
.cta-editorial__foot {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cta-editorial__line {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
  width: 100%;
}
.cta-editorial__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, 0.5);
}
.cta-editorial__contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color .25s ease;
}
.cta-editorial__contact a:hover {
  color: var(--blue);
}
.cta-editorial__sep {
  color: rgba(255, 255, 255, 0.25);
}
@media (max-width: 900px) {
  .cta-editorial__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-editorial__side {
    padding-bottom: 0;
  }
}

/* === NEWSLETTER CAPTURE (home, replaces medias block) === */
.newsletter-capture {
  max-width: 760px;
  margin: clamp(48px, 7vw, 96px) auto 0;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-capture::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(26, 102, 224, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-capture > * {
  position: relative;
  z-index: 1;
}
.newsletter-capture__head {
  margin-bottom: clamp(24px, 3vw, 36px);
}
.newsletter-capture .eyebrow {
  color: var(--blue);
  margin-bottom: 16px;
  justify-content: center;
}
.newsletter-capture__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--bg);
  margin: 0 0 16px;
}
.newsletter-capture__title em {
  color: var(--blue);
  font-style: italic;
  font-weight: 400;
}
.newsletter-capture__sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-capture__form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px;
  transition: border-color .3s ease, background .3s ease;
}
.newsletter-capture__form:focus-within {
  border-color: rgba(26, 102, 224, 0.5);
  background: rgba(255, 255, 255, 0.08);
}
.newsletter-capture__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-size: 15px;
  font-family: inherit;
  color: var(--bg);
  letter-spacing: -.01em;
}
.newsletter-capture__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-capture__btn {
  background: var(--bg);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease;
  white-space: nowrap;
}
.newsletter-capture__btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: var(--blue);
  color: var(--bg);
}
.newsletter-capture__btn:disabled {
  opacity: .7;
  cursor: default;
}
.newsletter-capture__fine {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: .02em;
}
@media (max-width: 560px) {
  .newsletter-capture__form {
    flex-direction: column;
    gap: 8px;
    border-radius: 16px;
    padding: 8px;
  }
  .newsletter-capture__input {
    padding: 14px 16px;
    text-align: center;
  }
  .newsletter-capture__btn {
    padding: 14px;
    width: 100%;
  }
}

.medias-block {
  padding: clamp(80px, 10vw, 120px) clamp(20px, 3vw, 40px);
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 1400px;
  margin: 0 auto;
}
.medias-block__head {
  margin-bottom: 60px;
  text-align: center;
}
.medias-block__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 20px;
}
.medias-block__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--bg);
}
.medias-block__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.medias-block__sub {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
}
.medias-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* MEDIA CARD - base */
.media-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex;
  flex-direction: column;
}
.media-card:hover {
  transform: translateY(-6px);
}
.media-card--lg {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}
.media-card--podcast { background: linear-gradient(135deg, #1a66e0 0%, #0d3a8c 100%); }
.media-card--youtube { background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); }
.media-card--linkedin {
  grid-column: span 2;
  background: var(--white);
  border: 1px solid var(--line);
  flex-direction: row;
  min-height: 280px;
}
.media-card:hover { box-shadow: 0 24px 48px -12px rgba(0,0,0,.3); }
.media-card--linkedin:hover { box-shadow: 0 24px 48px -12px rgba(0,0,0,.12); }

/* === CARTE LINKEDIN SOBRE TYPE ÉDITEUR =================== */
.media-card--lk-clean {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.media-card__lk-photo {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.media-card__lk-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .8s var(--ease);
}
.media-card--lk-clean:hover .media-card__lk-photo img {
  transform: scale(1.05);
}
.media-card__lk-body {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 48px);
  gap: 16px;
}
.media-card__lk-name {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--ink);
}
.media-card__lk-role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -8px;
}
.media-card__lk-pitch {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--soft);
  margin-top: 8px;
  flex: 1;
}
.media-card__lk-pitch em {
  font-style: italic;
  color: var(--ink);
}
.media-card--lk-clean .media-card__cta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.media-card--lk-clean .media-card__cta-btn {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.media-card--lk-clean .media-card__arrow {
  font-size: 20px;
  transition: transform .3s var(--ease);
}
.media-card--lk-clean:hover .media-card__arrow {
  transform: translateX(6px);
}

/* Responsive : photo au-dessus du texte sur mobile */
@media (max-width: 720px) {
  .media-card--lk-clean {
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto;
  }
}

/* Visual cover (top of card) */
.media-card__visual {
  position: relative;
  padding: 40px 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.media-card__cover {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, #0a1f4a 0%, #102d6e 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.4);
}
.media-card__cover--yt {
  background: linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 100%);
  aspect-ratio: 16/10;
  max-width: 420px;
  border: 1px solid rgba(255,255,255,.1);
}

/* === COVER PODCAST avec image Feed ============================ */
.media-card__cover--feed {
  padding: 0;
  background: transparent;
  overflow: hidden;
  box-shadow: 0 12px 32px -8px rgba(26,102,224,.4);
}
.media-card__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform .6s var(--ease);
}
.media-card--podcast:hover .media-card__cover-img {
  transform: scale(1.04);
}

/* === COVER YOUTUBE en logo wordmark Way-mark ==================== */
.media-card__cover--logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
}
.media-card__yt-logo {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1;
}
.media-card__yt-logo em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.55);
}
.media-card__yt-handle {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
/* Petit accent rouge YouTube discret en haut à droite */
.media-card__cover--logo::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 20px;
  background: #ff0033;
  border-radius: 6px;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/></svg>");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.media-card__cover-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}
.media-card__cover--yt .media-card__cover-tag {
  color: #ff0033;
  background: rgba(255,0,51,.15);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}
.media-card__cover-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--white);
}
.media-card__cover-title em {
  font-style: italic;
  font-weight: 500;
  color: #f4c544;
}
.media-card__cover--yt .media-card__cover-title em { color: #ff0033; }
.media-card__cover-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255,255,255,.5);
}
.media-card__cover-wave {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 24px;
}
.media-card__cover-wave span {
  display: block;
  width: 3px;
  background: var(--white);
  border-radius: 2px;
  animation: wave 1.4s var(--ease) infinite;
}
.media-card__cover-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.media-card__cover-wave span:nth-child(2) { height: 70%; animation-delay: .1s; }
.media-card__cover-wave span:nth-child(3) { height: 50%; animation-delay: .2s; }
.media-card__cover-wave span:nth-child(4) { height: 90%; animation-delay: .15s; }
.media-card__cover-wave span:nth-child(5) { height: 40%; animation-delay: .3s; }
.media-card__cover-wave span:nth-child(6) { height: 80%; animation-delay: .25s; }
.media-card__cover-wave span:nth-child(7) { height: 60%; animation-delay: .35s; }
.media-card__cover-wave span:nth-child(8) { height: 100%; animation-delay: .4s; }
.media-card__cover-wave span:nth-child(9) { height: 50%; animation-delay: .5s; }
.media-card__cover-wave span:nth-child(10) { height: 70%; animation-delay: .45s; }
.media-card__cover-wave span:nth-child(11) { height: 30%; animation-delay: .6s; }
.media-card__cover-wave span:nth-child(12) { height: 80%; animation-delay: .55s; }
@keyframes wave {
  0%, 100% { transform: scaleY(.5); }
  50% { transform: scaleY(1); }
}

.media-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  display: grid;
  place-items: center;
  transition: transform .4s var(--ease), background .3s;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  z-index: 2;
}
.media-card__play--yt {
  background: #ff0033;
  color: var(--white);
}
.media-card:hover .media-card__play {
  transform: translate(-50%, -50%) scale(1.15);
}

/* === Per-platform identity & motion === */

/* PODCAST, Spotify pulse + wave amplification on hover */
.media-card--podcast .media-card__play {
  background: #1ed760;
  color: #0a0a0a;
  box-shadow: 0 8px 24px rgba(30,215,96,.45);
}
.media-card--podcast .media-card__play::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #1ed760;
  opacity: 0;
  animation: podcastPulse 2.4s var(--ease) infinite;
}
@keyframes podcastPulse {
  0% { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.media-card--podcast:hover .media-card__cover-wave span {
  animation-duration: .7s;
}
.media-card--podcast:hover {
  box-shadow: 0 24px 48px -12px rgba(30,215,96,.35);
}

/* YOUTUBE, red glow + cover zoom + LIVE blink */
.media-card--youtube .media-card__cover {
  transition: transform .6s var(--ease);
}
.media-card--youtube:hover .media-card__cover {
  transform: scale(1.03);
}
.media-card--youtube .media-card__play--yt {
  box-shadow: 0 8px 24px rgba(255,0,51,.5);
}
.media-card--youtube:hover .media-card__play--yt {
  box-shadow: 0 12px 32px rgba(255,0,51,.7);
}
.media-card--youtube .media-card__cover--yt::after {
  content: '● LIVE';
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  color: #ff0033;
  background: rgba(255,0,51,.12);
  padding: 4px 8px;
  border-radius: 4px;
  animation: ytBlink 1.8s ease-in-out infinite;
}
@keyframes ytBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.media-card--youtube:hover {
  box-shadow: 0 24px 48px -12px rgba(255,0,51,.3);
}

/* LINKEDIN, subtle lift + post tilt + like count tick */
.media-card--linkedin .media-card__post {
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  transform: rotate(-1.5deg);
}
.media-card--linkedin:hover .media-card__post {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,102,194,.22);
}
.media-card--linkedin .media-card__post-stats span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.media-card--linkedin:hover .media-card__post-stats span:first-child {
  color: #0a66c2;
  font-weight: 600;
}

/* Card body (text part below) */
.media-card__body {
  padding: 28px 40px 36px;
}
.media-card__platform {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  margin-bottom: 16px;
}
.media-card__platform-icon {
  display: inline-flex;
  color: #1ed760; /* spotify by default */
}
.media-card__title {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 12px;
}
.media-card__title em {
  font-style: italic;
  font-weight: 400;
  color: #f4c544;
}
.media-card--youtube .media-card__title em { color: #ff0033; }
.media-card__title--lk { color: var(--ink); }
.media-card__title--lk em { color: #0a66c2; }
.media-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
  max-width: 460px;
}
.media-card--linkedin .media-card__desc { color: var(--soft); }
.media-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.media-card--linkedin .media-card__cta { border-top: 1px solid var(--line); }
.media-card__cta-btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.media-card--linkedin .media-card__cta-btn { color: var(--ink); }
.media-card__arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
  color: var(--white);
  font-size: 18px;
}
.media-card--linkedin .media-card__arrow { color: var(--ink); }
.media-card:hover .media-card__arrow { transform: translateX(6px); }

/* LinkedIn card (horizontal) */
.media-card__linkedin-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.media-card__linkedin-visual {
  flex: 1;
  background: linear-gradient(135deg, #f0f4f9 0%, #dde9ff 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-card__post {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  max-width: 320px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(10,102,194,.12);
}
.media-card__post-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.media-card__post-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
}
.media-card__post-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.media-card__post-time {
  font-size: 11px;
  color: var(--muted);
}
.media-card__post-text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 14px;
}
.media-card__post-text em {
  font-style: italic;
  color: var(--blue);
  font-weight: 500;
}
.media-card__post-stats {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
}

@media (max-width: 980px) {
  .medias-grid { grid-template-columns: 1fr; }
  .media-card--linkedin {
    grid-column: span 1;
    flex-direction: column;
  }
  .media-card__linkedin-visual {
    display: flex;
    padding: 24px;
    min-height: 200px;
  }
}
@media (max-width: 600px) {
  .media-card__visual { padding: 24px 24px 0; min-height: 180px; }
  .media-card__cover { padding: 18px; max-width: 100%; }
  .media-card__cover--yt { aspect-ratio: 16/9; }
  .media-card__cover-title { font-size: clamp(22px, 6vw, 32px); }
  .media-card__body { padding: 20px 24px 28px; }
  .media-card__title { font-size: clamp(20px, 5.5vw, 26px); }
  .media-card__desc { font-size: 13px; margin-bottom: 18px; }
  .media-card__play { width: 48px; height: 48px; }
  .media-card__linkedin-content { padding: 24px; }
  .media-card__linkedin-visual { padding: 20px; min-height: 180px; }
  .media-card__post { transform: rotate(0deg); }
  .media-card--linkedin .media-card__post { transform: rotate(0deg); }
  /* Disable heavy hover transforms on touch */
  .media-card:hover { transform: none; }
  .media-card--youtube:hover .media-card__cover { transform: none; }
}

/* FOOTER */

/* FOOTER */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px clamp(20px, 3vw, 40px) 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__wordmark {
  font-family: var(--f-display);
  font-size: clamp(80px, 18vw, 240px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .85;
  margin-bottom: 60px;
  color: var(--bg);
}
.footer__wordmark em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  padding: 6px 0;
  transition: color .25s, transform .25s;
}
.footer__col a:hover { color: var(--white); transform: translateX(4px); }
.footer__main p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  max-width: 320px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* FADE UP */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

.fade-up-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.fade-up-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.fade-up-stagger.in > *:nth-child(3) { transition-delay: .19s; }
.fade-up-stagger.in > *:nth-child(4) { transition-delay: .26s; }
.fade-up-stagger.in > *:nth-child(5) { transition-delay: .33s; }
.fade-up-stagger.in > *:nth-child(6) { transition-delay: .4s; }
.fade-up-stagger.in > * { opacity: 1; transform: translateY(0); }

/* Hero h1 word stagger - blur addition */
.hero h1 .word {
  filter: blur(8px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}
.hero.in h1 .word {
  filter: blur(0);
}

/* Cases hover - shadow + lift */
.case {
  will-change: transform;
}
.case::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 8px;
  pointer-events: none;
  z-index: 3;
}

/* Buttons press feedback - works with translateY hover */
.btn:active {
  transform: translateY(0) scale(0.98);
  transition: transform 0.08s ease !important;
}

/* SVC - left blue bar on hover */
.svc { position: relative; }
.svc::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}
.svc:hover::before { transform: scaleY(1); }

/* Marquee smoother */
.marquee__track { animation-duration: 40s; }
.marquee__item { transition: color .3s, transform .3s var(--ease); }
.marquee__item:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

/* Pillar hover lift */
.pillar {
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .3s;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,.12);
}

/* Stat hover */
.stat__num {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.stat:hover .stat__num { transform: translateY(-4px); }

/* Process step animated bar */
.process-step { overflow: hidden; }
.process-step::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .8s var(--ease);
}
.process-step:hover::after { width: 100%; }

/* Blog card hover sophistiqué */
.blog-card {
  position: relative;
  overflow: hidden;
}
.blog-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.blog-card:hover::before { transform: scaleX(1); }

/* PROCESS SPLIT (home - layout intro à gauche / étapes empilées à droite) */
.process-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.process-split__intro {
  position: sticky;
  top: 100px;
}
.process-split__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 24px 0;
  color: var(--bg);
}
.process-split__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.process-split__sub {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  max-width: 420px;
  margin-bottom: 32px;
}
.process-split__cta { margin-top: 12px; }

.process-split__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.process-step-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: start;
  transition: padding-left .4s var(--ease);
  position: relative;
}
.process-step-row:hover {
  padding-left: 12px;
}
.process-step-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 100%;
  background: var(--blue);
  transition: width .4s var(--ease);
}
.process-step-row:hover::before {
  width: 2px;
}
.process-step-row__num {
  font-family: var(--f-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--blue);
  font-style: italic;
}
.process-step-row__title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step-row__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.process-step-row__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.65);
  max-width: 540px;
}
.process-step-row--success .process-step-row__num {
  color: var(--green);
}
.process-step-row--success .process-step-row__title em {
  color: var(--green);
}
.process-step-row--success::before {
  background: var(--green);
}
@media (max-width: 980px) {
  .process-split { grid-template-columns: 1fr; }
  .process-split__intro { position: static; }
  .process-step-row { grid-template-columns: 60px 1fr; gap: 20px; }
  .process-step-row__num { font-size: 36px; }
}

/* PROCESS TIMELINE */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-left: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.process-step {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
  background: rgba(255,255,255,.02);
  transition: background .3s var(--ease);
}
.process-step:hover { background: rgba(26,102,224,.08); }
.process-step__time {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: .04em;
  background: rgba(26,102,224,.15);
  padding: 4px 10px;
  border-radius: 100px;
}
.process-step__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.025em;
  margin-bottom: 12px;
  color: var(--white);
}
.process-step__title em { font-style: italic; color: var(--blue); font-weight: 400; }
.process-step__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.65);
}
.process-step__time--success { background: rgba(16,185,129,.18) !important; color: var(--green) !important; }
.process-step--success:hover { background: rgba(16,185,129,.08) !important; }
.text-success { color: var(--green) !important; }
@media (max-width: 980px) { .process-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-timeline { grid-template-columns: 1fr; } }


/* CONSTAT GRID (page approche) */
.constat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 16px;
}
.constat-item {
  padding: 36px 28px;
  border-radius: 12px;
  position: relative;
  transition: transform .4s var(--ease);
}
.constat-item:hover { transform: translateY(-4px); }
.constat-item--problem {
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.constat-item--solution {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}
.constat-item__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
}
.constat-item--problem .constat-item__tag {
  background: rgba(249,115,22,.1);
  color: var(--orange);
}
.constat-item--solution .constat-item__tag {
  background: rgba(26,102,224,.18);
  color: var(--blue);
}
.constat-item__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.constat-item__title em {
  font-style: italic;
  font-weight: 400;
}
.constat-item--problem .constat-item__title em { color: var(--orange); }
.constat-item--solution .constat-item__title em { color: var(--blue); }
.constat-item__body {
  font-size: 14px;
  line-height: 1.6;
}
.constat-item--problem .constat-item__body { color: var(--soft); }
.constat-item--solution .constat-item__body { color: rgba(255,255,255,.7); }
@media (max-width: 980px) {
  .constat-grid { grid-template-columns: 1fr; }
}

/* APPROCHE PAGE */

/* === PILLARS LIST (layout liste éditoriale numérotée) === */
.pillars-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.pillar-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding-left .4s var(--ease);
  position: relative;
}
.pillar-row:hover {
  padding-left: 16px;
}
.pillar-row::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 60%;
  background: var(--blue);
  transition: width .4s var(--ease);
}
.pillar-row:hover::before {
  width: 3px;
}
.pillar-row__index {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar-row__num {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--blue);
  font-style: italic;
  font-feature-settings: 'lnum';
}
.pillar-row__tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
}
.pillar-row__content {
  max-width: 720px;
}
.pillar-row__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pillar-row__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.pillar-row__body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--soft);
}
.pillar-row--green .pillar-row__num,
.pillar-row--green .pillar-row__title em {
  color: var(--green);
}
.pillar-row--green::before {
  background: var(--green);
}
@media (max-width: 768px) {
  .pillar-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }
}

/* === MANIFESTO (layout texte large 3 colonnes éditorial) === */
.manifesto {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.manifesto__row {
  display: grid;
  grid-template-columns: 80px 1.4fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background .3s var(--ease);
}
.manifesto__row:hover {
  background: linear-gradient(90deg, transparent, var(--bg-2) 30%, var(--bg-2) 70%, transparent);
  margin: 0 -24px;
  padding: 56px 24px;
}
.manifesto__num {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 500;
  letter-spacing: -.04em;
  font-style: italic;
  color: var(--blue);
  line-height: 1;
}
.manifesto__main {
  max-width: 480px;
}
.manifesto__title {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.manifesto__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.manifesto__body {
  font-size: 17px;
  line-height: 1.45;
  color: var(--soft);
  font-style: italic;
  font-weight: 300;
}
.manifesto__detail {
  font-size: 14px;
  line-height: 1.6;
  color: var(--soft);
  padding-top: 12px;
}
@media (max-width: 980px) {
  .manifesto__row {
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .manifesto__detail {
    grid-column: 2;
  }
}
@media (max-width: 600px) {
  .manifesto__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .manifesto__detail { grid-column: 1; }
  .manifesto__num { font-size: 56px; }
}

/* === RITUALS TIMELINE (layout vertical avec ligne) === */
.rituals-timeline {
  margin-top: 60px;
  position: relative;
  padding-left: 32px;
}
.rituals-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, var(--blue) 0%, var(--blue) 50%, var(--line) 100%);
}
.ritual {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: 32px 0;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.ritual--last {
  border-bottom: none;
}
.ritual::before {
  content: '';
  position: absolute;
  left: -38px; top: 40px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--blue);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.ritual:hover::before {
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(26,102,224,.2);
}
.ritual__when {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}
.ritual__when-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  background: rgba(26,102,224,.08);
  border: 1px solid rgba(26,102,224,.2);
  padding: 6px 12px;
  border-radius: 100px;
}
.ritual__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.ritual__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.ritual__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--soft);
  max-width: 580px;
}
@media (max-width: 768px) {
  .ritual {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ritual__when-tag {
    font-size: 10px;
    padding: 5px 10px;
  }
}

/* Section number badge - cohérence visuelle */
.approche-section-num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--blue);
  background: rgba(26,102,224,.08);
  border: 1px solid rgba(26,102,224,.2);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
}
.approche-section-num--dark {
  color: var(--blue);
  background: rgba(26,102,224,.15);
  border-color: rgba(26,102,224,.3);
}
.approche-vision__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.approche-vision__head .eyebrow {
  margin-bottom: 0;
}

/* APPROCHE VISION (section 01) */
.approche-vision {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.approche-vision__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.approche-vision__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.approche-vision__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--soft);
}
.approche-vision__body p + p { margin-top: 16px; }
.approche-vision__body em {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 980px) {
  .approche-vision { grid-template-columns: 1fr; }
}

/* APPROCHE STATS (section 05) */
.approche-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.approche-stat {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.approche-stat:hover {
  background: var(--bg-2);
}
.approche-stat__num {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--ink);
}
.approche-stat__num em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.approche-stat__label {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.approche-stat__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--soft);
}
@media (max-width: 980px) { .approche-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .approche-stats { grid-template-columns: 1fr; } }

/* SNAPSHOTS GRID (page about - bento layout images) */
.snapshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
  margin-top: 40px;
}
.snapshot {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-2);
  transition: transform .5s var(--ease);
}
.snapshot:hover { transform: translateY(-4px); }
.snapshot--lg {
  grid-column: span 2;
  grid-row: span 2;
}
.snapshot--md {
  grid-column: span 2;
  grid-row: span 1;
}
.snapshot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.snapshot:hover img { transform: scale(1.06); }

/* Fallback placeholder si pas d'image */
.snapshot--placeholder {
  background: linear-gradient(135deg, var(--blue) 0%, var(--ink) 100%);
  position: relative;
}
.snapshot--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(244,197,68,.08) 0%, transparent 50%);
}
.snapshot--placeholder::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  z-index: 2;
}

/* Label en bas de chaque snapshot */
.snapshot__label {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.snapshot__caption {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 100px;
}
.snapshot--placeholder .snapshot__caption {
  background: rgba(255,255,255,.15);
}

/* Overlay subtil au hover */
.snapshot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.3) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .snapshots-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .snapshot--lg { grid-column: span 2; grid-row: span 1; }
  .snapshot--md { grid-column: span 2; grid-row: span 1; }
}



.contact-side__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.contact-side__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.05) 0%, transparent 60%);
}
.contact-side__visual-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}
.contact-side__visual-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.contact-side__visual-time {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  letter-spacing: -.02em;
}

/* === SERVICE PAGE HERO VISUAL === */
.svc-hero-visual {
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 0 clamp(20px, 3vw, 40px);
  position: relative;
}
.svc-hero-visual img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.svc-hero-visual--placeholder {
  position: relative;
  aspect-ratio: 21/9;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--ink) 100%);
}
.svc-hero-visual--placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(244,197,68,.06) 0%, transparent 60%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: auto, auto, 4px 4px;
}
.svc-hero-visual--placeholder::after {
  content: attr(data-label);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,.18);
  letter-spacing: -.04em;
  white-space: nowrap;
  z-index: 1;
}
.svc-hero-visual__tag {
  position: absolute;
  bottom: 24px; right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
}
.svc-hero-visual__dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
}

/* === SERVICE PERIMETER (3 colonnes liste exhaustive) === */
.svc-perimeter-block {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.svc-perimeter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.perimeter-col {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.perimeter-col:hover {
  background: var(--bg-2);
}
.perimeter-col__title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.015em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.perimeter-col__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.perimeter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.perimeter-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--soft);
  transition: color .25s, padding-left .25s var(--ease);
}
.perimeter-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--blue);
  transition: width .25s var(--ease);
}
.perimeter-list li:hover {
  color: var(--ink);
  padding-left: 22px;
}
.perimeter-list li:hover::before {
  width: 12px;
}
@media (max-width: 980px) {
  .svc-perimeter-grid { grid-template-columns: 1fr; }
}

/* === SERVICE METHOD BLOCK (3 étapes) === */
.svc-process-block {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.svc-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.svc-process__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.svc-process__step:hover {
  background: var(--bg-2);
}
.svc-process__num {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 500;
  font-style: italic;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.svc-process__title {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.015em;
  margin-bottom: 6px;
  color: var(--ink);
}
.svc-process__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--soft);
}
@media (max-width: 768px) {
  .svc-process { grid-template-columns: 1fr; }
}

/* === ARTICLE HEADER VISUAL === */
.article__visual {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--ink) 100%);
  position: relative;
}
.article__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}


.article__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.article__visual-overlay {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,.2);
  letter-spacing: -.03em;
  line-height: 1;
}

/* === BLOG GRID VISUALS === */
/* Améliorer les blog cards avec visuels */

/* MOBILE PADDINGS pour svc */
@media (max-width: 768px) {
  .svc-hero-visual {
    margin-top: 24px;
  }
  .svc-hero-visual img,
  .svc-hero-visual--placeholder {
    aspect-ratio: 16/10;
  }
  .svc-hero-visual__tag {
    bottom: 16px; right: 16px;
    padding: 8px 12px;
    font-size: 10px;
  }
}

/* SECTORS COVERED (page about - dans section dark) */
.sectors-covered {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.sectors-covered__title {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin-bottom: 24px;
}
.sectors-covered__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sector-tag {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.005em;
  padding: 8px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  color: rgba(255,255,255,.85);
  transition: all .25s var(--ease);
  cursor: default;
}
.sector-tag:hover {
  background: rgba(26,102,224,.15);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* JOIN COLLECTIVE (page about - section 05) */
.join-collective {
  background: var(--bg-2);
  border-radius: 16px;
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.join-collective::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,102,224,.08) 0%, transparent 70%);
  pointer-events: none;
}
.join-collective__content {
  position: relative;
  max-width: 720px;
}
.join-collective__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
  margin-bottom: 24px;
}
.join-collective__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.join-collective__body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--soft);
  margin-bottom: 32px;
  max-width: 580px;
}
.join-collective__criteria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}
.criteria-item__check {
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .join-collective__criteria { grid-template-columns: 1fr; }
}

/* Old approche-constat - kept for fallback compatibility */
.approche-constat {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.approche-constat__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--ink) 100%);
}
.approche-constat__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.approche-constat__photo--placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, var(--blue) 0%, #0a0a0a 100%),
    radial-gradient(circle at 70% 30%, rgba(244,197,68,.15) 0%, transparent 50%);
  background-blend-mode: overlay;
}
.approche-constat__photo--placeholder::after {
  content: 'JA';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: 80px;
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,.2);
  letter-spacing: -.05em;
}
.approche-constat__photo-label {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 4px;
  z-index: 2;
}
.approche-constat__photo-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  font-weight: 500;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}
.approche-constat__photo-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--white);
}
.approche-constat__content {
  padding-top: 12px;
}
@media (max-width: 768px) {
  .approche-constat { grid-template-columns: 1fr; }
}

.approche-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.pillar {
  padding: 40px;
  background: var(--bg-2);
  border-radius: 12px;
  position: relative;
}
.pillar__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pillar__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pillar__title em { font-style: italic; color: var(--blue); font-weight: 400; }
.pillar__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--soft);
}
.pillar__body em { font-style: italic; color: var(--ink); font-weight: 500; }
.pillar--green .pillar__num { color: var(--green); }
.pillar--green .pillar__title em { color: var(--green); }
.pillar--green .pillar__body em { color: var(--green); }
.pillar--orange .pillar__num { color: var(--orange); }
.pillar--orange .pillar__title em { color: var(--orange); }
@media (max-width: 768px) { .approche-pillars { grid-template-columns: 1fr; } }

/* LOOP DIAGRAM */
.loop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 60px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  position: relative;
}
.loop__step {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.loop__step::after {
  content: '→';
  position: absolute;
  right: -10px; top: 40px;
  background: var(--bg);
  width: 20px;
  text-align: center;
  color: var(--blue);
  font-size: 16px;
  z-index: 2;
}
.loop__step:last-child::after { display: none; }
.loop__step-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--blue);
  margin-bottom: 16px;
  font-weight: 500;
}
.loop__step-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.loop__step-title em { font-style: italic; color: var(--blue); }
.loop__step-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--soft);
}
@media (max-width: 980px) { .loop { grid-template-columns: repeat(2, 1fr); } .loop__step::after { display: none; } }
@media (max-width: 600px) { .loop { grid-template-columns: 1fr; } }

/* COMPARISON */
.compare {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  margin-top: 60px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
}
.compare__row {
  display: contents;
}
.compare__cell {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.compare__row:last-child .compare__cell { border-bottom: none; }
.compare__cell--head {
  background: rgba(255,255,255,.04);
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 500;
}
.compare__cell--head.highlight { color: var(--blue); }
.compare__cell--label {
  font-family: var(--f-display);
  font-size: 15px;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}
.compare__cell--check { color: var(--green); font-size: 18px; font-weight: 600; }
.compare__cell--cross { color: rgba(255,255,255,.3); font-size: 16px; }
@media (max-width: 768px) {
  .compare { grid-template-columns: 1fr; }
  .compare__cell { border-right: none; }
}

/* VALUE PROP */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value-cell {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-cell__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--blue);
  margin-bottom: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}
.value-cell__problem {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -.015em;
}
.value-cell__solution {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.55;
}
.value-cell__solution em { font-style: italic; color: var(--green); font-weight: 500; }
.value-cell__problem { position: relative; }
.value-cell__problem::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--orange);
  margin-bottom: 12px;
}
@media (max-width: 768px) { .value-grid { grid-template-columns: 1fr; } }

/* PAGE */
.page { display: none; }
.page.active { display: block; }

/* PAGE HEADER */
.page-header {
  padding: 140px clamp(20px, 3vw, 40px) 80px;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.page-header__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.page-header h1 {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .92;
  margin-bottom: 32px;
}
.page-header h1 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.page-header__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--soft);
  line-height: 1.5;
  max-width: 600px;
}

/* FILTERS */
.filters {
  display: flex; gap: 8px;
  flex-wrap: wrap;
  padding: 32px clamp(20px, 3vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
}
.filter-btn {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--soft);
  transition: all .25s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* CASE DETAIL */
.case-detail {
  padding-top: 100px;
}

.case-detail__hero { padding: 60px clamp(20px, 3vw, 40px); }
.case-detail__visual {
  aspect-ratio: 21/9;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  margin-bottom: 60px;
}
.case-detail__meta {
  display: block;
  margin-bottom: 40px;
}
.case-detail__head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
.case-detail h1 {
  font-family: var(--f-display);
  font-size: clamp(48px, 6.5vw, 104px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .95;
  max-width: 18ch;
}
.case-detail h1 em { font-style: italic; color: var(--blue); font-weight: 400; }
@media (max-width: 900px) {
  .case-detail__head { grid-template-columns: 1fr; gap: 20px; }
}
.case-detail__info {
  display: flex; flex-direction: column; gap: 16px;
  font-family: var(--f-mono);
  font-size: 12px;
}
.case-detail__info-row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.case-detail__info-row span:first-child { color: var(--muted); }
.case-detail__info-row span:last-child { color: var(--ink); font-weight: 500; }
.case-detail__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 60px 0;
}
.case-metric {
  padding: 32px 24px;
  background: var(--bg-2);
  border-radius: 8px;
}
.case-metric__num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
  color: var(--blue);
}
.case-metric__label {
  margin-top: 12px;
  font-size: 12px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-family: var(--f-mono);
}
.case-detail__body {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--soft);
  padding: 0 clamp(20px, 3vw, 40px);
}
.case-detail__body h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 48px 0 16px;
}
.case-detail__body h3 em { font-style: italic; color: var(--blue); }
.case-detail__body p + p { margin-top: 16px; }
@media (max-width: 768px) {
  .case-detail__meta { grid-template-columns: 1fr; }
  .case-detail__metrics { grid-template-columns: 1fr; }
}

/* ABOUT */
.about-vision {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about-vision h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
}
.about-vision h2 em { font-style: italic; color: var(--blue); font-weight: 400; }
.about-vision__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--soft);
}
.about-vision__body p + p { margin-top: 16px; }
.about-vision__body em { font-style: italic; color: var(--ink); font-weight: 500; }

.founder {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.founder__img {
  border-radius: 8px;
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.founder__img img { width: 100%; height: auto; display: block; object-fit: contain; }
.founder__role {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: 16px;
}
.founder__name {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 24px;
}
.founder__name em { font-style: italic; color: var(--blue); font-weight: 400; }
.founder__bio {
  font-size: 16px;
  line-height: 1.65;
  color: var(--soft);
  margin-bottom: 24px;
}
.founder__bio p + p { margin-top: 16px; }
.founder__bio em { font-style: italic; color: var(--ink); font-weight: 500; }
.founder__links { display: flex; gap: 16px; margin-top: 24px; }
.founder__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 768px) {
  .about-vision, .founder { grid-template-columns: 1fr; }
}

.network {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.network__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.network__col p {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}
.network__col em { font-style: italic; color: var(--blue); }
@media (max-width: 768px) { .network { grid-template-columns: 1fr; gap: 32px; } }

/* VALUES GRID (page about) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value-item {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .3s var(--ease);
}
.value-item:hover { background: var(--bg-2); }
.value-item__num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.value-item__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.value-item__title em { font-style: italic; color: var(--blue); font-weight: 400; }
.value-item__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--soft);
  max-width: 420px;
}
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

/* COLLECTIVE GRID (dark section) */
.collective-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.collective-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.collective-list {
  display: flex; flex-direction: column; gap: 14px;
}
.collective-list li {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  position: relative;
  padding-left: 16px;
}
.collective-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
}
.collective-list li em {
  font-style: italic;
  color: var(--blue);
  font-weight: 500;
}
@media (max-width: 768px) { .collective-grid { grid-template-columns: 1fr; } }

/* HOWTO GRID (au quotidien) */
.howto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.howto-item {
  padding: 36px;
  background: var(--bg-2);
  border-radius: 12px;
  transition: transform .4s var(--ease);
}
.howto-item:hover { transform: translateY(-4px); }
.howto-item__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.howto-item__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: .04em;
}
.howto-item__when {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--white);
  padding: 4px 10px;
  border-radius: 100px;
}
.howto-item__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.howto-item__title em { font-style: italic; color: var(--blue); font-weight: 400; }
.howto-item__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--soft);
}
@media (max-width: 768px) { .howto-grid { grid-template-columns: 1fr; } }

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2vw, 32px);
  padding: 60px clamp(20px, 3vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
}
.blog-card {
  padding: 32px;
  background: var(--bg-2);
  border-radius: 12px;
  cursor: pointer;
  transition: transform .4s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card__cat {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: 16px;
}
.blog-card__title {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.blog-card__title em { font-style: italic; color: var(--blue); font-weight: 400; }
.blog-card__excerpt {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.55;
  margin-bottom: 20px;
}
.blog-card__date {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* ARTICLE */
.article {
  max-width: 760px;
  margin: 100px auto 0;
  padding: 60px clamp(20px, 3vw, 40px);
}
.article__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--blue);
  margin-bottom: 32px;
}
.article__cat {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: 16px;
}
.article h1 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.article h1 em { font-style: italic; color: var(--blue); font-weight: 400; }
.article__date {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 48px;
}
.article__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--soft);
}
.article__body p + p { margin-top: 18px; }
.article__body h2 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 48px 0 16px;
}
.article__body h2 em { font-style: italic; color: var(--blue); }
.article__body h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin: 32px 0 12px;
}
.article__body em { font-style: italic; color: var(--ink); font-weight: 500; }

/* CONTACT */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }

/* ============================================================
   CONTACT PAGE V3, Refonte simplifiée éditoriale
   ============================================================ */

/* Header v3 : pas de grille meta, juste une ligne d'email */
.contact-header-v3__sub {
  max-width: 720px;
}
.contact-header-v3__line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(20px, 2.5vw, 32px);
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.contact-header-v3__line-mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  flex: 0 0 auto;
}
.contact-header-v3__line-text {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.contact-header-v3__line-link {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: -0.01em;
  position: relative;
  transition: color 0.3s ease;
}
.contact-header-v3__line-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--blue);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.contact-header-v3__line-link:hover::after {
  transform: scaleX(0.5);
}

/* Section v3 layout */
.contact-section-v3 {
  padding: clamp(48px, 6vw, 96px) clamp(24px, 4vw, 48px);
  background: var(--bg);
}
.contact-v3 {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-v3 {
    grid-template-columns: 1fr;
  }
}

.contact-form__submit--v3 {
  align-items: flex-start;
}

/* Sidebar v3 */
.contact-side-v3 {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
}
@media (max-width: 900px) {
  .contact-side-v3 {
    position: static;
  }
}
.contact-side-v3__block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(20px, 2.5vw, 32px);
}
.contact-side-v3__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(16px, 2vw, 24px);
  padding-bottom: clamp(14px, 1.8vw, 20px);
  border-bottom: 1px solid var(--line);
}
.contact-side-v3__head-mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex: 0 0 auto;
}
.contact-side-v3__head-title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}

/* Cas, chiffres reliés aux études */
.contact-case-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) 18px;
  gap: 14px;
  align-items: center;
  padding: clamp(14px, 1.6vw, 18px) 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.3s var(--ease);
}
.contact-case-row:hover {
  padding-left: 8px;
}
.contact-case-row:hover .contact-case-row__arrow {
  transform: translateX(4px);
  color: var(--blue);
}
.contact-case-row__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.contact-case-row__brand-name {
  font-family: var(--f-display);
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-case-row__brand-cat {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-case-row__metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
  justify-self: end;
}
.contact-case-row__metric-value {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 500;
  color: var(--blue);
  letter-spacing: -0.02em;
  font-style: italic;
}
.contact-case-row__metric-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-case-row__arrow {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--muted);
  transition: transform 0.3s var(--ease), color 0.3s ease;
  justify-self: end;
}

.contact-side-v3__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(16px, 2vw, 22px);
  margin-top: 4px;
  font-family: var(--f-display);
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: padding-left 0.3s var(--ease);
}
.contact-side-v3__more:hover {
  padding-left: 4px;
}

/* Channels v3 */
.contact-channels-v3 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-channel-v3 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(10px, 1.4vw, 14px) 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}
.contact-channel-v3:last-child {
  border-bottom: none;
}
.contact-channel-v3:hover {
  padding-left: 6px;
}
.contact-channel-v3:hover .contact-channel-v3__icon {
  background: var(--blue);
  color: var(--bg);
  border-color: var(--blue);
}
.contact-channel-v3__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  flex: 0 0 auto;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.contact-channel-v3__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-channel-v3__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-channel-v3__value {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Bandeau marques en clôture page contact */
.contact-brands-band {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.contact-brands-band__head {
  max-width: 1400px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: 0 clamp(24px, 4vw, 48px);
}
.contact-brands-band__kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}
.contact-brands-band__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
  max-width: 800px;
}
.contact-brands-band__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 15px;
  background: var(--bg);
  outline: none;
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus { border-color: var(--blue); }
.field textarea { min-height: 120px; resize: vertical; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--soft);
  cursor: pointer;
  transition: all .25s;
  background: var(--bg);
}
.chip:hover, .chip.active { background: var(--blue); color: var(--white); border-color: var(--blue); }

.contact-side {
  background: var(--ink);
  color: var(--bg);
  padding: 40px;
  border-radius: 12px;
  position: sticky;
  top: 100px;
}
.contact-side h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  font-weight: 500;
}
.contact-side__metric {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-side__metric span:first-child { font-size: 14px; opacity: .7; }
.contact-side__metric span:last-child {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--blue);
}
.contact-side__metric em { color: var(--blue); font-style: italic; }
.contact-side__notes { margin-top: 32px; }
.contact-side__note {
  display: flex; gap: 12px;
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.7);
}
.contact-side__note::before {
  content: '→';
  color: var(--blue);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .contact { grid-template-columns: 1fr; }
  .contact-side { position: static; }
}

/* MINI-CTA */
.mini-cta {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
.mini-cta__title {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
}
.mini-cta__title em { font-style: italic; color: var(--blue); font-weight: 400; }
.mini-cta__sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: .04em;
}
@media (max-width: 768px) {
  .mini-cta { grid-template-columns: 1fr; }
}

/* SERVICE PAGE */
.svc-page-hero {
  padding: 140px clamp(20px, 3vw, 40px) 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.svc-page-hero__num {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: 16px;
}
.svc-page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .92;
  margin-bottom: 32px;
}
.svc-page-hero h1 em { font-style: italic; color: var(--blue); font-weight: 400; }
.svc-page-hero p {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--soft);
  line-height: 1.5;
  max-width: 600px;
}

.svc-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.svc-feature {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.svc-feature:hover { background: var(--bg-2); }
.svc-feature:nth-child(2n) { border-right: none; }
.svc-feature__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}
.svc-feature h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.svc-feature h3 em { font-style: italic; color: var(--blue); font-weight: 400; }
.svc-feature p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--soft);
}
@media (max-width: 768px) {
  .svc-features { grid-template-columns: 1fr; }
  .svc-feature { border-right: none; }
}

/* SVC PLATFORMS */
.svc-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.svc-platform {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--soft);
  transition: all .25s;
}
.svc-platform:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* SVC CASES BLOCK */
.svc-cases-block {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.svc-cases-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 40px;
  max-width: 18ch;
}
.svc-cases-title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.svc-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.svc-case {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s var(--ease);
}
.svc-case:hover { transform: translateY(-6px); }
.svc-case__visual {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.svc-case__content { padding: 28px; }
.svc-case__brand {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.025em;
  margin-bottom: 6px;
}
.svc-case__metric {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.svc-case__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--soft);
}
@media (max-width: 768px) {
  .svc-cases { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
  }
  .hero__lede { max-width: 100%; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .scroll-indicator { display: none !important; }
}
@media (max-width: 600px) {
  .hero { padding-top: 80px; }
  .hero__top { font-size: 10px; }
  .nav { height: 56px; }
  .work-section__header { flex-direction: column; align-items: flex-start; }
}

/* === ENHANCEMENT LAYER === */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* Smooth reveal */
[data-reveal]{opacity:0;transform:translateY(40px) scale(.98);transition:opacity 1.1s var(--ease), transform 1.1s var(--ease);will-change:opacity,transform;}
[data-reveal].in{opacity:1;transform:translateY(0) scale(1);}
[data-reveal-delay="1"]{transition-delay:.08s}
[data-reveal-delay="2"]{transition-delay:.16s}
[data-reveal-delay="3"]{transition-delay:.24s}
[data-reveal-delay="4"]{transition-delay:.32s}

/* Char split reveal */
.split-char{display:inline-block;opacity:0;transform:translateY(.7em) rotate(2deg);transition:opacity .9s var(--ease), transform .9s var(--ease);will-change:opacity,transform}
.split-line.in .split-char{opacity:1;transform:translateY(0) rotate(0)}

/* Image zoom on hover for cases */
.case .case__bg{transition:transform 1.2s var(--ease), filter .6s ease}
.case:hover .case__bg{transform:scale(1.08); filter:saturate(1.15) brightness(1.05)}

/* Magnetic CTA - merged into single source of truth */
.nav__cta { transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .4s var(--ease); }

/* Floating noise overlay on hero */
.hero{position:relative;}
.hero .hero-aurora{position:absolute;inset:-20%;z-index:0;pointer-events:none;opacity:.45;
  background:
    radial-gradient(40% 50% at 20% 30%, rgba(26,102,224,.18), transparent 60%),
    radial-gradient(35% 45% at 80% 20%, rgba(244,197,68,.12), transparent 60%),
    radial-gradient(40% 40% at 60% 80%, rgba(16,185,129,.10), transparent 60%);
  filter:blur(40px);
  animation:auroraShift 18s ease-in-out infinite alternate;
}
@keyframes auroraShift{
  0%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(2%, -2%, 0) scale(1.05)}
  100%{transform:translate3d(-2%, 2%, 0) scale(1.02)}
}

/* Marquee speed up */
.marquee__track{animation-duration:38s !important}

/* Section number counter animations */
[data-count]{font-variant-numeric:tabular-nums}

/* Tilt cards */
[data-tilt]{transform-style:preserve-3d;transition:transform .25s var(--ease)}
[data-tilt] > *{transform:translateZ(20px)}

/* Scroll progress thicker + glow */
.progress{height:3px !important;box-shadow:0 0 12px rgba(26,102,224,.6)}

/* Page transitions */
.page{opacity:0;transition:opacity .5s var(--ease)}
.page.active{opacity:1}

/* Premium link underline */
a.story-link{position:relative}
a.story-link::after{content:'';position:absolute;left:0;bottom:-2px;height:1px;width:100%;background:currentColor;transform:scaleX(0);transform-origin:right;transition:transform .5s var(--ease)}
a.story-link:hover::after{transform:scaleX(1);transform-origin:left}

/* Cursor enhancements */



/* Subtle parallax */
[data-parallax]{will-change:transform}

/* Section enter accent line */
.section{position:relative}
.section::before{display:none !important}
.section.in-view::before{display:none !important}

/* ====== ENHANCEMENT v2, BENTO + KINETIC ====== */

/* Refined bento for #homeWork (asymmetric, premium) */
#homeWork.work-grid{
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: clamp(14px, 1.1vw, 20px);
}
#homeWork .case{ border-radius: 14px; }
#homeWork .case:nth-child(1){ grid-column: span 7; grid-row: span 2; aspect-ratio:auto; min-height: 520px; }
#homeWork .case:nth-child(2){ grid-column: span 5; grid-row: span 1; aspect-ratio:auto; min-height: 252px; }
#homeWork .case:nth-child(3){ grid-column: span 5; grid-row: span 1; aspect-ratio:auto; min-height: 252px; }
#homeWork .case:nth-child(4){ grid-column: span 4; grid-row: span 2; aspect-ratio:auto; min-height: 520px; }
#homeWork .case:nth-child(5){ grid-column: span 4; grid-row: span 1; aspect-ratio:auto; min-height: 252px; }
#homeWork .case:nth-child(6){ grid-column: span 4; grid-row: span 1; aspect-ratio:auto; min-height: 252px; }
#homeWork .case:nth-child(7){ grid-column: span 12; grid-row: span 1; aspect-ratio:auto; min-height: 320px; }
@media (max-width: 1024px){
  #homeWork .case:nth-child(n){ grid-column: span 12 !important; min-height: 360px; }
}

/* Floating brand tag on cases */
.case__overlay{ background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 75%, rgba(0,0,0,.85) 100%) !important; }
.case__metric{ backdrop-filter: blur(8px); background: rgba(255,255,255,.92) !important; }
.case__top span:first-child{ background: rgba(255,255,255,.12); backdrop-filter: blur(10px); padding:6px 10px; border-radius:100px; border:1px solid rgba(255,255,255,.18); }

/* Ken Burns slow drift on case bg when in view */
.case.in .case__bg{ animation: kenBurns 14s ease-in-out infinite alternate; }
.case.in .case__bg--logo{ animation: none !important; transform: none !important; }
.case__bg--logo{ background-color:#0f0f10 !important; }

/* Brand card: full cover background + logo/text overlay */
.case--logo .case__bg--brand{
  position:absolute; inset:0;
  display:grid; place-items:center;
  background-color:#0f0f10;
}
.case--logo .case__brand-text{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 56px);
  letter-spacing: -.03em;
  color: #fff;
  text-align:center;
  padding: 0 16px;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.case--logo .case__brand-logo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s var(--ease);
}
.case--logo:hover .case__brand-logo{ transform: scale(1.05); }
.case--logo .case__overlay{
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.45) 100%) !important;
  color: #fff !important;
}
.case--logo .case__top span:first-child{
  background: rgba(255,255,255,.18) !important;
  color: #fff;
  border-color: rgba(255,255,255,.25) !important;
  backdrop-filter: blur(8px);
}
.case--logo .case__metric{
  background: rgba(0,0,0,.75) !important;
  color: #fff !important;
  backdrop-filter: blur(8px);
}
.case--logo .case__bottom p{ color: #fff; opacity:.9; }
.case--logo .case__play{ display:none; }
.case:hover .case__bg--logo{ transform: scale(1.04) !important; filter: none !important; }
@keyframes kenBurns{
  0%{ transform: scale(1.04) translate(0,0) }
  100%{ transform: scale(1.12) translate(-2%,-1%) }
}
.case:hover .case__bg:not(.case__bg--logo){ animation: none !important; transform: scale(1.1) !important; }

/* Diagonal corner ribbon on first case, removed */
#homeWork .case:nth-child(1)::after{ content: none; }

/* Animated corner brackets that frame each case on hover */
.case::before{
  content: ''; position: absolute; inset: 12px; border: 1px solid transparent; border-radius: 10px; z-index: 2; pointer-events: none;
  transition: border-color .5s var(--ease), inset .5s var(--ease);
}
.case:hover::before{ border-color: rgba(255,255,255,.55); inset: 18px; }

/* Animated arrow circle (replaces ▶ play) */
.case__play{
  background: var(--white) !important; color: var(--ink) !important;
  font-size: 0 !important;
}
.case__play::before{
  content: '↗'; font-family: var(--f-display); font-size: 22px; font-weight: 400; line-height: 1;
}
.case:hover .case__play{ transform: translate(-50%, -50%) scale(1) rotate(0) !important; }
.case .case__play{ transition: transform .6s var(--ease) !important; }

/* Marquee, pause on hover + signal blue */
.marquee:hover .marquee__track{ animation-play-state: paused; }
.marquee__item{ transition: color .4s ease, transform .4s var(--ease); }
.marquee__item:hover{ color: var(--blue); transform: translateY(-2px); }
.marquee{ background: var(--ink); border-color: rgba(255,255,255,.08); }
.marquee{ padding: 22px 0 !important; }
.marquee__item--logo{ display:inline-flex; align-items:center; justify-content:center; height: clamp(72px, 7.5vw, 110px); padding: 0 clamp(40px, 4vw, 72px); }
.marquee__item--logo img{ height:100%; width:auto; max-width: 260px; object-fit:contain; filter: brightness(0) invert(1) opacity(.85); transition: filter .35s ease, transform .35s var(--ease); }
.marquee__item--logo:hover img{ filter: brightness(0) invert(1) opacity(1); transform: scale(1.1); }

/* Case detail eyebrow + related cases grid */
.case-detail__eyebrow{
  font-size: 12px; letter-spacing:.18em; text-transform:uppercase;
  color: var(--blue); font-weight:600; margin-bottom: 18px;
}
/* CASE SERVICES + AWARDS + MEDIA GALLERY */
.case-services{ display:flex; flex-wrap:wrap; gap:10px; margin: 8px 0 16px; }
.case-service-pill{
  display:inline-flex; align-items:center; padding: 8px 16px; border-radius: 999px;
  background: rgba(26,102,224,.08); color: var(--blue); font-size: 14px; font-weight: 500;
  border: 1px solid rgba(26,102,224,.18); transition: transform .35s var(--ease), background .35s ease;
}
.case-service-pill:hover{ background: rgba(26,102,224,.16); transform: translateY(-2px); }
.case-awards{ list-style:none; padding:0; margin: 8px 0 0; display:grid; gap: 10px; }
.case-awards li{
  padding: 14px 18px; border-radius: 14px; background: linear-gradient(90deg, rgba(255,193,7,.10), rgba(255,193,7,0));
  border-left: 3px solid #f4b400; font-size: 16px; color: var(--ink);
}
.case-media-wrap{
  max-width: 1400px; margin: 80px auto 0; padding: 0 clamp(20px,3vw,40px);
}
.case-media-title{
  font-family: var(--f-display); font-size: clamp(28px,3vw,40px); font-weight: 400;
  letter-spacing: -.02em; margin: 0 0 32px;
}
.case-media-title em{ font-style: italic; color: var(--blue); }
.case-media-grid{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
}
.case-media-item{
  position:relative; aspect-ratio: 9/16; border-radius: 18px; overflow:hidden;
  background: #0f0f0f; box-shadow: 0 18px 50px -22px rgba(0,0,0,.45);
  transition: transform .55s var(--ease), box-shadow .5s ease;
}
.case-media-item:hover{ transform: translateY(-8px) scale(1.015); box-shadow: 0 28px 70px -20px rgba(0,0,0,.55); }
.case-media-item img, .case-media-item video{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform 1.4s var(--ease), filter .6s ease;
}
.case-media-item:hover img, .case-media-item:hover video{ transform: scale(1.06); }

.case-related{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,1.6vw,28px);
}
@media (max-width: 900px){ .case-related{ grid-template-columns: 1fr; } }
.case-related__card{
  position:relative; display:block; border-radius: 18px; overflow:hidden; aspect-ratio: 4/5;
  text-decoration:none; color:#fff; isolation:isolate; background:#111;
  transition: transform .5s var(--ease), box-shadow .5s ease;
}
.case-related__card:hover{ transform: translateY(-6px); box-shadow: 0 24px 60px -20px rgba(0,0,0,.45); }
.case-related__visual{
  position:absolute; inset:0; transition: transform 1.2s var(--ease), filter .6s ease;
}
.case-related__card:hover .case-related__visual{ transform: scale(1.08); }
.case-related__meta{
  position:absolute; left:0; right:0; bottom:0; padding: 22px;
  display:flex; flex-direction:column; gap:6px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.65));
}
.case-related__sector{ font-size:11px; letter-spacing:.16em; text-transform:uppercase; opacity:.85; }
.case-related__brand{ font-size:14px; opacity:.9; }
.case-related__meta strong{
  font-family: var(--f-display); font-weight: 400; letter-spacing:-.02em;
  font-size: clamp(20px, 2vw, 28px);
}

/* Kinetic split line for major H2 */
.kinetic-line{ overflow: hidden; display: block; }
.kinetic-line .kinetic-word{
  display: inline-block; transform: translateY(40%); opacity: 0;
  transition: transform .7s var(--ease), opacity .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 35ms);
}
.kinetic-line.in .kinetic-word{ transform: translateY(0); opacity: 1; }

/* Sticky scrollytell glow on cases */
.case{ box-shadow: 0 1px 0 rgba(0,0,0,.04); }
.case.in{ box-shadow: 0 24px 70px -20px rgba(10,10,10,.18), 0 1px 0 rgba(0,0,0,.04); }

/* Pillar / process row hover lift */
.pillar-row, .process-step-row{ transition: transform .5s var(--ease), background .4s ease; }
.pillar-row:hover, .process-step-row:hover{ transform: translateX(8px); }

/* Stat block hover glow */
.stat, .approche-stat{ transition: transform .5s var(--ease); }
.stat:hover, .approche-stat:hover{ transform: translateY(-6px); }

/* Page enter from bottom */
.page{ transform: translateY(8px); }
.page.active{ transform: translateY(0); }

/* Scroll-driven blur reveal on h1/h2 */
h1[data-blur], h2[data-blur]{ filter: blur(14px); opacity: 0; transform: translateY(24px); transition: filter 1.4s var(--ease), opacity 1.2s var(--ease), transform 1.2s var(--ease); }
h1[data-blur].in, h2[data-blur].in{ filter: blur(0); opacity: 1; transform: translateY(0); }

/* Floating decorative grid dots behind work section */
.work-section{ position: relative; }
.work-section::before{
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(10,10,10,.05) 1px, transparent 1px);
  background-size: 24px 24px; mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 50%, transparent 90%);
}
.work-section > *{ position: relative; z-index: 1; }

/* Smooth pop on nav links */
.nav__link, .nav__cta{ transition: color .3s, transform .3s var(--ease) !important; }

/* Loader curtain at first paint */
#wm-curtain{
  position: fixed; inset: 0; z-index: 99999; background: var(--ink);
  display: grid; place-items: center; color: #fff;
  transition: clip-path 1.1s var(--ease) .2s, opacity .4s ease 1.3s;
  clip-path: inset(0 0 0 0);
  font-family: var(--f-display); letter-spacing: -.04em;
}
#wm-curtain.gone{ clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none; }
#wm-curtain .wm-curtain__mark{ font-size: clamp(48px, 9vw, 140px); font-weight: 500; }
#wm-curtain .wm-curtain__mark em{ font-style: italic; color: var(--blue); }
#wm-curtain .wm-curtain__bar{
  position: absolute; bottom: 60px; left: 60px; right: 60px; height: 1px; background: rgba(255,255,255,.15);
}
#wm-curtain .wm-curtain__bar::after{
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--blue);
  animation: wmLoad 1.1s var(--ease) forwards;
}
@keyframes wmLoad{ to{ width: 100%; } }
@media (prefers-reduced-motion: reduce){ #wm-curtain{ display: none !important; } }

/* =========================================================================
   SECTION 04, blue accent on timeline
   ========================================================================= */
.section--04-quotidien .ritual__title em {
  color: var(--blue) !important;
}
.section--04-quotidien .rituals-timeline::before {
  background: linear-gradient(to bottom, var(--blue) 0%, rgba(26,102,224,.15) 100%);
}
.section--04-quotidien .ritual::before {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(26,102,224,.15);
}
.section--04-quotidien .ritual__when-tag {
  color: var(--blue);
  border-color: rgba(26,102,224,.25);
  background: rgba(26,102,224,.06);
}
.section--04-quotidien .work-section__title em {
  color: var(--blue) !important;
}

/* =========================================================================
   NEUTRALISATION DES BLEUS, sections "Mobilisés sur mesure" + "Comment on bosse"
   On garde toute la structure (timeline, grille, pastilles), on neutralise juste les couleurs.
   ========================================================================= */

/* Section sombre (Mobilisés sur mesure) : on retire les accents bleus */
.section--neutral.section--dark .approche-section-num,
.section--neutral.section--dark .approche-section-num--dark {
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.section--neutral.section--dark .collective-list li::before {
  color: rgba(255,255,255,.4);   /* flèches → en gris au lieu de bleu */
}
.section--neutral.section--dark .collective-list li em {
  color: rgba(255,255,255,.95);  /* "Agences / Marques / Tech" en blanc franc, pas bleu */
  font-style: italic;
  font-weight: 400;
}
.section--neutral.section--dark .sector-tag:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

/* Section claire (Comment on bosse vraiment) : la timeline + pastilles passent en N&B */
.section--neutral .approche-section-num {
  color: var(--ink);
  background: var(--bg-2);
  border-color: var(--line);
}
.section--neutral .work-section__title em {
  color: var(--soft);            /* "bosse vraiment" en gris foncé italic au lieu de bleu */
}
.section--neutral .rituals-timeline::before {
  background: linear-gradient(to bottom, var(--ink) 0%, var(--line) 100%);
}
.section--neutral .ritual::before {
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.section--neutral .ritual:hover::before {
  box-shadow: 0 0 0 4px rgba(0,0,0,.08);
}
.section--neutral .ritual__when-tag {
  color: var(--soft);
  background: var(--bg-2);
  border-color: var(--line);
  font-weight: 500;
}
.section--neutral .ritual__title em {
  color: var(--soft);            /* "dédié" / "de pilotage" en gris au lieu de bleu */
  font-style: italic;
}

/* === RESPIRATION SUPPLÉMENTAIRE pour les 2 sections === */
/* Section sombre : retirer les flèches → répétitives, plus d'air entre items */
.section--neutral.section--dark .collective-list {
  gap: 18px;
}
.section--neutral.section--dark .collective-list li {
  padding-left: 0;        /* on retire le décalage des flèches */
  font-size: 14.5px;
  line-height: 1.55;
}
.section--neutral.section--dark .collective-list li::before {
  display: none;          /* on retire les flèches → */
}
/* Titres de colonnes plus posés */
.section--neutral.section--dark .collective-col h4 {
  color: rgba(255,255,255,.4);
  letter-spacing: .12em;
  padding-bottom: 20px;
  margin-bottom: 28px;
}

/* === BLOC "LE COLLECTIF", REFONTE ============================
   Chiffres signature + 2 colonnes propres + secteurs épurés.
   Remplace le tableau 3 colonnes dense d'origine. */

/* Chiffres signature du réseau */
.collective-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 80px;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.collective-stat {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.collective-stat:last-child { border-right: 0; }
.collective-stat__value {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
}
.collective-stat__value span {
  font-size: .5em;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  font-style: italic;
  margin-left: 4px;
}
.collective-stat__label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
  letter-spacing: -.005em;
}
@media (max-width: 900px) {
  .collective-stats { grid-template-columns: repeat(2, 1fr); }
  .collective-stat:nth-child(2) { border-right: 0; }
  .collective-stat { border-bottom: 1px solid rgba(255,255,255,.08); }
  .collective-stat:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 540px) {
  .collective-stats { grid-template-columns: 1fr; }
  .collective-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
  .collective-stat:last-child { border-bottom: 0; }
}

/* Grille 2 colonnes (au lieu de 3) avec plus d'air */
.section--neutral.section--dark .collective-grid--two {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  .section--neutral.section--dark .collective-grid--two {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* Secteurs : version plus épurée, plus aérée */
.section--neutral.section--dark .sectors-covered {
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.section--neutral.section--dark .sectors-covered__title {
  color: rgba(255,255,255,.4);
  letter-spacing: .12em;
  margin-bottom: 24px;
}
.section--neutral.section--dark .sectors-covered__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Sector tags : moins d'épaisseur, plus de calme */
.section--neutral.section--dark .sector-tag {
  font-weight: 400;
  font-size: 13.5px;
  background: transparent;
  padding: 7px 14px;
}

/* Timeline "Comment on bosse" : plus d'espacement entre rituels */
.section--neutral .rituals-timeline {
  margin-top: 72px;
  padding-left: 40px;
}
.section--neutral .ritual {
  padding: 40px 0;
}
.section--neutral .ritual::before {
  left: -47px;
}
.section--neutral .ritual__title {
  margin-bottom: 12px;
}

/* =========================================================================
   BANNIÈRE BLEUE HOME, apparition progressive au scroll
   Fond toujours bleu, texte toujours blanc (lisibilité garantie).
   L'effet "progressif" se fait via un voile crème en haut qui se rétracte
   au scroll via une variable --blue-fill (0 → 1) pilotée par JS.
   ========================================================================= */
.blue-banner {
  --blue-fill: 1;  /* fallback : si le JS ne tourne pas, on est en "tout bleu" */
  position: relative;
  background: var(--blue) !important;
  isolation: isolate;
}
/* Voile crème qui couvre la bannière en haut, puis se rétracte vers le bas */
.blue-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 60%, transparent 100%);
  transform-origin: top center;
  transform: scaleY(calc(1 - var(--blue-fill)));
  transition: transform 0.1s linear;
}
/* Le contenu doit passer au-dessus du voile */
.blue-banner > * {
  position: relative;
  z-index: 1;
}
/* Texte TOUJOURS blanc, fond toujours bleu, donc lisibilité garantie */
.blue-banner__title,
.blue-banner__sub {
  color: #fff !important;
}
.blue-banner__title em,
.blue-banner__sub em {
  color: rgba(255,255,255,.7) !important;
  font-style: italic;
}
@media (prefers-reduced-motion: reduce) {
  .blue-banner::after { display: none; }
}

/* =========================================================================
   MANIFESTO LIGHT, fond clair, surlignage bleu sur le mot fort
   ========================================================================= */
.manifesto-light {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 3vw, 40px);
  background: var(--bg);
  text-align: left;
  position: relative;
}
.manifesto-light__inner { max-width: 1400px; margin: 0 auto; }
.manifesto-light__eyebrow { color: var(--blue) !important; margin-bottom: 28px; }
.manifesto-light__eyebrow::before { background: var(--blue) !important; }
.manifesto-light__title {
  font-family: var(--f-display);
  font-size: clamp(38px, 5.4vw, 78px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin: 0 0 28px;
  max-width: none;
  color: #0a0a0a;
}
.manifesto-light__title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(10,10,10,.42);
  display: inline-block;
  margin-top: 8px;
}
.manifesto-light__hl {
  display: inline;
  background: var(--blue);
  color: #fff;
  padding: .02em .22em;
  margin: 0 -.04em;
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0 8px 22px -10px rgba(37,99,235,.55);
}
.manifesto-light::before { display: none !important; }
.manifesto-light__hl {
  background-image: linear-gradient(var(--blue), var(--blue));
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: 0 0;
  transition: background-size 1.1s cubic-bezier(.7,0,.2,1) .35s, color .4s ease .55s;
  color: #0a0a0a;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: .02em .12em;
}
.manifesto-light .fade-up-stagger.in .manifesto-light__hl {
  background-size: 100% 100%;
  color: #fff;
}
.manifesto-light__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: rgba(10,10,10,.7);
  max-width: 880px;
  margin: 0;
}

/* Variante sombre du manifesto : fond noir + texte adapté.
   La classe .section limite à 1400px : on étend le fond bord à bord du viewport. */
.manifesto-light--dark {
  background: var(--ink);
  clip-path: inset(0 -100vw 0 -100vw);
  box-shadow: 50vw 0 0 var(--ink), -50vw 0 0 var(--ink);
}
.manifesto-light--dark .manifesto-light__title { color: #fff; }
.manifesto-light--dark .manifesto-light__title em { color: rgba(255,255,255,.55); }
.manifesto-light--dark .manifesto-light__sub { color: rgba(255,255,255,.85); }
/* Le surlignage bleu animé : démarre en blanc (au lieu de noir) et reste blanc */
.manifesto-light--dark .manifesto-light__hl { color: #fff; }
.manifesto-light--dark .fade-up-stagger.in .manifesto-light__hl { color: #fff; }

/* =========================================================================
   FINAL OVERRIDES, ces règles arrivent en dernier dans la cascade CSS pour
   être sûres de gagner contre des règles plus loin dans le fichier.
   ========================================================================= */

/* Stats sombres : neutraliser le hover gris clair hérité (la "tache blanche"
   sur 1.0Md+ quand on la survole) */
.stats--dark > div:hover {
  background: transparent !important;
}

/* Supprimer les fines lignes claires border-top/bottom du marquee pour qu'il
   s'enchaîne sans rupture visuelle avec la zone stats noire en dessous */
.marquee {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

/* KPI pastille sur les cards Work : plus visible (preuve sociale immédiate) */
.case__metric {
  font-size: 14px !important;
  padding: 8px 14px !important;
  font-weight: 600 !important;
  letter-spacing: -.005em !important;
  text-transform: none !important;
  font-family: var(--f-display) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.case__metric::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Sub-metric secondaire sur les cards Work : chiffre additionnel en bas de card */
.case__sub-metric {
  margin-top: 10px;
  font-size: 12px;
  font-family: var(--f-mono);
  letter-spacing: .02em;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.case__sub-metric em {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.01em;
  color: #fff;
}


/* ============================================================
   MOBILE AUDIT, comprehensive fixes for narrow screens
   ============================================================ */

/* === Manifesto pillars : 2 cols à 900, 1 col sous 600 === */
@media (max-width: 600px) {
  .manifesto-v2-pillars {
    grid-template-columns: 1fr !important;
    gap: 1px;
  }
}

/* === Hero : reduce paddings + foot row on small === */
@media (max-width: 700px) {
  .hero--v2 {
    min-height: auto;
    padding-bottom: 48px;
  }
  .hero__top.hero__top--v2 {
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px clamp(20px, 4vw, 24px);
  }
  .hero__top-right {
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero__main--v2 {
    padding: 32px clamp(20px, 4vw, 24px);
  }
  .hero__title-v2 {
    font-size: clamp(40px, 11vw, 64px);
    line-height: 1.02;
  }
  .hero__title-v2 .word--indent {
    padding-left: 0;
  }
  .hero__bottom--v2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }
  .hero__foot {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .hero__foot-item--align-right {
    align-items: flex-start;
    text-align: left;
  }
}

/* === Section marker : tighter on mobile === */
@media (max-width: 600px) {
  .section-marker {
    padding: 40px 20px 0;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .section-marker__line {
    display: none;
  }
}

/* === Bridge meta on narrow === */
@media (max-width: 600px) {
  .bridge__inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 28px 20px;
  }
  .bridge__line {
    display: none;
  }
  .bridge__meta {
    margin-left: auto;
  }
}

/* === Logo marquee : faster perceived velocity, less padding === */
@media (max-width: 700px) {
  .logo-marquee__item {
    font-size: 32px !important;
  }
  .logo-marquee-section {
    padding: 32px 0 !important;
  }
  .logo-marquee-section__head {
    padding: 0 20px;
    margin-bottom: 16px !important;
  }
}

/* === Stats V3 grid : 4 -> 2x2 on small === */
@media (max-width: 700px) {
  .stats-v3-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .stats-v3-grid > .stats-v3-cell:last-child {
    grid-column: span 2;
  }
  .stats-v3-cell__num {
    font-size: clamp(40px, 12vw, 64px) !important;
  }
}

/* === Services V3 : tighter padding on very narrow === */
@media (max-width: 500px) {
  .section--services-v3 {
    padding: 64px 16px;
  }
  .services-v3__header {
    padding-bottom: 32px;
    margin-bottom: 24px;
  }
  .services-v3__title {
    font-size: clamp(32px, 9vw, 48px);
  }
  .svc-line {
    padding: 20px 4px !important;
    gap: 12px !important;
  }
  .svc-line__num {
    font-size: 28px !important;
  }
  .svc-line__name {
    font-size: 20px !important;
  }
  .svc-line__desc {
    font-size: 13px;
  }
}

/* === Process V5 timeline : enhance vertical layout === */
@media (max-width: 900px) {
  .process-v5__timeline-line {
    left: 5px !important;
  }
  .process-v5-step {
    padding-left: 28px !important;
  }
  .process-v5-step__top {
    margin-left: -28px !important;
    align-items: center;
  }
  .process-v5-step__num {
    width: auto;
    margin-left: 30px;
    font-size: 32px !important;
  }
  .process-v5-step__node {
    flex-shrink: 0;
  }
  .process-v5-step__phase {
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  .process-v5 {
    padding: 64px 20px !important;
  }
  .process-v5__header {
    padding-bottom: 32px;
    margin-bottom: 40px;
  }
  .process-v5__title {
    font-size: clamp(32px, 9vw, 48px);
  }
  .process-v5-step__title {
    font-size: clamp(20px, 5.5vw, 24px) !important;
  }
}

/* === Bento / Work grid : single column on small === */
@media (max-width: 700px) {
  .work-grid {
    grid-template-columns: 1fr !important;
  }
}

/* === Stats bar on /work : 2x2 then 1 col === */
@media (max-width: 500px) {
  .work-stats-bar__inner {
    grid-template-columns: 1fr !important;
  }
  .work-stat__num {
    font-size: clamp(40px, 12vw, 56px) !important;
  }
}

/* === Blog featured : visual ratio adjusted === */
@media (max-width: 600px) {
  .blog-featured__visual {
    aspect-ratio: 16 / 10;
  }
  .blog-featured__visual-num {
    top: 20px;
    left: 20px;
  }
  .blog-featured__title {
    font-size: clamp(24px, 7vw, 32px) !important;
  }
}

/* === Contact steps : already 1 col but improve spacing === */
@media (max-width: 700px) {
  .contact-steps {
    padding: 32px 20px;
    margin-bottom: 32px;
  }
  .contact-fieldset {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .contact-fieldset__legend {
    flex-wrap: wrap;
    gap: 8px;
  }
  .contact-fieldset__title {
    font-size: clamp(22px, 6vw, 28px) !important;
  }
}

/* === Contact aside : reset sticky on mobile === */
@media (max-width: 900px) {
  .contact-side--v2 {
    position: static !important;
    margin-top: 32px;
  }
  .contact-side--v2 .contact-side__hero-time {
    font-size: clamp(36px, 12vw, 56px) !important;
  }
}

/* === Article meta bar : stack better === */
@media (max-width: 600px) {
  .article-v2__meta {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    padding: 16px 0 !important;
  }
  .article-v2__hero-title {
    font-size: clamp(32px, 9vw, 48px) !important;
  }
  .article-v2__hero-excerpt {
    font-size: 16px !important;
  }
}

/* === Article body H2 padding-top on mobile === */
@media (max-width: 700px) {
  .article-v2__body h2 {
    margin-top: 40px;
    padding-top: 18px;
    font-size: clamp(24px, 6.5vw, 32px) !important;
  }
}

/* === Mentions légales TOC : disappear cleanly on mobile === */
@media (max-width: 900px) {
  .legal-v2__toc {
    display: none;
  }
  .legal-v2__section-title {
    font-size: clamp(28px, 7vw, 40px) !important;
  }
}

/* === 404 page : smaller bg-num + tighter content === */
@media (max-width: 600px) {
  .error-404__bg-num {
    font-size: 140px !important;
  }
  .error-404__title {
    font-size: clamp(40px, 12vw, 72px) !important;
  }
  .error-404__sub {
    font-size: 15px !important;
  }
}

/* === Footer V2 : 3 columns -> 2 -> 1 cleanly === */
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* === Page transition : faster on mobile === */
@media (max-width: 700px) {
  .page-transition__bar {
    transition-duration: 0.4s !important;
  }
  .page-transition__logo {
    font-size: clamp(32px, 10vw, 48px);
  }
}

/* === Page header titles: scale better on extreme small === */
@media (max-width: 500px) {
  .page-header h1 {
    font-size: clamp(40px, 12vw, 72px) !important;
    line-height: 1 !important;
  }
  .page-header__sub {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }
  .page-header__bar {
    padding: 14px 20px !important;
    flex-wrap: wrap;
    gap: 8px !important;
  }
}

/* === Section rail : already hidden < 1100, just confirm === */
@media (max-width: 1100px) {
  .section-rail {
    display: none !important;
  }
}

/* === Tap targets : ensure buttons + links are at least 44px === */
@media (pointer: coarse) {
  .btn,
  a.filter-btn,
  .filter-btn,
  .chip {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .svc-line__arrow,
  .article-v2__share-link,
  .article-v2__next-arrow {
    min-width: 44px;
    min-height: 44px;
  }
}

/* === Smooth scroll : disable on mobile for snappy feel === */
@media (max-width: 700px) {
  html {
    scroll-behavior: auto;
  }
}

/* === Service page hero on mobile === */
@media (max-width: 700px) {
  .svc-page-hero {
    padding: 64px 20px 40px !important;
  }
  .svc-page-hero__title {
    font-size: clamp(40px, 11vw, 64px) !important;
  }
  .svc-page-bar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 20px !important;
  }
}

/* === About page polish === */
@media (max-width: 700px) {
  .about-hero__title {
    font-size: clamp(40px, 11vw, 64px) !important;
  }
}

/* === Approche page polish === */
@media (max-width: 700px) {
  .approche-hero__title,
  .approche-pillar__title {
    font-size: clamp(28px, 7vw, 40px) !important;
  }
}

/* === Newsletter final : adjust title === */
@media (max-width: 600px) {
  .newsletter-final__title {
    font-size: clamp(36px, 11vw, 56px) !important;
    line-height: 1 !important;
  }
}

/* === CTA V3 : adjust giant bg text on mobile === */
@media (max-width: 700px) {
  .cta-v3__bg-text {
    font-size: clamp(80px, 18vw, 120px) !important;
    opacity: 0.06 !important;
  }
  .cta-v3__hero h2 {
    font-size: clamp(40px, 11vw, 64px) !important;
  }
}

/* === Improve safe-area for iOS notch === */
@supports (padding: max(0px)) {
  .nav,
  .page-header__bar {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
}

/* === Horizontal overflow prevention === */
html, body {
  overflow-x: hidden;
}
.page,
.section {
  max-width: 100vw;
  overflow-x: hidden;
}

/* But allow overflow on marquees (they need it) */
.logo-marquee,
.work-brand-marquee {
  overflow: hidden;
  max-width: 100vw;
}


/* ============================================================
   THESIS-HOME : rééquilibrage photo/texte (pass 26)
   Photo trop dominante par défaut → on contraint sa hauteur max
   Texte trop petit → on agrandit notablement le body
   ============================================================ */
.section--thesis-v2 .thesis-home {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.section--thesis-v2 .thesis-home__photo {
  position: relative;
  display: flex;
  flex-direction: column;
}
.section--thesis-v2 .thesis-home__photo-frame {
  width: 100%;
  max-width: 480px;
  max-height: 600px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  aspect-ratio: 4 / 5;
}
.section--thesis-v2 .thesis-home__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section--thesis-v2 .thesis-home__caption {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10,14,26,0.55);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 480px;
}
.section--thesis-v2 .thesis-home__caption-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.section--thesis-v2 .thesis-home__content {
  display: flex;
  flex-direction: column;
}
.section--thesis-v2 .thesis-home__body p {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: rgba(10,14,26,0.82);
  margin: 0 0 24px;
  max-width: 540px;
}
.section--thesis-v2 .thesis-home__body p:last-child {
  margin-bottom: 0;
}
.section--thesis-v2 .thesis-home__body p em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}
@media (max-width: 900px) {
  .section--thesis-v2 .thesis-home {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section--thesis-v2 .thesis-home__photo-frame {
    max-width: 100%;
    max-height: 480px;
  }
  .section--thesis-v2 .thesis-home__body p {
    font-size: 16px;
  }
}

/* ============================================================
   PROCESS V5 LITE : remplir l'espace + virer les durées (pass 26)
   ============================================================ */
.process-v5__timeline--lite .process-v5-step__duration {
  display: none !important;
}
/* Ajoute un sous-titre court à chaque étape pour densifier */
.process-v5__timeline--lite .process-v5-step__kicker {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.45);
  margin-top: 12px;
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.process-v5__timeline--lite .process-v5-step--loop .process-v5-step__kicker {
  color: var(--blue);
}
/* Re-densifier la timeline lite */
.process-v5__timeline--lite {
  padding-top: 8px;
}
.process-v5__timeline--lite .process-v5-step__num {
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.9;
}
.process-v5__timeline--lite .process-v5-step__title {
  font-size: clamp(22px, 1.8vw, 28px);
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.1;
}
.process-v5__timeline--lite .process-v5-step__top {
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .process-v5__timeline--lite .process-v5-step__num { font-size: 42px; }
  .process-v5__timeline--lite .process-v5-step__title { font-size: 20px; }
}

/* ============================================================
   SECTION RAIL : meilleur contraste sur fond bleu (pass 26)
   ============================================================ */
.section-rail.is-on-dark .section-rail__tick {
  color: rgba(255, 255, 255, 0.55);
}
.section-rail.is-on-dark .section-rail__tick::before {
  background: rgba(255, 255, 255, 0.4);
}
.section-rail.is-on-dark .section-rail__tick:hover,
.section-rail.is-on-dark .section-rail__tick.is-active {
  color: #ffffff;
}
.section-rail.is-on-dark .section-rail__tick:hover::before,
.section-rail.is-on-dark .section-rail__tick.is-active::before {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.section-rail.is-on-dark .section-rail__tick.is-active .section-rail__num,
.section-rail.is-on-dark .section-rail__tick.is-active .section-rail__name {
  color: #ffffff;
  font-weight: 500;
}
/* Transition douce entre les modes (évite les "bugs" visuels) */
.section-rail__tick,
.section-rail__tick::before,
.section-rail__tick .section-rail__num,
.section-rail__tick .section-rail__name {
  transition: color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}


/* ============================================================
   FOR WHOM SECTION (page /about - section 02)
   Layout 2 colonnes éditorial : "Vous êtes au bon endroit si"
   + "Vous êtes ailleurs si" avec marqueurs visuels +/-
   ============================================================ */
.section--for-whom {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
  background: var(--bg);
}
.for-whom {
  max-width: 1400px;
  margin: 0 auto;
}
.for-whom__intro {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.7);
  max-width: 740px;
  margin: 24px 0 clamp(48px, 6vw, 72px);
}
.for-whom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 56px);
}
@media (max-width: 900px) {
  .for-whom__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.for-whom__col {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.for-whom__col--yes {
  border-top-color: var(--blue);
}
.for-whom__col--no {
  border-top-color: var(--ink);
}
.for-whom__col-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.for-whom__col-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}
.for-whom__col-mark--yes {
  background: var(--blue);
  color: var(--bg);
}
.for-whom__col-mark--no {
  background: var(--ink);
  color: var(--bg);
}
.for-whom__col-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
.for-whom__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.for-whom__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.82);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.for-whom__list li:last-child {
  border-bottom: none;
}
.for-whom__list li em {
  font-style: italic;
  color: var(--blue);
  font-weight: 500;
}
.for-whom__col--no .for-whom__list li em {
  color: var(--ink);
  font-weight: 500;
}
.for-whom__list-mark {
  flex-shrink: 0;
  margin-top: 9px;
  width: 6px;
  height: 1px;
  background: var(--blue);
}
.for-whom__col--no .for-whom__list-mark {
  background: rgba(10, 14, 26, 0.35);
}


/* Section Livrables supprimée, CSS retiré */

/* ============================================================
   APPROCHE PAGE, Section 06 : Pilotage
   ============================================================ */
/* ============================================================
   APPROCHE PAGE, Billboard Paris (visual interlude)
   ============================================================ */
.section--billboard {
  background: var(--bg);
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 48px) clamp(60px, 7vw, 100px);
  position: relative;
}
.approche-billboard {
  max-width: 1400px;
  margin: 0 auto;
}
.approche-billboard__head {
  margin-bottom: clamp(28px, 3vw, 40px);
}
.approche-billboard__kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.approche-billboard__scene {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(6, 44, 128, 0.35), 0 12px 30px -10px rgba(6, 44, 128, 0.18);
}
.approche-billboard__svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
}
.approche-billboard__panel-group {
  transform-origin: center;
  animation: bbPanelFloat 6s ease-in-out infinite;
}
@keyframes bbPanelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .approche-billboard__panel-group { animation: none; }
}
.approche-billboard__caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: calc(100% - 48px);
}
.approche-billboard__caption-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0.1em;
  flex: 0 0 auto;
}
.approche-billboard__caption-text {
  font-family: var(--f-display);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
@media (max-width: 768px) {
  .approche-billboard__caption {
    bottom: 12px;
    left: 12px;
    padding: 10px 14px;
    gap: 10px;
  }
  .approche-billboard__caption-text {
    font-size: 11.5px;
  }
}

/* ============================================================
   APPROCHE PAGE, Section 06 : Pilotage
   ============================================================ */
.section--bg-2 {
  background: var(--bg-2);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
}
.approche-pilotage {
  max-width: 1400px;
  margin: 0 auto;
}
.approche-pilotage__intro {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.7);
  max-width: 740px;
  margin: 24px 0 clamp(48px, 6vw, 72px);
}
.pilotage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 1100px) {
  .pilotage-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pilotage-grid { grid-template-columns: 1fr; }
}
.pilotage-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pilotage-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(10, 14, 26, 0.1);
}
.pilotage-card--accent {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--bg);
}
.pilotage-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pilotage-card__cadence {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}
.pilotage-card--accent .pilotage-card__cadence {
  color: rgba(255, 255, 255, 0.95);
}
.pilotage-card__line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.pilotage-card--accent .pilotage-card__line {
  background: rgba(255, 255, 255, 0.25);
}
.pilotage-card__title {
  font-family: var(--f-display);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.pilotage-card--accent .pilotage-card__title {
  color: var(--bg);
}
.pilotage-card__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.pilotage-card--accent .pilotage-card__title em {
  color: rgba(255, 255, 255, 0.75);
}
.pilotage-card__body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.72);
  margin: 0;
}
.pilotage-card--accent .pilotage-card__body {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   APPROCHE PAGE, Section 07 : Plateforme SaaS (placeholder)
   ============================================================ */
.approche-saas {
  max-width: 1400px;
  margin: 0 auto;
}
.approche-saas__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .approche-saas__grid { grid-template-columns: 1fr; }
}
.approche-saas__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.approche-saas__body {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: rgba(10, 14, 26, 0.78);
  margin: 0;
  max-width: 540px;
}
.approche-saas__body em {
  font-style: italic;
  color: var(--blue);
  font-weight: 500;
}
.approche-saas__footnote {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.approche-saas__footnote-mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-blue 2s ease-in-out infinite;
}
@keyframes pulse-blue {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.approche-saas__footnote-text {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.55);
}

/* Mockup placeholder visuel */
.approche-saas__visual {
  position: relative;
}
.approche-saas__mockup {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(10, 14, 26, 0.18);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
}
.approche-saas__mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.approche-saas__mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.15);
}
.approche-saas__mockup-url {
  margin-left: 16px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .04em;
  color: rgba(10, 14, 26, 0.45);
}
.approche-saas__mockup-content {
  flex: 1;
  padding: clamp(16px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.approche-saas__mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.approche-saas__mockup-line {
  height: 6px;
  background: var(--line);
  border-radius: 2px;
}
.approche-saas__mockup-line--w90 { width: 90%; }
.approche-saas__mockup-line--w70 { width: 70%; background: var(--blue); opacity: 0.35; }
.approche-saas__mockup-line--w50 { width: 50%; }
.approche-saas__mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.approche-saas__mockup-card {
  height: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.approche-saas__mockup-card:first-child {
  background: var(--blue-soft);
  border-color: var(--blue);
}
.approche-saas__mockup-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.approche-saas__mockup-bar-data {
  flex: 1;
  background: linear-gradient(to top, var(--blue), rgba(26, 102, 224, 0.4));
  border-radius: 2px 2px 0 0;
  min-height: 8px;
}
.approche-saas__mockup-bar-data:nth-child(4),
.approche-saas__mockup-bar-data:nth-child(6) {
  background: var(--ink);
  opacity: 0.85;
}
.approche-saas__mockup-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}
.approche-saas__mockup-label-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}


/* ============================================================
   SOCIAL PROJECT HUB - faithful reproduction in /approche [07]
   ============================================================ */

.approche-saas__visual--dual {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

@media (min-width: 1100px) {
  .approche-saas__visual--dual {
    position: relative;
    min-height: 540px;
  }
  .hub-view--dashboard {
    position: relative;
    z-index: 2;
    transform: translateX(-4%);
    width: 100%;
  }
  .hub-view--kanban {
    position: relative;
    z-index: 1;
    transform: translate(8%, -22%);
    width: 88%;
    margin-left: auto;
  }
}

.hub-view {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(10, 14, 26, 0.18);
  font-family: var(--f-body, system-ui), sans-serif;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.hub-view[data-hub-reveal] {
  opacity: 0;
}
.hub-view.is-in {
  opacity: 1;
}

.hub-view__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f7f8fa;
  border-bottom: 1px solid var(--line);
}
.hub-view__chrome-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.hub-view__chrome-dot:nth-child(1) { background: #ff5f57; }
.hub-view__chrome-dot:nth-child(2) { background: #febc2e; }
.hub-view__chrome-dot:nth-child(3) { background: #28c840; }
.hub-view__chrome-url {
  margin-left: 14px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: rgba(10, 14, 26, 0.42);
}
.hub-view__chrome-tag {
  margin-left: auto;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
  padding: 3px 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.hub-view__chrome-tag--project {
  color: var(--blue);
  border-color: var(--blue-soft);
  background: var(--blue-tint);
}

.hub-view__body {
  display: flex;
  height: 380px;
  background: #f8f9fb;
}
.hub-view__body--kanban {
  display: block;
  height: auto;
  padding: 16px;
}

/* Sidebar */
.hub-sidebar {
  width: 178px;
  background: #ffffff;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 12px 10px;
  flex-shrink: 0;
}
.hub-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.hub-sidebar__brand-logo {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: var(--blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--f-display);
}
.hub-sidebar__brand-name {
  font-weight: 600;
  font-size: 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hub-sidebar__label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.4);
  padding: 0 8px;
  margin-bottom: 6px;
}
.hub-sidebar__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}
.hub-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(10, 14, 26, 0.65);
  position: relative;
}
.hub-nav-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.hub-nav-item--active {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(26, 102, 224, 0.2);
}
.hub-nav-item__badge {
  margin-left: auto;
  background: rgba(255, 200, 0, 0.18);
  color: #b8860b;
  font-size: 9px;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 8px;
  line-height: 1;
}
.hub-sidebar__user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  margin-top: 8px;
  background: rgba(26, 102, 224, 0.04);
  border-radius: 6px;
}
.hub-sidebar__avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
}
.hub-sidebar__user-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.hub-sidebar__user-name {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hub-sidebar__user-role {
  font-size: 8px;
  color: rgba(10, 14, 26, 0.5);
}

/* Main content */
.hub-main {
  flex: 1;
  padding: 14px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hub-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.hub-header__title {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.hub-header__title span {
  font-size: 14px;
}
.hub-header__date {
  font-size: 10px;
  color: rgba(10, 14, 26, 0.55);
  margin: 2px 0 0;
}
.hub-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--blue);
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  border-radius: 5px;
  border: none;
}

.hub-alerts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hub-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  border: 1px solid;
}
.hub-alert--warn {
  background: rgba(239, 68, 68, 0.07);
  border-color: rgba(239, 68, 68, 0.18);
}
.hub-alert--info {
  background: var(--blue-tint);
  border-color: var(--blue-soft);
}
.hub-alert__icon {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hub-alert__icon svg {
  width: 13px;
  height: 13px;
}
.hub-alert--warn .hub-alert__icon {
  background: rgba(239, 68, 68, 0.15);
  color: #dc2626;
}
.hub-alert--info .hub-alert__icon {
  background: var(--blue-soft);
  color: var(--blue);
}
.hub-alert__body {
  display: flex;
  flex-direction: column;
}
.hub-alert__title {
  font-size: 10px;
  font-weight: 600;
}
.hub-alert--warn .hub-alert__title { color: #dc2626; }
.hub-alert--info .hub-alert__title { color: var(--blue); }
.hub-alert__sub {
  font-size: 8.5px;
  opacity: 0.75;
}
.hub-alert--warn .hub-alert__sub { color: #dc2626; }
.hub-alert--info .hub-alert__sub { color: var(--blue); }

/* Stats */
.hub-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.hub-stat-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hub-stat-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.hub-stat-card__icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-stat-card__icon svg {
  width: 12px;
  height: 12px;
}
.hub-stat-card__icon--success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.hub-stat-card__icon--warn {
  background: rgba(251, 191, 36, 0.12);
  color: #d97706;
}
.hub-stat-card__icon--info {
  background: var(--blue-tint);
  color: var(--blue);
}
.hub-stat-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  font-size: 8px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 8px;
}
.hub-stat-card__pct {
  font-size: 9px;
  font-weight: 600;
  color: #16a34a;
}
.hub-stat-card__value {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hub-stat-card__label {
  font-size: 9px;
  color: rgba(10, 14, 26, 0.6);
}

/* Projects list */
.hub-projects {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 12px;
  flex: 1;
  overflow: hidden;
}
.hub-projects__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.hub-projects__title {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
}
.hub-projects__count {
  background: var(--bg-2);
  color: rgba(10, 14, 26, 0.55);
  font-size: 8.5px;
  font-weight: 500;
  padding: 1px 6px;
  border-radius: 6px;
}
.hub-project-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  gap: 12px;
}
.hub-project-row + .hub-project-row {
  border-top: 1px solid var(--line);
}
.hub-project-row__left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.hub-project-row__badge {
  font-size: 8px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 8px;
  flex-shrink: 0;
}
.hub-project-row__badge--active {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.hub-project-row__badge--review {
  background: var(--blue-tint);
  color: var(--blue);
}
.hub-project-row__name {
  font-size: 10px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hub-project-row__progress {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.hub-project-row__bar {
  width: 60px;
  height: 4px;
  background: var(--bg-2);
  border-radius: 2px;
  overflow: hidden;
}
.hub-project-row__bar span {
  display: block;
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
}
.hub-project-row__pct {
  font-size: 9px;
  font-weight: 600;
  color: rgba(10, 14, 26, 0.65);
  min-width: 24px;
  text-align: right;
}

/* Kanban */
.hub-kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.hub-kanban__col {
  background: #f7f8fa;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px;
  min-height: 200px;
}
.hub-kanban__col-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.hub-kanban__col-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.hub-kanban__col-dot--todo { background: #94a3b8; }
.hub-kanban__col-dot--prog { background: #f59e0b; }
.hub-kanban__col-dot--review { background: var(--blue); }
.hub-kanban__col-dot--done { background: #22c55e; }
.hub-kanban__col-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
}
.hub-kanban__col-count {
  margin-left: auto;
  background: var(--bg-2);
  color: rgba(10, 14, 26, 0.5);
  font-size: 8px;
  font-weight: 500;
  padding: 1px 5px;
  border-radius: 8px;
}
.hub-kanban__cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hub-kanban-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 7px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 1px 2px rgba(10, 14, 26, 0.04);
}
.hub-kanban-card__tag {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 7.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}
.hub-kanban-card__title {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}
.hub-kanban-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-top: 2px;
}
.hub-kanban-card__date {
  font-size: 8.5px;
  color: rgba(10, 14, 26, 0.55);
}
.hub-kanban-card__avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 7.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-kanban-card__avatar--alt {
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
}
.hub-kanban-card__pill {
  background: var(--blue-tint);
  color: var(--blue);
  font-size: 8px;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 6px;
}
.hub-kanban-card--active {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.08);
}
.hub-kanban-card--review {
  border-color: var(--blue-soft);
  background: var(--blue-tint);
}
.hub-kanban-card--done {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 1100px) {
  .approche-saas__visual--dual {
    transform: none;
  }
  .hub-view {
    width: 100%;
    transform: none !important;
  }
}
@media (max-width: 700px) {
  .hub-view__body {
    height: auto;
    min-height: 280px;
  }
  .hub-sidebar {
    display: none;
  }
  .hub-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hub-kanban {
    grid-template-columns: 1fr 1fr;
  }
  .hub-alerts {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   HUB VIEW - Project Dashboard (Vue 1 nouvelle version)
   ============================================================ */
.hub-view__body--project {
  display: flex;
  height: 460px;
  background: #f8f9fb;
}
.hub-main--project {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px;
}

/* Back link */
.hub-project-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: rgba(10, 14, 26, 0.55);
  font-weight: 500;
  margin-bottom: 2px;
}

/* Hero gradient bleu */
.hub-project-hero {
  position: relative;
  background: linear-gradient(135deg, #1a66e0 0%, #2272f0 50%, #0d4cb8 100%);
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.hub-project-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M24 22v-3h-2v3h-3v2h3v3h2v-3h3v-2h-3zM4 2v-2H3v2H1v1h2v2h1V3h2V2H4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hub-project-hero__orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(28px);
}
.hub-project-hero__orb--1 {
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
}
.hub-project-hero__orb--2 {
  bottom: -50px;
  left: -50px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.05);
}
.hub-project-hero__content {
  position: relative;
  z-index: 1;
}
.hub-project-hero__row1 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.hub-project-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 8px;
  border: 1px solid rgba(74, 222, 128, 0.35);
}
.hub-project-hero__status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: hub-pulse 2s ease-in-out infinite;
}
@keyframes hub-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.hub-project-hero__client {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.hub-project-hero__title {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
}
.hub-project-hero__sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  margin: 4px 0 10px;
}
.hub-project-hero__progress {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hub-project-hero__progress-bar {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  overflow: hidden;
}
.hub-project-hero__progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.85));
  border-radius: 3px;
}
.hub-project-hero__progress-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}

/* 6 Quick stats cards */
.hub-quick-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}
.hub-qs-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hub-qs-card__icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;
}
.hub-qs-card__icon svg {
  width: 11px;
  height: 11px;
}
.hub-qs-card__icon--primary { background: var(--blue-tint); color: var(--blue); }
.hub-qs-card__icon--violet { background: rgba(139, 92, 246, 0.12); color: #7c3aed; }
.hub-qs-card__icon--success { background: rgba(34, 197, 94, 0.1); color: #16a34a; }
.hub-qs-card__icon--amber { background: rgba(245, 158, 11, 0.12); color: #d97706; }
.hub-qs-card__icon--info { background: var(--blue-tint); color: var(--blue); }
.hub-qs-card__icon--rose { background: rgba(244, 63, 94, 0.1); color: #e11d48; }

.hub-qs-card__value {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hub-qs-card__label {
  font-size: 9px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 2px;
}
.hub-qs-card__sub {
  font-size: 8px;
  color: rgba(10, 14, 26, 0.5);
}

/* Tabs */
.hub-project-tabs {
  display: flex;
  gap: 2px;
  padding: 4px;
  background: var(--bg-2);
  border-radius: 6px;
  width: fit-content;
}
.hub-project-tab {
  background: transparent;
  border: none;
  font-size: 9.5px;
  font-weight: 500;
  color: rgba(10, 14, 26, 0.6);
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.hub-project-tab--active {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(10, 14, 26, 0.08);
}

/* Insights + Team grid */
.hub-project-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
  flex: 1;
  min-height: 0;
}

.hub-insights, .hub-team {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.hub-insights__head, .hub-team__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.hub-insights__title, .hub-team__title {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
}
.hub-insights__pill, .hub-team__pill {
  background: var(--blue-tint);
  color: var(--blue);
  font-size: 8px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 6px;
}
.hub-insights__items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hub-insights__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
}
.hub-insights__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.hub-insights__dot--success { background: #16a34a; }
.hub-insights__dot--info { background: var(--blue); }
.hub-insights__dot--amber { background: #d97706; }
.hub-insights__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.hub-insights__name {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hub-insights__meta {
  font-size: 8.5px;
  color: rgba(10, 14, 26, 0.55);
}

/* Team list */
.hub-team__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hub-team__member {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
}
.hub-team__avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8.5px;
  font-weight: 600;
  flex-shrink: 0;
}
.hub-team__avatar--violet { background: rgba(139, 92, 246, 0.15); color: #7c3aed; }
.hub-team__avatar--amber { background: rgba(245, 158, 11, 0.15); color: #d97706; }
.hub-team__avatar--success { background: rgba(34, 197, 94, 0.12); color: #16a34a; }
.hub-team__body {
  display: flex;
  flex-direction: column;
}
.hub-team__name {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink);
}
.hub-team__role {
  font-size: 8.5px;
  color: rgba(10, 14, 26, 0.55);
}

/* Responsive */
@media (max-width: 700px) {
  .hub-view__body--project { height: auto; min-height: 320px; }
  .hub-quick-stats { grid-template-columns: repeat(3, 1fr); }
  .hub-project-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   FOR-WHOM : numbered bullets
   ============================================================ */
.for-whom__list li {
  display: grid;
  grid-template-columns: 28px 18px 1fr;
  gap: 0;
  align-items: start;
  padding-bottom: 18px;
}
.for-whom__list-idx {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--blue);
  padding-top: 5px;
  font-weight: 500;
}
.for-whom__col--no .for-whom__list-idx {
  color: rgba(10, 14, 26, 0.4);
}
.for-whom__list-mark {
  margin-top: 9px;
}
.for-whom__list-text {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.82);
}
.for-whom__list-text em {
  font-style: italic;
  color: var(--blue);
  font-weight: 500;
}
.for-whom__col--no .for-whom__list-text em {
  color: var(--ink);
}

/* ============================================================
   FOOTER : tag for SaaS mention
   ============================================================ */
.footer__link--meta {
  display: inline-flex !important;
  align-items: baseline;
  gap: 8px;
}
.footer__link-tag {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  padding: 1px 6px;
  border-radius: 8px;
  font-weight: 500;
}


/* ============================================================
   BLOG FEATURED, Editorial hero composition (Pass 31)
   ============================================================ */
.blog-featured__link {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0 !important;
  text-decoration: none !important;
  color: inherit !important;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.blog-featured__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -32px rgba(10, 14, 26, 0.18);
}
@media (max-width: 900px) {
  .blog-featured__link { grid-template-columns: 1fr; }
}

/* Visual side, Editorial composition */
.blog-featured__visual--editorial {
  background: var(--bg);
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-right: 1px solid var(--line);
  min-height: 460px;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.blog-featured__visual--editorial > * {
  max-width: 100%;
  min-width: 0;
}
@media (max-width: 900px) {
  .blog-featured__visual--editorial {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: 320px;
  }
}
.blog-featured__visual--editorial::before {
  content: '';
  position: absolute;
  top: clamp(28px, 3vw, 48px);
  bottom: clamp(28px, 3vw, 48px);
  left: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--blue), transparent 75%);
  opacity: 0.3;
}
.blog-featured__visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.55);
}
.blog-featured__visual-id {
  color: var(--blue);
}
.blog-featured__visual-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: blog-pulse 2s ease-in-out infinite;
}
@keyframes blog-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.blog-featured__visual-num-big {
  font-family: var(--f-display);
  font-size: clamp(80px, 11vw, 160px);
  line-height: 0.85;
  letter-spacing: -.06em;
  font-weight: 500;
  color: var(--ink);
  margin: clamp(16px, 2vw, 24px) 0;
  display: flex;
  align-items: baseline;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.blog-featured__visual-num-em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
  padding-right: 0.08em;
}
.blog-featured__visual-quote {
  position: relative;
  padding: clamp(20px, 2.5vw, 28px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 100%;
}
.blog-featured__visual-quote-mark {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.5;
  color: var(--blue);
  font-style: italic;
  position: absolute;
  top: clamp(12px, 1.5vw, 18px);
  left: -2px;
  opacity: 0.85;
}
.blog-featured__visual-quote-text {
  font-family: var(--f-display);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.45;
  font-style: italic;
  color: var(--ink);
  display: block;
  padding-left: clamp(26px, 3vw, 36px);
  letter-spacing: -.01em;
  font-weight: 400;
  /* Limite à 4 lignes pour éviter tout chevauchement de zones */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-featured__visual-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.55);
}
.blog-featured__visual-footer-label {
  color: var(--blue);
  font-weight: 500;
}
.blog-featured__visual-footer-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Body side, Editorial right column */
.blog-featured__body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.5vw, 18px);
  justify-content: center;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.blog-featured__body > * {
  max-width: 100%;
  min-width: 0;
}
.blog-featured__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
  font-weight: 500;
}
.blog-featured__kicker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  animation: blog-pulse 2s ease-in-out infinite;
}
.blog-featured__cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  font-family: var(--f-mono, ui-monospace, monospace);
  padding: 4px 10px;
  background: var(--blue-tint);
  border-radius: 4px;
  width: fit-content;
}
.blog-featured__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}
.blog-featured__excerpt {
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.72);
  margin: 0;
  max-width: 580px;
}
.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(10, 14, 26, 0.55);
  margin-top: 4px;
}
.blog-featured__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-featured__meta-item svg {
  opacity: 0.6;
}
.blog-featured__meta-sep {
  width: 12px;
  height: 1px;
  background: var(--line);
}
.blog-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  margin-top: clamp(8px, 1vw, 14px);
  padding-top: clamp(20px, 2vw, 28px);
  border-top: 1px solid var(--line);
}
.blog-featured__cta svg {
  transition: transform 0.35s var(--ease);
}
.blog-featured__link:hover .blog-featured__cta svg {
  transform: translateX(4px);
}

/* ============================================================
   WORK FILTERS, Double-axe (Pass 31)
   ============================================================ */
.work-filters-section--dual {
  padding: clamp(48px, 6vw, 72px) clamp(24px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}
.work-filters-section--dual .work-filters-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
}
.work-filters-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding-bottom: clamp(20px, 2vw, 28px);
  border-bottom: 1px solid var(--line);
}
.work-filters-section__counter {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}

/* Filter rows */
.work-filters-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}
@media (max-width: 800px) {
  .work-filters-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.work-filters-row__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.work-filters-row__label-num {
  color: var(--blue);
  font-weight: 600;
}
.work-filters-row__label-text {
  color: rgba(10, 14, 26, 0.6);
}
.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.work-filters--sector .filter-btn {
  font-size: 12px;
}

/* ============================================================
   SECTION NUM THREAD, fil rouge visuel sur tous les [0X]
   ============================================================ */
/* The line is a subtle 1px vertical pseudo on left of section numbers */
.section-marker {
  position: relative;
}
/* Add a tiny tick line on left of section markers across all pages */
.section-marker::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 8px;
  bottom: -16px;
  width: 1px;
  background: linear-gradient(to bottom, var(--blue) 0%, var(--blue) 24px, rgba(26, 102, 224, 0.15) 24px, rgba(26, 102, 224, 0.1) 100%);
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 900px) {
  .section-marker::before { opacity: 1; }
}
/* For section numbers in /approche, /about, they use a different marker class */
.approche-section-num {
  position: relative;
}
@media (min-width: 900px) {
  .approche-section-num::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    margin-top: 12px;
    transform: translateX(-50%);
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(26, 102, 224, 0.4), transparent);
  }
  .approche-section-num--dark::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
  }
}


/* ============================================================
   AWARDS SECTION (Home [05C]), Récompenses
   ============================================================ */
.section--awards {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
  background: var(--bg);
}
.awards {
  max-width: 1400px;
  margin: 0 auto;
}
.awards__header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: end;
  padding-bottom: clamp(48px, 6vw, 72px);
  margin-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}
.awards__header-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.awards__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.awards__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -.04em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.awards__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.awards__header-right {
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.awards__sub {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.7);
  margin: 0;
  max-width: 400px;
}
.awards__count {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.awards__count-num {
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -.04em;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.awards__count-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.6);
}
@media (max-width: 900px) {
  .awards__header { grid-template-columns: 1fr; }
}

.awards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 900px) {
  .awards__grid { grid-template-columns: 1fr; }
}

.award-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(10, 14, 26, 0.12);
}
.award-card--gold {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255, 215, 0, 0.03) 100%);
  border-color: rgba(255, 215, 0, 0.25);
}
.award-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.award-card__year {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(10, 14, 26, 0.55);
}
.award-card__rank {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 3px;
}
.award-card__rank--gold {
  background: linear-gradient(135deg, #c9a227 0%, #f5d061 100%);
  color: #423308;
}
.award-card__rank--silver {
  background: linear-gradient(135deg, #8a8a8a 0%, #c8c8c8 100%);
  color: #2a2a2a;
}
.award-card__medal {
  color: rgba(255, 215, 0, 0.8);
  margin: 4px 0;
}
.award-card__medal--silver {
  color: rgba(160, 160, 160, 0.8);
}
.award-card__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.award-card__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.award-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.72);
  margin: 0;
}
.award-card__foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.award-card__client {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.55);
}
.award-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  width: fit-content;
}
.award-card__link svg {
  transition: transform 0.3s var(--ease);
}
.award-card__link:hover svg {
  transform: translateX(3px);
}

.awards__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line);
}
.awards__footer-line {
  display: none;
}
.awards__footer-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(10, 14, 26, 0.55);
}
.awards__footer-text a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ============================================================
   CASE DETAIL, Sticky Sidebar TOC
   ============================================================ */
.case-detail-v2__body--with-toc {
  display: grid !important;
  grid-template-columns: 240px 1fr !important;
  gap: clamp(40px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 1000px) {
  .case-detail-v2__body--with-toc {
    grid-template-columns: 1fr !important;
  }
  .case-toc { display: none !important; }
}
.case-toc {
  position: relative;
}
.case-toc__sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.case-toc__block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-toc__label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}
.case-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-toc__link {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0 8px 14px;
  text-decoration: none;
  color: rgba(10, 14, 26, 0.6);
  border-left: 1px solid var(--line);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.case-toc__link:hover {
  color: var(--ink);
}
.case-toc__link.is-active {
  color: var(--blue);
  border-left-color: var(--blue);
  transform: translateX(2px);
}
.case-toc__link-num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(10, 14, 26, 0.4);
}
.case-toc__link.is-active .case-toc__link-num {
  color: var(--blue);
}
.case-toc__link-text {
  font-size: 13px;
  font-weight: 500;
}
.case-toc__metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.case-toc__metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.case-toc__metric-num {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.02em;
  font-weight: 500;
  font-style: italic;
  color: var(--blue);
}
.case-toc__metric-label {
  font-size: 11px;
  color: rgba(10, 14, 26, 0.6);
  line-height: 1.3;
}
.case-toc__block--cta {
  padding: 16px;
  background: var(--blue-tint);
  border: 1px solid var(--blue-soft);
  border-radius: 4px;
}
.case-toc__cta-label {
  font-size: 12px;
  color: rgba(10, 14, 26, 0.7);
  margin-bottom: 4px;
  display: block;
}
.case-toc__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
}
.case-detail-v2__body-main {
  min-width: 0;
}

/* ============================================================
   CONTACT, Fake calendar + multi-channels
   ============================================================ */
.contact-side__block--calendar {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.contact-calendar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.contact-calendar__month {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
}
.contact-calendar__nav {
  display: flex;
  gap: 4px;
}
.contact-calendar__nav-btn {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(10, 14, 26, 0.55);
  transition: background 0.2s ease, color 0.2s ease;
}
.contact-calendar__nav-btn:hover {
  background: var(--blue-tint);
  color: var(--blue);
}
.contact-calendar__week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.contact-calendar__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.contact-calendar__day:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}
.contact-calendar__day--active {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}
.contact-calendar__day-name {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 9px;
  letter-spacing: .12em;
  opacity: 0.7;
}
.contact-calendar__day-num {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.02em;
}
.contact-calendar__day-slots {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .02em;
  text-align: center;
  line-height: 1;
}
.contact-calendar__day-slots--full {
  color: rgba(10, 14, 26, 0.4);
}
.contact-calendar__slots {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: var(--bg-2);
  border-radius: 6px;
}
.contact-calendar__slots-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}
.contact-calendar__slots-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.contact-calendar__slot {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}
.contact-calendar__slot:hover:not(:disabled) {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}
.contact-calendar__slot--taken {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}
.contact-calendar__slot--taken span {
  font-size: 9px;
  display: block;
  opacity: 0.7;
}
.contact-calendar__note {
  font-size: 11px;
  color: rgba(10, 14, 26, 0.55);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* Multi-channels */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.contact-channel:hover {
  border-color: var(--blue);
  transform: translateX(2px);
  background: var(--blue-tint);
}
.contact-channel__icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.contact-channel:hover .contact-channel__icon {
  background: var(--blue);
  color: #ffffff;
}
.contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-channel__label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}
.contact-channel__value {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}


/* ============================================================
   HERO, Typographic mask reveal on each word (Pass 33)
   ============================================================ */
.hero__title-v2 .word {
  display: inline-block;
  vertical-align: top;
  position: relative;
  /* Add padding to give room to descenders (g, q, j, p, y, ç)
     so we can still clip the mask reveal without cutting the letters */
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}
.hero__title-v2 .word::after {
  content: '';
  position: absolute;
  /* Mask covers only the letter area, not the descender padding zone */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0.15em;
  background: var(--bg);
  transform-origin: right center;
  transform: scaleX(1);
  pointer-events: none;
}
.hero--v2.in .hero__title-v2 .word::after {
  animation: hero-word-mask 1.1s cubic-bezier(0.7, 0, 0.2, 1) forwards;
}
.hero--v2.in .hero__title-v2 .word:nth-child(1)::after { animation-delay: 0.1s; }
.hero--v2.in .hero__title-v2 .word:nth-child(2)::after { animation-delay: 0.3s; }
.hero--v2.in .hero__title-v2 .word:nth-child(3)::after { animation-delay: 0.5s; }
@keyframes hero-word-mask {
  0% { transform: scaleX(1); transform-origin: right center; }
  50% { transform: scaleX(0); transform-origin: right center; }
  50.001% { transform: scaleX(0); transform-origin: left center; }
  100% { transform: scaleX(0); transform-origin: left center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__title-v2 .word::after {
    animation: none;
    display: none;
  }
}

/* ============================================================
   MANIFESTO, Highlight underline (Pass 33)
   ============================================================ */
.manifesto-light__hl--underline {
  position: relative;
  display: inline-block;
}
.manifesto-light__hl--underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 6px;
  background: var(--blue);
  opacity: 0.18;
  z-index: -1;
  transform-origin: left center;
  animation: hl-grow 1.2s cubic-bezier(0.7, 0, 0.2, 1) 0.8s forwards;
  transform: scaleX(0);
}
@keyframes hl-grow {
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .manifesto-light__hl--underline::after {
    animation: none;
    transform: scaleX(1);
  }
}

/* ============================================================
   BLOG FEATURED, subtle parallax on giant 01 number (Pass 33)
   ============================================================ */
.blog-featured__visual-num-big {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-featured__link:hover .blog-featured__visual-num-big {
  transform: translateY(-6px);
}
.blog-featured__link:hover .blog-featured__visual-num-em {
  transform: translateY(-2px);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   GLOBAL POLISH (Pass 33)
   ============================================================ */
/* Smoother scroll anchor offset (account for sticky nav) */
html {
  scroll-padding-top: 80px;
}

/* Accessibility focus - uses box-shadow so it respects element's own border-radius */
*:focus {
  outline: none;
}
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 102, 224, 0.35);
  transition: box-shadow 0.15s ease;
}
/* Buttons inside dark sections use white focus ring for contrast */
.page-cta *:focus-visible,
.cta-v3 *:focus-visible,
.section--dark *:focus-visible,
.collective-stats *:focus-visible,
.newsletter-final *:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}
/* Forms inputs : keep a subtle inset focus, not outset (avoid layout shift) */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  box-shadow: 0 0 0 3px rgba(26, 102, 224, 0.18);
}

/* Smoother transitions for hover lift on award cards */
.award-card {
  transform: translateZ(0);
  will-change: transform;
}

/* Section rail, when over awards (white bg), keep blue mode */
.section--awards {
  position: relative;
}

/* Tiny refinement: make the section markers fade-in slightly on first paint */
.section-marker {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.section-marker.is-in,
.section-marker[data-reveal].is-in,
section.is-in .section-marker {
  opacity: 1;
  transform: translateX(0);
}
/* Fallback: if reveal class never fires, ensure visibility after 2s */
@keyframes section-marker-fallback {
  to { opacity: 1; transform: translateX(0); }
}
.section-marker {
  animation: section-marker-fallback 0.6s ease 2s forwards;
}


/* ============================================================
   POLISH PASS 34
   ============================================================ */

/* Work card refined hover - more elegance */
.work-card,
.case {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset section-marker fade-in fallback timing - it was too long */
.section-marker {
  animation-delay: 0.5s !important;
}

/* Nav dropdown polish */
.nav__dropdown-menu {
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.3s;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  transition-delay: 0s;
}

/* Slightly increase the rail num/name typography weight in active state */
.section-rail__tick.is-active .section-rail__num {
  font-weight: 600 !important;
}

/* Awards section: subtle entry refinement */
.section--awards .award-card {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}
.section--awards .award-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
}
.section--awards .award-card:hover.award-card--gold {
  border-color: rgba(255, 215, 0, 0.6);
}

/* The blog-featured visual has a subtle hover-only animation - keep it crisp */
.blog-featured__link {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Manifesto highlight: ensure the underline doesn't overflow on resize */
.manifesto-light__hl--underline::after {
  z-index: 0;
}
.manifesto-light__hl--underline {
  z-index: 1;
}

/* Pilotage card accent: tiny refinement */
.pilotage-card--accent {
  box-shadow: 0 8px 24px -12px rgba(26, 102, 224, 0.3);
}

/* Slight refinement: section marker [06] (Awards) doesn't get a dark variant - good as-is */

/* The contact calendar slots could be more interactive */
.contact-calendar__slot:not(:disabled) {
  position: relative;
  overflow: hidden;
}
.contact-calendar__slot:not(:disabled)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.contact-calendar__slot:not(:disabled):hover::after {
  transform: translateX(100%);
}


/* ============================================================
   /AGENCE PAGE, Surgical rewrite (Pass 36)
   ============================================================ */
.agence-header__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 92px) !important;
  line-height: 0.98 !important;
  letter-spacing: -.04em !important;
  font-weight: 500;
  margin: 0 0 32px !important;
  max-width: 1200px;
}
.agence-header__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.agence-header__sub {
  font-size: clamp(17px, 1.45vw, 22px) !important;
  line-height: 1.5 !important;
  color: rgba(10, 14, 26, 0.78) !important;
  max-width: 820px;
  margin-bottom: 48px !important;
}
.agence-header__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 1200px;
}
@media (max-width: 800px) {
  .agence-header__meta { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.agence-header__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 24px;
}
.agence-header__meta-item:not(:last-child) {
  border-right: 1px solid var(--line);
}
@media (max-width: 800px) {
  .agence-header__meta-item { border-right: none !important; padding-right: 0; }
}
.agence-header__meta-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}
.agence-header__meta-value {
  font-family: var(--f-display);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.25;
}

/* ============================================================
   AGENCE, Header signature line (remplace la grille meta)
   ============================================================ */
.agence-header__signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 40px);
  padding-top: clamp(20px, 2.5vw, 32px);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  max-width: 1200px;
}
.agence-header__signature-mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex: 0 0 auto;
}
.agence-header__signature-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.agence-header__signature-sep {
  color: rgba(10, 14, 26, 0.3);
  font-size: 12px;
}
.agence-header__signature-value {
  font-family: var(--f-display);
  font-size: clamp(14px, 1.15vw, 16px);
  color: var(--ink);
  letter-spacing: -.005em;
}



/* ============================================================
   AGENCE, Convictions (Manifesto éditorial, ton agence premium)
   ============================================================ */

.section--convictions {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.convictions {
  max-width: 1240px;
  margin: 0 auto;
}
.convictions__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.0;
  color: var(--ink);
  margin: 0 0 28px;
}
.convictions__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.convictions__intro {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(10, 14, 26, 0.72);
  margin: 0 0 clamp(64px, 8vw, 96px);
  max-width: 720px;
}

/* Liste des convictions */
.convictions__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.conviction {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.conviction:last-child {
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .conviction {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }
}

/* Rail gauche (numéro + tag empilés) */
.conviction__rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 100px;
}
@media (max-width: 900px) {
  .conviction__rail {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-bottom: 8px;
  }
}
.conviction__num {
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--blue);
}
.conviction__tag {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
  padding-top: 8px;
  border-top: 1px solid var(--line);
  display: inline-block;
}
@media (max-width: 900px) {
  .conviction__tag {
    padding-top: 0;
    border-top: none;
  }
}

/* Contenu droite */
.conviction__content {
  display: flex;
  flex-direction: column;
}
.conviction__title {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 24px;
}
.conviction__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.conviction__lead {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 720px;
}
.conviction__body {
  font-size: clamp(15px, 1.1vw, 16.5px);
  line-height: 1.65;
  color: rgba(10, 14, 26, 0.68);
  margin: 0;
  max-width: 720px;
}

/* Signature footer */
.convictions__signature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(32px, 4vw, 48px);
  max-width: 880px;
}
.convictions__signature-mark {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--blue);
  line-height: 1;
  flex: 0 0 auto;
  padding-top: 4px;
}
.convictions__signature-text {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.5vw, 22px);
  font-style: italic;
  color: var(--ink);
  letter-spacing: -.015em;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}


/* ============================================================
   AGENCE, Recruit (bloc sobre éditorial)
   ============================================================ */

.section--recruit {
  padding: clamp(72px, 9vw, 120px) clamp(24px, 4vw, 48px);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.recruit {
  max-width: 1240px;
  margin: 0 auto;
}
.recruit__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .recruit__inner { grid-template-columns: 1fr; gap: 40px; }
}

.recruit__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.0;
  color: var(--ink);
  margin: 0 0 20px;
}
.recruit__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.recruit__body {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: rgba(10, 14, 26, 0.72);
  margin: 0;
  max-width: 540px;
}

/* Right column : profil + email */
.recruit__profile {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.recruit__profile li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.recruit__profile-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}
.recruit__profile-value {
  font-family: var(--f-display);
  font-size: clamp(14px, 1.05vw, 16px);
  color: var(--ink);
  letter-spacing: -.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.recruit__profile-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(26, 102, 224, 0.5);
  animation: recruit-pulse 2s ease-in-out infinite;
}
@keyframes recruit-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 102, 224, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(26, 102, 224, 0); }
}
.recruit__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-family: var(--f-display);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: 100%;
  justify-content: space-between;
  transition: padding 0.3s var(--ease), color 0.3s ease;
}
.recruit__link:hover {
  padding-left: 8px;
}
.recruit__link-arrow {
  font-family: var(--f-display);
  font-size: 20px;
  transition: transform 0.3s var(--ease);
}
.recruit__link:hover .recruit__link-arrow {
  transform: translateX(6px);
}



/* ============================================================
   AGENCE, Collective v3 (réseau d'experts + recrutement intégré, ton agence)
   ============================================================ */

.collective-v3__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0 0 28px;
  color: var(--bg);
}
.collective-v3__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
  opacity: 1;
}
.collective-v3__intro {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
  margin: 0 0 clamp(56px, 7vw, 88px);
}

/* Stats compactes */
.collective-v3__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: clamp(56px, 7vw, 96px);
}
@media (max-width: 700px) {
  .collective-v3__stats { grid-template-columns: 1fr; gap: 24px; }
}
.collective-v3-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.collective-v3-stat__value {
  font-family: var(--f-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 0.9;
  color: var(--bg);
}
.collective-v3-stat__value span {
  color: var(--blue);
  font-style: italic;
  font-weight: 400;
  font-size: 0.55em;
  letter-spacing: -.02em;
  padding-left: 4px;
}
.collective-v3-stat__label {
  font-family: var(--f-display);
  font-size: clamp(13px, 1.05vw, 15px);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -.005em;
  line-height: 1.4;
  max-width: 320px;
}

/* 2 colonnes : disciplines + parcours */
.collective-v3__cols {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 96px);
  margin-bottom: clamp(64px, 8vw, 96px);
}
@media (max-width: 900px) {
  .collective-v3__cols { grid-template-columns: 1fr; gap: 48px; }
}

.collective-v3__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.collective-v3__col-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.collective-v3__col-num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--blue);
  font-weight: 500;
}
.collective-v3__col-title {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--bg);
  margin: 0;
}

/* Disciplines list */
.collective-v3__disciplines {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.collective-v3__disciplines li {
  font-family: var(--f-display);
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255,255,255,0.82);
  letter-spacing: -.005em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  padding-left: 18px;
  transition: padding-left 0.3s var(--ease), color 0.3s ease;
}
.collective-v3__disciplines li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.collective-v3__disciplines li:hover {
  padding-left: 22px;
  color: var(--bg);
}
.collective-v3__disciplines li:last-child {
  border-bottom: none;
}

/* Parcours pills */
.collective-v3__col-desc {
  font-family: var(--f-display);
  font-size: clamp(14px, 1.1vw, 16px);
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin: 0;
  letter-spacing: -.005em;
}
.collective-v3__pills-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}
.collective-v3__pills-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.collective-v3__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.collective-v3__pill {
  font-family: var(--f-display);
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(255,255,255,0.85);
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  letter-spacing: -.005em;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.collective-v3__pill:hover {
  border-color: var(--blue);
  color: var(--bg);
  background: rgba(26, 102, 224, 0.15);
}

.collective-v3__proof {
  margin-top: clamp(24px, 3vw, 32px);
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.collective-v3__proof-line {
  font-family: var(--f-display);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin-bottom: 10px;
}
.collective-v3__proof-note {
  font-family: var(--f-display);
  font-size: clamp(11px, .85vw, 13px);
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  max-width: 600px;
}

/* Recruit intégré en bas */
.collective-v3__recruit {
  margin-top: clamp(48px, 6vw, 64px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.collective-v3__recruit-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .collective-v3__recruit-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.collective-v3__recruit-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.collective-v3__recruit-kicker {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.collective-v3__recruit-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.2;
  color: var(--bg);
  margin: 0;
}
.collective-v3__recruit-title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.collective-v3__recruit-body {
  font-family: var(--f-display);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 0;
  max-width: 540px;
}
.collective-v3__recruit-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  text-decoration: none;
  color: var(--bg);
  font-family: var(--f-display);
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: -.005em;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s var(--ease);
  width: 100%;
  max-width: 320px;
}
.collective-v3__recruit-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  padding-left: 28px;
}
.collective-v3__recruit-link svg {
  flex: 0 0 auto;
  transition: transform 0.3s var(--ease);
}
.collective-v3__recruit-link:hover svg {
  transform: translateX(4px);
}



/* ============================================================
   /APPROCHE PAGE, Surgical rewrite (Pass 37)
   ============================================================ */

/* Header refinement */
.approche-header__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.5vw, 84px) !important;
  line-height: 0.98 !important;
  letter-spacing: -.04em !important;
  font-weight: 500;
  margin: 0 0 32px !important;
  max-width: 1200px;
}
.approche-header__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.approche-header__sub {
  font-size: clamp(16px, 1.35vw, 19px) !important;
  line-height: 1.6 !important;
  color: rgba(10, 14, 26, 0.78) !important;
  max-width: 820px;
  margin: 0 0 48px !important;
}

/* Header nav of section anchors */
.approche-header__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 1200px;
}
@media (max-width: 800px) {
  .approche-header__nav { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .approche-header__nav { grid-template-columns: 1fr; }
}
.approche-header__nav-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 24px 16px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.25s ease, padding-left 0.3s ease;
}
.approche-header__nav-item:hover {
  background: var(--blue-tint);
  padding-left: 12px;
}
@media (max-width: 800px) {
  .approche-header__nav-item:nth-child(2n) { border-right: none; }
}
@media (min-width: 801px) {
  .approche-header__nav-item:nth-child(3n) { border-right: none; }
}
.approche-header__nav-num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--blue);
  font-weight: 500;
}
.approche-header__nav-label {
  font-family: var(--f-display);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.015em;
  line-height: 1.2;
}

/* Vision lead paragraph */
.approche-vision__lead {
  font-size: clamp(18px, 1.5vw, 22px) !important;
  line-height: 1.45 !important;
  color: var(--ink) !important;
  font-weight: 400 !important;
  letter-spacing: -.005em;
  margin-bottom: 28px !important;
}

/* Smooth scroll for anchor nav */
html {
  scroll-behavior: smooth;
}


/* ============================================================
   MOBILE REFINEMENTS for new sections (Pass 38)
   ============================================================ */
@media (max-width: 700px) {
  /* Agence header meta - reduce padding */
  .agence-header__meta-item {
    padding-right: 16px !important;
    gap: 4px !important;
  }
  .agence-header__meta-label {
    font-size: 9px !important;
  }
  .agence-header__meta-value {
    font-size: 13px !important;
  }

  /* Constat long - smaller padding mobile */
  .section--constat-long {
    padding: 56px 20px !important;
  }
  .constat-long__pullquote {
    padding: 18px 0 18px 20px !important;
    font-size: 18px !important;
  }
  .constat-long__lead {
    font-size: 18px !important;
  }

  /* Refusal v2 - smaller items mobile */
  .refusal-v2-item {
    padding: 20px 0 !important;
  }
  .refusal-v2-item__mark {
    font-size: 22px !important;
  }
  .refusal-v2-item__title {
    font-size: 16px !important;
  }
  .refusal-v2-item__desc {
    font-size: 13px !important;
  }
  .refusal-v2__footer-text {
    font-size: 15px !important;
  }

  /* Approche header nav - compact */
  .approche-header__nav-item {
    padding: 14px 16px 14px 0 !important;
  }
  .approche-header__nav-num {
    font-size: 10px !important;
  }
  .approche-header__nav-label {
    font-size: 14px !important;
  }

  /* Process cards - simpler stack */
  .process-card__title {
    font-size: 20px !important;
  }
}

/* ============================================================
   COLLECTIVE v2 - logo wall (Pass 38)
   ============================================================ */
.collective-v2 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 900px) {
  .collective-v2 { grid-template-columns: 1fr; gap: 40px; }
}

.collective-v2__block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.collective-v2__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.collective-v2__head-num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--blue);
  font-weight: 500;
}
.collective-v2__head-title {
  font-family: var(--f-display) !important;
  font-size: clamp(18px, 1.6vw, 22px) !important;
  font-weight: 500 !important;
  color: var(--bg) !important;
  letter-spacing: -.015em !important;
  margin: 0 !important;
  text-transform: none !important;
  border: none !important;
  padding: 0 !important;
}

/* Expertises - clean rows */
.collective-v2__expertises {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.expertise-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.expertise-row:last-child {
  border-bottom: none;
}
.expertise-row__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(26, 102, 224, 0.15);
}
.expertise-row__text {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* Background groups (logo wall) */
.collective-v2__background {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.background-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.background-group__label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}
.background-group__items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.background-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-display);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  letter-spacing: -.01em;
  transition: all 0.3s ease;
  cursor: default;
}
.background-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.background-pill--accent {
  background: rgba(26, 102, 224, 0.12);
  border-color: rgba(26, 102, 224, 0.3);
  color: rgba(255, 255, 255, 0.95);
}
.background-pill--accent:hover {
  background: rgba(26, 102, 224, 0.2);
  border-color: var(--blue);
}


/* ============================================================
   PAGE CTA, Editorial CTA component for sub-pages (Pass 39)
   ============================================================ */
.page-cta {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
  background: var(--blue-darkest, #062c80);
  color: var(--bg);
  overflow: hidden;
  isolation: isolate;
}

/* Background massive text */
.page-cta__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 clamp(24px, 4vw, 48px);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-cta__bg-text span {
  font-family: var(--f-display);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -.05em;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}
.page-cta__bg-text--italic {
  font-style: italic;
  color: rgba(255, 255, 255, 0.06) !important;
  margin-top: -20px;
  margin-left: 80px;
}
@media (max-width: 700px) {
  .page-cta__bg-text--italic { margin-left: 24px; }
}

/* Inner content */
.page-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 72px);
}

/* Marker */
.page-cta__marker {
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-cta__marker-num {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.page-cta__marker-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.page-cta__marker-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  max-width: 400px;
}

/* Hero */
.page-cta__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: end;
}
@media (max-width: 900px) {
  .page-cta__hero { grid-template-columns: 1fr; gap: 32px; }
}
.page-cta__title {
  font-family: var(--f-display);
  font-size: clamp(44px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -.045em;
  font-weight: 500;
  margin: 0;
  color: var(--bg);
}
.page-cta__title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

/* Pitch column */
.page-cta__pitch {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 16px;
}
.page-cta__pitch-text {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 540px;
}
.page-cta__pitch-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 600px) {
  .page-cta__pitch-meta { grid-template-columns: 1fr; gap: 16px; }
}
.page-cta__pitch-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 16px;
}
.page-cta__pitch-meta-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 600px) {
  .page-cta__pitch-meta-item { border-right: none !important; }
}
.page-cta__pitch-meta-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.page-cta__pitch-meta-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--bg);
  letter-spacing: -.005em;
  line-height: 1.3;
}

/* Actions */
.page-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.page-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 60px;
  padding: 0 32px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.page-cta__btn--primary {
  background: var(--bg);
  color: var(--ink);
  padding-right: 8px;
}
.page-cta__btn--primary:hover {
  transform: translateY(-2px);
  background: var(--bg-2);
}
.page-cta__btn--primary .page-cta__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--bg);
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
  flex: 0 0 auto;
}
.page-cta__btn--primary:hover .page-cta__btn-arrow {
  transform: translateX(3px);
}
.page-cta__btn--secondary {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.page-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .page-cta__title { font-size: clamp(36px, 9vw, 60px) !important; }
  .page-cta__pitch-text { font-size: 15px !important; }
}

/* ============================================================
   APPROCHE PAGE, Specific variant adjustments
   ============================================================ */
.page-cta--approche {
  background: linear-gradient(135deg, #0d4cb8 0%, #1a66e0 50%, #062c80 100%);
}
.page-cta--agence {
  background: linear-gradient(135deg, #062c80 0%, #0d4cb8 60%, #062c80 100%);
}


/* ============================================================
   ARTICLE HERO VISUAL, Editorial composition (Pass 40)
   ============================================================ */
.article-v2__visual--editorial {
  background: var(--bg) !important;
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: clamp(28px, 3vw, 48px) !important;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 480px;
}
.article-v2__visual--editorial::before {
  content: '';
  position: absolute;
  top: clamp(28px, 3vw, 48px);
  bottom: clamp(28px, 3vw, 48px);
  left: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--blue), transparent 75%);
  opacity: 0.3;
}

.article-v2__visual-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.55);
}
.article-v2__visual-id {
  color: var(--blue);
}
.article-v2__visual-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-blue 2s ease-in-out infinite;
}
@keyframes pulse-blue {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.article-v2__visual-num-big {
  font-family: var(--f-display);
  font-size: clamp(140px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: -.06em;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  margin: clamp(20px, 3vw, 32px) 0;
  color: var(--ink);
}
.article-v2__visual-num-bg {
  color: rgba(10, 14, 26, 0.12);
  font-style: italic;
}
.article-v2__visual-num-fg {
  color: var(--blue);
  font-style: italic;
}

.article-v2__visual-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid var(--line);
}
.article-v2__visual-cat-line {
  width: 32px;
  height: 1px;
  background: var(--blue);
}
.article-v2__visual-cat-text {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}

.article-v2__visual-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.55);
}
.article-v2__visual-foot-label {
  color: var(--blue);
  font-weight: 500;
}
.article-v2__visual-foot-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Hide the old visual elements that are now obsolete */
.article-v2__visual--editorial .article-v2__visual-num,
.article-v2__visual--editorial .article-v2__visual-tag {
  display: none !important;
}

/* ============================================================
   FOOTER SIGNATURE + BUILD STATUS (Pass 40)
   ============================================================ */
.footer__signature {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: clamp(48px, 6vw, 72px);
}
@media (max-width: 800px) {
  .footer__signature {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.footer__signature-rail {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__signature-rail-mark {
  width: 24px;
  height: 2px;
  background: var(--blue);
}
.footer__signature-rail-text {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.footer__signature-text {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.5;
  letter-spacing: -.015em;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 900px;
  font-weight: 400;
}
.footer__signature-text em {
  font-style: italic;
  color: var(--blue);
  font-weight: 500;
}

/* Footer bottom right enrichi avec build status */
.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__build-label {
  color: rgba(255, 255, 255, 0.35);
}
.footer__build-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 4px;
  color: #4ade80;
  font-weight: 500;
}
.footer__build-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@media (max-width: 700px) {
  .footer__bottom-right {
    margin-top: 12px;
    flex-wrap: wrap;
  }
}


/* ============================================================
   /CONTACT HEADER, Upgrade (Pass 41)
   ============================================================ */
.contact-header__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 92px) !important;
  line-height: 0.98 !important;
  letter-spacing: -.04em !important;
  font-weight: 500;
  margin: 0 0 32px !important;
  max-width: 1200px;
}
.contact-header__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.contact-header__sub {
  font-size: clamp(16px, 1.35vw, 19px) !important;
  line-height: 1.6 !important;
  color: rgba(10, 14, 26, 0.78) !important;
  max-width: 820px;
  margin: 0 0 48px !important;
}
.contact-header__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 1200px;
}
@media (max-width: 800px) {
  .contact-header__meta { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 500px) {
  .contact-header__meta { grid-template-columns: 1fr; }
}
.contact-header__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 24px;
}
.contact-header__meta-item:not(:last-child) {
  border-right: 1px solid var(--line);
}
@media (max-width: 800px) {
  .contact-header__meta-item { border-right: none !important; padding-right: 0; }
}
.contact-header__meta-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}
.contact-header__meta-value {
  font-family: var(--f-display);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.25;
}
.contact-header__meta-value--link {
  color: var(--blue) !important;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  width: fit-content;
  padding-bottom: 2px;
}

/* ============================================================
   /BLOG and /WORK header subs polish (Pass 41)
   ============================================================ */
.blog-header__sub,
.work-header__sub {
  font-size: clamp(16px, 1.35vw, 19px) !important;
  line-height: 1.55 !important;
  color: rgba(10, 14, 26, 0.78) !important;
  max-width: 820px !important;
}


/* ============================================================
   COMPREHENSIVE RESPONSIVE OVERHAUL, Pass 42
   ============================================================ */

/* ===== Universal sizing rules ===== */
@media (max-width: 1100px) {
  /* Section rail disappears */
  .section-rail { display: none !important; }
  /* All sections : reduce horizontal padding */
  .section { padding-left: clamp(20px, 4vw, 32px); padding-right: clamp(20px, 4vw, 32px); }
}

/* ============================================================
   ≤ 900px - Tablet portrait
   ============================================================ */
@media (max-width: 900px) {

  /* === HERO === */
  .hero__top, .hero__top--v2 { 
    grid-template-columns: 1fr !important; 
    gap: 12px !important;
  }
  .hero__main { padding: 60px 24px 40px !important; }
  .hero__title-v2 { 
    font-size: clamp(36px, 8vw, 64px) !important; 
    line-height: 1.05 !important;
  }
  .hero__lede { 
    font-size: clamp(15px, 1.4vw, 18px) !important;
    max-width: 100% !important;
  }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__bottom { padding: 0 24px 40px !important; }

  /* === MANIFESTO === */
  .manifesto-light__inner,
  .manifesto-light__inner--v2 {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .manifesto-v2-rail {
    position: static !important;
    flex-direction: row !important;
    align-items: baseline !important;
    gap: 14px !important;
    margin-bottom: 24px !important;
  }
  .manifesto-light__title {
    font-size: clamp(28px, 6vw, 44px) !important;
  }

  /* === THESIS (Jules) === */
  .section--thesis-v2 .thesis-home {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .section--thesis-v2 .thesis-home__photo-frame {
    max-width: 100% !important;
    max-height: 480px !important;
  }
  .section--thesis-v2 .thesis-home__body p {
    font-size: 16px !important;
  }

  /* === STATS V3 (blue) === */
  .stats-v3 { grid-template-columns: 1fr 1fr !important; }
  .stats-v3__feature { grid-column: span 2 !important; }

  /* === WORK FILTERS === */
  .work-filters-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .work-filters-section__head {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }
  .work-filters-section__counter {
    font-size: 10px !important;
  }

  /* === VISUALS MOCKUPS === */
  .visuals__header {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .visuals__title {
    font-size: clamp(32px, 8vw, 56px) !important;
  }
  .visuals__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  /* === SERVICES V3 === */
  .services-v3 { padding-top: 40px; }
  .services-v3__list-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 24px 0 !important;
  }
  .services-v3__list-row-title {
    font-size: clamp(24px, 5.5vw, 40px) !important;
  }
  .services-v3__list-row-meta {
    flex-direction: row !important;
    justify-content: space-between !important;
    margin-top: 0 !important;
  }

  /* === PROCESS V5 === */
  .process-v5__header {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .process-v5__timeline,
  .process-v5__timeline--lite {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .process-v5__timeline-line {
    display: none !important;
  }
  .process-v5-step {
    padding-bottom: 20px !important;
    border-bottom: 1px solid var(--line);
  }
  .process-v5-step:last-child { border-bottom: none; }
  .process-v5-step__num {
    font-size: 56px !important;
  }
  .process-v5-step__title {
    font-size: 22px !important;
  }
  .process-v5__footnote-text {
    font-size: 12px !important;
  }

  /* === CTA V3 (home) === */
  .cta-v3__hero {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    align-items: stretch !important;
  }
  .cta-v3__title {
    font-size: clamp(40px, 9vw, 80px) !important;
  }
  .cta-v3__pitch-meta {
    grid-template-columns: 1fr 1fr !important;
  }
  .cta-v3__bg-text span {
    font-size: clamp(80px, 22vw, 200px) !important;
  }

  /* === PAGE-CTA (sub-pages) === */
  .page-cta__hero {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .page-cta__title {
    font-size: clamp(40px, 9vw, 72px) !important;
  }
  .page-cta__pitch-meta {
    grid-template-columns: 1fr 1fr !important;
  }

  /* === FOOTER === */
  .footer__top {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .footer__nav {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
  .footer__signature {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* === /AGENCE HEADER === */
  .agence-header__title {
    font-size: clamp(36px, 7.5vw, 64px) !important;
  }
  .agence-header__sub {
    font-size: 17px !important;
  }
  .agence-header__meta {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
  .agence-header__meta-item {
    border-right: none !important;
    padding-right: 0 !important;
  }

  /* === CONSTAT-LONG === */
  .constat-long {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .constat-long__rail {
    position: static !important;
    flex-direction: row !important;
    align-items: baseline !important;
    gap: 14px !important;
  }
  .constat-long__title {
    font-size: clamp(28px, 6.5vw, 48px) !important;
  }
  .constat-long__pullquote {
    font-size: 20px !important;
    padding: 20px 0 20px 24px !important;
  }

  /* === FOR-WHOM-V2 === */
  .for-whom-v2__columns {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .for-whom-v2__title {
    font-size: clamp(30px, 7vw, 48px) !important;
  }

  /* === FOUNDER (Jules sur /agence) === */
  .founder {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .founder__img {
    max-width: 480px !important;
    margin: 0 auto !important;
  }
  .founder__name {
    font-size: clamp(36px, 8vw, 56px) !important;
  }

  /* === COLLECTIVE-V2 logo wall === */
  .collective-v2 {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .collective-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
  .collective-stat__value {
    font-size: clamp(40px, 8vw, 56px) !important;
  }
  .sectors-covered__list {
    flex-wrap: wrap !important;
  }

  /* === REFUSAL-V2 === */
  .refusal-v2__items {
    grid-template-columns: 1fr !important;
  }
  .refusal-v2-item:nth-child(odd) {
    border-right: none !important;
    padding-right: 0 !important;
  }
  .refusal-v2__title {
    font-size: clamp(28px, 6.5vw, 48px) !important;
  }

  /* === JOIN COLLECTIVE === */
  .join-collective__title {
    font-size: clamp(32px, 7vw, 52px) !important;
  }
  .join-collective__criteria {
    grid-template-columns: 1fr 1fr !important;
  }

  /* === /APPROCHE HEADER === */
  .approche-header__title {
    font-size: clamp(32px, 7vw, 56px) !important;
  }
  .approche-header__nav {
    grid-template-columns: 1fr 1fr !important;
  }
  .approche-header__nav-item:nth-child(3n) {
    border-right: 1px solid var(--line) !important;
  }
  .approche-header__nav-item:nth-child(2n) {
    border-right: none !important;
  }

  /* === APPROCHE-VISION === */
  .approche-vision {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .approche-vision__title {
    font-size: clamp(28px, 6.5vw, 48px) !important;
  }
  .approche-vision__lead {
    font-size: 18px !important;
  }

  /* === 3 MODÈLES === */
  .constat-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .constat-item__title {
    font-size: clamp(22px, 5vw, 32px) !important;
  }

  /* === 4 PILIERS === */
  .pillar-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 32px 0 !important;
  }
  .pillar-row__title {
    font-size: clamp(22px, 5vw, 32px) !important;
  }

  /* === METHOD 4 ETAPES (dark process cards) === */
  .process-cards-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .process-card {
    border-right: 1px solid rgba(255,255,255,.1) !important;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
  }
  .process-card:nth-child(2n) {
    border-right: none !important;
  }
  .process-card:nth-last-child(-n+2) {
    border-bottom: none !important;
  }
  .process-card__title {
    font-size: clamp(20px, 4.5vw, 28px) !important;
  }

  /* === PILOTAGE === */
  .pilotage-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  .pilotage-card {
    padding: 20px !important;
  }
  .pilotage-card__title {
    font-size: clamp(20px, 4.5vw, 26px) !important;
  }

  /* === APPROCHE-SAAS (obsolete styles, retained for safety) === */
  .approche-saas__grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .approche-saas__visual--dual {
    transform: none !important;
    min-height: auto !important;
  }
  .hub-view {
    width: 100% !important;
    transform: none !important;
  }
  .hub-view--kanban {
    transform: none !important;
    width: 100% !important;
    margin-left: 0 !important;
  }

  /* === /CONTACT HEADER === */
  .contact-header__title {
    font-size: clamp(36px, 7.5vw, 64px) !important;
  }
  .contact-header__sub {
    font-size: 17px !important;
  }
  .contact-header__meta {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
  .contact-header__meta-item {
    border-right: none !important;
    padding-right: 0 !important;
  }

  /* === CONTACT-SIDE === */
  .contact-section-v2 {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .contact-side {
    position: static !important;
  }

  /* === BLOG FEATURED === */
  .blog-featured__link {
    grid-template-columns: 1fr !important;
  }
  .blog-featured__visual--editorial {
    border-right: none !important;
    border-bottom: 1px solid var(--line) !important;
    min-height: 320px !important;
  }
  .blog-featured__title {
    font-size: clamp(28px, 6.5vw, 44px) !important;
  }

  /* === ARTICLE === */
  .article-v2__hero-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .article-v2__main-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .article-v2__toc {
    position: static !important;
    border-left: none !important;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
  .article-v2__hero-title {
    font-size: clamp(32px, 7vw, 56px) !important;
  }
  .article-v2__meta {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  .article-v2__visual--editorial {
    min-height: 360px !important;
  }
  .article-v2__visual-num-big {
    font-size: clamp(100px, 22vw, 180px) !important;
  }

  /* === CASE DETAIL === */
  .case-detail-v2__hero-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .case-detail-v2__hero-title {
    font-size: clamp(32px, 7vw, 56px) !important;
  }
  .case-detail-v2__body--with-toc {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .case-toc { display: none !important; }
}

/* ============================================================
   ≤ 700px - Mobile large
   ============================================================ */
@media (max-width: 700px) {

  /* === HERO === */
  .hero__main { padding: 40px 20px 32px !important; }
  .hero__title-v2 {
    font-size: clamp(34px, 9vw, 52px) !important;
  }
  .hero__lede {
    font-size: 15px !important;
  }
  .hero__status, .hero__location, .hero__clock {
    font-size: 10px !important;
  }

  /* === SECTION PADDING === */
  .section { padding-left: 20px !important; padding-right: 20px !important; }

  /* === STATS V3 === */
  .stats-v3 { grid-template-columns: 1fr !important; }
  .stats-v3__feature { grid-column: span 1 !important; }
  .stat-v3__value {
    font-size: clamp(40px, 14vw, 64px) !important;
  }

  /* === MANIFESTO === */
  .manifesto-light__title { font-size: clamp(28px, 7vw, 40px) !important; }
  .manifesto-light__row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .manifesto-light__num { font-size: 32px !important; }

  /* === VISUALS MOCKUPS === */
  .visuals__grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .visuals__foot {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }

  /* === BRIDGES === */
  .bridge__inner {
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding: 20px 16px !important;
  }
  .bridge__line { display: none !important; }
  .bridge__text {
    font-size: 11px !important;
  }

  /* === SECTION MARKERS === */
  .section-marker {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .section-marker__num, .section-marker__label {
    font-size: 10px !important;
  }
  .section-marker__line { display: none !important; }

  /* === SERVICES V3 === */
  .services-v3__list-row-title {
    font-size: clamp(22px, 6.5vw, 32px) !important;
  }
  .services-v3__list-row {
    padding: 20px 0 !important;
  }

  /* === PROCESS V5 LITE === */
  .process-v5__timeline--lite .process-v5-step__num { font-size: 42px !important; }
  .process-v5__timeline--lite .process-v5-step__title { font-size: 20px !important; }

  /* === CTA V3 === */
  .cta-v3 { padding: 60px 20px !important; }
  .cta-v3__title { font-size: clamp(36px, 11vw, 56px) !important; }
  .cta-v3__pitch-meta { grid-template-columns: 1fr !important; gap: 16px; }
  .cta-v3__pitch-meta-item { border-right: none !important; padding-right: 0 !important; }
  .cta-v3__actions { flex-direction: column; }
  .cta-v3__btn { width: 100%; justify-content: space-between; }

  /* === PAGE-CTA === */
  .page-cta { padding: 60px 20px !important; }
  .page-cta__title { font-size: clamp(36px, 11vw, 56px) !important; }
  .page-cta__pitch-meta { grid-template-columns: 1fr !important; gap: 16px; }
  .page-cta__pitch-meta-item { border-right: none !important; padding-right: 0 !important; }
  .page-cta__actions { flex-direction: column; }
  .page-cta__btn { width: 100%; justify-content: space-between; }

  /* === FOOTER === */
  .footer__inner { padding: 40px 20px 24px !important; }
  .footer__nav {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .footer__bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  .footer__bottom-right {
    flex-wrap: wrap;
    gap: 8px !important;
  }
  .footer__signature-text { font-size: 16px !important; }

  /* === /AGENCE === */
  .agence-header__title { font-size: clamp(32px, 8.5vw, 52px) !important; }
  .agence-header__sub { font-size: 16px !important; }
  .agence-header__meta { grid-template-columns: 1fr !important; gap: 20px !important; padding-top: 24px !important; }

  /* === CONSTAT-LONG === */
  .section--constat-long { padding: 60px 20px !important; }
  .constat-long__title { font-size: clamp(24px, 7vw, 40px) !important; }
  .constat-long__body p { font-size: 15px !important; }
  .constat-long__lead { font-size: 17px !important; }
  .constat-long__pullquote { font-size: 18px !important; padding: 16px 0 16px 20px !important; }

  /* === FOR-WHOM-V2 === */
  .section--for-whom-v2 { padding: 60px 20px !important; }
  .for-whom-v2__title { font-size: clamp(26px, 7vw, 40px) !important; }
  .for-whom-v2__col { padding: 24px !important; }
  .for-whom-v2__row-title { font-size: 16px !important; }
  .for-whom-v2__row-desc { font-size: 13px !important; }

  /* === FOUNDER === */
  .founder__name { font-size: clamp(32px, 9vw, 48px) !important; }
  .founder__bio p { font-size: 15px !important; }

  /* === MANIFESTO ABOUT (4 principes) === */
  .manifesto {
    padding: 24px 20px !important;
  }
  .manifesto__row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .manifesto__title {
    font-size: 18px !important;
  }
  .manifesto__num {
    font-size: 32px !important;
  }

  /* === COLLECTIVE === */
  .collective-stats { grid-template-columns: 1fr !important; }
  .collective-v2__head-title { font-size: 16px !important; }
  .expertise-row__text { font-size: 14px !important; }
  .background-pill { font-size: 13px !important; padding: 6px 12px !important; }

  /* === REFUSAL-V2 === */
  .section--refusal-v2 { padding: 60px 20px !important; }
  .refusal-v2__title { font-size: clamp(26px, 7vw, 40px) !important; }
  .refusal-v2-item {
    padding: 20px 0 !important;
    grid-template-columns: 32px 1fr !important;
  }
  .refusal-v2-item__mark { font-size: 22px !important; }
  .refusal-v2-item__title { font-size: 15px !important; }
  .refusal-v2__footer-text { font-size: 14px !important; }

  /* === JOIN COLLECTIVE === */
  .join-collective__title { font-size: clamp(28px, 8vw, 44px) !important; }
  .join-collective__criteria { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* === /APPROCHE === */
  .approche-header__title { font-size: clamp(28px, 8vw, 48px) !important; }
  .approche-header__nav { grid-template-columns: 1fr !important; }
  .approche-header__nav-item { border-right: none !important; }

  .approche-vision__title { font-size: clamp(24px, 7vw, 40px) !important; }
  .approche-vision__body p { font-size: 15px !important; }
  .approche-vision__lead { font-size: 16px !important; }

  /* === 3 MODÈLES === */
  .constat-item { padding: 24px !important; }
  .constat-item__title { font-size: clamp(20px, 5.5vw, 28px) !important; }
  .constat-item__body { font-size: 14px !important; }

  /* === 4 PILIERS === */
  .pillar-row { padding: 24px 0 !important; }
  .pillar-row__title { font-size: clamp(20px, 5.5vw, 28px) !important; }
  .pillar-row__body { font-size: 14px !important; }
  .pillar-row__num { font-size: 32px !important; }

  /* === PROCESS CARDS (dark) === */
  .process-cards-grid { grid-template-columns: 1fr !important; }
  .process-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
  }
  .process-card:last-child { border-bottom: none !important; }
  .process-card__title { font-size: 22px !important; }

  /* === PILOTAGE === */
  .pilotage-grid { grid-template-columns: 1fr !important; }
  .pilotage-card { padding: 20px !important; }

  /* === APPROCHE-SAAS HUB === */
  .hub-view__body { 
    flex-direction: column !important;
    height: auto !important;
  }
  .hub-sidebar { display: none !important; }
  .hub-main { padding: 12px !important; }
  .hub-stats, .hub-quick-stats { grid-template-columns: 1fr 1fr !important; }
  .hub-quick-stats { gap: 4px !important; }
  .hub-kanban { grid-template-columns: 1fr 1fr !important; }
  .hub-alerts { grid-template-columns: 1fr !important; }
  .hub-project-grid { grid-template-columns: 1fr !important; }

  /* === CONTACT === */
  .contact-header__title { font-size: clamp(28px, 8vw, 48px) !important; }
  .contact-header__sub { font-size: 16px !important; }
  .contact-header__meta { grid-template-columns: 1fr !important; gap: 20px !important; }

  .contact-fieldset__grid { grid-template-columns: 1fr !important; }
  .contact-form { padding: 20px !important; }
  .contact-fieldset {
    padding: 20px 0 !important;
  }
  .contact-fieldset__legend { gap: 8px !important; }

  .contact-steps__list {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .contact-step__line { display: none !important; }

  /* Calendar widget */
  .contact-calendar__week {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 4px !important;
  }
  .contact-calendar__day {
    padding: 8px 2px !important;
  }
  .contact-calendar__day-num { font-size: 14px !important; }
  .contact-calendar__day-slots { font-size: 8px !important; }
  .contact-calendar__slots-list { grid-template-columns: 1fr !important; gap: 4px; }

  /* === BLOG === */
  .blog-grid { grid-template-columns: 1fr !important; }
  .blog-card__title { font-size: 20px !important; }
  .blog-featured__title { font-size: clamp(24px, 7vw, 36px) !important; }
  .blog-featured__visual-num-big { font-size: clamp(100px, 26vw, 160px) !important; }
  .blog-featured__body { padding: 28px 20px !important; }
  .blog-featured__visual--editorial { padding: 24px 20px !important; min-height: 280px !important; }

  /* === ARTICLE === */
  .article-v2__hero { padding: 60px 20px 40px !important; }
  .article-v2__hero-title { font-size: clamp(28px, 8vw, 44px) !important; }
  .article-v2__hero-excerpt { font-size: 16px !important; }
  .article-v2__main { padding: 40px 20px !important; }
  .article-v2__body { font-size: 16px !important; }
  .article-v2__body h2 { font-size: 24px !important; }
  .article-v2__body h3 { font-size: 18px !important; }
  .article-v2__meta { grid-template-columns: 1fr 1fr !important; }
  .article-v2__visual--editorial { 
    min-height: 280px !important;
    padding: 20px !important;
  }
  .article-v2__visual-num-big { 
    font-size: clamp(80px, 28vw, 140px) !important;
    margin: 12px 0 !important;
  }
  .article-v2__id-bar { padding: 12px 20px !important; }

  /* === CASE DETAIL === */
  .case-detail-v2__hero { padding: 60px 20px 40px !important; }
  .case-detail-v2__hero-title { font-size: clamp(28px, 8vw, 44px) !important; }
  .case-detail-v2__hero-desc { font-size: 16px !important; }
  .case-detail-v2__id-bar { padding: 12px 20px !important; }
  .case-detail-v2__metrics { grid-template-columns: 1fr 1fr !important; }
  .case-detail-v2__body--with-toc {
    padding: 40px 20px !important;
  }
  .case-section { padding: 32px 0 !important; }
  .case-section__title { font-size: clamp(22px, 6vw, 32px) !important; }
  .case-section__body { font-size: 15px !important; }

  /* === LEGAL === */
  .legal-v2__grid { grid-template-columns: 1fr !important; }
  .legal-v2__toc { display: none !important; }

  /* === NEWSLETTER === */
  .newsletter-v3 { padding: 60px 20px !important; }
  .newsletter-v3__title { font-size: clamp(28px, 8vw, 44px) !important; }
  .newsletter-v3__form { flex-direction: column; gap: 12px; }
  .newsletter-v3__input { width: 100%; }
}

/* ============================================================
   ≤ 500px - Mobile petit (iPhone SE et plus petit)
   ============================================================ */
@media (max-width: 500px) {

  /* Tighten everything */
  .section { padding-left: 16px !important; padding-right: 16px !important; }

  /* Hero */
  .hero__main { padding: 32px 16px 24px !important; }
  .hero__title-v2 { font-size: clamp(30px, 10vw, 44px) !important; }
  .hero__bottom { padding: 0 16px 32px !important; }

  /* Manifesto */
  .manifesto-light__title { font-size: 26px !important; }

  /* Stats */
  .stat-v3__value { font-size: 48px !important; }
  .stat-v3__label { font-size: 12px !important; }

  /* Bridges - drastically simplified */
  .bridge { padding: 16px 12px !important; }
  .bridge__num { width: 28px; height: 28px; font-size: 12px !important; }
  .bridge__text { font-size: 10px !important; }
  .bridge__meta { font-size: 9px !important; }

  /* Footer */
  .footer__logo { font-size: 28px !important; }
  .footer__tagline { font-size: 14px !important; }
  .footer__col-title { font-size: 11px !important; }
  .footer__link { font-size: 13px !important; }

  /* Page headers - super compact */
  .page-header__bar { padding: 12px 16px !important; }
  .page-header__id { font-size: 10px !important; }
  .page-header { padding: 60px 16px 40px !important; }
  .page-header__eyebrow { font-size: 11px !important; }
  .page-header h1 { font-size: clamp(32px, 11vw, 48px) !important; }

  /* For agence/approche/contact heroes */
  .agence-header__title,
  .approche-header__title,
  .contact-header__title {
    font-size: clamp(28px, 10vw, 44px) !important;
  }

  /* Logo wall - pills smaller */
  .background-pill { 
    font-size: 12px !important;
    padding: 5px 10px !important;
  }

  /* Hub views */
  .hub-quick-stats { grid-template-columns: 1fr 1fr !important; gap: 4px !important; }
  .hub-qs-card { padding: 8px !important; }
  .hub-qs-card__value { font-size: 13px !important; }
  .hub-stats { grid-template-columns: 1fr 1fr !important; }
  .hub-kanban { grid-template-columns: 1fr !important; }

  /* Article visual */
  .article-v2__visual-num-big {
    font-size: clamp(72px, 30vw, 120px) !important;
  }

  /* Contact calendar - very compact */
  .contact-calendar__day-name { font-size: 8px !important; }
  .contact-calendar__day-slots { display: none !important; }
  .contact-calendar { padding: 16px !important; }

  /* Page-cta drastic */
  .page-cta { padding: 48px 16px !important; }
  .page-cta__title { font-size: clamp(32px, 12vw, 44px) !important; }

  /* CTA-v3 */
  .cta-v3 { padding: 48px 16px !important; }
  .cta-v3__title { font-size: clamp(32px, 12vw, 44px) !important; }
}

/* ============================================================
   GENERIC FIXES - apply everywhere
   ============================================================ */

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Tables/grids never overflow */
.section,
.page,
.hero,
.cta,
.footer {
  max-width: 100vw;
}

/* Touch targets ≥ 44px on mobile */
@media (pointer: coarse) {
  .btn, .nav__link, .footer__link, button, a.case-toc__link, .filter-btn,
  .contact-channel, .background-pill, .hub-project-tab {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .filter-btn {
    padding: 10px 14px !important;
  }
}

/* Reduce motion on small screens for performance */
@media (max-width: 700px) and (prefers-reduced-motion: no-preference) {
  /* Disable parallax on mobile (jank-prone) */
  .thesis-home__photo,
  .article-v2__visual--editorial,
  .blog-featured__visual--editorial {
    transform: none !important;
  }
  /* Keep animations short */
  * {
    animation-duration: 0.4s !important;
    transition-duration: 0.25s !important;
  }
}

/* iOS safe area bottom (for home indicator on iPhone) */
@supports (padding: max(0px)) {
  .footer {
    padding-bottom: max(24px, env(safe-area-inset-bottom)) !important;
  }
  .nav {
    padding-top: max(0px, env(safe-area-inset-top)) !important;
  }
}

/* Smaller scroll progress on mobile */
@media (max-width: 700px) {
  .scroll-progress { width: 1px !important; }
}


/* ============================================================
   RESPONSIVE PATCHES v42b
   ============================================================ */

/* Hero floating annotations - hide on tablet/mobile */
@media (max-width: 1100px) {
  .hero__annotation--left,
  .hero__annotation--right { display: none !important; }
}

/* Hero foot bar - reorganize */
@media (max-width: 900px) {
  .hero__foot {
    flex-wrap: wrap !important;
    gap: 16px !important;
    padding: 16px 24px !important;
  }
  .hero__foot-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }
  .hero__foot-label { font-size: 9px !important; }
  .hero__foot-value { font-size: 11px !important; }
}

@media (max-width: 500px) {
  .hero__foot {
    padding: 12px 16px !important;
    gap: 12px !important;
  }
  .hero__foot-item {
    flex: 1 1 100%;
  }
  .hero__top--v2 { padding: 12px 16px !important; }
  .hero__id { display: none; }
}

/* Logo marquee - keep working but smaller on mobile */
@media (max-width: 700px) {
  .logo-marquee { padding: 32px 0 !important; }
  .logo-marquee__track { gap: 32px !important; }
  .logo-marquee__item img,
  .logo-marquee__item svg { 
    height: 24px !important;
    width: auto !important;
  }
}

/* Scroll progress bar - consistent on mobile */
@media (max-width: 700px) {
  .scroll-progress {
    width: 1px;
  }
}

/* Make sure dropdown menu doesn't appear weird on touch */
@media (max-width: 980px) {
  .nav__dropdown-menu { display: none !important; }
}

/* Mobile menu links spacing */
@media (max-width: 700px) {
  .nav__mobile {
    padding: 80px 20px 40px !important;
  }
  .nav__mobile a {
    font-size: clamp(22px, 6vw, 32px) !important;
    padding: 10px 0 !important;
  }
}

/* Page transition - smaller on mobile */
@media (max-width: 700px) {
  .page-transition__logo {
    font-size: 28px !important;
  }
}

/* Custom cursor disabled on touch already - just ensure */
@media (pointer: coarse) {
  .custom-cursor,
  .custom-cursor-dot {
    display: none !important;
  }
}

/* Forms inputs - bigger touch area */
@media (max-width: 700px) {
  .field input,
  .field textarea,
  .field select {
    font-size: 16px !important; /* Prevents zoom on iOS */
    padding: 14px 16px !important;
  }
  .field label {
    font-size: 12px !important;
  }
}

/* Project hub mockup - make readable on mobile */
@media (max-width: 700px) {
  .hub-view__chrome-url { display: none !important; }
  .hub-view__chrome-tag { font-size: 8px !important; }
  .hub-project-hero { padding: 12px !important; }
  .hub-project-hero__title { font-size: 14px !important; }
  .hub-project-hero__sub { font-size: 9px !important; }
  .hub-project-hero__progress-label { font-size: 8px !important; }
  .hub-qs-card__icon { width: 18px !important; height: 18px !important; }
  .hub-qs-card__icon svg { width: 10px !important; height: 10px !important; }
}

/* Manifesto home rows - improve */
@media (max-width: 900px) {
  .manifesto-light__inner--v2 {
    gap: 32px !important;
  }
  .manifesto-light__row {
    grid-template-columns: 48px 1fr !important;
    gap: 16px !important;
  }
}

@media (max-width: 600px) {
  .manifesto-light__row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding-bottom: 24px !important;
  }
  .manifesto-light__num {
    margin-bottom: 0 !important;
  }
  .manifesto-light__detail {
    font-size: 13px !important;
  }
}

/* Case detail media gallery */
@media (max-width: 700px) {
  .case-detail-v2__media-gallery {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .case-detail-v2__media-item video,
  .case-detail-v2__media-item img {
    width: 100% !important;
    height: auto !important;
  }
}

/* Related cases on case detail */
@media (max-width: 700px) {
  .case-detail-v2__related-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Long content prose - improve readability */
@media (max-width: 700px) {
  .article-v2__body p {
    line-height: 1.65 !important;
  }
  .article-v2__body ul li,
  .article-v2__body ol li {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
  .article-v2__body blockquote {
    padding: 16px 20px !important;
    font-size: 16px !important;
  }
}

/* Brand strategy and other service pages - if they have grids */
@media (max-width: 900px) {
  .service-hero-v2 { padding: 60px 24px 40px !important; }
}
@media (max-width: 700px) {
  .service-hero-v2 { padding: 40px 20px 32px !important; }
}

/* Ensure all section markers in dark contexts stay readable */
@media (max-width: 700px) {
  .section--dark .section-marker__num,
  .section--dark .section-marker__label {
    font-size: 10px !important;
  }
}

/* Stats v3 inner padding */
@media (max-width: 700px) {
  .stats-v3 {
    padding: 40px 20px !important;
    gap: 0 !important;
  }
  .stats-v3__cell,
  .stats-v3__feature {
    padding: 20px 16px !important;
  }
  .stats-v3__footer {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: flex-start !important;
    padding: 16px 20px !important;
  }
}

/* Bridges - one more pass to ensure good look */
@media (max-width: 500px) {
  .bridge {
    padding: 14px 12px !important;
  }
  .bridge__inner {
    gap: 6px !important;
  }
  .bridge__meta {
    font-size: 8px !important;
  }
}


/* ============================================================
   ARTICLE HERO VISUAL FIX, back to horizontal banner (Pass 43)
   The editorial composition stays, but in landscape format
   ============================================================ */
.article-v2__visual--editorial {
  background: var(--bg) !important;
  aspect-ratio: 16 / 7 !important;
  min-height: 0 !important;
  padding: clamp(28px, 3.5vw, 56px) !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  grid-template-rows: auto 1fr auto !important;
  grid-template-areas:
    "bar bar bar"
    "left num right"
    "foot foot foot" !important;
  gap: clamp(16px, 2vw, 28px) !important;
  border: 1px solid var(--line) !important;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

/* Decorative vertical accent line on left */
.article-v2__visual--editorial::before {
  content: '';
  position: absolute;
  left: clamp(28px, 3.5vw, 56px);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--blue), transparent);
  opacity: 0.3;
  display: none; /* hide for cleaner look */
}

/* Top bar - spans full width */
.article-v2__visual-bar {
  grid-area: bar !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100%;
}

/* Big A01 number - centered */
.article-v2__visual-num-big {
  grid-area: num !important;
  font-family: var(--f-display);
  font-size: clamp(80px, 16vw, 200px) !important;
  line-height: 0.85 !important;
  letter-spacing: -.06em;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin: 0 !important;
  color: var(--ink);
}

/* Category - left of number */
.article-v2__visual-cat {
  grid-area: left !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding-top: 0 !important;
  border-top: none !important;
  justify-self: end;
  align-self: center;
}

/* Foot bar - spans full width */
.article-v2__visual-foot {
  grid-area: foot !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  width: 100%;
}

/* Mobile : stack everything vertically */
@media (max-width: 700px) {
  .article-v2__visual--editorial {
    aspect-ratio: auto !important;
    min-height: 280px !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto 1fr auto auto !important;
    grid-template-areas:
      "bar"
      "num"
      "left"
      "foot" !important;
    padding: 24px 20px !important;
    gap: 16px !important;
  }
  .article-v2__visual-num-big {
    font-size: clamp(80px, 28vw, 140px) !important;
    justify-content: center;
    margin: 8px 0 !important;
  }
  .article-v2__visual-cat {
    justify-self: center;
    padding-top: 14px !important;
    border-top: 1px solid var(--line) !important;
    width: 100%;
    justify-content: center;
  }
}

/* Ensure visual stays inside the inner max-width container if no override */
.article-v2__hero-inner .article-v2__visual--editorial {
  max-width: 100%;
}


/* ============================================================
   SERVICE PAGES, Meta block under hero (Pass 44)
   ============================================================ */
.svc-page-hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 1200px;
}
@media (max-width: 800px) {
  .svc-page-hero__meta {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .svc-page-hero__meta { grid-template-columns: 1fr; }
}
.svc-page-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 24px;
}
.svc-page-hero__meta-item:not(:last-child) {
  border-right: 1px solid var(--line);
}
@media (max-width: 800px) {
  .svc-page-hero__meta-item {
    border-right: none !important;
    padding-right: 0;
  }
}
.svc-page-hero__meta-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10, 14, 26, 0.5);
}
.svc-page-hero__meta-value {
  font-family: var(--f-display);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.3;
}

/* ============================================================
   SERVICE PAGES, "Pour qui" relevance section (Pass 44)
   ============================================================ */
.svc-relevance-section {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 48px) !important;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc-relevance {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}
@media (max-width: 900px) {
  .svc-relevance {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.svc-relevance__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-relevance__eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.svc-relevance__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.svc-relevance__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.svc-relevance__list {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 3vw, 40px);
}
@media (max-width: 900px) {
  .svc-relevance__list {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }
}
.svc-relevance__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.svc-relevance__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.82);
  align-items: baseline;
}
.svc-relevance__item:last-child {
  border-bottom: none;
}
.svc-relevance__item-mark {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
}

/* ============================================================
   /AGENCE, Founder quote block (Pass 44)
   ============================================================ */
.founder__quote {
  margin: 32px 0 0;
  padding: clamp(24px, 3vw, 36px);
  background: var(--blue);
  color: var(--bg);
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.founder__quote-mark {
  position: absolute;
  top: clamp(20px, 2.5vw, 32px);
  left: clamp(14px, 1.5vw, 20px);
  font-family: var(--f-display);
  font-size: clamp(56px, 6vw, 80px);
  line-height: 0;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}
.founder__quote-text {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.4;
  font-style: italic;
  letter-spacing: -.01em;
  padding-left: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--bg);
}
.founder__quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: clamp(28px, 3vw, 40px);
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.founder__quote-name {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--bg);
  letter-spacing: -.01em;
}
.founder__quote-role {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}


/* ============================================================
   SERVICE HERO VISUAL, Editorial composition (Pass 45)
   ============================================================ */
.svc-hero-visual--editorial {
  max-width: 1400px;
  margin: 40px auto 0;
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 64px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "bar bar bar"
    "num num label"
    "foot foot foot";
  gap: clamp(24px, 3vw, 48px);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
@media (max-width: 900px) {
  .svc-hero-visual--editorial {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "bar"
      "num"
      "label"
      "foot";
    min-height: 280px;
    padding: 32px 24px;
    gap: 20px;
  }
}

/* Top bar */
.svc-hero-visual__bar {
  grid-area: bar;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.svc-hero-visual__id {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--blue);
  font-weight: 500;
}
.svc-hero-visual__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-blue 2s ease-in-out infinite;
}

/* Giant number */
.svc-hero-visual__num-big {
  grid-area: num;
  font-family: var(--f-display);
  font-size: clamp(120px, 18vw, 240px);
  line-height: 0.85;
  letter-spacing: -.06em;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--ink);
}
.svc-hero-visual__num-prefix {
  color: var(--ink);
}
.svc-hero-visual__num-sep {
  color: rgba(10, 14, 26, 0.2);
  margin: 0 0.05em;
  font-weight: 300;
}
.svc-hero-visual__num-suffix {
  color: rgba(10, 14, 26, 0.2);
  font-size: 0.5em;
  font-style: italic;
}
@media (max-width: 900px) {
  .svc-hero-visual__num-big {
    font-size: clamp(80px, 22vw, 140px);
    justify-content: center;
  }
}

/* Big label */
.svc-hero-visual__label {
  grid-area: label;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
@media (max-width: 900px) {
  .svc-hero-visual__label {
    text-align: center;
    align-self: center;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
}
.svc-hero-visual__label-main {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 500;
  color: var(--ink);
}
.svc-hero-visual__label-em {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 400;
  font-style: italic;
  color: var(--blue);
}

/* Footer */
.svc-hero-visual--editorial .svc-hero-visual__foot {
  grid-area: foot;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.svc-hero-visual--editorial .svc-hero-visual__foot-line {
  width: 32px;
  height: 1px;
  background: var(--blue);
}
.svc-hero-visual--editorial .svc-hero-visual__foot-text {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}


/* ============================================================
   MANIFESTO ENRICHED, proof-points + signature (Pass 46)
   ============================================================ */
.manifesto--enriched .manifesto__detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.manifesto__detail-text {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.55;
  color: rgba(10, 14, 26, 0.7);
}
.manifesto__proof {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: var(--blue-tint);
  border-left: 2px solid var(--blue);
  border-radius: 0 4px 4px 0;
}
.manifesto__proof-label {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.manifesto__proof-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
}

/* Signature footer */
.manifesto__signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line);
}
.manifesto__signature-line {
  width: 32px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}
.manifesto__signature-text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -.005em;
}
@media (max-width: 700px) {
  .manifesto__signature {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* ============================================================
   BUTTON FOCUS FIX, make sure no double box-shadow + outline (Pass 47)
   ============================================================ */
/* Remove any lingering halo on click for white buttons on blue */
.page-cta__btn:focus,
.cta-v3__btn:focus,
.btn--white:focus,
.btn--primary:focus {
  outline: none;
}
.page-cta__btn:focus:not(:focus-visible),
.cta-v3__btn:focus:not(:focus-visible),
.btn--white:focus:not(:focus-visible),
.btn--primary:focus:not(:focus-visible) {
  box-shadow: none;
}
/* When magnetic button is hovered AND focused, keep only the hover effect */
.btn--primary:hover {
  box-shadow: 0 8px 24px -8px rgba(26, 102, 224, 0.4) !important;
}
/* For the white CTA button on dark blue, ensure clean focus ring */
.page-cta__btn--primary:focus-visible,
.cta-v3__btn--primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5) !important;
}
/* Ensure the inner arrow circle does NOT receive its own focus ring */
.page-cta__btn-arrow,
.cta-v3__btn-arrow {
  outline: none !important;
  box-shadow: none !important;
}


/* ============================================================
   BUG PREVENTION PASS 48 - Cleanup of edge cases
   ============================================================ */

/* Remove tap highlight on iOS (the blue overlay when tapping links) */
* {
  -webkit-tap-highlight-color: transparent;
}

/* But add a subtle highlight back on actionable elements */
a:active,
button:active,
.btn:active {
  -webkit-tap-highlight-color: rgba(26, 102, 224, 0.15);
}

/* Prevent text-selection on UI elements (numbers, marks, decorative) */
.section-marker__num,
.section-marker__label,
.bridge__num,
.bridge__meta,
.hero__id,
.section-rail__tick,
.page-header__id,
.page-header__bar-label,
.svc-page-bar__id,
.svc-page-bar__label,
[class*='__chrome-dot'],
[class*='__visual-pulse'],
[class*='__pulse'] {
  user-select: none;
  -webkit-user-select: none;
}

/* Prevent images from being dragged accidentally */
img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

/* Fix potential overflow on text containers with long French words */
h1, h2, h3, h4 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: manual;
}

/* Prevent any container from extending past viewport */
.section,
.page-header,
.hero,
.cta,
.cta-v3,
.page-cta {
  max-width: 100vw;
  overflow-x: clip;
}

/* Fix link underlines on em (the dot/period inside em was sometimes unstyled) */
a em,
a strong {
  color: inherit;
}

/* Disable transition on initial page load to prevent flash */
.no-transitions * {
  transition: none !important;
  animation: none !important;
}

/* Prevent layout shift when scrollbar appears/disappears */
html {
  scrollbar-gutter: stable;
}

/* Fix sticky positioning context for sticky sidebars */
.case-toc__sticky,
.constat-long__rail,
.founder-long__visual {
  /* Ensure parent has proper context */
  will-change: transform;
}

/* Fix any potential blur during transforms (Safari issue) */
.thesis-home__photo,
.article-v2__visual--editorial,
.hub-view,
.award-card,
.case,
.work-card {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Form fields - prevent zoom on iOS by ensuring 16px minimum */
@media (max-width: 800px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="search"],
  input[type="url"],
  textarea,
  select {
    font-size: 16px !important;
  }
}

/* Ensure focus rings don't cause horizontal scroll */
*:focus-visible {
  position: relative;
}

/* Fix any select element default styling */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a66e0' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 36px;
}

/* Smooth-scroll anchor offset (already there but reinforce) */
[id] {
  scroll-margin-top: 100px;
}

/* Disabled button states */
button:disabled,
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Fix any potential mark/highlight inheritance */
mark {
  background: rgba(26, 102, 224, 0.18);
  color: inherit;
  padding: 0 2px;
  border-radius: 2px;
}

/* Ensure detail/summary work consistently */
details summary {
  cursor: pointer;
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}

/* Fix possible "double border" on adjacent bordered elements */
.section + .section {
  /* No-op but documents intent */
}

/* Force iOS to render text crisply */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Make sure inputs don't have ugly autofill colors */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0px 1000px var(--bg) inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* Fix horizontal scroll on long inline code blocks */
code, pre {
  word-wrap: break-word;
  white-space: pre-wrap;
}

/* Prevent flicker on transform animations during scroll */
[data-reveal],
.fade-up {
  transform-origin: center bottom;
}


/* ============================================================
   COMPREHENSIVE BUTTON FIXES, Pass 50
   Single source of truth for all button states across the site
   ============================================================ */

/* === .btn--primary on dark backgrounds === */
.btn--primary:hover {
  background: var(--blue) !important;
  color: var(--bg) !important;
  box-shadow: 0 12px 32px -8px rgba(26, 102, 224, 0.5) !important;
}
.btn--primary:active {
  background: var(--blue-darkest) !important;
  transform: translateY(0) !important;
}

/* === .btn--ghost (transparent with border) === */
.btn--ghost:hover {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: var(--bg) !important;
}
.btn--ghost:active {
  background: var(--blue-darkest) !important;
  border-color: var(--blue-darkest) !important;
}

/* === .btn--white (white pill) - used on blue backgrounds === */
.btn--white {
  background: #ffffff;
  color: var(--ink);
}
.btn--white:hover {
  background: var(--ink) !important;
  color: var(--bg) !important;
}
.btn--white:active {
  background: var(--blue-darkest) !important;
}

/* === .btn--blue === */
.btn--blue:hover {
  background: var(--blue-darkest) !important;
  color: var(--bg) !important;
}
.btn--blue:active {
  background: var(--ink) !important;
}

/* === Disabled state - uniform === */
.btn:disabled,
.btn[disabled] {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

/* ============================================================
   CTA-V3 BUTTONS (home final CTA)
   ============================================================ */
.cta-v3__btn {
  cursor: pointer;
}
.cta-v3__btn--primary:active {
  transform: scale(0.98);
  transition-duration: 0.1s;
}
.cta-v3__btn--secondary {
  /* Strengthen border so it's visible on dark blue */
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}
.cta-v3__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cta-v3__btn--secondary:active {
  background: rgba(255, 255, 255, 0.18) !important;
  transform: translateY(0);
}

/* ============================================================
   PAGE-CTA BUTTONS (sub-pages final CTA)
   ============================================================ */
.page-cta__btn {
  cursor: pointer;
}
.page-cta__btn--primary:active {
  transform: scale(0.98);
  transition-duration: 0.1s;
  background: var(--bg-2) !important;
}
.page-cta__btn--secondary {
  /* Strengthen border so it's visible on blue gradient */
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.92) !important;
}
.page-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}
.page-cta__btn--secondary:active {
  background: rgba(255, 255, 255, 0.18) !important;
  transform: translateY(0);
}

/* ============================================================
   FILTER BUTTONS (work page double-axis filters)
   ============================================================ */
.filter-btn {
  background: transparent;
  cursor: pointer;
  position: relative;
}
.filter-btn:hover:not(.active) {
  background: var(--blue-tint) !important;
  border-color: var(--blue) !important;
  color: var(--blue) !important;
}
.filter-btn.active {
  background: var(--ink) !important;
  color: #ffffff !important;
  border-color: var(--ink) !important;
}
.filter-btn:active {
  transform: scale(0.97);
  transition-duration: 0.08s;
}
.filter-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(26, 102, 224, 0.4) !important;
}

/* ============================================================
   NEWSLETTER FINAL BUTTON (round arrow on dark blue)
   ============================================================ */
.newsletter-final__btn {
  cursor: pointer;
}
.newsletter-final__btn:hover:not(:disabled) {
  background: var(--blue-soft) !important;
  color: var(--blue-darkest) !important;
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}
.newsletter-final__btn:active:not(:disabled) {
  transform: scale(0.95);
  transition-duration: 0.08s;
}
.newsletter-final__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5) !important;
}

/* ============================================================
   CALENDAR NAV BUTTONS (contact page widget)
   ============================================================ */
.contact-calendar__nav-btn {
  cursor: pointer;
}
.contact-calendar__nav-btn:active {
  transform: scale(0.92);
  background: var(--blue) !important;
  color: #ffffff !important;
  transition-duration: 0.08s;
}

/* ============================================================
   CALENDAR SLOT BUTTONS  
   ============================================================ */
.contact-calendar__slot:not(:disabled):active {
  background: var(--blue-darkest) !important;
  transform: scale(0.97);
  transition-duration: 0.08s;
}

/* ============================================================
   NAV BURGER (mobile)
   ============================================================ */
.nav__burger {
  cursor: pointer;
}
.nav__burger:active span {
  background: var(--blue) !important;
}

/* ============================================================
   FORM SUBMIT BUTTON (contact form)
   ============================================================ */
.contact-form__submit {
  cursor: pointer;
}
.contact-form__submit:active {
  transform: scale(0.98);
  transition-duration: 0.08s;
}

/* ============================================================
   HUB HEADER CTA (mockup screenshot - no real interaction)
   ============================================================ */
.hub-header__cta {
  cursor: default; /* It's a mockup, not real */
  pointer-events: none;
}

/* ============================================================
   ALL BUTTONS - cleanup base properties
   ============================================================ */
button,
.btn,
[role="button"] {
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Prevent text selection on button labels */
.btn,
.cta-v3__btn,
.page-cta__btn,
.filter-btn,
.newsletter-final__btn {
  user-select: none;
}

/* Smooth out the transform-origin for press effects */
.btn,
.cta-v3__btn,
.page-cta__btn,
.filter-btn,
.newsletter-final__btn,
.contact-calendar__nav-btn,
.contact-calendar__slot {
  transform-origin: center center;
}

/* iOS Safari : prevent button border-radius weirdness on tap */
button,
.btn {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

/* ============================================================
   LINK BUTTONS WITH SVG ARROWS - ensure arrows don't double up
   ============================================================ */
/* Buttons that already have an inline SVG arrow shouldn't get the ::after */
.btn:has(svg) {
  /* No-op but documents the intent */
}
/* And mailto: links don't need arrows */
.btn[href^="mailto:"]::after,
.btn[href^="tel:"]::after {
  content: none !important;
}


/* ============================================================
   FINAL BUTTON CLEANUP, Pass 51
   ============================================================ */

/* Make sure no double-arrow appears anywhere */
.btn--arrow::after {
  display: inline-block;
  /* Arrow only appears on btn--arrow opt-in class */
}

/* Buttons containing inline SVG should never get pseudo-arrows */
.btn:has(svg.btn__icon),
.btn:has(svg.btn-arrow),
.cta-v3__btn:has(svg),
.page-cta__btn:has(svg) {
  /* No-op but documents intent */
}

/* Buttons that are anchor links to email/phone: never arrow */
a.btn[href^="mailto:"]::after,
a.btn[href^="tel:"]::after,
a.btn[href^="https://linkedin"]::after {
  content: none !important;
  display: none !important;
}

/* Final consistent press feedback for all CTA-style buttons */
.cta-v3__btn:active,
.page-cta__btn:active {
  transform: translateY(0) scale(0.98) !important;
  transition: transform 0.08s ease !important;
}

/* Filter btn press feedback - no scale (would be ugly) */
.filter-btn:active {
  transform: scale(0.95) !important;
  transition: transform 0.08s ease !important;
}

/* Cursor on all interactive elements */
a[href],
button:not(:disabled),
.btn:not(:disabled),
.case,
.work-card,
.award-card,
.background-pill,
.filter-btn:not(:disabled),
.contact-channel,
.discipline-tag,
.contact-calendar__day,
.contact-calendar__slot:not(:disabled),
.hub-project-tab,
.case-toc__link,
.approche-header__nav-item,
.svc-page-hero__meta-value--link {
  cursor: pointer;
}

/* Disabled cursor + opacity */
button:disabled,
.btn:disabled,
.btn[disabled],
.contact-calendar__slot:disabled {
  cursor: not-allowed !important;
  opacity: 0.45 !important;
}

/* Ensure no button has both translateY hover + scale active simultaneously
   (was creating jumpy animations) */
.btn:hover:active,
.cta-v3__btn:hover:active,
.page-cta__btn:hover:active {
  transform: translateY(0) scale(0.97) !important;
}

/* Service page link buttons need cursor */
.svc-cta a {
  cursor: pointer;
}

/* Nav burger mobile cursor */
.nav__burger {
  cursor: pointer;
}

/* Hover lift should never cause vertical scroll bar from box-shadow */
.btn:hover,
.case:hover,
.award-card:hover,
.work-card:hover {
  z-index: 2;
}

/* ============================================================
   .case hover - clean up double box-shadow
   ============================================================ */
/* Remove the duplicate ::after shadow if it conflicts with hover lift */
.case::after {
  z-index: 1; /* Stay below content */
}

/* ============================================================
   SAFARI button rendering fix
   ============================================================ */
/* Safari sometimes renders pill borders with sub-pixel gaps */
.btn,
.cta-v3__btn,
.page-cta__btn,
.filter-btn,
.newsletter-final__btn {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  /* Force GPU acceleration for cleaner borders */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Ensure mailto/tel/external links inside buttons inherit color cleanly */
.btn span,
.btn em,
.cta-v3__btn span,
.cta-v3__btn em,
.page-cta__btn span,
.page-cta__btn em {
  color: inherit;
}

/* ============================================================
   FORM submit button - ensure proper feedback
   ============================================================ */
.contact-form__submit,
button[type="submit"] {
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
}
.contact-form__submit:hover:not(:disabled),
button[type="submit"]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(26, 102, 224, 0.4);
}
.contact-form__submit:active:not(:disabled),
button[type="submit"]:active:not(:disabled) {
  transform: translateY(0) scale(0.98) !important;
  transition-duration: 0.08s;
}


/* ============================================================
   FINAL VISUAL CLEANUP, Pass 52
   ============================================================ */

/* === Nav dropdown polish === */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-menu {
  pointer-events: none;
  opacity: 0;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  pointer-events: auto;
  opacity: 1;
}

/* === Avoid blue link defaults on form labels === */
label,
fieldset,
legend {
  color: inherit;
}

/* === Ensure dark sections never inherit light text colors === */
.section--dark *,
.cta-v3 *,
.page-cta *,
.collective-stats *,
.section--dark a {
  /* Preserve any specific color overrides */
}

/* === Fix any remaining anchor decoration weirdness === */
a[href^="#"] {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/* === Ensure SVGs are not draggable === */
svg {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}
/* But SVGs inside buttons should not block clicks */
button svg,
.btn svg,
a svg {
  pointer-events: none;
}

/* === Iframe placeholder safety === */
iframe {
  border: 0;
  max-width: 100%;
}

/* === Print styles - basic === */
@media print {
  .nav,
  .section-rail,
  .scroll-progress,
  .page-transition,
  .cursor,
  .nav__burger,
  .nav__mobile {
    display: none !important;
  }
  body { background: white; color: black; }
}

/* === Visual quality safety net === */
* {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* === Images: prevent shift while loading === */
img[loading="lazy"] {
  background-color: var(--bg-2);
}

/* === Long text in spans inside flex containers === */
.flex span,
[class*="__meta"] span,
[class*="__label"] span {
  min-width: 0;
}

/* === Anchor scroll smoothness === */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === Filter-btn final consolidation === */
.filter-btn {
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.filter-btn.active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

/* === Avoid sticky positioning context bugs === */
.case-toc__sticky,
.constat-long__rail,
.founder-long__visual,
.manifesto-v2-rail {
  /* Sticky context safety */
  position: sticky;
}

/* === Z-index hierarchy clarification === */
/* nav: 100 (top layer for sticky) */
/* section-rail: 50 (under nav, over content) */
/* page-transition: 9998 */
/* page-transition-loading: 99999 */
/* scroll-progress: 9999 */
/* modals/overlays: 200+ */


/* ============================================================
   BUG AUDIT FINAL, Pass 53 (after studio→agence rename)
   ============================================================ */

/* Ensure no visual conflict between duplicate .case rules.
   The various .case declarations across the file all work together,
   but we make sure no transform/transition conflicts. */
.case {
  isolation: isolate;
}

/* The filter-btn active state should always win over hover */
.filter-btn.active,
.filter-btn.active:hover {
  background: var(--ink) !important;
  color: #ffffff !important;
  border-color: var(--ink) !important;
}
.filter-btn.active:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45) !important;
}

/* Ensure all rounded buttons have a consistent backface visibility
   on Safari (prevents border seams during animations) */
.btn,
.cta-v3__btn,
.page-cta__btn,
.filter-btn,
.background-pill,
.contact-channel,
.discipline-tag {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Ensure the focus ring works when a button is clicked with mouse THEN keyboard */
.btn:focus-visible,
.cta-v3__btn:focus-visible,
.page-cta__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(26, 102, 224, 0.35);
}

/* Special focus ring for buttons in dark contexts */
.cta-v3__btn--secondary:focus-visible,
.page-cta__btn--secondary:focus-visible,
.newsletter-final__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45) !important;
}

/* Service page hover lift consistency */
.svc-feature {
  transition: transform 0.4s var(--ease), border-color 0.3s ease, box-shadow 0.4s ease;
}
.svc-feature:hover {
  transform: translateY(-4px);
  border-color: var(--blue) !important;
  box-shadow: 0 24px 48px -24px rgba(26, 102, 224, 0.18);
}

/* Visual mockup hover effects - prevent jump on edge cases */
.visual-mockup,
.visual-mockup--post,
.visual-mockup--dooh,
.visual-mockup--tiktok,
.visual-mockup--reel {
  transition: transform 0.5s var(--ease);
}

/* Make sure no orphan element has display:none that should be visible */
.svc-relevance,
.svc-page-hero__meta,
.manifesto--enriched,
.collective-v2 {
  display: block;
}
.svc-relevance {
  display: grid;
}

/* Final z-index sanity check */
.nav { z-index: 100 !important; }
.scroll-progress { z-index: 9999 !important; }
.page-transition { z-index: 9998 !important; }

/* Ensure consistent line-height on all headlines */
h1, h2, h3, h4 {
  text-wrap: balance;
}

/* Fix potential blur on transformed elements in Safari */
@supports (-webkit-touch-callout: none) {
  .case,
  .award-card,
  .work-card {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

/* Studio/Agence transition - the agence terminology now applies globally */
.footer__col-title {
  /* No specific styling needed - existing rule covers */
}


/* ============================================================
   FINAL AUDIT v54, Prevention of remaining edge cases
   ============================================================ */

/* Prevent browser autofocus halo on page load */
*:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* Ensure links never have a tap-highlight blue blob on iOS */
a:link,
a:visited,
button {
  -webkit-tap-highlight-color: transparent;
}

/* Smooth out the appearance of touched elements */
a:active,
button:active,
.btn:active {
  -webkit-tap-highlight-color: rgba(26, 102, 224, 0.15);
}

/* Ensure consistent rendering of em across all contexts */
em {
  font-style: italic;
}

/* Default em color is inherit, except in special contexts */
em {
  color: inherit;
}

/* In quote/manifesto contexts, em should be blue accent */
.constat-long__body em,
.manifesto-long__body em,
.approche-vision__body em,
.founder__bio em,
.refusal-v2__footer-text em,
.commitments__title em,
.manifesto-long__title em,
.constat-long__title em,
.refusal-v2__title em {
  color: var(--blue);
  font-style: italic;
  font-weight: 500;
}

/* Subtle hover lift on award cards */
.award-card {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}

/* Final fix for any decorative SVG inside button */
.btn svg.btn__icon,
.btn svg:not(.btn-arrow) {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Ensure no element overflows its container due to long text */
.btn,
.cta-v3__btn,
.page-cta__btn,
.filter-btn,
.background-pill,
.discipline-tag {
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* But allow wrapping where it makes sense */
@media (max-width: 500px) {
  .btn,
  .cta-v3__btn,
  .page-cta__btn {
    white-space: normal;
    text-align: center;
  }
}

/* Prevent invisible/transparent elements from being focusable */
[aria-hidden="true"],
[hidden] {
  pointer-events: none;
}

/* Ensure all anchor links to internal hashes use smooth scroll */
a[href^="#"] {
  scroll-behavior: smooth;
}

/* Final z-index sanity */
.nav { z-index: 100; }
.section-rail { z-index: 50; }
.scroll-progress { z-index: 9999; }
.page-transition { z-index: 9998; }
.cursor { z-index: 99999; }

/* Footer signature update spacing on mobile */
@media (max-width: 700px) {
  .footer__signature {
    padding: 32px 0 !important;
    gap: 12px !important;
  }
  .footer__signature-text {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }
}


/* Section-rail removed (Pass 55) */
.section-rail { display: none !important; }


/* ============================================================
   FOOTER DARK BG CONTRAST FIX, Pass 56
   Ensure all text on the dark footer is visible
   ============================================================ */
.footer {
  color: rgba(255, 255, 255, 0.85);
}
.footer__logo {
  color: #ffffff !important;
}
.footer__tagline {
  color: rgba(255, 255, 255, 0.75) !important;
}
.footer__status {
  color: rgba(255, 255, 255, 0.6) !important;
}
.footer__col-title {
  color: rgba(255, 255, 255, 0.5) !important;
}
.footer__link {
  color: rgba(255, 255, 255, 0.85) !important;
}
.footer__link:hover {
  color: var(--blue) !important;
}
.footer__copy,
.footer__bottom-left,
.footer__bottom-right {
  color: rgba(255, 255, 255, 0.55) !important;
}
.footer__sep {
  color: rgba(255, 255, 255, 0.25) !important;
}
.footer__build,
.footer__build-label {
  color: rgba(255, 255, 255, 0.4) !important;
}
.footer__link--small {
  color: rgba(255, 255, 255, 0.5) !important;
}
.footer__link--small:hover {
  color: var(--blue) !important;
}
.footer__link-tag {
  background: rgba(26, 102, 224, 0.15) !important;
  color: var(--blue) !important;
  border: 1px solid rgba(26, 102, 224, 0.35) !important;
}
.footer__signature-text {
  color: rgba(255, 255, 255, 0.85) !important;
}
.footer__signature-text em {
  color: var(--blue) !important;
}
.footer__signature-rail-text {
  color: var(--blue) !important;
}


/* ============================================================
   DESCENDER CLIPPING FIX, Pass 58
   Big italic/display text must not be clipped by parent overflow
   ============================================================ */

/* Hero title - ensure descenders visible */
.hero__title-v2 {
  overflow: visible !important;
  padding-bottom: 0.1em;
}

/* Italic emphasis in big titles - descenders need room */
.hero__title-v2 em,
.hero__title-v2 .word,
.constat-long__title em,
.manifesto-long__title em,
.refusal-v2__title em,
.cta-v3__title em,
.page-cta__title em,
.approche-vision__title em,
.work-section__title em,
.svc-hero-v2__title em,
.about-hero__title em,
.agence-header__title em,
.approche-header__title em,
.contact-header__title em,
.founder__name em,
.commitments__title em,
.for-whom-v2__title em {
  display: inline-block;
  padding-bottom: 0.05em;
  line-height: 1.05;
}

/* Containers that hold big display text - ensure overflow visible vertically */
.hero,
.hero__main,
.hero__bottom,
.page-header,
.cta-v3,
.page-cta,
.section--constat-long,
.section--manifesto-long,
.section--refusal-v2,
.section--for-whom-v2,
.section--founder,
.section--approche-vision {
  overflow-x: clip;
  overflow-y: visible;
}

/* Specific overrides for known problematic containers */
.hero__main {
  overflow: visible !important;
}
.hero__bottom {
  overflow: visible !important;
}

/* Italic numbers (often clipped too) */
.constat-long__num,
.manifesto-long__num,
.collective-stat__num,
.deliv-row__num,
.commitment-row__num,
.model-pillar__num,
.pillar-row__num,
.process-v5-step__num,
.svc-feature__num {
  padding-bottom: 0.08em;
  line-height: 1;
  overflow: visible;
}

/* Title with big italic in dark sections */
.section--dark h2 em,
.cta-v3__title em,
.page-cta__title em {
  padding-bottom: 0.06em;
}

/* Ensure all clamp() font-size titles don't get cropped */
h1, h2, h3, h4, h5, h6 {
  overflow: visible;
}

/* word-spacing safety - prevent layout shift */
.word {
  white-space: nowrap;
}


/* ============================================================
   VISUAL MOCKUP, REEL (replaces DOOH), Pass 63
   ============================================================ */
.visual-mockup--reel .visual-mockup__frame {
  aspect-ratio: 4 / 5;
  background: var(--bg);
  padding: 14px;
  display: flex;
}
.visual-mockup__reel {
  flex: 1;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  padding: 14px;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.visual-mockup__reel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(26, 102, 224, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.visual-mockup__reel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.visual-mockup__reel-id {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
}
.visual-mockup__reel-platform {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--blue);
  padding: 3px 8px;
  background: rgba(26, 102, 224, 0.18);
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 500;
}
.visual-mockup__reel-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.visual-mockup__reel-headline {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -.035em;
  color: #ffffff;
}
.visual-mockup__reel-headline em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.visual-mockup__reel-sub {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.visual-mockup__reel-controls {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}
.visual-mockup__reel-ctrl-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
.visual-mockup__reel-ctrl-dot--active {
  background: var(--blue);
  box-shadow: 0 0 8px rgba(26, 102, 224, 0.6);
}
.visual-mockup__reel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
}
.visual-mockup__reel-meta {
  text-transform: uppercase;
}
.visual-mockup__reel-time {
  color: rgba(255, 255, 255, 0.65);
}

/* Suppression des animations hover sur les vignettes études de cas */
.case {
  transition: transform .4s var(--ease), box-shadow .4s var(--ease) !important;
}
.case .case__bg,
.case .case__brand-logo {
  transition: none !important;
  animation: none !important;
}
.case:hover,
.work-grid .case:hover,
.work-grid .work-case:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px -16px rgba(26,102,224,.18) !important;
  filter: none !important;
}
.case:hover .case__bg,
.case:hover .case__brand-logo,
.case:hover .case__bg--logo,
.case:hover .case__bg:not(.case__bg--logo) {
  transform: none !important;
  filter: none !important;
  animation: none !important;
}
.case::before,
.case:hover::before {
  background: none !important;
  opacity: 0 !important;
  filter: none !important;
  border-color: transparent !important;
}
.case__play,
.case:hover .case__play {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}



/* === WM CASES (cas clients Way-mark en propre) === */
.wm-cases { background:#ffffff; color:#0a0a0c; padding: clamp(56px,7vw,96px) clamp(24px,4vw,48px); }
.wm-cases__inner { max-width: 1280px; margin: 0 auto; }
.wm-cases__head { max-width: 820px; margin: 0 0 clamp(32px,4vw,56px); }
.wm-cases__eyebrow { display:inline-flex; align-items:center; gap:10px; font-family: var(--f-mono, ui-monospace, monospace); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color: var(--blue); margin-bottom: 18px; }
.wm-cases__eyebrow-num { opacity:.6; }
.wm-cases__title { font-family: var(--f-display); font-size: clamp(28px, 3.4vw, 46px); line-height: 1.1; letter-spacing: -.02em; font-weight: 500; margin: 0 0 14px; color: var(--ink); }
.wm-cases__title em { font-style: italic; color: var(--blue); }
.wm-cases__sub { font-family: var(--f-mono, ui-monospace, monospace); font-size: 13px; line-height: 1.65; color: rgba(10,10,12,.6); margin:0; max-width: 680px; }
.wm-cases__grid { display:grid; grid-template-columns: 1fr; gap: clamp(20px,2.4vw,28px); }
@media (min-width: 900px) { .wm-cases__grid { grid-template-columns: 1.4fr 1fr; align-items: stretch; } }
.wm-case { border: 1px solid rgba(10,10,12,.12); background:#fff; padding: clamp(28px,3vw,40px); display:flex; flex-direction:column; gap:20px; transition: border-color .25s ease, transform .25s ease; }
.wm-case:hover { border-color: var(--blue); }
.wm-case__top { display:flex; align-items:center; justify-content:space-between; gap:16px; font-family: var(--f-mono, ui-monospace, monospace); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color: rgba(10,10,12,.55); }
.wm-case__tag { color: var(--blue); }
.wm-case__brand { font-family: var(--f-display); font-size: clamp(22px,2.2vw,32px); line-height:1.15; letter-spacing:-.01em; margin:0; color: var(--ink); }
.wm-case__tagline { font-family: var(--f-display); font-size: clamp(16px,1.4vw,20px); line-height:1.35; margin:0; color: rgba(10,10,12,.78); font-style: italic; }
.wm-case__block { border-top: 1px solid rgba(10,10,12,.08); padding-top:16px; }
.wm-case__block-label { display:block; font-family: var(--f-mono, ui-monospace, monospace); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color: rgba(10,10,12,.5); margin-bottom:8px; }
.wm-case__block-text { font-size: 14px; line-height: 1.65; color: rgba(10,10,12,.78); margin:0; }
.wm-case__metrics { display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; border-top: 1px solid rgba(10,10,12,.08); padding-top: 18px; margin-top: auto; }
.wm-case__metric-n { display:block; font-family: var(--f-display); font-size: clamp(22px,2vw,28px); line-height:1; color: var(--blue); font-weight:500; }
.wm-case__metric-l { display:block; font-family: var(--f-mono, ui-monospace, monospace); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color: rgba(10,10,12,.55); margin-top:6px; line-height:1.4; }
.wm-case--placeholder { border-style: dashed; }
.wm-case--soon { border: 1px dashed rgba(10,10,12,.18); background: linear-gradient(180deg, rgba(10,10,12,.02), rgba(10,10,12,0)); display:flex; flex-direction:column; justify-content:center; align-items:flex-start; gap:14px; padding: clamp(28px,3vw,40px); min-height: 220px; }
.wm-case--soon .wm-case__brand { color: rgba(10,10,12,.6); }
.wm-case--soon .wm-case__tagline { color: rgba(10,10,12,.5); font-style: normal; }
.wm-case__soon-tag { display:inline-flex; align-items:center; gap:8px; font-family: var(--f-mono, ui-monospace, monospace); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color: var(--blue); }
.wm-case__soon-tag::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--blue); display:inline-block; }
