/* ══════════════════════════════════════════════════════════════
   CADENCE CRM · Dark tech · Lime accent
   Space Grotesk + Inter + JetBrains Mono
   ══════════════════════════════════════════════════════════════ */

:root {
  --bg:           #0a0a0b;
  --bg-2:         #111113;
  --bg-3:         #1a1a1c;
  --surface:      #f7f7f5;
  --surface-2:    #efeeea;
  --line:         #1d1d1f;
  --line-2:       #2a2a2c;
  --line-light:   #e3e2dd;
  --text:         #f7f7f5;
  --text-muted:   #8a8a8a;
  --text-dim:     #5e5e60;
  --text-dark:    #0a0a0b;
  --text-dark-mu: #45454a;
  --lime:         #d4ff3a;
  --lime-deep:    #b8e030;
  --orange:       #ff6b3d;
  --blue:         #3a8aff;
  --pink:         #ff5db1;
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── ANNONCE BAR ──────────────────────────────────────────── */
.annonce {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  position: relative;
  z-index: 60;
}
.annonce-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 11px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.annonce-tag {
  background: var(--lime);
  color: var(--text-dark);
  padding: 2px 9px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.annonce-text { color: var(--text-muted); }
.annonce-link {
  color: var(--text);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
}
.annonce-link:hover { color: var(--lime); }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.92);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark { width: 32px; height: 32px; flex-shrink: 0; }
.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.04em;
  color: var(--text);
}
.nav-menu {
  display: flex;
  gap: 4px;
  margin-right: auto;
  margin-left: 40px;
}
.nav-menu a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.nav-menu a:hover { color: var(--text); background: var(--bg-3); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--lime);
  color: var(--text-dark);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: all .2s;
  border: 1px solid var(--lime);
}
.nav-cta:hover {
  background: transparent;
  color: var(--lime);
  box-shadow: 0 0 24px rgba(212, 255, 58, .25);
}

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: var(--bg-2);
  padding: 16px 32px 24px;
  border-top: 1px solid var(--line);
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-muted);
}
.nav-mobile a:hover { background: var(--bg-3); color: var(--text); }
.nav-mobile-cta {
  background: var(--lime);
  color: var(--text-dark) !important;
  text-align: center;
  margin-top: 8px;
  font-weight: 600;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--lime);
  color: var(--text-dark);
  border-color: var(--lime);
}
.btn-primary:hover {
  background: transparent;
  color: var(--lime);
  box-shadow: 0 0 32px rgba(212, 255, 58, .35);
}
.btn-ghost {
  background: var(--bg-3);
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--text-muted);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-outline:hover {
  border-color: var(--text);
}
.btn-lg { padding: 16px 28px; font-size: 15.5px; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: var(--bg);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .8;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
}
.hero-grid-bg svg { width: 100%; height: 100%; }
.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  transition: all .25s;
  margin-bottom: 28px;
}
.hero-pill:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(212, 255, 58, .15);
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 6.4vw, 80px);
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--text);
  margin-bottom: 24px;
}
.highlight {
  position: relative;
  color: var(--lime);
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px; bottom: 4px;
  height: 8px;
  background: rgba(212, 255, 58, .18);
  z-index: -1;
  transform: skewX(-8deg);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.meta-item svg { color: var(--lime); }

/* ── HERO MOCK DASHBOARD ─────────────────────────────────── */
.hero-mock {
  position: relative;
  perspective: 1400px;
}
.mock-window {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(212, 255, 58, .06);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform .4s ease;
}
.mock-window:hover {
  transform: rotateY(-2deg) rotateX(1deg);
}
.mock-bar {
  background: var(--bg-3);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}
.mock-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--line-2);
}
.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #febc2e; }
.mock-dot:nth-child(3) { background: #28c840; }
.mock-url {
  flex: 1;
  margin-left: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
}
.mock-url span { color: var(--lime); }
.mock-content {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  min-height: 380px;
}
.mock-sidebar {
  background: var(--bg);
  border-right: 1px solid var(--line);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-side-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border-radius: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}
.mock-side-item.active {
  background: var(--bg-3);
  color: var(--text);
}
.mock-side-dot {
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--lime);
}
.mock-side-dot-2 { background: var(--blue); }
.mock-side-dot-3 { background: var(--orange); }
.mock-side-dot-4 { background: var(--pink); }

.mock-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  background: var(--bg);
  overflow: hidden;
}
.mock-col {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.mock-col-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 8px;
  border-bottom: 1px dashed var(--line-2);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mock-col-head em {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  background: var(--bg-3);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--text);
  font-size: 10px;
}
.mock-card {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 9px 10px;
  transition: all .2s;
}
.mock-card:hover {
  border-color: var(--text-muted);
}
.mock-card-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.mock-card-amt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 8px;
}
.mock-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--text-muted);
}
.mock-tag {
  padding: 1.5px 6px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 9.5px;
}
.mock-tag-blue { background: rgba(58, 138, 255, .14); color: var(--blue); }
.mock-tag-fire { background: rgba(255, 107, 61, .14); color: var(--orange); }
.mock-tag-warm { background: rgba(255, 93, 177, .14); color: var(--pink); }
.mock-tag-lime { background: var(--lime); color: var(--text-dark); }
.mock-card-hot {
  border-color: rgba(255, 107, 61, .35);
}
.mock-card-glow {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px rgba(212, 255, 58, .1), 0 0 24px rgba(212, 255, 58, .15);
}

.mock-notif {
  position: absolute;
  top: 10%;
  left: -14%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 12px 16px 12px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .5);
  z-index: 3;
  animation: mockFloat 7s ease-in-out infinite;
}
.mock-notif-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(212, 255, 58, .15);
  color: var(--lime);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mock-notif strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.mock-notif span {
  font-size: 11.5px;
  color: var(--text-muted);
}

.mock-stat {
  position: absolute;
  bottom: 8%;
  right: -10%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 14px 18px;
  z-index: 3;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .5);
  animation: mockFloat 9s ease-in-out infinite reverse;
}
.mock-stat-label {
  font-size: 10.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.mock-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mock-stat-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}
@keyframes mockFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ── LOGOS ────────────────────────────────────────────────── */
.logos {
  padding: 70px 0 40px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.logos-label {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.logos-label strong { color: var(--text); font-weight: 600; }
.logos-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logos-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.logos-track span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  transition: color .25s;
  white-space: nowrap;
}
.logos-track span:hover { color: var(--text); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ── METRICS ──────────────────────────────────────────────── */
.metrics {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.metric {
  padding: 0 28px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.metric:last-child { border-right: none; }
.metric-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 14px;
}
.metric-accent .metric-num {
  color: var(--lime);
}
.metric-label {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 240px;
}

/* ── SECTION HEADERS ──────────────────────────────────────── */
.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head-narrow { max-width: 640px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--lime);
  text-transform: lowercase;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.eyebrow-bullet {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(212, 255, 58, .15);
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 18px;
}
.title-muted { color: var(--text-muted); font-weight: 500; }
.title-lime  { color: var(--lime); }
.section-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── PILIERS ──────────────────────────────────────────────── */
.piliers {
  padding: 110px 0;
  background: var(--bg);
}
.piliers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pilier {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 30px;
  transition: all .3s;
}
.pilier:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
}
.pilier-featured {
  background: linear-gradient(150deg, #1a1f0a 0%, var(--bg-2) 60%);
  border-color: rgba(212, 255, 58, .25);
}
.pilier-featured:hover {
  border-color: var(--lime);
  box-shadow: 0 12px 40px rgba(212, 255, 58, .12);
}
.pilier-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--lime);
  color: var(--text-dark);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pilier-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--lime);
  margin-bottom: 22px;
}
.pilier h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}
.pilier > p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.pilier-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pilier-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
}
.bullet-tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(212, 255, 58, .12);
  color: var(--lime);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
}

/* ── SHOWCASE ─────────────────────────────────────────────── */
.showcase {
  padding: 110px 0;
  background: var(--bg);
}
.showcase-alt {
  background: var(--bg-2);
}
.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
}
.showcase-grid-rev {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}
.showcase-text .section-title { text-align: left; }
.showcase-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 8px 0 32px;
  max-width: 460px;
}
.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.showcase-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.sl-ic {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--text-dark);
  display: grid;
  place-items: center;
  margin-top: 2px;
  flex-shrink: 0;
}
.showcase-list li strong {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.showcase-list li span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.showcase-visual {
  position: relative;
}
.visual-grid-bg {
  position: absolute;
  inset: -20px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 50%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 50%, transparent 80%);
  opacity: .6;
  z-index: 0;
}
.visual-svg {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  width: 100%;
  height: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

/* ── AUTOMATION BUILDER ──────────────────────────────────── */
.auto-builder {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}
.auto-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: all .25s;
}
.auto-step:hover {
  border-color: var(--lime);
  background: var(--bg-3);
}
.auto-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-3);
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
}
.auto-step-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--bg-3);
  border-radius: 3px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.auto-step-tag-success {
  background: rgba(212, 255, 58, .15);
  color: var(--lime);
}
.auto-step-body strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.auto-step-branch {
  border-left: 3px solid var(--orange);
  padding-left: 18px;
}
.auto-step-final {
  border-color: rgba(212, 255, 58, .35);
}
.auto-step-final .auto-step-num {
  background: var(--lime);
  color: var(--text-dark);
  border-color: var(--lime);
}
.auto-arrow {
  text-align: center;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1;
}

/* ── INTÉGRATIONS ─────────────────────────────────────────── */
.integrations {
  padding: 110px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}
.int-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  transition: all .2s;
}
.int-card:hover {
  border-color: var(--lime);
  background: var(--bg-3);
}
.int-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 600;
}
.int-card strong {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.int-card span {
  font-size: 12px;
  color: var(--text-muted);
}
.int-card-featured {
  background: linear-gradient(135deg, #1a1f0a, var(--bg-2));
  border-color: rgba(212, 255, 58, .2);
}
.int-card-more {
  background: transparent;
  border-style: dashed;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.int-card-more strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.int-card-more span {
  font-size: 12px;
  color: var(--lime);
  font-weight: 500;
}

/* ── PRICING ──────────────────────────────────────────────── */
.pricing {
  padding: 110px 0;
  background: var(--surface);
  color: var(--text-dark);
}
.pricing .section-title { color: var(--text-dark); }
.pricing .title-muted { color: var(--text-dark-mu); }
.pricing .title-lime { color: var(--text-dark); border-bottom: 4px solid var(--lime); padding-bottom: 2px; line-height: 1; display: inline-block; }
.pricing .section-lede { color: var(--text-dark-mu); }
.pricing .eyebrow { color: var(--text-dark); }
.pricing .eyebrow-bullet { background: var(--text-dark); box-shadow: 0 0 0 3px rgba(10, 10, 11, .12); }

.pricing-toggle {
  display: inline-flex;
  margin: 0 auto 50px;
  background: var(--surface-2);
  border: 1px solid var(--line-light);
  border-radius: 100px;
  padding: 4px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.pricing-toggle span {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark-mu);
  cursor: pointer;
  transition: all .25s;
}
.pricing-toggle .toggle-active {
  background: var(--text-dark);
  color: var(--text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.plan {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: all .3s;
  position: relative;
}
.plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(10, 10, 11, .08);
}
.plan-featured {
  background: var(--text-dark);
  color: var(--text);
  border-color: var(--text-dark);
}
.plan-tag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--text-dark);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.plan-head {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-light);
}
.plan-featured .plan-head {
  border-bottom-color: var(--line-2);
}
.plan-head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.plan-featured .plan-head h3 { color: var(--text); }
.plan-head p {
  font-size: 14px;
  color: var(--text-dark-mu);
  line-height: 1.5;
}
.plan-featured .plan-head p { color: var(--text-muted); }

.plan-price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}
.plan-currency {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
}
.plan-featured .plan-currency { color: var(--text); }
.plan-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  line-height: 1;
}
.plan-featured .plan-amount { color: var(--text); }
.plan-amount-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.plan-period {
  font-size: 13px;
  color: var(--text-dark-mu);
  margin-left: 6px;
}
.plan-featured .plan-period { color: var(--text-muted); }

.plan-cta {
  display: block;
  text-align: center;
  padding: 13px 18px;
  background: var(--surface-2);
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 24px;
  transition: all .2s;
  border: 1.5px solid transparent;
}
.plan-cta:hover {
  background: var(--text-dark);
  color: var(--text);
}
.plan-cta-primary {
  background: var(--lime);
  color: var(--text-dark);
}
.plan-cta-primary:hover {
  background: transparent;
  border-color: var(--lime);
  color: var(--lime);
}
.plan-featured .plan-cta:not(.plan-cta-primary) {
  background: var(--bg-3);
  color: var(--text);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-dark);
}
.plan-featured .plan-features li { color: var(--text); }

/* ── TÉMOIGNAGES ──────────────────────────────────────────── */
.temoignages {
  padding: 110px 0;
  background: var(--bg);
}
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.temoignage {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.temoignage-featured {
  background: linear-gradient(150deg, #1a1f0a, var(--bg-2));
  border-color: rgba(212, 255, 58, .2);
}
.temoignage-metric {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
}
.tm-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 6px;
}
.tm-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.temoignage blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  font-style: normal;
  flex: 1;
}
.temoignage-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}
.ta-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--text);
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.ta-avatar-2 { background: var(--orange); }
.ta-avatar-3 { background: var(--pink); }
.temoignage-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.temoignage-author span {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ── COMPARE ──────────────────────────────────────────────── */
.compare {
  padding: 110px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.compare-table {
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ct-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.ct-row:last-child { border-bottom: none; }
.ct-cell {
  padding: 18px 20px;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-feat {
  justify-content: flex-start;
  color: var(--text);
  font-weight: 500;
}
.ct-head {
  background: var(--bg-2);
  font-weight: 600;
}
.ct-head .ct-cell {
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 22px 20px;
}
.ct-cadence {
  background: rgba(212, 255, 58, .04);
  border-left: 1px solid rgba(212, 255, 58, .2);
  border-right: 1px solid rgba(212, 255, 58, .2);
}
.ct-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  color: var(--lime);
}
.ct-yes {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(212, 255, 58, .15);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.ct-no {
  color: var(--text-dim);
  font-size: 16px;
}
.ct-mid {
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
}
.ct-cadence strong {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--lime);
  font-size: 16px;
  font-weight: 700;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq {
  padding: 110px 0;
  background: var(--bg);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
}
.faq-item[open] {
  border-color: rgba(212, 255, 58, .25);
}
.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-arrow {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-3);
  transition: all .25s;
}
.faq-arrow::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: translate(-50%, -65%) rotate(45deg);
  transition: all .25s;
}
.faq-item[open] .faq-arrow {
  background: var(--lime);
}
.faq-item[open] .faq-arrow::before {
  border-color: var(--text-dark);
  transform: translate(-50%, -30%) rotate(-135deg);
}
.faq-body {
  padding: 0 26px 24px;
}
.faq-body p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ── CTA FINAL ────────────────────────────────────────────── */
.cta-final {
  padding: 80px 0 110px;
  background: var(--bg);
}
.cta-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(212, 255, 58, .25), transparent 60%);
  pointer-events: none;
}
.cta-card h2 {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 22px;
  color: var(--text);
}
.cta-card p {
  position: relative;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.cta-actions {
  position: relative;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-meta {
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-muted);
}
.cta-meta div {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cta-meta svg { color: var(--lime); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 80px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2.2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 22px;
}
.footer-news {
  display: flex;
  gap: 6px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 4px;
  max-width: 360px;
}
.footer-news input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 8px 12px;
  font-family: inherit;
  font-size: 13px;
}
.footer-news input::placeholder { color: var(--text-dim); }
.footer-news input:focus { outline: none; }
.footer-news button {
  background: var(--lime);
  color: var(--text-dark);
  border: none;
  padding: 9px 16px;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
}
.footer-news button:hover { background: var(--lime-deep); }
.footer-news button.done {
  background: rgba(212, 255, 58, .15);
  color: var(--lime);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  font-weight: 500;
}
.footer-col a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color .2s;
}
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.footer-legal {
  display: flex;
  gap: 18px;
}
.footer-legal a:hover { color: var(--text); }

/* ── REVEAL ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 60px; }
  .hero-mock { max-width: 560px; margin: 0 auto; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .metric { padding: 0 22px; }
  .metric:nth-child(2) { border-right: none; }
  .piliers-grid { grid-template-columns: 1fr; }
  .showcase-grid, .showcase-grid-rev { grid-template-columns: 1fr; gap: 50px; }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 50px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ct-row { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .ct-cell { padding: 14px 12px; font-size: 12.5px; }
}
@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .annonce-text { display: none; }
  .nav-menu, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 14px 18px; }
  .hero { padding: 50px 0 70px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .mock-content { grid-template-columns: 1fr; min-height: 0; }
  .mock-sidebar { display: none; }
  .mock-board { grid-template-columns: 1fr; }
  .mock-notif, .mock-stat { display: none; }
  .piliers, .showcase, .integrations, .pricing, .temoignages, .compare, .faq { padding: 70px 0; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer { padding: 60px 0 24px; }
  .cta-card { padding: 56px 24px; }
  .compare-table { font-size: 12px; overflow-x: auto; }
  .ct-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; min-width: 580px; }
  .footer-bottom { flex-direction: column; }
}
