﻿﻿:root{
  --colors-scale1: #161616;
  --colors-scale2: #1c1c1c;
  --colors-scale3: #232323;
  --colors-scale4: #282828;
  --colors-scale5: #2e2e2e;
  --colors-scale6: #343434;
  --colors-scale7: #3e3e3e;
  --colors-scale8: #505050;
  --colors-scale9: #707070;
  --colors-scale10: #878787;
  --colors-scale11: #a0a0a0;
  --colors-scale12: #ededed;
  --colors-brand: #3ecf8e;
  --colors-brand-hover: #34b27b;

  --bg: var(--colors-scale1);
  --surface: var(--colors-scale2);
  --surface-2: var(--colors-scale3);
  --text-main: var(--colors-scale12);
  --text-muted: var(--colors-scale11);
  --accent: var(--colors-brand);
  --accent-700: var(--colors-brand-hover);
  --border: var(--colors-scale4);
  --shadow-soft: 0 8px 24px rgba(0,0,0,0.35);
  --radius: 12px;
  --container: 1200px;

  --dash-anim-trace-muted: #1c3328;
  --dash-anim-trace-main: #3ecf8e;
  --dash-anim-chip-top: var(--colors-scale2);
  --dash-anim-chip-bottom: var(--colors-scale1);
  --dash-anim-chip-stroke: var(--colors-scale6);
  --dash-anim-pin-1: var(--colors-scale10);
  --dash-anim-pin-2: var(--colors-scale8);
  --dash-anim-pin-3: var(--colors-scale6);
  --dash-anim-text-main: var(--text-main);
  --dash-anim-text-sub: var(--text-muted);

  --showcase-card-stroke: rgba(150, 164, 186, 0.58);
  --showcase-card-grad-1: rgba(92, 106, 128, 0.16);
  --showcase-card-grad-2: rgba(118, 132, 154, 0.9);
  --showcase-card-grad-3: rgba(150, 164, 186, 0.68);
  --showcase-card-grad-4: rgba(92, 106, 128, 0.2);
  --showcase-card-glow: rgba(134, 148, 170, 0.18);
  --showcase-card-frame: rgba(148, 162, 184, 0.22);

  --dataflow-trace-muted: #2b3440;
  --dataflow-trace-main: var(--accent);
  --dataflow-bot: var(--dash-anim-trace-main);
  --dataflow-panel-bg: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.008));

  --feature-geo-1: rgba(53, 70, 84, 0.42);
  --feature-geo-2: rgba(56, 45, 58, 0.42);
  --feature-geo-3: rgba(42, 63, 56, 0.42);
  --feature-geo-line: rgba(130, 149, 163, 0.24);
}

/* --- THEME CLAIR (LIGHT MODE) --- */
[data-theme="light"] {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.1);

  /* Adaptation des échelles de gris pour le mode clair */
  --colors-scale3: #f1f5f9;
  --colors-scale5: #e2e8f0;
  --colors-scale6: #cbd5e1;
  --colors-scale9: #94a3b8;

  --dash-anim-trace-muted: #bddacb;
  --dash-anim-trace-main: #1f9f66;
  --dash-anim-chip-top: #f8fafc;
  --dash-anim-chip-bottom: #ffffff;
  --dash-anim-chip-stroke: #cbd5e1;
  --dash-anim-pin-1: #94a3b8;
  --dash-anim-pin-2: #64748b;
  --dash-anim-pin-3: #475569;
  --dash-anim-text-main: #0f172a;
  --dash-anim-text-sub: #64748b;

  --showcase-card-stroke: rgba(51, 65, 85, 0.72);
  --showcase-card-grad-1: rgba(71, 85, 105, 0.16);
  --showcase-card-grad-2: rgba(51, 65, 85, 0.94);
  --showcase-card-grad-3: rgba(71, 85, 105, 0.76);
  --showcase-card-grad-4: rgba(51, 65, 85, 0.24);
  --showcase-card-glow: rgba(51, 65, 85, 0.14);
  --showcase-card-frame: rgba(71, 85, 105, 0.2);

  --dataflow-trace-muted: #d7e3ec;
  --dataflow-trace-main: #1f9f66;
  --dataflow-bot: var(--dash-anim-trace-main);
  --dataflow-panel-bg: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.98));

  --feature-geo-1: rgba(26, 38, 49, 0.3);
  --feature-geo-2: rgba(40, 31, 42, 0.28);
  --feature-geo-3: rgba(29, 42, 36, 0.3);
  --feature-geo-line: rgba(49, 65, 85, 0.16);
}

[data-theme="light"] header { background: rgba(255, 255, 255, 0.8); }
[data-theme="light"] .badge { background: #f1f5f9; color: #475569; border-color: #e2e8f0; }
[data-theme="light"] .feature-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] details { box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
[data-theme="light"] .feature-card:hover { box-shadow: none; border-color: var(--border); }
[data-theme="light"] .trusted-logos { color: #94a3b8; }
[data-theme="light"] .mockup-box { background: #f8fafc; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1); border-color: #e2e8f0; }
/* -------------------------------- */

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  color: var(--text-main);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; transition: color .2s ease; }
h1, h2, h3{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

.container{ width: min(var(--container), 92vw); margin-inline: auto; }

header{
  position: relative;
  z-index: 100;
  background: rgba(22, 22, 22, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.brand{ display: flex; align-items: center; height: 100%; }
.brand-logo-anim {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.brand-logo-anim svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.logo-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: logo-draw 2s linear infinite;
}
.brand-text {
  margin-left: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-main);
  letter-spacing: -0.02em;
}
.nav-links{ display: flex; gap: 22px; align-items: center; }
.nav-link{
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
}
.nav-link:hover{ color: var(--text-main); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn.primary{
  background: var(--accent);
  color: #0b0c0d;
}
.btn.primary:hover{ background: var(--accent-700); }
.btn.secondary{
  background: transparent;
  color: var(--text-main);
  border-color: var(--border);
}
.btn.secondary:hover{
  border-color: rgba(255,255,255,0.16);
}
.btn.full-width{ width: 100%; }

.hero-wrap{
  padding: 130px 0 90px;
}
.hero{
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.badge{
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.title{
  margin: 20px 0 12px;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.05;
  color: var(--text-main);
}
.accent{ color: var(--accent); }
.title-rotator-card{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 0;
  border: none;
  background: none;
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.15;
  font-weight: 600;
}
.title-rotator-label{
  color: var(--text-muted);
}
.title-rotator-words{
  height: 1.15em;
  overflow: hidden;
  display: inline-block;
  min-width: 16ch;
  text-align: left;
}
.title-rotator-words::after{
  content: none;
}
.title-rotator-word{
  display: block;
  height: 100%;
  padding-left: 0;
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
  animation: title-rotator-spin 8s infinite;
}
.lead{
  margin: 0 auto 28px;
  color: var(--text-muted);
  font-size: clamp(18px, 2vw, 20px);
  max-width: 680px;
}
.cta{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trusted{
  margin-top: 34px;
  display: grid;
  gap: 12px;
  justify-items: center;
}
.trusted-label{
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trusted-logos{
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#services{
  padding: 78px 0;
  border-top: 1px solid var(--border);
}
.bg-light{ background: transparent; }
.section-header{
  text-align: center;
  width: min(1200px, 92vw);
  max-width: none;
  margin: 0 auto 40px;
}
.section-header .section-divider{
  width: min(1120px, 92vw);
  margin: 0 auto 16px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.section-header .h2,
.section-header .subtitle{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.h2{
  font-weight: 600;
  font-size: clamp(28px, 3vw, 36px);
  margin: 0 0 12px;
}
.subtitle{
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}

.features-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.feature-card{
  background: var(--surface);
  border: 1px solid var(--border);
  outline: 1px solid var(--border);
  outline-offset: -1px;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: none;
  background-image: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  transition: border-color .2s ease, box-shadow .2s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card::before{
  content: none;
  display: none;
}
.feature-card:hover{
  border-color: var(--border);
  outline-color: var(--border);
  box-shadow: none;
}
.feature-card-content{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.feature-geo{
  position: absolute;
  z-index: 1;
  border-radius: 14px;
  background: transparent;
  pointer-events: none;
  border: 1px solid var(--feature-geo-line);
  opacity: 0;
  filter: blur(0.3px);
  transform: translate(0, 0) scale(0.92);
  transition: transform 900ms cubic-bezier(0.22, 0.8, 0.23, 0.99), opacity 450ms ease;
}
.feature-geo--1{
  width: 96px;
  height: 96px;
  top: -50px;
  left: -52px;
  box-shadow: inset 0 0 34px var(--feature-geo-1);
  --geo-hover-transform: translate(18px, 14px) scale(1);
  --geo-hover-opacity: 0.5;
}
.feature-geo--2{
  width: 96px;
  height: 96px;
  top: 150px;
  left: 54px;
  box-shadow: inset 0 0 34px var(--feature-geo-2);
  --geo-hover-transform: translate(-14px, -20px) scale(1);
  --geo-hover-opacity: 0.52;
}
.feature-geo--3{
  width: 96px;
  height: 96px;
  top: 90px;
  right: -44px;
  box-shadow: inset 0 0 34px var(--feature-geo-3);
  --geo-hover-transform: translate(-22px, 6px) scale(1);
  --geo-hover-opacity: 0.48;
}
.feature-geo--4{
  width: 52px;
  height: 52px;
  top: 16px;
  left: 14px;
  box-shadow: inset 0 0 22px var(--feature-geo-2);
  --geo-hover-transform: translate(0, -34px) scale(1);
  --geo-hover-opacity: 0.46;
}
.feature-geo--5{
  width: 172px;
  height: 172px;
  top: 10px;
  left: 18px;
  box-shadow: inset 0 0 40px var(--feature-geo-1);
  --geo-hover-transform: translate(24px, 10px) scale(1);
  --geo-hover-opacity: 0.42;
}
.feature-geo--6{
  width: 230px;
  height: 230px;
  top: -104px;
  left: -60px;
  box-shadow: inset 0 0 44px var(--feature-geo-3);
  --geo-hover-transform: translate(10px, 26px) scale(1);
  --geo-hover-opacity: 0.4;
}
.feature-card:hover .feature-geo{
  opacity: var(--geo-hover-opacity, 0.45);
  transform: var(--geo-hover-transform, translate(0, 0) scale(1));
}
[data-theme="light"] .feature-card:hover .feature-geo{
  opacity: calc(var(--geo-hover-opacity, 0.45) - 0.08);
}
[data-theme="light"] .feature-geo{
  opacity: 0;
}

/* Variantes de geometries par carte (plus de repetitivite visuelle) */
.features-grid .feature-card:nth-child(2){
  --feature-geo-1: rgba(67, 52, 72, 0.42);
  --feature-geo-2: rgba(45, 67, 83, 0.42);
  --feature-geo-3: rgba(47, 62, 54, 0.42);
}
.features-grid .feature-card:nth-child(2) .feature-geo--1{ --geo-hover-transform: translate(-10px, 20px) rotate(6deg) scale(1); }
.features-grid .feature-card:nth-child(2) .feature-geo--2{ --geo-hover-transform: translate(16px, -12px) rotate(-4deg) scale(1); }
.features-grid .feature-card:nth-child(2) .feature-geo--3{ --geo-hover-transform: translate(-8px, -8px) rotate(5deg) scale(1); }
.features-grid .feature-card:nth-child(2) .feature-geo--4{ --geo-hover-transform: translate(14px, -26px) scale(1); }
.features-grid .feature-card:nth-child(2) .feature-geo--5{ --geo-hover-transform: translate(6px, 20px) rotate(-3deg) scale(1); }
.features-grid .feature-card:nth-child(2) .feature-geo--6{ --geo-hover-transform: translate(24px, 10px) rotate(4deg) scale(1); }

.features-grid .feature-card:nth-child(3){
  --feature-geo-1: rgba(43, 66, 78, 0.42);
  --feature-geo-2: rgba(62, 48, 60, 0.42);
  --feature-geo-3: rgba(38, 57, 49, 0.42);
}
.features-grid .feature-card:nth-child(3) .feature-geo--1{ --geo-hover-transform: translate(22px, 2px) rotate(-7deg) scale(1); }
.features-grid .feature-card:nth-child(3) .feature-geo--2{ --geo-hover-transform: translate(-18px, -14px) scale(1); }
.features-grid .feature-card:nth-child(3) .feature-geo--3{ --geo-hover-transform: translate(-16px, 18px) rotate(-5deg) scale(1); }
.features-grid .feature-card:nth-child(3) .feature-geo--4{ --geo-hover-transform: translate(-10px, -22px) rotate(8deg) scale(1); }
.features-grid .feature-card:nth-child(3) .feature-geo--5{ --geo-hover-transform: translate(30px, -4px) scale(1); }
.features-grid .feature-card:nth-child(3) .feature-geo--6{ --geo-hover-transform: translate(-4px, 28px) rotate(-4deg) scale(1); }

.features-grid .feature-card:nth-child(4){
  --feature-geo-1: rgba(54, 69, 81, 0.42);
  --feature-geo-2: rgba(49, 43, 65, 0.42);
  --feature-geo-3: rgba(35, 64, 58, 0.42);
}
.features-grid .feature-card:nth-child(4) .feature-geo--1{ --geo-hover-transform: translate(6px, 24px) scale(1); }
.features-grid .feature-card:nth-child(4) .feature-geo--2{ --geo-hover-transform: translate(-22px, -8px) rotate(-4deg) scale(1); }
.features-grid .feature-card:nth-child(4) .feature-geo--3{ --geo-hover-transform: translate(-2px, 16px) rotate(7deg) scale(1); }
.features-grid .feature-card:nth-child(4) .feature-geo--4{ --geo-hover-transform: translate(20px, -16px) scale(1); }
.features-grid .feature-card:nth-child(4) .feature-geo--5{ --geo-hover-transform: translate(18px, 14px) rotate(-5deg) scale(1); }
.features-grid .feature-card:nth-child(4) .feature-geo--6{ --geo-hover-transform: translate(18px, -2px) scale(1); }

.features-grid .feature-card:nth-child(5){
  --feature-geo-1: rgba(41, 62, 74, 0.42);
  --feature-geo-2: rgba(58, 47, 63, 0.42);
  --feature-geo-3: rgba(44, 66, 56, 0.42);
}
.features-grid .feature-card:nth-child(5) .feature-geo--1{ --geo-hover-transform: translate(26px, 10px) rotate(6deg) scale(1); }
.features-grid .feature-card:nth-child(5) .feature-geo--2{ --geo-hover-transform: translate(-10px, -24px) rotate(-6deg) scale(1); }
.features-grid .feature-card:nth-child(5) .feature-geo--3{ --geo-hover-transform: translate(-24px, 10px) scale(1); }
.features-grid .feature-card:nth-child(5) .feature-geo--4{ --geo-hover-transform: translate(4px, -30px) rotate(-6deg) scale(1); }
.features-grid .feature-card:nth-child(5) .feature-geo--5{ --geo-hover-transform: translate(10px, 18px) scale(1); }
.features-grid .feature-card:nth-child(5) .feature-geo--6{ --geo-hover-transform: translate(12px, 24px) rotate(5deg) scale(1); }

.features-grid .feature-card:nth-child(6){
  --feature-geo-1: rgba(59, 72, 84, 0.42);
  --feature-geo-2: rgba(52, 41, 59, 0.42);
  --feature-geo-3: rgba(33, 58, 52, 0.42);
}
.features-grid .feature-card:nth-child(6) .feature-geo--1{ --geo-hover-transform: translate(-4px, 22px) scale(1); }
.features-grid .feature-card:nth-child(6) .feature-geo--2{ --geo-hover-transform: translate(20px, -10px) rotate(4deg) scale(1); }
.features-grid .feature-card:nth-child(6) .feature-geo--3{ --geo-hover-transform: translate(-18px, 2px) rotate(-5deg) scale(1); }
.features-grid .feature-card:nth-child(6) .feature-geo--4{ --geo-hover-transform: translate(12px, -20px) scale(1); }
.features-grid .feature-card:nth-child(6) .feature-geo--5{ --geo-hover-transform: translate(28px, 8px) rotate(4deg) scale(1); }
.features-grid .feature-card:nth-child(6) .feature-geo--6{ --geo-hover-transform: translate(2px, 30px) scale(1); }
.icon-wrap{
  width: 36px;
  height: 36px;
  background: var(--colors-scale3);
  border: 1px solid var(--colors-scale5);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.icon-wrap svg{ width: 20px; height: 20px; stroke-width: 2; }
.feature-card h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}
.feature-card p{
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.showcase-wrap{
  padding: 74px 0 48px;
  border-top: 1px solid var(--border);
}
.container-wide{ width: min(1550px, 94vw); margin: 0 auto; }
.showcase-block{
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 56px;
  margin-bottom: 90px;
}
.showcase-block:last-child{ margin-bottom: 0; }
.showcase-block.reversed .text-col{ order: 2; }
.showcase-block.reversed .visual-col{ order: 1; }
.text-col{ max-width: 560px; }
.visual-col{ min-width: 0; }
.eyebrow{
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.h3-showcase{
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 16px 0;
}
.showcase-title-row{
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
}
.showcase-title-row .h3-showcase{
  margin: 0;
  white-space: nowrap;
}
.card-6{
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
}
.card-6__holo{
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: card6-wobble 6.2s ease-in-out infinite;
}
.card-6__layer{
  position: absolute;
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -2px;
  line-height: 1;
  -webkit-text-stroke: 1px var(--showcase-card-stroke);
  background: linear-gradient(
    90deg,
    var(--showcase-card-grad-1) 0%,
    var(--showcase-card-grad-2) 35%,
    var(--showcase-card-grad-3) 60%,
    var(--showcase-card-grad-4) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
  opacity: 0.95;
  transform-style: preserve-3d;
}
.card-6__layer--back{
  opacity: 0.2;
  filter: blur(1px);
  transform: translateZ(-32px);
}
.card-6__layer--mid{
  opacity: 0.44;
  filter: blur(0.4px);
  transform: translateZ(-16px);
}
.card-6__layer--front{
  opacity: 0.98;
  transform: translateZ(0px);
}
.card-6__holo::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(
    circle at 40% 35%,
    var(--showcase-card-glow),
    rgba(0, 0, 0, 0) 64%
  );
  filter: blur(7px);
  opacity: 0.92;
  transform: translateZ(-36px);
}
.card-6__holo::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid var(--showcase-card-frame);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01) 45%,
    rgba(0, 0, 0, 0)
  );
  opacity: 0.58;
  transform: translateZ(-20px);
}
.p-showcase{
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.check-list{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 8px;
}
.check-list li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
}
.check-list svg{ color: var(--accent); flex-shrink: 0; width: 16px; height: 16px; }

.mockup-box{
  display: block;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.mockup-box img{ display: block; width: 100%; height: auto; }

/* Cinematique inspired by sticky cards (karabharat style) */
.showcase-cinematic{
  --showcase-stick-top: 10vh;
  --showcase-stick-step: 1.3em;
  --showcase-cards-count: 4;
  --showcase-cinema-end-scale: 0.96;
  --showcase-cinema-end-tilt: 0deg;
  --showcase-cinema-end-shift: 0vh;
}
.showcase-cinematic .container-wide{
  display: grid;
  gap: 12px;
  padding-bottom: calc(var(--showcase-cards-count) * 1.1em);
  perspective: 1200px;
}
.showcase-subheader{
  width: min(1200px, 92vw);
  margin: 26px auto 20px;
}
.showcase-subheader .section-divider{
  width: min(1120px, 92vw);
  margin: 0 auto 14px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.showcase-subheader .h2,
.showcase-subheader .subtitle{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.showcase-cinematic .showcase-block{
  --card-index: 1;
  position: sticky;
  top: var(--showcase-stick-top);
  margin-bottom: 0;
  padding: calc(26px + ((var(--card-index) - 1) * var(--showcase-stick-step))) 26px 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  will-change: transform, filter;
  z-index: var(--card-index);
}
.showcase-cinematic .showcase-block:nth-of-type(1){ --card-index: 1; }
.showcase-cinematic .showcase-block:nth-of-type(2){ --card-index: 2; }
.showcase-cinematic .showcase-block:nth-of-type(3){ --card-index: 3; }
.showcase-cinematic .showcase-block:nth-of-type(4){ --card-index: 4; }

@supports (animation-timeline: view()) {
  .showcase-cinematic .showcase-block{
    animation: showcase-cinema-stack linear forwards;
    animation-timeline: view();
    animation-range: exit-crossing 0% exit-crossing 100%;
  }
  .showcase-cinematic .showcase-block:last-child{
    animation: none;
  }
}

@keyframes showcase-cinema-stack {
  to {
    transform:
      translateY(var(--showcase-cinema-end-shift))
      scale(var(--showcase-cinema-end-scale))
      rotateX(var(--showcase-cinema-end-tilt));
    filter: brightness(0.9);
    border-radius: 20px;
  }
}

.dashboard-anim-section{
  padding: 10px 0 28px;
  background: var(--bg);
}
.pipeline-animation-row{
  width: min(1480px, 102vw);
  margin: 0 auto 2px;
}
.pipeline-animation-row .container-wide{
  width: 100%;
}
.pipeline-animation-row .dashboard-anim-wrap{
  width: 100%;
  height: 360px;
}
.pipeline-wrap{
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--dataflow-panel-bg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  --pipeline-left-shift: 25px;
}
.pipeline-left-svg{
  transform-box: fill-box;
  transform-origin: center;
  transform: translateX(var(--pipeline-left-shift));
}
.pipeline-left-overlay{
  position: absolute;
  inset: 0;
  transform: translateX(var(--pipeline-left-shift));
  pointer-events: none;
  z-index: 3;
}
.pipeline-scene{
  position: absolute;
  inset: 0;
}
.pipeline-lines{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.pipeline-trace-bg{
  stroke: var(--dash-anim-trace-muted);
  stroke-width: 1.6;
  fill: none;
  vector-effect: non-scaling-stroke;
}
.pipeline-trace-flow{
  stroke: var(--dash-anim-trace-main);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 26 560;
  stroke-dashoffset: 584;
  filter:
    drop-shadow(0 0 4px currentColor)
    drop-shadow(0 0 10px rgba(62, 207, 142, 0.38));
  color: var(--dash-anim-trace-main);
  opacity: 0.78;
  animation: pipeline-flow calc(var(--flow-speed, 2.6s) + 4.8s) linear infinite;
  animation-delay: var(--flow-delay, 0s);
}
.pipeline-ai{
  position: absolute;
  left: 1%;
  top: 49%;
  transform: translate(0%, -50%);
  animation: none !important;
  z-index: 3;
}
.pipeline-ai.dataflow-ai-block,
.pipeline-ai.dataflow-ai-block::before,
.pipeline-ai.dataflow-ai-block::after{
  animation: none !important;
}
.pipeline-bot{
  position: absolute;
  width: 20px;
  height: 18px;
  z-index: 2;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 7px rgba(62, 207, 142, 0.22));
  --arrive-speed: 3s;
  --arrive-delay: 0s;
  --depart-speed: 3s;
  --depart-delay: 0s;
  animation: none;
}
.pipeline-bot::before{
  content: none;
}
.pipeline-bot::after{
  content: none;
}
.pipeline-bot svg{
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.78;
  transform: none;
  animation: none;
}
.pipeline-bot rect,
.pipeline-bot polygon{
  fill: var(--dash-anim-trace-main);
}
.pipeline-bot--1{
  left: 17.7%;
  top: 18.3%;
  --arrive-speed: 2.5s;
  --arrive-delay: -0.3s;
  --depart-speed: 2.6s;
  --depart-delay: -0.5s;
}
.pipeline-bot--2{
  left: 17.5%;
  top: 30.9%;
  --arrive-speed: 3.6s;
  --arrive-delay: -1.1s;
  --depart-speed: 3.3s;
  --depart-delay: -1.4s;
}
.pipeline-bot--3{
  left: 19.2%;
  top: 41.8%;
  --arrive-speed: 2.9s;
  --arrive-delay: -0.8s;
  --depart-speed: 2.4s;
  --depart-delay: -0.9s;
}
.pipeline-bot--4{
  left: 17.7%;
  top: 58.6%;
  --arrive-speed: 3.8s;
  --arrive-delay: -1.6s;
  --depart-speed: 3.9s;
  --depart-delay: -1.9s;
}
.pipeline-bot--5{
  left: 15.8%;
  top: 68.5%;
  --arrive-speed: 2.7s;
  --arrive-delay: -1.2s;
  --depart-speed: 2.8s;
  --depart-delay: -1.05s;
}
.pipeline-bot--6{
  left: 17%;
  top: 79.9%;
  --arrive-speed: 4.1s;
  --arrive-delay: -2.2s;
  --depart-speed: 4.3s;
  --depart-delay: -2.35s;
}

.pipeline-dashboard{
  position: absolute;
  left: 37%;
  top: 52.5%;
  transform: translate(-50%, -50%);
  width: 12.83%;
  max-width: 124px;
  aspect-ratio: 154 / 75;
  min-height: 75px;
  border-radius: 20px;
  border: 1.2px solid #2f2f2f;
  background: linear-gradient(180deg, #141414 0%, #0f0f0f 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.pipeline-dashboard::before{
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  border: 1px solid rgba(95, 95, 95, 0.3);
  opacity: 0.32;
  pointer-events: none;
}
.pipeline-dashboard::after{
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.pipeline-dashboard__label{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #8d8d8d;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}
.pipeline-dashboard__pins{
  position: absolute;
  top: 12px;
  display: grid;
  gap: 4px;
  z-index: 2;
}
.pipeline-dashboard__pins--left{ left: -10px; }
.pipeline-dashboard__pins--right{ right: -10px; }
.pipeline-dashboard__pins span{
  width: 6.7px;
  height: 6.7px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--dash-anim-pin-1), var(--dash-anim-pin-3));
}

.pipeline-conversations{
  position: absolute;
  right: 31.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 18%;
  display: grid;
  gap: 6px;
  z-index: 4;
}
.pipeline-report{
  position: absolute;
  right: 18%;
  top: 50%;
  transform: translateY(-50%);
  width: 10.5%;
  min-height: 62px;
  border-radius: 16px;
  border: 1.1px solid #323232;
  background: linear-gradient(180deg, #171717 0%, #111111 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.34),
    0 8px 16px rgba(0, 0, 0, 0.34);
  padding: 10px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.pipeline-report::before{
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.pipeline-report__title{
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #8d8d8d;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}
.pipeline-insight{
  position: absolute;
  right: 0.8%;
  transform: translateY(-50%);
  width: 15%;
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid #333333;
  background: rgba(19, 19, 19, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 8px 12px rgba(0, 0, 0, 0.28);
  padding: 9px 10px 9px 24px;
  display: flex;
  align-items: center;
  font-size: 9.5px;
  line-height: 1.25;
  color: #a3adbb;
  z-index: 5;
}
.pipeline-insight::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(180deg, #57dfa3, #2fb880);
}
.pipeline-insight--1{ top: 21%; }
.pipeline-insight--2{ top: 50.0%; }
.pipeline-insight--3{ top: 79%; }
.pipeline-chat-card{
  width: 100%;
  height: 45px;
  background: #222222;
  border: 1px solid #333333;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.pipeline-chat-card:hover{
  transform: scale(1.02);
  border-color: #3d3d3d;
}
.pipeline-chat-card__img{
  width: 30px;
  height: 30px;
  margin-left: 8px;
  border-radius: 10px;
  background: linear-gradient(180deg, #3d3d3d, #2a2a2a);
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #d9dce0;
  line-height: 1;
  text-transform: uppercase;
}
.pipeline-chat-card__textBox{
  width: calc(100% - 48px);
  margin-left: 8px;
  margin-right: 8px;
  color: var(--text-main);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.pipeline-chat-card__textContent{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.pipeline-chat-card__span{
  font-size: 9px;
  color: var(--text-muted);
  white-space: nowrap;
}
.pipeline-chat-card__h1{
  font-size: 11px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pipeline-chat-card__p{
  margin: 2px 0 0;
  font-size: 9px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="light"] .pipeline-bot{
  filter: drop-shadow(0 0 5px rgba(31, 159, 102, 0.14));
}
[data-theme="light"] .pipeline-bot::before{
  background: radial-gradient(circle, rgba(31, 159, 102, 0.2) 0%, rgba(31, 159, 102, 0) 68%);
}
[data-theme="light"] .pipeline-bot::after{
  background: radial-gradient(circle, rgba(31, 159, 102, 0.24) 0%, rgba(31, 159, 102, 0) 70%);
}
[data-theme="light"] .pipeline-dashboard{
  border-color: #3a3a3a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(0, 0, 0, 0.22),
    0 6px 12px rgba(15, 23, 42, 0.18);
}
[data-theme="light"] .pipeline-dashboard::before{
  border-color: rgba(96, 96, 96, 0.24);
}
[data-theme="light"] .pipeline-dashboard::after{
  border-color: rgba(255, 255, 255, 0.09);
}
[data-theme="light"] .pipeline-dashboard__label{
  color: #9a9a9a;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
[data-theme="light"] .pipeline-chat-card{
  background: #f7f7f7;
  border-color: #d8d8d8;
}
[data-theme="light"] .pipeline-trace-flow{
  filter:
    drop-shadow(0 0 3px currentColor)
    drop-shadow(0 0 7px rgba(31, 159, 102, 0.24));
  opacity: 0.74;
}
[data-theme="light"] .pipeline-chat-card__img{
  background: linear-gradient(180deg, #d7dde6, #bec6d3);
  color: #384255;
}
[data-theme="light"] .pipeline-report{
  border-color: #323232;
  background: linear-gradient(180deg, #171717 0%, #111111 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.34),
    0 8px 16px rgba(0, 0, 0, 0.34);
}
[data-theme="light"] .pipeline-report::before{
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .pipeline-report__title{
  color: #8d8d8d;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}
[data-theme="light"] .pipeline-insight{
  border-color: #d5dde8;
  background: #f8fafc;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    0 6px 12px rgba(15, 23, 42, 0.08);
  color: #475569;
}
[data-theme="light"] .pipeline-insight::before{
  background: linear-gradient(180deg, #4f9d79, #1f9f66);
}

@media (max-width: 1024px){
  .dataflow-copy--global,
  .pipeline-animation-row{
    display: none;
  }
  .pipeline-animation-row{
    width: 980px;
  }
  .pipeline-animation-row .dashboard-anim-wrap{
    height: 330px;
  }
  .pipeline-ai{
    left: 6.9%;
    top: 48.2%;
  }
  .pipeline-bot--1{ left: 22.2%; top: 23.3%; }
  .pipeline-bot--2{ left: 21.5%; top: 33.9%; }
  .pipeline-bot--3{ left: 22.7%; top: 46.1%; }
  .pipeline-bot--4{ left: 21.7%; top: 60.6%; }
  .pipeline-bot--5{ left: 22.8%; top: 72.5%; }
  .pipeline-bot--6{ left: 22%; top: 83.9%; }
  .pipeline-conversations{
    right: 2.8%;
    width: 25.5%;
  }
}

@media (max-width: 900px){
  .pipeline-animation-row .dashboard-anim-wrap{
    height: 300px;
  }
  .pipeline-ai{
    left: 6.7%;
    top: 48%;
  }
  .pipeline-conversations{
    width: 27%;
    right: 2%;
    gap: 7px;
  }
  .pipeline-bot{
    width: 18px;
    height: 16px;
  }
  .pipeline-dashboard{
    min-height: 72px;
  }
  .pipeline-dashboard__label{
    font-size: 16px;
  }
  .pipeline-chat-card:nth-child(n+5){
    display: none;
  }
}

@media (max-width: 640px){
  .pipeline-animation-row .dashboard-anim-wrap{
    height: 260px;
  }
  .pipeline-ai{
    left: 6.5%;
    top: 47.8%;
  }
  .pipeline-conversations{
    width: 30%;
    right: 1.4%;
    gap: 6px;
  }
  .pipeline-dashboard{
    min-height: 66px;
  }
  .pipeline-dashboard__label{
    font-size: 13px;
  }
  .pipeline-dashboard__pins{
    top: 13px;
    gap: 3px;
  }
  .pipeline-dashboard__pins span{
    width: 4px;
    height: 4px;
  }
  .pipeline-bot{
    width: 17px;
    height: 15px;
  }
  .pipeline-chat-card{
    height: 42px;
    border-radius: 12px;
  }
  .pipeline-chat-card__img{
    width: 24px;
    height: 24px;
    margin-left: 6px;
    border-radius: 8px;
    flex-basis: 24px;
    font-size: 10px;
  }
  .pipeline-chat-card__textBox{
    width: calc(100% - 40px);
    margin-left: 6px;
    margin-right: 6px;
  }
  .pipeline-chat-card__h1{
    font-size: 10px;
  }
  .pipeline-chat-card__span{
    font-size: 8px;
  }
  .pipeline-chat-card__p{
    font-size: 8px;
  }
  .pipeline-chat-card:nth-child(n+4){
    display: none;
  }
}

.dual-animation-row{
  width: min(1400px, 94vw);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.dual-animation-row .dashboard-anim-section{
  padding: 0;
  background: transparent;
}
.dual-animation-row .dashboard-anim-section .container-wide{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.dual-animation-row .dashboard-anim-wrap{
  width: 100%;
  height: 360px;
}
.dataflow-section{
  padding-bottom: 0;
}
.dataflow-copy{
  text-align: center;
  max-width: min(1200px, 94vw);
  margin: 0 auto 14px;
}
.dataflow-copy .section-divider{
  margin: 0 auto 14px;
}
.dataflow-kicker{
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.dataflow-title{
  margin: 0 0 8px;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.2;
  font-weight: 600;
}
.dataflow-subtitle{
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}
.dashboard-anim-section .dashboard-anim-wrap.dataflow-wrap{
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: 0;
  border: 1px solid var(--border);
  background: var(--dataflow-panel-bg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  --dataflow-scene-scale: 1.14;
  --dataflow-scene-shift: 14px;
}
.dataflow-scene{
  position: absolute;
  inset: 0;
  transform: translateY(var(--dataflow-scene-shift)) scale(var(--dataflow-scene-scale));
  transform-origin: 50% 50%;
}
.dataflow-lines{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.dataflow-trace-bg{
  stroke: var(--dataflow-trace-muted);
  stroke-width: 1.8;
  fill: none;
}
.dataflow-trace-flow{
  stroke: var(--dataflow-trace-main);
  stroke-width: 1.8;
  fill: none;
  stroke-dasharray: 40 400;
  stroke-dashoffset: 438;
  filter: drop-shadow(0 0 6px currentColor);
  color: var(--dataflow-trace-main);
  animation: dash-flow var(--flow-speed, 3s) linear infinite;
  animation-delay: var(--flow-delay, 0s);
}
.dataflow-center{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}
.dataflow-ai-block{
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #141414 0%, #0f0f0f 100%);
  border: 1.2px solid #2f2f2f;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.44);
  animation: ai-block-float 4.8s ease-in-out infinite;
}
.dataflow-ai-block::before{
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 12px;
  border: 1px solid rgba(95, 95, 95, 0.3);
  opacity: 0.32;
}
.dataflow-ai-block::after{
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dataflow-ai-block span{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  color: #8d8d8d;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
  user-select: none;
}
[data-theme="light"] .dataflow-ai-block{
  background: linear-gradient(180deg, #1b1b1b 0%, #121212 100%);
  border-color: #3a3a3a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(0, 0, 0, 0.22),
    0 6px 12px rgba(15, 23, 42, 0.18);
}
[data-theme="light"] .dataflow-ai-block::before{
  border-color: rgba(96, 96, 96, 0.24);
}
[data-theme="light"] .dataflow-ai-block::after{
  border-color: rgba(255, 255, 255, 0.09);
}
[data-theme="light"] .dataflow-ai-block span{
  color: #9a9a9a;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
.data-bot{
  position: absolute;
  width: 20px;
  height: 18px;
  z-index: 2;
  transform: translate(-50%, -44%);
  filter: drop-shadow(0 0 8px rgba(62, 207, 142, 0.25));
}
.data-bot svg{
  width: 100%;
  height: 100%;
  display: block;
}
.data-bot rect,
.data-bot polygon{
  fill: var(--dash-anim-trace-main);
}
.data-bot--l1{ left: 17%; top: 19.5%; }
.data-bot--l2{ left: 13.6%; top: 29.5%; }
.data-bot--l3{ left: 13.6%; top: 50.5%; }
.data-bot--l4{ left: 17%; top: 61%; }
.data-bot--r1{ left: 83.4%; top: 19.5%; }
.data-bot--r2{ left: 86%; top: 29.5%; }
.data-bot--r3{ left: 86%; top: 50.5%; }
.data-bot--r4{ left: 83.4%; top: 61%; }
[data-theme="light"] .data-bot{
  filter: drop-shadow(0 0 6px rgba(31, 159, 102, 0.16));
}
.dashboard-preview-section{
  padding-top: 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.dashboard-preview-section .container-wide{
  width: 100%;
}
.dashboard-preview-section .dashboard-anim-wrap{
  max-width: none;
  margin: 0;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: none;
  min-height: 0;
  display: flex;
}
.dash-anim-main{
  border-radius: var(--radius);
  border: 0.8px solid var(--border);
  overflow: hidden;
  background: var(--surface);
  width: 100%;
  height: 100%;
}
.dashboard-preview-section .dash-anim-main{
  border: 0;
  --dash-scene-scale: 1.16;
  --dash-scene-shift: 20px;
}
.dash-anim-svg{
  width: 100%;
  height: 100%;
  display: block;
  transform: translateY(var(--dash-scene-shift)) scale(var(--dash-scene-scale));
  transform-origin: 50% 50%;
}
.dash-anim-trace-bg{
  stroke: var(--dash-anim-trace-muted);
  stroke-width: 1.8;
  fill: none;
}
.dash-anim-trace-flow{
  stroke: var(--dash-anim-trace-main);
  stroke-width: 1.8;
  fill: none;
  stroke-dasharray: 40 400;
  stroke-dashoffset: 438;
  filter: drop-shadow(0 0 6px currentColor);
  color: var(--dash-anim-trace-main);
  animation: dash-flow var(--flow-speed, 3s) linear infinite;
  animation-delay: var(--flow-delay, 0s);
}
.dash-anim-chip{
  stroke: var(--dash-anim-chip-stroke);
  stroke-width: 1.3;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.14));
}
[data-theme="light"] .dash-anim-chip{
  filter: drop-shadow(0 0 5px rgba(15, 23, 42, 0.08));
}
#dashChipGradient stop:first-child{ stop-color: var(--dash-anim-chip-top); }
#dashChipGradient stop:last-child{ stop-color: var(--dash-anim-chip-bottom); }
#dashTextGradient stop:first-child{ stop-color: var(--dash-anim-text-main); }
#dashTextGradient stop:last-child{ stop-color: var(--dash-anim-text-sub); }
#dashPinGradient stop:first-child{ stop-color: var(--dash-anim-pin-1); }
#dashPinGradient stop:nth-child(2){ stop-color: var(--dash-anim-pin-2); }
#dashPinGradient stop:last-child{ stop-color: var(--dash-anim-pin-3); }
.dash-anim-svg text{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.dash-anim-bot{
  fill: var(--dash-anim-trace-main);
  filter: drop-shadow(0 0 8px rgba(62, 207, 142, 0.25));
}
[data-theme="light"] .dash-anim-bot{
  filter: drop-shadow(0 0 6px rgba(31, 159, 102, 0.16));
}

.pricing-wrap{
  padding: 52px 0 62px;
  border-top: 1px solid var(--border);
}
.pricing-bonus-banner{
  margin: 0 auto 22px;
  max-width: 760px;
  border: 1px solid rgba(62, 207, 142, 0.36);
  background: linear-gradient(180deg, rgba(62, 207, 142, 0.12), rgba(62, 207, 142, 0.04));
  border-radius: 12px;
  padding: 12px 16px;
  display: grid;
  gap: 6px;
  text-align: center;
}
.pricing-bonus-badge{
  display: inline-flex;
  justify-self: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0b1d14;
  background: var(--accent);
}
.pricing-bonus-text{
  margin: 0;
  color: var(--text-main);
  font-size: 14px;
}
.pricing-bonus-text strong{
  color: var(--accent);
  font-weight: 700;
}
.pricing-bonus-timer{
  color: var(--text-muted);
  font-size: 13px;
}
.pricing-bonus-timer strong{
  color: var(--text-main);
  font-variant-numeric: tabular-nums;
}
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.pricing-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.pricing-card.popular{
  border-color: rgba(62, 207, 142, 0.5);
}
.pricing-card[data-plan="starter"],
.pricing-card[data-plan="business"]{
  border-color: var(--border);
}
.badge-pop{ display: none; }
.plan-name{
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.price{
  font-size: 36px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.price .period{
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.features{
  margin-bottom: 22px;
  display: grid;
  gap: 10px;
}
.features div{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-main);
}
.features svg{ color: var(--accent); flex-shrink: 0; width: 16px; height: 16px; }
.features .feature-bonus{
  color: #9cf3ce;
  font-weight: 700;
}
.features .feature-bonus svg{
  color: #9cf3ce;
}

[data-theme="light"] .pricing-bonus-banner{
  border-color: rgba(31, 159, 102, 0.3);
  background: linear-gradient(180deg, rgba(31, 159, 102, 0.12), rgba(31, 159, 102, 0.04));
}
[data-theme="light"] .pricing-bonus-badge{
  color: #ffffff;
  background: #1f9f66;
}
[data-theme="light"] .features .feature-bonus{
  color: #0f8a56;
}
[data-theme="light"] .features .feature-bonus svg{
  color: #0f8a56;
}

.pricing-plan-controls{
  display: flex;
  justify-content: center;
  margin: 0 0 24px;
}
.glass-radio-group{
  --bg: rgba(255, 255, 255, 0.06);
  --text: #e5e5e5;

  display: flex;
  position: relative;
  background: var(--bg);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  box-shadow:
    inset 1px 1px 4px rgba(255, 255, 255, 0.2),
    inset -1px -1px 6px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  width: fit-content;
}
.glass-radio-group input{
  display: none;
}
.glass-radio-group label{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  font-size: 14px;
  padding: 0.8rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text);
  position: relative;
  z-index: 2;
  transition: color 0.3s ease-in-out;
}
.glass-radio-group label:hover{
  color: #fff;
}
.glass-radio-group input:checked + label{
  color: #fff;
}
.glass-glider{
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(100% / 3);
  border-radius: 1rem;
  z-index: 1;
  transition:
    transform 0.5s cubic-bezier(0.37, 1.95, 0.66, 0.56),
    background 0.4s ease-in-out,
    box-shadow 0.4s ease-in-out;
}
#glass-starter:checked ~ .glass-glider{
  transform: translateX(0%);
  background: linear-gradient(135deg, #c0c0c055, #e0e0e0);
  box-shadow:
    0 0 18px rgba(192, 192, 192, 0.5),
    0 0 10px rgba(255, 255, 255, 0.4) inset;
}
#glass-pro:checked ~ .glass-glider{
  transform: translateX(100%);
  background: linear-gradient(135deg, #3ecf8e55, #34b27b);
  box-shadow:
    0 0 18px rgba(62, 207, 142, 0.5),
    0 0 10px rgba(133, 243, 193, 0.4) inset;
}
#glass-business:checked ~ .glass-glider{
  transform: translateX(200%);
  background: linear-gradient(135deg, #d0e7ff55, #a0d8ff);
  box-shadow:
    0 0 18px rgba(160, 216, 255, 0.5),
    0 0 10px rgba(200, 240, 255, 0.4) inset;
}
.pricing-card{
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.pricing-card.active-plan{
  border-color: rgba(62, 207, 142, 0.62);
  background: var(--surface);
  box-shadow:
    0 0 0 1px rgba(62, 207, 142, 0.24),
    0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  animation: pricing-select-in 280ms ease-out;
}
.pricing-card.active-plan[data-plan="starter"],
.pricing-card.active-plan[data-plan="business"]{
  border-color: var(--border);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 8px 16px rgba(0, 0, 0, 0.2);
}
.pricing-card.active-plan:hover{
  transform: translateY(-3px);
}
.pricing-cta-wrap{
  display: flex;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 4px;
}
.pricing-cta-wrap .btn{
  min-width: 220px;
}
[data-theme="light"] .glass-radio-group{
  --bg: rgba(15, 23, 42, 0.05);
  --text: #334155;
  box-shadow:
    inset 1px 1px 4px rgba(255, 255, 255, 0.65),
    inset -1px -1px 6px rgba(15, 23, 42, 0.08),
    0 4px 12px rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .glass-radio-group label:hover,
[data-theme="light"] .glass-radio-group input:checked + label{
  color: #0f172a;
}
[data-theme="light"] .pricing-card.active-plan{
  border-color: rgba(31, 159, 102, 0.58);
  background: var(--surface);
  box-shadow:
    0 0 0 1px rgba(31, 159, 102, 0.18),
    0 8px 16px rgba(15, 23, 42, 0.1);
}
[data-theme="light"] .pricing-card.active-plan[data-plan="starter"],
[data-theme="light"] .pricing-card.active-plan[data-plan="business"]{
  border-color: var(--border);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.06),
    0 8px 16px rgba(15, 23, 42, 0.1);
}

#faqs{
  padding: 56px 0 84px;
  border-top: 1px solid var(--border);
}
.faq{ max-width: 760px; margin-inline: auto; }
details{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
summary{
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  outline: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
}
summary::after{
  content: "+";
  color: var(--text-muted);
  font-weight: 700;
}
details[open] summary::after{
  content: "-";
  color: var(--accent);
}
details p{
  color: var(--text-muted);
  margin: 10px 0 0;
  font-size: 15px;
}

footer{
  padding: 50px 0 40px;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-link{ color: var(--accent); font-weight: 600; text-decoration: none; }

@media (max-width: 1024px){
  /* Masquer sur mobile/tablette la demo live et le bloc "Gerez votre site en toute serenite" */
  #demo-live{
    display: none !important;
  }
  #showcase > .section-header,
  #showcase > .container{
    display: none !important;
  }

  .dual-animation-row{
    width: min(980px, 92vw);
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dual-animation-row .dashboard-anim-wrap{
    height: 320px;
  }
  .dataflow-copy{
    text-align: center;
  }
  .showcase-block{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .showcase-block.reversed .text-col,
  .showcase-block.reversed .visual-col{
    order: 0;
  }
  .text-col{ max-width: 640px; margin-inline: auto; }
  .showcase-title-row .h3-showcase{ white-space: normal; }
  .showcase-title-row{ justify-content: center; }
  .check-list{ justify-items: center; }
  .check-list li{ justify-content: center; }

  .showcase-cinematic .container-wide{
    display: block;
    padding-bottom: 0;
  }
  .showcase-cinematic .showcase-block{
    position: static;
    top: auto;
    margin-bottom: 90px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    animation: none;
  }
  .showcase-cinematic .showcase-block:last-child{
    margin-bottom: 0;
  }
}

@media (max-width: 900px){
  .nav-links{ gap: 12px; }
  .nav-link{ display: none; }
  .brand img{ height: 34px; }
  .nav{ height: 62px; }
  .features-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid{
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .glass-radio-group label{
    min-width: 92px;
    padding: 0.75rem 1.15rem;
  }
  .pricing-cta-wrap .btn{
    width: min(320px, 92vw);
  }
  .dashboard-anim-section .dashboard-anim-wrap.dataflow-wrap{
    --dataflow-scene-scale: 1.09;
    --dataflow-scene-shift: 8px;
  }
  .dashboard-preview-section .dash-anim-main{
    --dash-scene-scale: 1.1;
    --dash-scene-shift: 10px;
  }
  .dataflow-ai-block{
    width: 58px;
    height: 58px;
  }
  .dataflow-ai-block span{
    font-size: 27px;
  }
}

@media (max-width: 640px){
  .features-grid{ grid-template-columns: 1fr; }
  .cta{ flex-direction: column; align-items: stretch; }
  .btn{ width: 100%; }
  .trusted-logos{ gap: 16px; }
  .title-rotator-card{
    gap: 4px;
    font-size: clamp(20px, 5.8vw, 28px);
    line-height: 1.12;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin-bottom: 20px;
  }
  .title-rotator-words{
    min-width: 0;
    width: 100%;
    text-align: center;
  }
  .card-6{
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
  .card-6__holo{
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }
  .card-6__layer{
    font-size: 38px;
    letter-spacing: -2px;
  }
  .glass-radio-group label{
    min-width: 82px;
    font-size: 13px;
    padding: 0.72rem 0.95rem;
  }
  .dataflow-title{ font-size: 24px; }
  .dataflow-subtitle{ font-size: 14px; }
  .dual-animation-row .dashboard-anim-wrap{ height: 270px; }
  .dashboard-anim-section .dashboard-anim-wrap.dataflow-wrap{
    --dataflow-scene-scale: 1.06;
    --dataflow-scene-shift: 7px;
  }
  .dashboard-preview-section .dash-anim-main{
    --dash-scene-scale: 1.07;
    --dash-scene-shift: 8px;
  }
  .dataflow-ai-block{
    width: 50px;
    height: 50px;
  }
  .dataflow-ai-block span{
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
  }
  .showcase-cinematic .showcase-block{
    position: static !important;
    top: auto !important;
    margin-bottom: 90px !important;
    transform: none !important;
  }
  .showcase-cinematic .showcase-block:last-child{
    margin-bottom: 0 !important;
  }
}

@keyframes logo-draw {
  0% { stroke-dashoffset: 200; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -200; }
}

@keyframes ai-block-float {
  0%, 100% { transform: translateY(-1px); }
  50% { transform: translateY(-6px); }
}

@keyframes card6-wobble {
  0% { transform: rotateX(16deg) rotateY(-18deg); }
  50% { transform: rotateX(18deg) rotateY(18deg); }
  100% { transform: rotateX(16deg) rotateY(-18deg); }
}

@keyframes title-rotator-spin {
  10% {
    transform: translateY(-102%);
  }
  25% {
    transform: translateY(-100%);
  }
  35% {
    transform: translateY(-202%);
  }
  50% {
    transform: translateY(-200%);
  }
  60% {
    transform: translateY(-302%);
  }
  75% {
    transform: translateY(-300%);
  }
  85% {
    transform: translateY(-402%);
  }
  100% {
    transform: translateY(-400%);
  }
}

@keyframes pipeline-bot-arrive-fill {
  0%, 60%, 100% {
    opacity: 0.58;
    transform: scale(0.9);
  }
  10%, 22% {
    opacity: 1;
    transform: scale(1.09);
  }
  34% {
    opacity: 0.82;
    transform: scale(1);
  }
}

@keyframes pipeline-bot-arrive-halo {
  0%, 60%, 100% {
    opacity: 0.08;
    transform: scale(0.8);
  }
  12%, 24% {
    opacity: 0.55;
    transform: scale(1.18);
  }
  36% {
    opacity: 0.24;
    transform: scale(0.96);
  }
}

@keyframes pipeline-bot-depart-glow {
  0%, 64%, 100% {
    filter: drop-shadow(0 0 6px rgba(62, 207, 142, 0.16));
  }
  10%, 22% {
    filter: drop-shadow(0 0 11px rgba(62, 207, 142, 0.42));
  }
  34% {
    filter: drop-shadow(0 0 7px rgba(62, 207, 142, 0.24));
  }
}

@keyframes pipeline-bot-depart-halo {
  0%, 64%, 100% {
    opacity: 0.06;
    transform: scale(0.82);
  }
  10%, 22% {
    opacity: 0.48;
    transform: scale(1.2);
  }
  34% {
    opacity: 0.2;
    transform: scale(0.98);
  }
}

@keyframes pipeline-bot-pulse {
  0%, 60%, 100% {
    opacity: 0.58;
    transform: scale(0.9);
  }
  10%, 22% {
    opacity: 1;
    transform: scale(1.09);
  }
  34% {
    opacity: 0.82;
    transform: scale(1);
  }
}

@keyframes pipeline-bot-halo {
  0%, 60%, 100% {
    opacity: 0.08;
    transform: scale(0.8);
  }
  12%, 24% {
    opacity: 0.55;
    transform: scale(1.18);
  }
  36% {
    opacity: 0.24;
    transform: scale(0.96);
  }
}

@keyframes pricing-select-in {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(62, 207, 142, 0);
  }
  100% {
    transform: translateY(-2px);
    box-shadow:
      0 0 0 1px rgba(62, 207, 142, 0.24),
      0 8px 16px rgba(0, 0, 0, 0.2);
  }
}

@keyframes pipeline-flow {
  to { stroke-dashoffset: 0; }
}

@keyframes dash-flow {
  to { stroke-dashoffset: 0; }
}
