﻿:root {
  --ink-950: #10152a;
  --ink-900: #1a2342;
  --ink-800: #273154;
  --ink-700: #4a577a;
  --ink-500: #6c7899;

  --surface-0: #f7f8fe;
  --surface-1: #f3f6ff;
  --surface-2: #edf3ff;
  --surface-3: #ffffff;

  --mint: #16b786;
  --mint-deep: #109b72;
  --mint-soft: #e8fbf3;
  --cyan: #2f8fff;
  --cyan-soft: #eaf3ff;
  --violet: #7b5dff;
  --violet-soft: #f2eeff;
  --rose: #f16ba6;
  --rose-soft: #fff0f7;
  --gold: #f5b43b;
  --gold-soft: #fff5e3;

  --line-soft: rgba(26, 35, 66, 0.12);
  --line-strong: rgba(26, 35, 66, 0.22);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.84);

  --shadow-soft: 0 16px 32px rgba(18, 28, 56, 0.08), 0 3px 10px rgba(18, 28, 56, 0.06);
  --shadow-medium: 0 24px 52px rgba(18, 28, 56, 0.14), 0 8px 20px rgba(18, 28, 56, 0.08);
  --shadow-strong: 0 34px 86px rgba(8, 12, 34, 0.36), 0 10px 28px rgba(8, 12, 34, 0.2);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: var(--ink-950);
  background:
    linear-gradient(180deg,
      #fafcff  0%,    /* haut : blanc pur */
      #f2edff 10%,    /* hero début : violet très léger */
      #e6d9ff 30%,    /* hero fin : violet medium */
      #d6e4ff 44%,    /* signals début : violet-bleu */
      #c8f5e0 58%,    /* signals fin : vert doux */
      #cfe9ff 68%,    /* impact début : bleu-vert clair */
      #e2d8ff 82%,    /* impact fin : retour violet */
      #e2d8ff 100%    /* CTA : violet constant */
    );
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 34px;
}

.section {
  position: relative;
  padding: 128px 0;
}

.section-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b5dff;
  text-align: center;
}

.section-title {
  margin: 0;
  font-size: clamp(44px, 6.8vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
  text-wrap: balance;
}

.section-lead {
  margin: 20px auto 0;
  max-width: 840px;
  color: var(--ink-700);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.44;
  letter-spacing: -0.01em;
  text-align: center;
}

.home-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 84px;
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  transition: background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.home-header.scrolled {
  background: rgba(251, 253, 255, 0.72);
  backdrop-filter: blur(12px) saturate(130%);
  box-shadow: 0 10px 24px rgba(12, 20, 42, 0.1);
  border-color: rgba(26, 35, 66, 0.14);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  text-decoration: none;
}

.brand-name {
  color: inherit;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(26, 35, 66, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.logo-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.logo-dot.good {
  background: #14B414;
}

.logo-dot.ok {
  background: #FFDE00;
}

.logo-dot.bad {
  background: #FF0000;
}


.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 12px;
  width: auto;
  margin-left: auto;
}

.auth-link {
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(26, 35, 66, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-900);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(26, 35, 66, 0.06);
}

.auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  flex: 0 0 auto;
  padding: 0 18px;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.auth-link:hover {
  transform: translateY(-1px);
  background: linear-gradient(140deg, #effbff 0%, #e8fff7 100%);
  box-shadow: 0 12px 20px rgba(18, 184, 134, 0.22);
}

.auth-link.primary {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(118deg, #12b886 0%, #2f8fff 100%);
  box-shadow: 0 14px 24px rgba(18, 184, 134, 0.3);
  padding: 0 22px;
  font-size: 16px;
}

.auth-link.primary:hover {
  background: linear-gradient(118deg, #13c48f 0%, #4f9fff 100%);
  box-shadow: 0 18px 30px rgba(18, 184, 134, 0.36);
}

/* Mobile hamburger — caché sur desktop */
.home-ham-wrap {
  display: block;
  position: relative;
}

.home-header .carelem-lang-slot {
  flex: 0 0 auto;
}

.home-header .carelem-lang-trigger {
  min-width: 46px;
  min-height: 46px;
  border-radius: 14px;
}

.home-ham-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 23, 42, 0.12);
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.home-ham-btn:hover {
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.home-ham-line {
  display: block;
  width: 18px;
  height: 2.5px;
  border-radius: 2px;
}

.home-ham-green  { background: #14B414; }
.home-ham-yellow { background: #FFDE00; }
.home-ham-red    { background: #FF0000; }

.header-actions > .auth-link {
  display: none;
}

.home-ham-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.13);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
  z-index: 200;
}

.home-ham-menu[hidden] { display: none; }

.home-ham-item {
  display: block;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1a2342;
  text-decoration: none;
  transition: background 0.15s;
}

.home-ham-item:hover {
  background: rgba(0,0,0,0.05);
}

.home-ham-item-primary {
  color: #ffffff;
  background: linear-gradient(118deg, #12b886 0%, #2f8fff 100%);
}

.home-ham-item-primary:hover {
  background: linear-gradient(118deg, #13c48f 0%, #4f9fff 100%);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 152px 0 86px;
  display: flex;
  align-items: center;
}

.hero::after {
  display: none;
}

.hero-bg,
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background: transparent;
}

.hero-noise {
  opacity: 0;
  filter: blur(74px);
  background: transparent;
  animation: heroFlow 18s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.hero-copy {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 24px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(26, 35, 66, 0.12);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68));
  backdrop-filter: blur(10px);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
}

.hero-initial {
  font-weight: 900;
}

.hero-initial.l {
  color: #14b414;
}

.hero-initial.e {
  color: #ffde00;
}

.hero-initial.m {
  color: #ff0000;
}


.hero-title {
  margin: 0;
  font-size: clamp(44px, 6.8vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
  color: var(--ink-900);
  text-align: center;
}

.hero-title span {
  background: linear-gradient(96deg, #12b886 0%, #2f8fff 52%, #7b5dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  margin: 28px 0 0;
  max-width: 760px;
  color: var(--ink-700);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.44;
  letter-spacing: -0.01em;
  text-align: center;
}

.signals {
  background:
    radial-gradient(900px 520px at 86% 0, rgba(47, 143, 255, 0.13), transparent 65%),
    radial-gradient(780px 460px at 14% 100%, rgba(241, 107, 166, 0.1), transparent 62%),
    linear-gradient(180deg, #f8fbff 0%, #f4f8ff 100%);
}

.signals .section-title {
  text-align: center;
}



.signals-grid {
  margin: 52px auto 0;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.signal-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 35, 66, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  padding: 24px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.signal-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 10px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(26, 35, 66, 0.08), rgba(26, 35, 66, 0));
}

.signal-card:hover {
  transform: translateY(-8px) rotateX(1.2deg) rotateY(-1.2deg);
  box-shadow: 0 28px 46px rgba(18, 28, 56, 0.18), 0 10px 20px rgba(18, 28, 56, 0.1);
  border-color: rgba(26, 35, 66, 0.22);
}

.signal-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 8px;
}

.signal-card h3 {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.signal-card p {
  margin: 10px 0 0;
  color: var(--ink-700);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.38;
}

.tone-mint {
  background: linear-gradient(155deg, #e8fbf3 0%, #f4fffb 100%);
}

.tone-peach {
  background: linear-gradient(155deg, #fff3e3 0%, #fffaf1 100%);
}

.tone-lilac {
  background: linear-gradient(155deg, #f1edff 0%, #faf7ff 100%);
}

.tone-cyan {
  background: linear-gradient(155deg, #e9f5ff 0%, #f4fbff 100%);
}

.tone-rose {
  background: linear-gradient(155deg, #fff0f7 0%, #fff6fb 100%);
}

.tone-sky {
  background: linear-gradient(155deg, #edf4ff 0%, #f5f9ff 100%);
}

.section-conclusion {
  margin: 48px auto 0;
  max-width: 860px;
  text-align: center;
  color: var(--ink-900);
  font-size: clamp(24px, 2.7vw, 40px);
  line-height: 1.42;
}

.section-conclusion strong {
  color: var(--mint-deep);
}


/* ================================================================
   SIGNALS V5 — Signal Log premium
   ================================================================ */

.pulse-bridge {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: -144px auto 34px;
}

.pulse-bridge-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: pulseBridgeCapsuleFloat 5s ease-in-out infinite;
}

.pulse-bridge-stage::before {
  content: "";
  position: absolute;
  inset: -26px -50px -30px;
  border-radius: 999px;
  background:
    radial-gradient(180px 84px at 16% 50%, rgba(0, 232, 122, 0.16), transparent 72%),
    radial-gradient(180px 84px at 50% 50%, rgba(255, 107, 53, 0.12), transparent 74%),
    radial-gradient(180px 84px at 84% 50%, rgba(255, 59, 59, 0.16), transparent 72%);
  filter: blur(26px);
  opacity: 0.6;
  pointer-events: none;
}

.pulse-bridge-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 48px;
  border-radius: 999px;
  border: 1px solid rgba(39, 49, 84, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.66) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 46px rgba(39, 49, 84, 0.12), 0 8px 24px rgba(39, 49, 84, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.pulse-bridge-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.18) 100%),
    radial-gradient(110px 46px at 50% 0%, rgba(255, 255, 255, 0.34), transparent 74%);
  pointer-events: none;
}

.pulse-bridge-shell::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  background: linear-gradient(112deg, transparent 16%, rgba(255, 255, 255, 0.78) 42%, transparent 66%);
  opacity: 0;
  transform: translateX(-150%);
  pointer-events: none;
  animation: pulseBridgeCapsuleSheen 13.5s ease-in-out infinite;
}

.pulse-bridge-prompt {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 15.5px;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: rgba(39, 49, 84, 0.7);
  text-align: center;
}

.pulse-bridge-dot {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--pulse-bridge-color);
  background-color: var(--pulse-bridge-color);
  border: 1px solid rgba(255, 255, 255, 0.38);
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 10px 18px rgba(39, 49, 84, 0.12);
}

.pulse-bridge-dot::before,
.pulse-bridge-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.pulse-bridge-dot::before {
  box-shadow: 0 0 0 0 var(--pulse-bridge-glow);
  opacity: 0;
}

.pulse-bridge-dot::after {
  inset: -14px;
  border: 1px solid var(--pulse-bridge-ripple);
  opacity: 0;
  transform: scale(0.42);
}

.pulse-bridge-dot-good {
  --pulse-bridge-color: #14B414;
  --pulse-bridge-glow: rgba(20, 180, 20, 0.48);
  --pulse-bridge-ripple: rgba(20, 180, 20, 0.44);
}

.pulse-bridge-dot-good::before {
  animation: pulseBridgeGlowGood 13.5s ease-in-out infinite;
}

.pulse-bridge-dot-good::after {
  animation: pulseBridgeRippleGood 13.5s ease-out infinite;
}

.pulse-bridge-dot-ok {
  --pulse-bridge-color: #FFDE00;
  --pulse-bridge-glow: rgba(255, 222, 0, 0.48);
  --pulse-bridge-ripple: rgba(255, 222, 0, 0.44);
}

.pulse-bridge-dot-ok::before {
  animation: pulseBridgeGlowOk 13.5s ease-in-out infinite;
}

.pulse-bridge-dot-ok::after {
  animation: pulseBridgeRippleOk 13.5s ease-out infinite;
}

.pulse-bridge-dot-bad {
  --pulse-bridge-color: #FF0000;
  --pulse-bridge-glow: rgba(255, 0, 0, 0.5);
  --pulse-bridge-ripple: rgba(255, 0, 0, 0.46);
}

.pulse-bridge-dot-bad::before {
  animation: pulseBridgeGlowBad 13.5s ease-in-out infinite;
}

.pulse-bridge-dot-bad::after {
  animation: pulseBridgeRippleBad 13.5s ease-out infinite;
}

.pulse-bridge-hand {
  position: absolute;
  top: 38px;
  left: 50%;
  z-index: 3;
  width: 40px;
  height: 40px;
  margin-left: -24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 40px;
  line-height: 1;
  pointer-events: none;
  filter: drop-shadow(0 10px 16px rgba(39, 49, 84, 0.18));
  transform-origin: 60% 0%;
  animation: pulseBridgeHandSequence 13.5s linear infinite;
}

.pulse-bridge-copy {
  position: relative;
  min-height: 36px;
  width: 100%;
  text-align: center;
}

.pulse-bridge-copy-state,
.pulse-bridge-copy-summary {
  position: absolute;
  left: 50%;
  top: 0;
  margin: 0;
  opacity: 0;
  transform: translate(-50%, 10px);
}

.pulse-bridge-copy-state {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.pulse-bridge-copy-good {
  color: #14B414;
  animation: pulseBridgeLabelGood 13.5s ease-in-out infinite;
}

.pulse-bridge-copy-ok {
  color: #FFDE00;
  animation: pulseBridgeLabelOk 13.5s ease-in-out infinite;
}

.pulse-bridge-copy-bad {
  color: #FF0000;
  animation: pulseBridgeLabelBad 13.5s ease-in-out infinite;
}

.pulse-bridge-copy-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  white-space: nowrap;
  animation: pulseBridgeLabelSummary 13.5s ease-in-out infinite;
}

.pulse-bridge-copy-summary strong {
  color: #273154;
  font-weight: 800;
}

.pulse-bridge-copy-summary span {
  color: rgba(39, 49, 84, 0.45);
  font-weight: 500;
}

.sv5-block {
  margin: 80px auto 0;
  max-width: 920px;
}

/* Header */
.sv5-header {
  text-align: center;
  margin-bottom: 52px;
}

.sv5-kicker {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b5dff;
}

.sv5-title {
  margin: 0;
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--ink-900);
  text-wrap: balance;
}

.sv5-title em {
  font-style: normal;
  color: #7b5dff;
}

.sv5-lead {
  margin: 20px auto 0;
  max-width: 840px;
  color: var(--ink-700);
  font-size: clamp(19px, 2.3vw, 28px);
  line-height: 1.5;
  text-align: center;
}

/* Grid 2x2 */
.sv5-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(18, 28, 56, 0.08);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(18, 28, 56, 0.04);
}

/* Card */
.sv5-card {
  position: relative;
  min-height: 196px;
  padding: 28px 30px 24px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(200px 160px at 100% 100%, var(--sv5-accent-wash-strong, rgba(18,184,134,0.07)), transparent 70%),
    #fff;
  overflow: hidden;
  transition: background 0.2s;
}

.sv5-card:hover {
  background:
    radial-gradient(200px 160px at 100% 100%, var(--sv5-accent-wash-strong, rgba(18,184,134,0.1)), transparent 70%),
    #fafbff;
}

/* Inner grid lines */
.sv5-card:nth-child(1),
.sv5-card:nth-child(2) {
  border-bottom: 1px solid rgba(18, 28, 56, 0.07);
}

.sv5-card:nth-child(odd) {
  border-right: 1px solid rgba(18, 28, 56, 0.07);
}

/* Vertical accent bar (left side) */
.sv5-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 3px;
  height: 60%;
  border-radius: 0 3px 3px 0;
  background: var(--sv5-accent, #12b886);
}

/* Large ghost number */
.sv5-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -8px;
  right: 20px;
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--sv5-accent-wash-num, rgba(18, 184, 134, 0.07));
  pointer-events: none;
  user-select: none;
  font-variant-numeric: tabular-nums;
}

/* Accent colors */
.sv5-c1 {
  --sv5-accent: #12b886;
  --sv5-accent-title: #0a9068;
  --sv5-accent-wash-strong: rgba(18, 184, 134, 0.07);
  --sv5-accent-wash-num: rgba(18, 184, 134, 0.07);
}
.sv5-c2 {
  --sv5-accent: #f59e0b;
  --sv5-accent-title: #b45309;
  --sv5-accent-wash-strong: rgba(245, 158, 11, 0.07);
  --sv5-accent-wash-num: rgba(245, 158, 11, 0.07);
}
.sv5-c3 {
  --sv5-accent: #2f8fff;
  --sv5-accent-title: #1e6fd9;
  --sv5-accent-wash-strong: rgba(47, 143, 255, 0.07);
  --sv5-accent-wash-num: rgba(47, 143, 255, 0.07);
}
.sv5-c4 {
  --sv5-accent: #7b5dff;
  --sv5-accent-title: #5b3fd4;
  --sv5-accent-wash-strong: rgba(123, 93, 255, 0.07);
  --sv5-accent-wash-num: rgba(123, 93, 255, 0.07);
}

.sv5-card-title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  min-height: 44px;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  color: var(--sv5-accent-title, var(--ink-900));
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.sv5-break-target {
  display: inline;
}

.sv5-card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.62;
}

/* Closing block */
.sv5-close {
  margin-top: 20px;
  padding: 44px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(123, 93, 255, 0.05) 0%, rgba(18, 184, 134, 0.04) 100%);
  border: 1px solid rgba(18, 28, 56, 0.07);
  text-align: center;
}

.sv5-close-line1 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink-800);
  line-height: 1.2;
}

.sv5-close-line2 {
  margin: 4px 0 0;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  background: linear-gradient(90deg, #7b5dff 0%, #12b886 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sv5-close-sub {
  margin: 18px auto 0;
  max-width: 50ch;
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--ink-500);
  line-height: 1.65;
}

/* =====================================================
   ALTERNATIVE SIGNAUX — Option C Éditorial
   ===================================================== */
.ed-signals-block {
  max-width: 860px;
  margin: 80px auto 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 56px 64px;
  box-shadow: 0 4px 32px rgba(18, 28, 56, 0.06);
}

.ed-signals-header {
  text-align: center;
  margin-bottom: 56px;
}

.ed-signals-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #1a1a2e;
}

.ed-signals-title em {
  font-style: normal;
  background: linear-gradient(90deg, #7b5dff, #12b886);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ed-signals-lead {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.65;
}

.ed-signals-list {
  display: flex;
  flex-direction: column;
}

.ed-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: start;
  gap: 0 36px;
  padding: 40px 0;
  border-top: 1px solid #e5e7eb;
}

.ed-row:last-child {
  border-bottom: 1px solid #e5e7eb;
}

.ed-num {
  font-size: 120px;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: #ede9fe;
  user-select: none;
}

.ed-content {
  padding-top: 10px;
}

.ed-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a2e;
}

.ed-text {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 54ch;
}

.ed-signals-block .sv5-close {
  margin-top: 48px;
  background: #f5f3ff;
  border-radius: 14px;
  padding: 40px;
  text-align: center;
  border: none;
}

@media (max-width: 700px) {
  .ed-signals-block {
    padding: 36px 24px;
  }
  .ed-row {
    grid-template-columns: 70px 1fr;
    gap: 0 20px;
  }
  .ed-num {
    font-size: 72px;
  }
}

/* =====================================================
   ALTERNATIVE SIGNAUX — Option Make.com
   ===================================================== */
.mk-signals-section {
  background: transparent;
  padding: 16px 0 80px;
}

.mk-signals-header {
  text-align: center;
  margin-bottom: 48px;
}

.mk-signals-title {
  margin: 0 0 20px;
  font-size: clamp(44px, 6.8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
  color: #1a1a2e;
}

.mk-signals-title em {
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(96deg, #0ea572 0%, #1a7fff 45%, #6d40f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mk-signals-lead {
  font-size: clamp(20px, 2.2vw, 30px);
  color: #6b7280;
  line-height: 1.44;
  letter-spacing: -0.01em;
  max-width: 840px;
  margin: 0 auto;
}

.mk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 20px;
}

.mk-card {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.96) 0%,
    rgba(248,246,255,0.82) 28%,
    rgba(240,238,255,0.38) 58%,
    rgba(240,238,255,0) 80%
  );
  border-radius: 20px;
  border: none;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease;
  position: relative;
}

.mk-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(232,228,255,0.9) 0%, rgba(232,228,255,0) 65%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.mk-card:hover {
  transform: translateY(-5px);
}

.mk-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mk-card:nth-child(1) .mk-icon-wrap {
  background: linear-gradient(135deg, #12b886, #1fa8d4);
  box-shadow: 0 6px 18px rgba(18, 184, 134, 0.3);
}

.mk-card:nth-child(2) .mk-icon-wrap {
  background: linear-gradient(135deg, #1fa8d4, #2f8fff);
  box-shadow: 0 6px 18px rgba(47, 143, 255, 0.3);
}

.mk-card:nth-child(3) .mk-icon-wrap {
  background: linear-gradient(135deg, #2f8fff, #5a72ff);
  box-shadow: 0 6px 18px rgba(90, 114, 255, 0.3);
}

.mk-card:nth-child(4) .mk-icon-wrap {
  background: linear-gradient(135deg, #5a72ff, #7b5dff);
  box-shadow: 0 6px 18px rgba(123, 93, 255, 0.3);
}

.mk-card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #1a1a2e;
}

.mk-card-text {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

.mk-close-card {
  background: #faf9ff;
  border-radius: 20px;
  border: 1px solid #e8e4ff;
  padding: 40px 48px;
  text-align: center;
}

.mk-close-line1 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.mk-close-line2 {
  margin: 6px 0 0;
  font-size: 15px;
  color: #6c5ce7;
}

.mk-close-sub {
  margin: 10px 0 0;
  font-size: 13px;
  color: #9ca3af;
}

@media (max-width: 680px) {
  .mk-grid {
    grid-template-columns: 1fr;
  }
  .mk-close-card {
    padding: 32px 24px;
  }
}

@keyframes pulseBridgeCapsuleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseBridgeCapsuleSheen {
  0%,
  11.9%,
  29.6%,
  47.4%,
  100% {
    opacity: 0;
    transform: translateX(-150%);
  }

  12.37%,
  30.15%,
  47.93% {
    opacity: 0.9;
    transform: translateX(-126%);
  }

  16.2%,
  33.9%,
  51.7% {
    opacity: 0;
    transform: translateX(134%);
  }
}

@keyframes pulseBridgeHandSequence {
  0%,
  2.5%,
  100% {
    opacity: 0;
    transform: translate(172px, 92px) scale(0.72) rotate(-16deg);
  }

  3.5% {
    opacity: 0.12;
    transform: translate(168px, 88px) scale(0.74) rotate(-15deg);
  }

  6.0% {
    opacity: 0.55;
    transform: translate(148px, 68px) scale(0.82) rotate(-12deg);
  }

  8.5% {
    opacity: 1;
    transform: translate(90px, 36px) scale(0.9) rotate(-9deg);
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }

  13.22% {
    opacity: 1;
    transform: translate(-55px, 24px) scale(1) rotate(-6deg);
  }

  13.3% {
    opacity: 1;
    transform: translate(-55px, 29px) scale(0.9) rotate(-6deg);
  }

  14.2%,
  25.6% {
    opacity: 1;
    transform: translate(-55px, 24px) scale(1) rotate(-6deg);
  }

  27.8% {
    opacity: 1;
    transform: translate(-23px, 24px) scale(1) rotate(-3deg);
  }

  30.15% {
    opacity: 1;
    transform: translate(5px, 24px) scale(1) rotate(-1deg);
  }

  31.07% {
    opacity: 1;
    transform: translate(5px, 29px) scale(0.9) rotate(-1deg);
  }

  31.96%,
  43.4% {
    opacity: 1;
    transform: translate(5px, 24px) scale(1) rotate(-1deg);
  }

  47.93% {
    opacity: 1;
    transform: translate(65px, 24px) scale(1) rotate(3deg);
  }

  48.85% {
    opacity: 1;
    transform: translate(65px, 29px) scale(0.9) rotate(3deg);
  }

  49.74%,
  54.4% {
    opacity: 1;
    transform: translate(65px, 24px) scale(1) rotate(3deg);
  }

  56.81% {
    opacity: 0;
    transform: translate(152px, 98px) scale(0.74) rotate(14deg);
  }

  91.85%,
  100% {
    opacity: 0;
    transform: translate(152px, 98px) scale(0.74) rotate(14deg);
  }
}

@keyframes pulseBridgeDotTapGood {
  0%,
  12.36%,
  16.8%,
  100% {
    transform: scale(1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      0 10px 18px rgba(39, 49, 84, 0.12);
  }

  13.3% {
    transform: scale(1.4);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      0 0 0 10px rgba(0, 232, 122, 0.12),
      0 16px 28px rgba(0, 232, 122, 0.26);
  }
}

@keyframes pulseBridgeDotTapOk {
  0%,
  30.14%,
  34.58%,
  100% {
    transform: scale(1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      0 10px 18px rgba(39, 49, 84, 0.12);
  }

  31.07% {
    transform: scale(1.4);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      0 0 0 10px rgba(255, 107, 53, 0.12),
      0 16px 28px rgba(255, 107, 53, 0.26);
  }
}

@keyframes pulseBridgeDotTapBad {
  0%,
  47.92%,
  52.36%,
  100% {
    transform: scale(1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      0 10px 18px rgba(39, 49, 84, 0.12);
  }

  48.85% {
    transform: scale(1.4);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      0 0 0 10px rgba(255, 59, 59, 0.12),
      0 16px 28px rgba(255, 59, 59, 0.26);
  }
}

@keyframes pulseBridgeGlowGood {
  0%,
  12.36%,
  16.8%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  13.3% {
    opacity: 1;
    transform: scale(1.08);
  }

  15.8% {
    opacity: 0;
    transform: scale(1.36);
  }
}

@keyframes pulseBridgeGlowOk {
  0%,
  30.14%,
  34.58%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  31.07% {
    opacity: 1;
    transform: scale(1.08);
  }

  33.57% {
    opacity: 0;
    transform: scale(1.36);
  }
}

@keyframes pulseBridgeGlowBad {
  0%,
  47.92%,
  52.36%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  48.85% {
    opacity: 1;
    transform: scale(1.08);
  }

  51.35% {
    opacity: 0;
    transform: scale(1.36);
  }
}

@keyframes pulseBridgeRippleGood {
  0%,
  12.36%,
  16.8%,
  100% {
    opacity: 0;
    transform: scale(0.42);
  }

  13.3% {
    opacity: 0.9;
    transform: scale(0.56);
  }

  16.1% {
    opacity: 0;
    transform: scale(2.34);
  }
}

@keyframes pulseBridgeRippleOk {
  0%,
  30.14%,
  34.58%,
  100% {
    opacity: 0;
    transform: scale(0.42);
  }

  31.07% {
    opacity: 0.9;
    transform: scale(0.56);
  }

  33.87% {
    opacity: 0;
    transform: scale(2.34);
  }
}

@keyframes pulseBridgeRippleBad {
  0%,
  47.92%,
  52.36%,
  100% {
    opacity: 0;
    transform: scale(0.42);
  }

  48.85% {
    opacity: 0.9;
    transform: scale(0.56);
  }

  51.65% {
    opacity: 0;
    transform: scale(2.34);
  }
}

@keyframes pulseBridgeLabelGood {
  0%,
  12.36%,
  19.78%,
  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  13.3%,
  18.6% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes pulseBridgeLabelOk {
  0%,
  30.14%,
  37.56%,
  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  31.07%,
  36.38% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes pulseBridgeLabelBad {
  0%,
  47.92%,
  55.33%,
  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  48.85%,
  54.15% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes pulseBridgeLabelSummary {
  0%,
  56.8%,
  91.85%,
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }

  59.03%,
  90.37% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-bridge-stage,
  .pulse-bridge-shell::after,
  .pulse-bridge-hand,
  .pulse-bridge-dot,
  .pulse-bridge-dot::before,
  .pulse-bridge-dot::after,
  .pulse-bridge-copy-state,
  .pulse-bridge-copy-summary {
    animation: none !important;
  }

  .pulse-bridge-hand,
  .pulse-bridge-copy-state {
    display: none;
  }

  .pulse-bridge-copy-summary {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Responsive */
@media (max-width: 720px) {
  .pulse-bridge {
    margin: -96px auto 10px;
  }

  .mk-signals-section {
    padding: 12px 0 64px;
  }

  .pulse-bridge-stage {
    gap: 16px;
  }

  .pulse-bridge-stage::before {
    inset: -18px -26px -20px;
  }

  .pulse-bridge-hand {
    top: 39px;
    width: 40px;
    height: 40px;
    margin-left: -24px;
    font-size: 36px;
  }

  .pulse-bridge-copy {
    min-height: 34px;
  }

  .pulse-bridge-copy-state {
    font-size: 16px;
  }

  .pulse-bridge-copy-summary {
    gap: 0.3em;
    white-space: normal;
    width: min(100%, 280px);
    line-height: 1.35;
  }

  .sv5-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .sv5-card:nth-child(odd) {
    border-right: none;
  }

  .sv5-card:nth-child(1),
  .sv5-card:nth-child(2),
  .sv5-card:nth-child(3) {
    border-bottom: 1px solid rgba(18, 28, 56, 0.07);
  }

  .sv5-card:nth-child(4) {
    border-bottom: none;
  }

  .sv5-card {
    min-height: 148px;
    padding: 20px 20px 18px 28px;
  }

  .sv5-card::after {
    font-size: 60px;
    bottom: -2px;
    right: 12px;
  }

  .sv5-card-title {
    min-height: 40px;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .sv5-card-text {
    min-height: 44px;
    font-size: 13.5px;
    line-height: 1.58;
  }

  .sv5-break-target {
    display: inline;
  }

  .sv5-close {
    margin-top: 12px;
    padding: 32px 24px;
    border-radius: 16px;
  }

  .impact.section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 100%;
    padding: 0 8px;
  }

  .impact-card {
    padding: 16px;
  }

  .impact-card::before {
    left: 0;
    top: 20%;
    width: 3px;
    height: 60%;
    border-radius: 0 3px 3px 0;
  }

  .impact-kicker {
    margin-bottom: 4px;
  }

  .impact-number {
    font-size: 36px;
    white-space: nowrap;
  }

  .impact-card h3 {
    min-height: 0;
    margin-bottom: 6px;
    font-size: 15px;
  }

  .impact-card p {
    min-height: 0;
    font-size: 13px;
    line-height: 1.5;
  }
}

/* ================================================================ */

.signals-new {
  background: transparent;
  padding-bottom: 18px;
}

/* ===================================================
   TEAM PHOTO SECTION
   =================================================== */

.team-photo-section {
  padding: 40px 24px;
}

.team-photo-wrap {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(7, 12, 34, 0.18), 0 4px 16px rgba(7, 12, 34, 0.1);
}

.team-photo-picture {
  display: block;
}

.team-photo-img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 25%;
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 20%, transparent 72%, rgba(10, 15, 40, 0.12) 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .team-photo-section {
    padding: 24px 16px;
  }
  .team-photo-wrap {
    border-radius: 16px;
  }
  .team-photo-img {
    height: clamp(168px, 52vw, 210px);
    object-position: center center;
  }
}

/* ===================================================
   END TEAM PHOTO
   =================================================== */

.impact {
  background: transparent;
  padding-top: 52px;
}

.impact .section-title,
.impact .section-lead {
  text-align: center;
}

.impact .section-title {
  background: linear-gradient(96deg, #12b886 0%, #2f8fff 52%, #7b5dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.impact-grid {
  margin: 44px auto 0;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.impact-card {
  background: linear-gradient(315deg,
    rgba(255,255,255,0.96) 0%,
    rgba(248,246,255,0.82) 28%,
    rgba(240,238,255,0.38) 58%,
    rgba(240,238,255,0) 80%
  );
  border-radius: 20px;
  border: none;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease;
  position: relative;
}

.impact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(315deg, rgba(232,228,255,0.9) 0%, rgba(232,228,255,0) 65%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.impact-card:hover {
  transform: translateY(-5px);
}

.impact-number-sub {
  margin: 2px 0 10px;
  font-size: 13px;
  font-style: italic;
  color: #6b7280;
  line-height: 1.3;
}

.impact-number {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #a78bfa, #6c5ce7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-kicker {
  margin: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b5dff;
}

.impact-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #1a1a2e;
}

.impact-card p {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.58;
}

.dashboard-preview {
  padding-top: 80px;
  padding-bottom: 80px;
  margin: 0 24px 0;
  border-radius: 32px;
  background:
    radial-gradient(1100px 560px at 18% 10%, rgba(47, 143, 255, 0.28), transparent 64%),
    radial-gradient(920px 480px at 88% 12%, rgba(123, 93, 255, 0.24), transparent 62%),
    radial-gradient(840px 420px at 50% 92%, rgba(86, 168, 255, 0.16), transparent 62%),
    linear-gradient(150deg, #141c35 0%, #121a31 42%, #0f1830 100%);
}

.dashboard-preview .section-title,
.dashboard-preview .section-lead {
  color: #ffffff;
  text-align: center;
  text-shadow: none;
}

.dashboard-preview .section-title {
  max-width: 12ch;
  margin-inline: auto;
}

.dashboard-preview .section-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

.dashboard-shell {
  position: relative;
  margin: 56px auto 0;
  max-width: 1080px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.92));
  box-shadow:
    0 0 0 1px rgba(180, 220, 255, 0.3),
    0 18px 54px rgba(100, 170, 255, 0.22),
    0 0 80px rgba(100, 160, 255, 0.18),
    0 0 160px rgba(80, 140, 255, 0.1);
  backdrop-filter: blur(18px);
  padding: 28px;
  transform: perspective(1400px) rotateX(4deg) rotateY(-1.2deg);
  transition: transform 0.36s ease, box-shadow 0.36s ease, border-color 0.28s ease;
  cursor: pointer;
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(18, 184, 134, 0.35), rgba(47, 143, 255, 0.35), rgba(123, 93, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.dashboard-shell:hover {
  transform: perspective(1400px) rotateX(1deg) rotateY(0deg) translateY(-6px);
  border-color: rgba(120, 170, 255, 0.48);
  box-shadow: 0 42px 92px rgba(7, 12, 34, 0.42), 0 14px 30px rgba(7, 12, 34, 0.22);
}

.dashboard-shell:focus-visible {
  outline: 3px solid rgba(123, 93, 255, 0.42);
  outline-offset: 8px;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(26, 35, 66, 0.14);
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.dashboard-head strong {
  display: block;
  font-size: 19px;
  color: var(--ink-900);
}

.dashboard-head span {
  font-size: 13px;
  color: var(--ink-500);
}

.live-pill {
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  background: linear-gradient(135deg, rgba(123, 93, 255, 0.14), rgba(47, 143, 255, 0.12));
  color: #4d49a7;
  border: 1px solid rgba(109, 120, 255, 0.18);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat-card {
  border-radius: 14px;
  border: 1px solid rgba(26, 35, 66, 0.14);
  background: linear-gradient(142deg, rgba(234, 249, 255, 0.95), rgba(232, 255, 245, 0.92));
  padding: 12px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.stat-value {
  margin: 0;
  font-size: clamp(34px, 3.3vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--ink-900);
}

.stat-label {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--ink-700);
}

.stat-meta {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 800;
}

.stat-meta.down {
  color: #d64545;
}

.stat-meta.warn {
  color: #d97706;
}

.team-table {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.team-row {
  border-radius: 12px;
  border: 1px solid rgba(26, 35, 66, 0.12);
  border-left: 4px solid transparent;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.6fr 1.3fr;
  gap: 10px;
  align-items: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.team-row:hover {
  transform: translateX(6px);
  box-shadow: 0 14px 22px rgba(18, 28, 56, 0.14);
}

.team-row .trend {
  text-align: right;
  font-size: 13px;
  font-weight: 800;
  text-transform: lowercase;
}

.team-row.good {
  border-left-color: #0ea878;
}

.team-row.warn {
  border-left-color: #d97706;
}

.team-row.bad {
  border-left-color: #dc2626;
}

/* ---- Mock dashboard new content ---- */
.mock-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.mock-pill {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.mock-pill-green  { background: #14B414; color: #fff; }
.mock-pill-yellow { background: #FFDE00; color: #1a1a2e; }
.mock-pill-red    { background: #FF0000; color: #fff; }

.mock-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  margin: 14px 0 8px;
}

.mock-rows { display: flex; flex-direction: column; gap: 6px; }

/* Horizontal layout (desktop) */
@media (min-width: 769px) {
  .mock-rows-h {
    flex-direction: row;
    gap: 0;
    background: rgba(248, 247, 255, 0.7);
    border: 1px solid rgba(167, 139, 250, 0.12);
    border-radius: 10px;
    overflow: hidden;
  }

  .mock-col {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
  }

  .mock-col-sep {
    width: 1px;
    background: rgba(167, 139, 250, 0.2);
    align-self: stretch;
  }

  .mock-col-trend {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 10px;
  }

  .mock-col-top {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .mock-rows-h-trend .mock-dots-row {
    flex-wrap: wrap;
    gap: 3px;
  }
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .mock-rows-h {
    flex-direction: column;
    gap: 6px;
  }

  .mock-col {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(248, 247, 255, 0.7);
    border: 1px solid rgba(167, 139, 250, 0.12);
    border-radius: 10px;
  }

  .mock-col-sep { display: none; }

  .mock-col-trend {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .mock-col-top {
    display: flex;
    align-items: center;
    gap: 6px;
  }
}

.mock-dot-yellow { background: #e6ac00; }

.mock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(248, 247, 255, 0.7);
  border: 1px solid rgba(167, 139, 250, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mock-row-priority {
  position: relative;
  border-color: rgba(220, 38, 38, 0.18);
  background: linear-gradient(135deg, rgba(255, 245, 245, 0.92), rgba(252, 245, 255, 0.88));
  box-shadow: 0 16px 34px rgba(220, 38, 38, 0.08);
}

.mock-row-priority::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.18);
  pointer-events: none;
  animation: previewPriorityPulse 3s ease-out infinite;
}

.mock-row-trend { flex-wrap: wrap; }

.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.mock-avatar-red    { background: #FF0000; }
.mock-avatar-green  { background: #14B414; }
.mock-avatar-yellow { background: #b8860b; }

.mock-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.mock-name {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-role {
  font-size: 10px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-dot-red   { background: #FF0000; }
.mock-dot-green { background: #14B414; }

.mock-row-priority .mock-dot-red {
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.28);
  animation: previewDotPulse 2.8s ease-out infinite;
}

.mock-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 4px 9px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.mock-badge-red    { background: rgba(255,0,0,0.1); color: #cc0000; }
.mock-badge-green  { background: rgba(20,180,20,0.1); color: #0a7a0a; }
.mock-badge-yellow { background: rgba(255,222,0,0.15); color: #7a6200; }

.mock-dots-row {
  display: flex;
  gap: 3px;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
}

.mock-td {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-td-green  { background: #14B414; }
.mock-td-yellow { background: #FFDE00; }
.mock-td-red    { background: #FF0000; }

/* Stats row — identique mobile et desktop */
.mock-stats-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  align-items: stretch;
}

.mock-action-card {
  flex: 1;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 32, 67, 0.08);
  border-radius: 14px;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(12, 21, 52, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mock-action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(7, 12, 34, 0.12);
}

.mock-action-card:focus-visible {
  outline: 2px solid rgba(123, 93, 255, 0.45);
  outline-offset: 4px;
}

.mock-action-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 999px;
}

.mock-action-card-priority::after {
  background: #FF4D4D;
}

.mock-action-card-follow::after {
  background: #FFC857;
}

.mock-module-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mock-module-ident {
  min-width: 0;
}

.mock-module-name {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #172043;
}

.mock-module-role {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  color: #64748b;
}

.mock-module-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.mock-module-badge-red {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.12);
}

.mock-module-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mock-module-status {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: #dc2626;
}

.mock-module-age {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #b3261e;
  white-space: nowrap;
}

.mock-module-proof {
  font-size: 12px;
  line-height: 1.45;
  color: #475569;
}

.mock-module-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 2px;
}

.mock-module-cta-row {
  display: flex;
  justify-content: flex-start;
  margin-top: auto;
}

.mock-module-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(220, 38, 38, 0.18);
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mock-module-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(220, 38, 38, 0.12);
}

.mock-module-cta-neutral {
  border-color: rgba(255, 200, 87, 0.3);
  background: rgba(255, 200, 87, 0.14);
  color: #a16207;
}

.mock-follow-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-follow-title {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #172043;
}

.mock-follow-subtitle {
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
}

.mock-follow-list {
  display: grid;
  gap: 8px;
}

.mock-follow-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(23, 32, 67, 0.08);
}

.mock-follow-item:first-child {
  border-top: none;
  padding-top: 2px;
}

.mock-follow-value {
  min-width: 24px;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  color: #a16207;
}

.mock-follow-copy {
  min-width: 0;
}

.mock-follow-label {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  color: #172043;
}

.mock-follow-meta {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.4;
  color: #64748b;
}

.preview-link-wrap {
  margin-top: 24px;
  text-align: center;
}

.preview-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.preview-link {
  min-height: 48px;
  min-width: 224px;
  padding: 0 26px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(129, 122, 255, 0.55);
  background: linear-gradient(135deg, #2f8fff 0%, #7b5dff 100%);
  box-shadow: 0 14px 30px rgba(36, 74, 181, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.preview-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(36, 74, 181, 0.34);
}

.preview-link.preview-link-secondary {
  color: #f7f9ff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.preview-link.preview-link-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.preview-micro {
  margin-top: 16px;
  margin-bottom: 0;
  padding-bottom: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
  display: flex;
  justify-content: center;
  gap: 10px 22px;
  flex-wrap: wrap;
}

.preview-micro-line {
  display: inline-flex;
  align-items: center;
  line-height: 1.5;
}

.preview-micro-line + .preview-micro-line::before {
  content: none;
}

@keyframes previewPriorityPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.18);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

@keyframes previewDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.28);
  }
  72% {
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mock-row-priority::after,
  .mock-row-priority .mock-dot-red {
    animation: none;
  }
}

.factory-photo-section {
  padding: 168px 24px;
}

.factory-photo-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(7, 12, 34, 0.18), 0 4px 16px rgba(7, 12, 34, 0.1);
}

.factory-photo-picture {
  display: block;
}

.factory-photo-img {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 24%;
}

.factory-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 20%, transparent 72%, rgba(10, 15, 40, 0.12) 100%);
  pointer-events: none;
}

.philosophy-v2 {
  padding-top: 0;
}

@media (max-width: 768px) {
  .factory-photo-section {
    padding: 96px 16px 28px;
  }

  .factory-photo-wrap {
    border-radius: 16px;
    max-width: 900px;
  }

  .factory-photo-img {
    height: clamp(180px, 55vw, 208px);
    object-fit: cover;
    object-position: center 18%;
  }
}

@media (max-width: 640px) {
  .preview-micro-line {
    display: block;
  }
  .preview-micro-line + .preview-micro-line::before {
    content: none;
  }
}

@media (max-width: 640px) {
  .preview-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .preview-actions .preview-link {
    width: 100%;
  }

  .dashboard-preview {
    margin: 0 16px 0;
    border-radius: 24px;
  }

  .dashboard-shell {
    margin-top: 34px;
    padding: 16px;
    border-radius: 20px;
    transform: none;
  }

  .dashboard-shell:hover {
    transform: translateY(-2px);
  }

  .dashboard-preview .section-title {
    max-width: 11ch;
  }

  .dashboard-preview .section-lead {
    max-width: 28ch;
    font-size: 16px;
    line-height: 1.55;
  }

  .dashboard-head strong {
    font-size: 17px;
  }

  .dashboard-head span {
    font-size: 12px;
  }

  .mock-stats-row {
    flex-direction: column;
  }

  .mock-action-card {
    min-height: 0;
    padding: 14px;
  }

  .preview-micro {
    flex-direction: column;
    gap: 6px;
    margin-top: 14px;
    font-size: 14px;
  }

  .preview-actions .preview-link {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    min-width: 0;
  }
}


.final-cta {
  background: transparent;
}

.final-inner {
  text-align: center;
}

.final-inner h2 {
  margin: 0 auto;
  width: fit-content;
  max-width: 980px;
  font-size: clamp(44px, 6.8vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
  color: var(--ink-900);
  background: linear-gradient(96deg, #12b886 0%, #2f8fff 52%, #7b5dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-sub {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--ink-700);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.44;
  letter-spacing: -0.01em;
}

.final-btn {
  margin-top: 26px;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(115deg, #12b886 0%, #2f8fff 55%, #7b5dff 100%);
  box-shadow: 0 20px 38px rgba(18, 184, 134, 0.34);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  animation: pulseSoft 2.4s ease-in-out infinite;
}

.final-btn:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.03);
  box-shadow: 0 28px 44px rgba(18, 184, 134, 0.42);
  animation-play-state: paused;
}

.final-reassurance {
  margin: 18px auto 0;
  width: min(80%, 560px);
  text-align: center;
}

.final-reassurance-main {
  margin: 0;
  color: var(--ink-700);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.44;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.final-reassurance-link {
  display: inline-block;
  margin-top: 7px;
  color: var(--ink-700);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.final-reassurance-link:hover {
  color: var(--ink-900);
}

.final-reassurance-link:focus-visible {
  outline-color: rgba(255, 255, 255, 0.78);
  border-radius: 8px;
}

.final-proof {
  margin-top: 12px;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 800;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--fade-delay, 0ms);
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-soft {
  transform: translate3d(0, 18px, 0) scale(0.985);
}


*:focus-visible {
  outline: 3px solid #12b886;
  outline-offset: 3px;
  border-radius: 6px;
}

@keyframes heroFlow {
  from {
    transform: translate3d(-2%, -2%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 2%, 0) scale(1.07);
  }
}

@keyframes pulseSoft {
  0%,
  100% {
    box-shadow: 0 16px 28px rgba(18, 184, 134, 0.28);
  }
  50% {
    box-shadow: 0 24px 42px rgba(18, 184, 134, 0.4);
  }
}

@media (max-width: 1200px) {
  .home-header {
    padding-left: 20px;
    padding-right: 20px;
    gap: 16px;
  }

  .brand {
    font-size: 32px;
  }

  .logo-mark {
    padding: 7px 11px;
  }

  .logo-dot {
    width: 10px;
    height: 10px;
  }

  .header-actions {
    gap: 10px;
  }

  .home-header .auth-link {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  .home-header .auth-link.primary {
    padding: 0 20px;
    font-size: 15px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .signals-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .team-row {
    grid-template-columns: 1fr 1fr;
  }

  .team-row .trend {
    text-align: left;
  }

}

@media (max-width: 768px) {
  .section {
    padding: 88px 0;
  }

  .home-header {
    min-height: 74px;
    align-items: flex-start;
    padding: 10px 12px;
  }

  .brand {
    font-size: 30px;
    flex: 0 0 auto;
    width: max-content;
    padding-top: 2px;
    display: inline-flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3px;
    line-height: 1;
    text-align: center;
  }

  .home-header .logo-mark {
    padding: 5px 8px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-header .logo-dot {
    width: 8px;
    height: 8px;
  }

  .header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
  }

  .home-header .carelem-lang-trigger {
    min-width: 40px;
    min-height: 40px;
    border-radius: 12px;
  }

  .hero {
    padding-top: 138px;
    min-height: auto;
  }

  .hero-title,
  .mk-signals-title,
  .philosophy-v2-title-main,
  .final-inner h2 {
    font-size: clamp(36px, 10.8vw, 56px);
  }

  .hero-subtitle,
  .mk-signals-lead,
  .section-lead,
  .philosophy-v2-title-tail,
  .final-sub {
    font-size: clamp(19px, 5vw, 28px);
  }


  .dashboard-shell {
    transform: none;
    margin: 32px auto 0;
  }

  .dashboard-preview {
    padding-top: 32px;
    padding-bottom: 32px;
    margin: 0 12px 0;
    border-radius: 20px;
  }

  .team-row {
    grid-template-columns: 1fr;
  }


}

@media (max-width: 560px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    font-size: 26px;
    gap: 3px;
  }

  .home-header .logo-mark {
    padding: 4px 7px;
  }

  .home-header .logo-dot {
    width: 7px;
    height: 7px;
  }

  .header-actions {
    width: 186px;
    gap: 4px;
  }

  .auth-link {
    min-height: 38px;
    padding: 0 6px;
    font-size: 11px;
  }


  .sv5-title {
    font-size: clamp(31px, 10vw, 44px);
  }

  .hero-title,
  .section-title,
  .mk-signals-title,
  .philosophy-v2-title-main,
  .final-inner h2 {
    font-size: clamp(31px, 10vw, 44px);
  }

  .hero-subtitle,
  .section-lead,
  .mk-signals-lead,
  .philosophy-v2-title-tail,
  .final-sub {
    font-size: clamp(17px, 4.8vw, 22px);
  }

  .pulse-bridge {
    margin: -72px auto 8px;
  }

  .mk-signals-section {
    padding-top: 10px;
  }

  .pulse-bridge-hand {
    top: 40px;
    width: 40px;
    height: 40px;
    margin-left: -24px;
    font-size: 34px;
  }

  .pulse-bridge-copy {
    min-height: 40px;
  }

  .pulse-bridge-copy-state,
  .pulse-bridge-copy-summary {
    width: min(100%, 260px);
  }

  .pulse-bridge-copy-state {
    font-size: 15px;
  }

  .impact-grid {
    margin-top: 28px;
  }

  .impact-card {
    padding: 24px 20px;
  }

  .impact-card h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .impact-card p {
    min-height: 40px;
    font-size: 13px;
    line-height: 1.52;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* ================================================================
   PHILOSOPHY V2 — Product Clarity
   ================================================================ */

.philosophy-v2 {
  background: transparent;
}

/* Slide-in from right animation */
.slide-right {
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 0.62s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--slide-delay, 0ms);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.philosophy-v2-head {
  margin: 0 auto;
  max-width: 1120px;
  text-align: center;
}

.philosophy-v2-title-main {
  margin: 0 auto;
  max-width: 920px;
  font-size: clamp(44px, 6.8vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--ink-900);
  text-wrap: balance;
}

.philosophy-v2-title-tail {
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: -0.01em;
  color: rgba(19, 31, 63, 0.78);
  text-wrap: balance;
}

.philosophy-v2-kicker {
  margin: 46px auto 0;
  width: fit-content;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-700);
  border: 1px solid rgba(18, 28, 56, 0.07);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(18, 28, 56, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.philo-grid {
  margin: 44px auto 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 0.98fr 1.08fr 0.98fr;
  gap: 20px;
  align-items: stretch;
}

.philo-card {
  position: relative;
  min-height: 230px;
  padding: 30px 28px 26px;
  border-radius: 24px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  border: 1px solid rgba(18, 28, 56, 0.075);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.74) 100%);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(18, 28, 56, 0.055), 0 3px 10px rgba(18, 28, 56, 0.028);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.philo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(240px 180px at 100% 0%, var(--philo-soft, rgba(18, 184, 134, 0.12)), transparent 72%);
  pointer-events: none;
}

.philo-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 78px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--philo-accent, #12b886) 0%, rgba(255, 255, 255, 0.18) 100%);
  opacity: 0.96;
}

.philo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 28, 56, 0.11);
  box-shadow: 0 24px 50px rgba(18, 28, 56, 0.08), 0 5px 14px rgba(18, 28, 56, 0.035);
}

.philo-step {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  color: var(--philo-accent, #12b886);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(18, 28, 56, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.philo-copy {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  min-height: 104px;
  display: flex;
  align-items: flex-start;
}

.philo-title {
  margin: 0;
  max-width: 12.5ch;
  font-size: clamp(24px, 2.05vw, 30px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.038em;
  text-wrap: balance;
  color: var(--ink-900);
}

.philo-c2 .philo-title {
  max-width: 13.8ch;
}

.philo-c1 {
  --philo-accent: #12b886;
  --philo-soft: rgba(18, 184, 134, 0.12);
}

.philo-c2 {
  --philo-accent: #2f8fff;
  --philo-soft: rgba(47, 143, 255, 0.12);
}

.philo-c3 {
  --philo-accent: #7b5dff;
  --philo-soft: rgba(123, 93, 255, 0.12);
}

@media (max-width: 980px) {
  .philosophy-v2-title-main {
    max-width: 17ch;
  }

  .philosophy-v2-title-tail {
    max-width: 24ch;
  }

  .philosophy-v2-kicker {
    margin-top: 38px;
  }

  .philo-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .philo-card {
    min-height: 0;
    padding: 24px 22px 22px;
  }

  .philo-copy {
    min-height: 0;
    margin-top: 18px;
  }

  .philo-title {
    max-width: 18ch;
  }
}

@media (max-width: 640px) {
  .philosophy-v2-head {
    max-width: 100%;
  }

  .philosophy-v2-title-main {
    max-width: 100%;
  }

  .philosophy-v2-title-tail {
    margin-top: 14px;
    max-width: 100%;
  }

  .philosophy-v2-kicker {
    margin-top: 30px;
    min-height: 36px;
    padding: 0 16px;
    font-size: 13px;
  }

  .philo-grid {
    margin-top: 28px;
    gap: 12px;
  }

  .philo-card {
    padding: 21px 18px 18px;
    border-radius: 20px;
  }

  .philo-card::after {
    left: 18px;
    width: 52px;
  }

  .philo-step {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .philo-copy {
    margin-top: 16px;
  }

  .philo-title {
    max-width: 100%;
    font-size: clamp(21px, 6.2vw, 26px);
    line-height: 1.18;
  }
}

/* =====================================================
   TESTIMONIALS CAROUSEL — PREMIUM
   ===================================================== */
.testimonials-carousel {
  position: relative;
  margin: 56px auto 0;
  max-width: 1100px;
  padding: 0 56px;
}

.tcarousel-viewport {
  overflow: hidden;
}

.tcarousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ---- Card ---- */
.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 56px) / 3);
  background: linear-gradient(160deg, #fdfcff 0%, #f5f0ff 100%);
  border-radius: 24px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  padding: 36px 32px 32px;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.9) inset,
    0 8px 32px rgba(108, 92, 231, 0.1),
    0 2px 8px rgba(108, 92, 231, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.9) inset,
    0 20px 48px rgba(108, 92, 231, 0.16),
    0 4px 12px rgba(108, 92, 231, 0.1);
}

/* Guillemet décoratif */
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -14px;
  right: 22px;
  font-size: 110px;
  font-family: Georgia, serif;
  line-height: 1;
  color: rgba(167, 139, 250, 0.13);
  pointer-events: none;
  user-select: none;
}

/* Barre colorée en haut — une par card */
.testimonial-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, #a78bfa, #6c5ce7);
}
.testimonial-card:nth-child(2)::after { background: linear-gradient(90deg, #a78bfa, #2f8fff); }
.testimonial-card:nth-child(3)::after { background: linear-gradient(90deg, #7c3aed, #4c1d95); }
.testimonial-card:nth-child(4)::after { background: linear-gradient(90deg, #a78bfa, #00b894); }
.testimonial-card:nth-child(5)::after { background: linear-gradient(90deg, #a78bfa, #e84393); }
.testimonial-card:nth-child(6)::after { background: linear-gradient(90deg, #6c5ce7, #4a4a6a); }

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.testimonial-brand-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  flex-shrink: 0;
  background: linear-gradient(155deg, #ffffff 0%, #f3ecff 100%);
  border: 1px solid rgba(167, 139, 250, 0.26);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.18);
  text-align: center;
}

.testimonial-brand-word {
  display: block;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #5b43c7;
}

.testimonial-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.testimonial-brand-mark .logo-dot {
  width: 7px;
  height: 7px;
  animation: none !important;
  box-shadow: none !important;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.35);
}

.testimonial-avatar.tav-img,
.testimonial-footer-avatar.tav-img {
  background: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.tav-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-left: auto;
}
.testimonial-stars span { color: #f59e0b; font-size: 13px; }

.testimonial-quote {
  margin: 0 0 24px;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.7;
  color: #1a1a2e;
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(167, 139, 250, 0.18);
}

.testimonial-footer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.9;
}

.testimonial-footer-avatar.tav-img {
  box-shadow: 0 8px 16px rgba(18, 28, 56, 0.12);
  opacity: 1;
}

.testimonial-name {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
}

.testimonial-role {
  margin: 0;
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.4;
}

/* ---- Arrows ---- */
.tcarousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.3);
  background: #ffffff;
  color: #6c5ce7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(108, 92, 231, 0.12);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  z-index: 2;
}

.tcarousel-arrow:hover {
  background: #6c5ce7;
  color: #fff;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
  transform: translateY(-60%) scale(1.08);
}

.tcarousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.tcarousel-prev { left: 0; }
.tcarousel-next { right: 0; }

/* ---- Dots ---- */
.tcarousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.tcarousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd8f8;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.25s;
}

.tcarousel-dot.active {
  background: #6c5ce7;
  transform: scale(1.25);
  width: 22px;
  border-radius: 4px;
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .testimonials-carousel {
    padding: 0;
    margin-top: 40px;
  }

  .tcarousel-arrow {
    display: none;
  }

  .tcarousel-track {
    gap: 0;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-top {
    margin-bottom: 20px;
  }

  .testimonial-brand-badge {
    width: 52px;
    height: 52px;
  }

  .testimonial-brand-word {
    font-size: 7px;
  }

  .testimonial-brand-mark .logo-dot {
    width: 6px;
    height: 6px;
  }

  .testimonial-footer-avatar {
    width: 42px;
    height: 42px;
  }

  .tcarousel-dots {
    margin-top: 24px;
    gap: 10px;
  }

  .tcarousel-dot {
    width: 10px;
    height: 10px;
    background: #c9c2f5;
  }

  .tcarousel-dot.active {
    background: #6c5ce7;
    width: 28px;
    transform: none;
  }
}
