/* ==========================================================================
   KLAIV — site vitrine · style.css
   Refonte visuelle 2026-06-10
   Sommaire :
   01. Tokens
   02. Base / reset / typographie
   03. Header / navigation
   04. Boutons
   05. Hero (copy + command-visual)
   06. Product-card (fiche contact) + couleurs sémantiques
   07. Sections communes + teintes par section
   08. Avant / Après
   09. Problème
   10. Approche
   11. Cas concrets (scenario-cards)
   12. Pour qui (audience)
   13. Ce que ce n'est pas (reassurance)
   14. Validation terrain
   15. Contact
   16. Footer
   17. Pages légales
   18. Reveal / animations
   19. Responsive (1080 / 767 / 560 / 380)
   20. prefers-reduced-motion
   ========================================================================== */

/* ====== 01. Tokens ====== */
:root {
  color-scheme: dark;
  --bg-0: #161616;
  --bg-1: #1a1a1a;
  --bg-2: #1e1e1e;
  --bg-3: #242424;
  --text-1: #ededed;
  --text-2: rgba(237, 237, 237, 0.74);
  --text-3: rgba(237, 237, 237, 0.56);
  --muted: rgba(237, 237, 237, 0.50);
  --accent: #b4b4b4;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  /* Marque */
  --brand: #54cc92;
  --brand-strong: #6ed9a6;
  --brand-deep: #06231a;
  --brand-soft: rgba(84, 204, 146, 0.09);
  --brand-line: rgba(84, 204, 146, 0.28);
  /* Accents sémantiques */
  --cyan: #8ed8ff;
  --cyan-soft: rgba(142, 216, 255, 0.10);
  --cyan-line: rgba(142, 216, 255, 0.30);
  --amber: #f0b66a;
  --amber-soft: rgba(240, 182, 106, 0.10);
  --amber-line: rgba(240, 182, 106, 0.32);
  /* Teintes d'ambiance par section */
  --sec-ba: #57c2a8;   /* Avant/Après — teal doux */
  --sec-pb: #d8a662;   /* Problème — ambre doux */
  --sec-ap: #74c47a;   /* Approche — vert frais */
  --sec-cas: #ccac60;  /* Cas concrets — ocre doux */
  --sec-pq: #b89ccf;   /* Pour qui — mauve doux */
  --sec-pq-soft: rgba(184, 156, 207, 0.12);
  --sec-pq-line: rgba(184, 156, 207, 0.32);
  --sec-not: #d292a3;  /* Ce que ce n'est pas — rosé doux */
  --sec-val: #a6bd85;  /* Validation — sauge */
  /* Surfaces */
  --glass: rgba(255, 255, 255, 0.04);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 18px 56px rgba(0, 0, 0, 0.35);
  --radius: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

/* ====== 02. Base / reset / typographie ====== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

::selection {
  color: var(--text-1);
  background: rgba(84, 204, 146, 0.30);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-1);
  background:
    radial-gradient(ellipse 80% 52% at 50% 0%, rgba(84, 204, 146, 0.04), transparent 68%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -0.018em;
  text-wrap: balance;
  color: var(--text-1);
}

p {
  text-wrap: pretty;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 1.05rem;
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.022em;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  font-weight: 640;
  letter-spacing: -0.012em;
}

/* ====== 03. Header / navigation ====== */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 14px auto 0;
  padding: 0.6rem 0.65rem 0.6rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(26, 26, 26, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 54px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(20, 20, 20, 0.95);
  border-color: var(--line-strong);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.55rem;
  font-weight: 720;
  letter-spacing: -0.005em;
}

.brand-mark {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  box-shadow: 0 0 0 3px rgba(84, 204, 146, 0.14);
  flex-shrink: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  color: var(--text-3);
  font-size: 0.9rem;
  font-weight: 580;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.05);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.62rem 1.05rem;
  border-radius: var(--radius);
  color: var(--brand-deep);
  background: var(--brand);
  font-size: 0.9rem;
  font-weight: 680;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--brand-strong);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(84, 204, 146, 0.22);
}

/* ====== 04. Boutons ====== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 620;
  letter-spacing: -0.005em;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.source-node:hover,
.queue-card:hover,
.glass-card:hover,
.scenario-card:hover,
.flow-step:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--brand-deep);
  background: var(--brand);
  font-weight: 680;
  box-shadow: 0 10px 24px rgba(84, 204, 146, 0.18);
}

.button-primary:hover {
  background: var(--brand-strong);
  box-shadow: 0 14px 30px rgba(84, 204, 146, 0.24);
}

.button-secondary {
  color: var(--text-1);
  background: transparent;
  border-color: var(--line-strong);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

/* ====== 05. Hero ====== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 82px);
  padding: clamp(4.4rem, 7vw, 6.8rem) max(1rem, calc((100% - var(--max)) / 2)) clamp(4rem, 7vw, 6.2rem);
  overflow: hidden;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 65% 45%, rgba(84, 204, 146, 0.045), transparent 70%),
    linear-gradient(180deg, rgba(22, 22, 22, 0.6), rgba(22, 22, 22, 0) 45%, rgba(22, 22, 22, 0.85));
}

.grid-layer {
  display: none;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 5.5vw, 6rem);
  width: min(var(--max), 100%);
  min-height: min(760px, calc(100svh - 170px));
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.system-pill,
.eyebrow,
.card-tag,
.compare-tag,
.scenario-kicker,
.phase-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.system-pill {
  gap: 0.55rem;
  max-width: 100%;
  margin-bottom: 1.4rem;
  padding: 0.34rem 0.78rem 0.34rem 0.52rem;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 640;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.system-pill strong {
  color: var(--text-1);
  font-weight: 680;
}

.system-pill span:last-child {
  text-transform: none;
  color: var(--text-3);
  font-size: 0.7rem;
  font-weight: 520;
  letter-spacing: 0;
}

.system-pulse,
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(84, 204, 146, 0.16);
  flex-shrink: 0;
}

.system-pulse {
  animation: pulseDot 2.4s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--text-3);
  font-size: 0.74rem;
  font-weight: 640;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text,
.section-heading p,
.validation-card p,
.contact-inner p {
  color: var(--text-2);
}

.hero-text {
  max-width: 610px;
  margin-bottom: 1.7rem;
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.hero-metrics span {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  padding: 0.8rem 0.75rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--text-2);
  font-size: 0.78rem;
}

.hero-metrics strong {
  color: var(--brand);
  font-size: 1.42rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* --- Command visual (colonne droite du hero) --- */
.command-visual {
  position: relative;
  min-width: 0;
}

.visual-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.visual-status span {
  min-height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-3);
  background: var(--glass);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-align: center;
}

.signal-map {
  position: relative;
  height: clamp(480px, 54svh, 580px);
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 46% 40% at 50% 50%, rgba(84, 204, 146, 0.06), transparent 70%),
    linear-gradient(155deg, rgba(30, 30, 30, 0.85), rgba(20, 20, 20, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    var(--shadow);
  overflow: hidden;
}

.signal-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 90%);
}

.signal-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(440px, 78%);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.static-line,
.flow-line {
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
}

.static-line {
  stroke: rgba(255, 255, 255, 0.07);
}

.flow-line {
  stroke: var(--brand);
  stroke-width: 1.1;
  stroke-dasharray: 60 820;
  stroke-dashoffset: 0;
  animation: lineTravel 8s linear infinite;
  opacity: 0.4;
}

.flow-two { animation-delay: -2s; }
.flow-three { animation-delay: -3.4s; }
.flow-four { animation-delay: -4.6s; }
.flow-five { animation-delay: -5.8s; }
.flow-six { animation-delay: -7s; }

.source-node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 9.2rem;
  min-height: 2.2rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-2);
  background: rgba(28, 28, 28, 0.74);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.2s var(--ease), border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.source-node.is-active,
.queue-card.is-active {
  color: var(--text-1);
  border-color: var(--brand-line);
  background: rgba(36, 36, 36, 0.95);
  box-shadow: 0 0 0 1px rgba(84, 204, 146, 0.22), 0 18px 44px rgba(0, 0, 0, 0.46);
}

.node-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 180, 180, 0.1);
  flex-shrink: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.source-node.is-active .node-dot {
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(84, 204, 146, 0.18);
}

.node-site { left: 6%; top: 12%; }
.node-widget { right: 7%; top: 13%; }
.node-crm { left: 3%; top: 46%; }
.node-appel { right: 3%; top: 46%; }
.node-message { left: 8%; bottom: 11%; }
.node-ancien { right: 6%; bottom: 10%; }

.signal-queue {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.queue-card {
  min-width: 0;
  padding: 0.78rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-2);
  background: var(--glass);
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s var(--ease), border-color 0.2s ease, background 0.2s ease;
}

.queue-card span,
.queue-card em {
  display: block;
  color: var(--text-3);
  font-size: 0.72rem;
  font-style: normal;
}

.queue-card strong {
  display: block;
  margin: 0.1rem 0;
  color: var(--text-1);
  font-weight: 620;
  letter-spacing: -0.005em;
}

/* ====== 06. Product-card (fiche contact) ====== */
.product-card {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: min(320px, calc(100% - 5rem));
  transform: translate(-50%, -50%);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(34, 34, 34, 0.98), rgba(22, 22, 22, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(84, 204, 146, 0.07),
    0 42px 120px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.product-topbar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.88rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-2);
  font-size: 0.82rem;
  font-weight: 620;
  letter-spacing: -0.005em;
}

.live-dot {
  animation: pulseDot 2.4s ease-in-out infinite;
}

.card-tag {
  margin-left: auto;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--line-strong);
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.64rem;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1rem 0.95rem;
}

.contact-avatar {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid var(--brand-line);
  border-radius: 50%;
  color: var(--brand-strong);
  background: linear-gradient(135deg, rgba(84, 204, 146, 0.16), rgba(255, 255, 255, 0.04));
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.contact-head .contact-name {
  margin: 0 0 0.22rem;
  color: var(--text-1);
  font-size: 1.46rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.04;
  text-wrap: balance;
}

.contact-head p {
  margin: 0;
  color: var(--text-3);
  font-size: 0.88rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 1rem 1rem;
}

.contact-grid div {
  min-width: 0;
  padding: 0.7rem 0.65rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.contact-grid span,
.next-action span {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid strong {
  display: block;
  margin-top: 0.22rem;
  color: var(--text-1);
  font-size: 0.84rem;
  font-weight: 620;
  letter-spacing: -0.005em;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

/* Couleurs sémantiques de la fiche — activées par le patch script.js
   (data-priority / data-status posés sur les <strong> à chaque signal).
   Sans le patch, les valeurs restent neutres : aucun état incohérent. */
.contact-grid strong[data-priority="Haute"] { color: var(--amber); }
.contact-grid strong[data-priority="Moyenne"] { color: var(--cyan); }
.contact-grid strong[data-priority="Basse"] { color: var(--muted); }

.contact-grid strong[data-status="Essai réalisé"],
.contact-grid strong[data-status="RDV proposé"] { color: var(--brand); }
.contact-grid strong[data-status="Nouveau"],
.contact-grid strong[data-status="À relancer"] { color: var(--cyan); }
.contact-grid strong[data-status="À réactiver"],
.contact-grid strong[data-status="En attente"] { color: var(--muted); }

.next-action {
  margin: 0 1rem 1rem;
  padding: 0.9rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  background: var(--brand-soft);
}

.next-action strong {
  display: block;
  margin: 0.38rem 0 0.4rem;
  color: var(--text-1);
  font-size: 0.95rem;
  font-weight: 620;
  letter-spacing: -0.005em;
  line-height: 1.35;
}

.next-action small {
  color: var(--text-3);
  font-size: 0.78rem;
}

/* ====== 07. Sections communes + teintes ====== */
.section {
  position: relative;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.25rem, 7vw, 7rem) 0;
  scroll-margin-top: 7.5rem;
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.55;
}

/* Sections pleine largeur (fond teinté bord à bord) */
.before-after-section,
.approach-section,
.contact-section,
.not-section {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
}

/* Surface de carte commune */
.compare-panel,
.glass-card,
.diagnostic-panel,
.flow-step,
.scenario-card,
.reassurance-list article,
.validation-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(36, 36, 36, 0.55), rgba(26, 26, 26, 0.7));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    var(--shadow-soft);
}

/* Micro-identité chromatique par section :
   eyebrow teinté + filet top + index/accents dans la même teinte. */
.hero .eyebrow { color: var(--brand); }
.before-after-section .eyebrow { color: var(--sec-ba); }
.problem-section .eyebrow { color: var(--sec-pb); }
.approach-section .eyebrow { color: var(--sec-ap); }
.cases-section .eyebrow { color: var(--sec-cas); }
.audience-section .eyebrow { color: var(--sec-pq); }
.not-section .eyebrow { color: var(--sec-not); }
.validation-section .eyebrow { color: var(--sec-val); }
.contact-section .eyebrow { color: var(--brand); }

/* Filet d'entrée de section : repère chromatique discret au scroll */
.problem-section::before,
.cases-section::before,
.audience-section::before,
.validation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 2px;
  border-radius: 999px;
}

.problem-section::before { background: linear-gradient(90deg, var(--sec-pb), transparent); }
.cases-section::before { background: linear-gradient(90deg, var(--sec-cas), transparent); }
.audience-section::before { background: linear-gradient(90deg, var(--sec-pq), transparent); }
.validation-section::before { background: linear-gradient(90deg, var(--sec-val), transparent); }

.problem-section .card-index { color: var(--sec-pb); }
.audience-section .card-index { color: var(--sec-pq); }
.approach-section .flow-step span { color: var(--sec-ap); }

/* ====== 08. Avant / Après ====== */
.before-after-section {
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(87, 194, 168, 0.05), transparent 70%),
    linear-gradient(180deg, rgba(28, 28, 28, 0.85), rgba(22, 22, 22, 0.92));
  border-top: 1px solid rgba(87, 194, 168, 0.30);
}

.before-after-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2.4rem;
}

.compare-panel {
  position: relative;
  min-height: 320px;
  padding: 1.55rem;
  overflow: hidden;
}

.compare-panel.before {
  border-color: var(--line);
  background: linear-gradient(155deg, rgba(32, 28, 24, 0.55), rgba(20, 19, 18, 0.72));
}

.compare-panel.after {
  border-color: var(--brand-line);
  background: linear-gradient(155deg, rgba(28, 40, 33, 0.72), rgba(22, 30, 25, 0.84));
}

.compare-tag,
.scenario-kicker {
  margin-bottom: 1rem;
  padding: 0.22rem 0.6rem;
  border: 1px solid var(--line-strong);
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before .compare-tag {
  color: var(--text-3);
  border-color: var(--line);
}

.after .compare-tag {
  color: var(--brand);
  border-color: var(--brand-line);
  background: var(--brand-soft);
}

.compare-panel ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-2);
}

.compare-panel li {
  position: relative;
  padding-left: 1.05rem;
}

.compare-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.scatter-visual,
.aligned-visual {
  position: absolute;
  inset: auto 1.55rem 1.4rem;
  height: 88px;
}

.scatter-visual span {
  position: absolute;
  padding: 0.24rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.68rem;
  transform: rotate(var(--r, 0deg));
}

.scatter-visual span:nth-child(1) { left: 4%; top: 10%; --r: -8deg; }
.scatter-visual span:nth-child(2) { left: 34%; top: 35%; --r: 6deg; }
.scatter-visual span:nth-child(3) { right: 12%; top: 8%; --r: 9deg; }
.scatter-visual span:nth-child(4) { left: 12%; bottom: 7%; --r: 4deg; }
.scatter-visual span:nth-child(5) { right: 4%; bottom: 18%; --r: -7deg; }

.aligned-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0.55rem;
}

.aligned-visual span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(84, 204, 146, 0.22), rgba(84, 204, 146, 0.8), rgba(84, 204, 146, 0.22));
}

/* Pont "Lecture commune" — charnière visuelle renforcée */
.compare-bridge {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 0.6rem;
  align-self: center;
  min-height: 280px;
}

.compare-bridge span {
  width: 2px;
  height: 150px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--brand), transparent);
  box-shadow: 0 0 18px rgba(84, 204, 146, 0.35);
}

.compare-bridge svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
  flex-shrink: 0;
}

.compare-bridge strong {
  padding: 0.32rem 0.7rem;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ====== 09. Problème ====== */
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.diagnostic-panel {
  padding: 1.1rem;
}

.diagnostic-map {
  position: relative;
  min-height: 260px;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.diagnostic-map::before,
.diagnostic-map::after {
  content: "";
  position: absolute;
  inset: 50% 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.diagnostic-map::after {
  transform: rotate(90deg);
}

.chip,
.diagnostic-map strong,
.diagnostic-map em {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-2);
  background: rgba(22, 22, 22, 0.86);
  font-size: 0.74rem;
  font-weight: 580;
  font-style: normal;
  letter-spacing: -0.005em;
}

.chip-a { top: 12%; left: 8%; }
.chip-b { top: 12%; right: 10%; }
.chip-c { bottom: 16%; left: 13%; }
.chip-d { bottom: 16%; right: 10%; }

.diagnostic-map strong {
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  border-color: var(--amber-line);
  color: var(--amber);
  background: rgba(22, 22, 22, 0.92);
}

.diagnostic-map em {
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.card-grid.three,
.card-grid.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass-card {
  position: relative;
  min-height: 170px;
  padding: 1.35rem;
  overflow: hidden;
  transition: transform 0.2s var(--ease), border-color 0.2s ease, box-shadow 0.2s ease;
}

.glass-card:hover,
.scenario-card:hover,
.flow-step:hover {
  border-color: var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 78px rgba(0, 0, 0, 0.48);
}

.card-index,
.flow-step span {
  display: inline-flex;
  margin-bottom: 1.05rem;
  color: var(--text-3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.glass-card p,
.scenario-card p,
.flow-step p,
.reassurance-list span,
.validation-card span {
  color: var(--text-2);
}

/* ====== 10. Approche ====== */
.approach-section {
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(116, 196, 122, 0.05), transparent 65%),
    linear-gradient(180deg, rgba(28, 28, 28, 0.8), rgba(22, 22, 22, 0.9));
  border-top: 1px solid rgba(116, 196, 122, 0.30);
}

.flow-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.flow-step {
  position: relative;
  min-height: 200px;
  padding: 1.35rem;
  transition: transform 0.2s var(--ease), border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Connecteur horizontal entre étapes (desktop) */
.flow-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(116, 196, 122, 0.5), transparent);
}

.flow-step:last-child::after {
  display: none;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.question-grid article {
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
}

.question-grid strong,
.question-grid span {
  display: block;
}

.question-grid strong {
  color: var(--text-1);
  font-weight: 620;
  letter-spacing: -0.005em;
}

.question-grid span {
  margin-top: 0.28rem;
  color: var(--text-3);
  font-size: 0.88rem;
}

/* ====== 11. Cas concrets (scenario-cards) ====== */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.scenario-card {
  min-height: 360px;
  padding: 1.35rem;
  transition: transform 0.2s var(--ease), border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Accent par scénario — écho aux couleurs du tableau de bord */
.scenario-card.case-essai { --case-tint: var(--amber); --case-soft: var(--amber-soft); --case-line: var(--amber-line); }
.scenario-card.case-info { --case-tint: var(--cyan); --case-soft: var(--cyan-soft); --case-line: var(--cyan-line); }
.scenario-card.case-ancien { --case-tint: var(--sec-pq); --case-soft: var(--sec-pq-soft); --case-line: var(--sec-pq-line); }

.scenario-card .scenario-kicker {
  color: var(--case-tint, var(--sec-cas));
  border-color: var(--case-line, rgba(204, 172, 96, 0.32));
  background: var(--case-soft, transparent);
}

.scenario-flow {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.scenario-flow span {
  display: block;
  border-radius: var(--radius);
  color: var(--text-2);
}

/* Signal entrant : chip canal, bordé, point dans la teinte du scénario */
.scenario-flow .flow-signal {
  position: relative;
  padding: 0.7rem 0.85rem 0.7rem 2.1rem;
  border: 1px solid var(--line-strong);
  background: var(--glass);
  font-size: 0.9rem;
  font-weight: 600;
}

.scenario-flow .flow-signal::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--case-tint, var(--brand));
  transform: translateY(-50%);
}

/* Statut : badge à fond teinté */
.scenario-flow .flow-status {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--case-line, var(--line));
  background: var(--case-soft, var(--glass));
  color: var(--case-tint, var(--text-1));
  font-size: 0.9rem;
  font-weight: 620;
}

/* Action : texte lisible, légèrement contrasté */
.scenario-flow .flow-action {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-1);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Décision : rôle humain, en retrait */
.scenario-flow .flow-decision {
  padding: 0.4rem 0.85rem 0;
  color: var(--text-3);
  font-size: 0.86rem;
  font-style: italic;
}

/* ====== 12. Pour qui (audience) ====== */
.audience-section .glass-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 0.9rem;
  border: 1px solid var(--sec-pq-line);
  border-radius: var(--radius);
  color: var(--sec-pq);
  background: var(--sec-pq-soft);
}

.card-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.audience-section .card-index {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  margin-bottom: 0;
}

/* ====== 13. Ce que ce n'est pas (reassurance) ====== */
.not-section {
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(210, 146, 163, 0.045), transparent 65%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.8), rgba(20, 20, 20, 0.92));
  border-top: 1px solid rgba(210, 146, 163, 0.28);
}

.reassurance-list {
  display: grid;
  gap: 0.85rem;
}

.reassurance-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1.1rem;
}

.reassurance-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  min-width: 1.8rem;
  border: 1px solid rgba(210, 146, 163, 0.32);
  border-radius: 999px;
  color: var(--sec-not);
  background: rgba(210, 146, 163, 0.08);
  line-height: 1;
  overflow: hidden;
  user-select: none;
}

/* Centrage absolu : le SVG est sorti du flux (plus de ligne de base,
   plus d'influence du flex) et posé au centre géométrique du cercle */
.reassurance-mark svg {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
}

.reassurance-list article.is-positive .reassurance-mark {
  border-color: var(--brand-line);
  color: var(--brand);
  background: var(--brand-soft);
}

.reassurance-list article > div {
  min-width: 0;
}

.reassurance-list strong,
.reassurance-list span {
  display: block;
}

.reassurance-list strong {
  color: var(--text-1);
  font-weight: 620;
  letter-spacing: -0.005em;
}

.reassurance-list span {
  margin-top: 0.28rem;
}

/* ====== 14. Validation terrain ====== */
.validation-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.4rem;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  border-color: var(--brand-line);
}

.phase-pill {
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem 0.3rem 0.55rem;
  border: 1px solid var(--brand-line);
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.validation-card aside {
  display: grid;
  align-content: center;
  gap: 0.5rem;
  padding: 1.1rem;
  border: 1px solid rgba(166, 189, 133, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.validation-card aside strong {
  color: var(--sec-val);
  font-weight: 640;
  letter-spacing: -0.005em;
}

/* ====== 15. Contact ====== */
.contact-section {
  background:
    radial-gradient(ellipse 56% 64% at 50% 60%, rgba(84, 204, 146, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(28, 28, 28, 1) 50%, rgba(20, 20, 20, 1) 100%);
  border-top: 1px solid var(--brand-line);
  padding-top: clamp(5rem, 9vw, 8.5rem);
  padding-bottom: clamp(5rem, 9vw, 8.5rem);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.contact-inner h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
}

.contact-card {
  display: grid;
  gap: 1.1rem;
  margin: 0;
  padding: 1.7rem;
  font-style: normal;
  border-color: var(--brand-line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(84, 204, 146, 0.06),
    0 32px 90px rgba(0, 0, 0, 0.55);
}

.contact-card span {
  color: var(--text-3);
}

.contact-card a:not(.button) {
  color: var(--text-1);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 620;
  letter-spacing: -0.005em;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.contact-card a:not(.button):hover {
  color: var(--brand);
}

/* ====== 16. Footer ====== */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.1rem 0 2.4rem;
  border-top: 1px solid var(--line-strong);
  color: var(--text-2);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--text-1);
}

/* ====== 17. Pages légales ====== */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}

.legal-page h1 {
  margin-bottom: 2rem;
  font-size: clamp(1.7rem, 4.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.legal-page h2 {
  margin: 2.2rem 0 0.55rem;
  font-size: 1.08rem;
  font-weight: 640;
  color: var(--text-1);
}

.legal-page p,
.legal-page li {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-page a {
  color: var(--text-1);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.legal-page a:hover {
  color: var(--brand);
}

.legal-page table {
  width: 100%;
  margin: 1rem 0;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-page th,
.legal-page td {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  color: var(--text-2);
  text-align: left;
}

.legal-page th {
  color: var(--text-3);
  font-weight: 600;
}

.legal-page .legal-updated {
  margin-top: 3rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--text-3);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--text-1);
}

/* ====== 18. Reveal / animations ====== */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lineTravel {
  to { stroke-dashoffset: -880; }
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(84, 204, 146, 0.16); }
  50% { box-shadow: 0 0 0 6px rgba(84, 204, 146, 0.06); }
}

/* ====== 19. Responsive ====== */

/* --- ≤1080px : hero une colonne, grilles 2 colonnes --- */
@media (max-width: 1080px) {
  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 860px;
  }

  .command-visual {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .scenario-grid,
  .card-grid.three,
  .card-grid.six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --- ≤767px : nav masquée (logo + CTA), colonnes simples --- */
@media (max-width: 767px) {
  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 3.7rem;
  }

  .before-after-grid,
  .section-grid,
  .validation-card,
  .contact-inner,
  .flow-board,
  .question-grid {
    grid-template-columns: 1fr;
  }

  /* Connecteur vertical entre étapes empilées */
  .flow-step::after {
    top: auto;
    right: auto;
    bottom: -1rem;
    left: 1.35rem;
    width: 1px;
    height: 1rem;
    background: linear-gradient(180deg, rgba(116, 196, 122, 0.5), transparent);
  }

  .compare-bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    gap: 0.75rem;
  }

  .compare-bridge span {
    width: min(140px, 34vw);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
  }

  .compare-bridge svg {
    transform: rotate(-90deg);
  }

  .contact-card {
    width: min(420px, 100%);
  }

  .site-footer {
    flex-direction: column;
  }
}

/* --- ≤560px : démo simplifiée, fiche contact pleine largeur --- */
@media (max-width: 560px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 1rem, var(--max));
  }

  .site-header {
    padding: 0.5rem 0.5rem 0.5rem 0.8rem;
  }

  .brand {
    min-height: 2.25rem;
  }

  .header-cta {
    min-height: 2.35rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.84rem;
  }

  .hero {
    padding: 3rem 0.75rem 4rem;
    min-height: auto;
  }

  .system-pill {
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: var(--radius);
  }

  .system-pill span:last-child {
    flex-basis: 100%;
    margin-left: 1.35rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-metrics,
  .signal-queue {
    display: none;
  }

  .visual-status span {
    min-height: 2.35rem;
    padding: 0.34rem 0.28rem;
    font-size: 0.62rem;
  }

  /* La signal-map devient une grille simple :
     6 nodes en 3×2 au-dessus de la fiche contact pleine largeur.
     Le SVG décoratif disparaît, la démo interactive reste. */
  .signal-map {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    align-content: start;
    height: auto;
    min-height: 0;
    padding: 0.85rem;
  }

  .signal-map::before,
  .signal-map::after,
  .signal-lines {
    display: none;
  }

  .source-node {
    position: static;
    justify-content: center;
    max-width: none;
    padding: 0.4rem 0.3rem;
    font-size: 0.7rem;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .product-card {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.45rem;
    transform: none;
  }

  .compare-panel,
  .scenario-card {
    min-height: auto;
  }

  .scatter-visual,
  .aligned-visual {
    display: none;
  }

  .flow-board,
  .question-grid,
  .scenario-grid,
  .card-grid.three,
  .card-grid.six {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .legal-page {
    padding-top: 3.5rem;
  }
}

/* --- ≤380px : très petits écrans --- */
@media (max-width: 380px) {
  .product-topbar {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .card-tag {
    margin-left: 0;
  }

  .contact-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .signal-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ====== 20. prefers-reduced-motion ====== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .flow-line {
    stroke-dashoffset: 0 !important;
  }
}
