/* ════════════════════════════════════════════════════════════════
   OmniTech lab — Design system & animations
   Identité : fond profond, teal signature, lueurs bleu/violet,
   verre dépoli, mouvements doux pilotés au scroll.
   ════════════════════════════════════════════════════════════════ */

:root {
  --bg: #04060a;
  --bg-2: #070b12;
  --panel: rgba(13, 18, 26, 0.72);
  --card: #0b1018;
  --field: #0d141f;

  --text: #c9d6e6;
  --text-strong: #f4f9ff;
  --muted: #7e91a8;

  --accent: #42d6c4;
  --accent-2: #5b8cff;
  --accent-3: #8c6bff;
  --warm: #f0b36d;
  --green: #38f5a0;
  --danger: #ff6b7a;

  --border: rgba(140, 165, 190, 0.14);
  --border-strong: rgba(66, 214, 196, 0.38);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --glow-teal: rgba(66, 214, 196, 0.22);
  --glow-blue: rgba(91, 140, 255, 0.18);
  --glow-violet: rgba(140, 107, 255, 0.16);

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg, video, canvas { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--text-strong); }

::selection { background: rgba(66, 214, 196, 0.3); color: var(--text-strong); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: #03110e; padding: 0.6rem 1rem;
  border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ── Entrée de page ────────────────────────────────────────────── */
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }
body { animation: page-in 0.7s ease both; }

/* ── Couches d'ambiance : grain + aurores ──────────────────────── */
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 1.4s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
  100% { transform: translate(2%, -1%); }
}

.aurora {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  pointer-events: none;
}
.aurora span {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.55;
  will-change: transform;
}
.aurora .a1 {
  width: 52vw; height: 52vw; top: -18vw; left: -12vw;
  background: radial-gradient(circle, var(--glow-teal), transparent 65%);
  animation: drift-a 26s ease-in-out infinite alternate;
}
.aurora .a2 {
  width: 44vw; height: 44vw; top: 30vh; right: -16vw;
  background: radial-gradient(circle, var(--glow-blue), transparent 65%);
  animation: drift-b 32s ease-in-out infinite alternate;
}
.aurora .a3 {
  width: 38vw; height: 38vw; bottom: -14vw; left: 22vw;
  background: radial-gradient(circle, var(--glow-violet), transparent 65%);
  animation: drift-c 38s ease-in-out infinite alternate;
}
@keyframes drift-a { to { transform: translate(9vw, 7vh) scale(1.15); } }
@keyframes drift-b { to { transform: translate(-7vw, -9vh) scale(1.1); } }
@keyframes drift-c { to { transform: translate(6vw, -6vh) scale(1.2); } }

/* ── Conteneurs ────────────────────────────────────────────────── */
.container { width: min(1180px, calc(100% - 3rem)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-top: 0.9rem; }
.section-head .lead { margin-top: 1rem; color: var(--muted); font-size: 1.08rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

.grad-text {
  background: linear-gradient(100deg, var(--accent) 10%, var(--accent-2) 55%, var(--accent-3) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Apparitions au scroll ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-reveal="left"]  { transform: translateX(-46px); }
.reveal[data-reveal="right"] { transform: translateX(46px); }
.reveal[data-reveal="zoom"]  { transform: scale(0.88); }
.reveal[data-reveal="left"].is-visible,
.reveal[data-reveal="right"].is-visible,
.reveal[data-reveal="zoom"].is-visible { transform: none; }

/* Titre découpé mot à mot */
.split-word {
  display: inline-block; overflow: hidden; vertical-align: bottom;
}
.split-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-out);
  transition-delay: var(--wd, 0ms);
}
.words-in .split-word > span { transform: none; }

/* ── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: transform 0.45s var(--ease-out), background 0.3s ease,
              border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 8, 13, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
.nav.is-hidden { transform: translateY(-100%); }

.nav-inner {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.06rem; color: var(--text-strong);
}
.brand img { width: 34px; height: 34px; border-radius: 9px; object-fit: cover; }
.brand:hover { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  position: relative; color: var(--text); font-size: 0.95rem; font-weight: 500;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:not(.btn):hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--text-strong); }
.nav-links a.is-active { color: var(--text-strong); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--text-strong);
  border-radius: 2px; transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Boutons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem; cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease,
              background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  will-change: transform;
}
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #02110f;
  box-shadow: 0 8px 30px rgba(66, 214, 196, 0.28);
}
.btn-primary:hover {
  color: #02110f;
  box-shadow: 0 12px 44px rgba(66, 214, 196, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--border-strong); color: var(--text-strong);
  background: rgba(66, 214, 196, 0.06);
}
.btn-outline:hover {
  background: rgba(66, 214, 196, 0.14);
  box-shadow: 0 8px 28px rgba(66, 214, 196, 0.18);
  transform: translateY(-2px);
}

.btn-ghost { color: var(--text); border-color: transparent; }
.btn-ghost:hover { color: var(--accent); }

.btn .arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.42rem 1rem; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(66, 214, 196, 0.07);
  font-size: 0.85rem; font-weight: 500; color: var(--text-strong);
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(66, 214, 196, 0.6);
  animation: pulse-dot 2.4s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(66, 214, 196, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(66, 214, 196, 0); }
  100% { box-shadow: 0 0 0 0 rgba(66, 214, 196, 0); }
}

/* ── Rail de lecture : l'orbe qui suit le scroll ───────────────── */
.orb-rail {
  position: fixed; right: 26px; top: 50%; transform: translateY(-50%);
  z-index: 95; display: flex; flex-direction: column; align-items: center;
  gap: 0.8rem; opacity: 0; transition: opacity 0.6s ease;
  pointer-events: none;
}
.orb-rail.is-on { opacity: 1; }
.orb-rail-track {
  width: 2px; height: 38vh; min-height: 220px;
  background: rgba(140, 165, 190, 0.18); border-radius: 2px;
  position: relative;
}
.orb-rail-thumb {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -50%);
  transition: top 0.18s linear;
}
.orb-core {
  display: block; width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #b7fff4, var(--accent) 55%, var(--accent-2));
  box-shadow:
    0 0 12px rgba(66, 214, 196, 0.9),
    0 0 34px rgba(66, 214, 196, 0.45);
  animation: orb-breathe 3.2s ease-in-out infinite;
}
@keyframes orb-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}
.orb-rail-label {
  writing-mode: vertical-rl; font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
  transition: opacity 0.4s ease;
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8.5rem 0 4rem; position: relative; overflow: clip;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero-title {
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  margin-top: 1.4rem; font-weight: 700;
}
.hero-lead {
  margin-top: 1.5rem; color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem); max-width: 34rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-meta {
  list-style: none; padding: 0; margin: 2.4rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem;
  color: var(--muted); font-size: 0.88rem;
}
.hero-meta li { display: flex; align-items: center; gap: 0.5rem; }
.hero-meta li::before { content: "✦"; color: var(--accent); font-size: 0.7rem; }

/* Scène de l'orbe */
.hero-stage {
  position: relative; aspect-ratio: 1; max-width: 560px;
  margin-inline: auto; width: 100%;
}
.hero-stage canvas { width: 100%; height: 100%; }

.float-chip {
  position: absolute; display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.95rem; border-radius: 12px;
  background: var(--panel); border: 1px solid var(--border);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  font-size: 0.82rem; font-weight: 500; color: var(--text-strong);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  animation: chip-float 6s ease-in-out infinite;
  animation-delay: var(--fd, 0s);
  will-change: transform;
}
.float-chip .ok { color: var(--green); font-weight: 700; }
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--muted); font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-cue .wheel {
  width: 22px; height: 36px; border: 1.5px solid var(--muted);
  border-radius: 12px; position: relative;
}
.scroll-cue .wheel::after {
  content: ""; position: absolute; left: 50%; top: 7px;
  width: 3px; height: 7px; border-radius: 3px; background: var(--accent);
  transform: translateX(-50%);
  animation: wheel-roll 1.8s ease-in-out infinite;
}
@keyframes wheel-roll {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 12px); }
  100% { opacity: 0; transform: translate(-50%, 0); }
}

/* ── Bandeau défilant (marquee) ────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--border);
  padding: 1.1rem 0; overflow: hidden; position: relative;
  background: rgba(8, 12, 18, 0.5);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; gap: 3.4rem; width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display); font-size: 0.95rem;
  color: var(--muted); white-space: nowrap; letter-spacing: 0.04em;
}
.marquee-track span::before { content: "◆"; color: var(--accent); font-size: 0.55rem; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ── Pipeline (le concept) ─────────────────────────────────────── */
.pipeline {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; counter-reset: step;
}
.pipe-step {
  position: relative; padding: 2rem 1.7rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.45s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
}
.pipe-step:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(66, 214, 196, 0.12);
}
.pipe-step .num {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  color: var(--accent); letter-spacing: 0.16em;
}
.pipe-step h3 { font-size: 1.3rem; margin: 0.8rem 0 0.6rem; }
.pipe-step p { color: var(--muted); font-size: 0.96rem; }
.pipe-step::after {
  content: "→"; position: absolute; top: 50%; right: -1.25rem;
  transform: translateY(-50%); color: var(--accent);
  font-size: 1.3rem; z-index: 2;
}
.pipe-step:last-child::after { display: none; }

/* ── Démo terminal : commande → plan d'actions ─────────────────── */
.demo-shell {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(170deg, rgba(13, 19, 28, 0.9), rgba(8, 12, 18, 0.95));
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.demo-bar {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.8rem 1.2rem; border-bottom: 1px solid var(--border);
}
.demo-bar i {
  width: 10px; height: 10px; border-radius: 50%; background: var(--border);
}
.demo-bar i:nth-child(1) { background: #ff6159; }
.demo-bar i:nth-child(2) { background: #ffbd2e; }
.demo-bar i:nth-child(3) { background: #28c840; }
.demo-bar em {
  font-style: normal; margin-left: 0.8rem; font-size: 0.8rem; color: var(--muted);
  font-family: var(--font-display); letter-spacing: 0.08em;
}
.demo-body { padding: 1.6rem 1.4rem 2rem; min-height: 270px; }
.demo-line {
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-size: clamp(0.92rem, 1.6vw, 1.06rem); color: var(--text-strong);
  display: flex; gap: 0.7rem; align-items: baseline; flex-wrap: wrap;
}
.demo-line .mic { color: var(--accent); }
.demo-caret {
  display: inline-block; width: 9px; height: 1.15em;
  background: var(--accent); vertical-align: text-bottom;
  animation: caret-blink 0.9s steps(1) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }

.demo-plan { margin-top: 1.5rem; display: grid; gap: 0.6rem; }
.plan-step {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.7rem 1rem; border-radius: 10px;
  background: rgba(66, 214, 196, 0.05); border: 1px solid var(--border);
  font-size: 0.93rem;
  opacity: 0; transform: translateX(-18px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out),
              border-color 0.4s ease;
}
.plan-step.is-in { opacity: 1; transform: none; }
.plan-step.is-done { border-color: rgba(56, 245, 160, 0.35); }
.plan-step .tag {
  font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-2);
  background: rgba(91, 140, 255, 0.12); border-radius: 6px; padding: 0.2rem 0.5rem;
  white-space: nowrap;
}
.plan-step .state { margin-left: auto; font-size: 0.85rem; color: var(--muted); }
.plan-step.is-done .state { color: var(--green); }

/* ── Cartes fonctionnalités ────────────────────────────────────── */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem;
}
.feature-card {
  position: relative; padding: 2rem 1.7rem; overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.18s ease-out, border-color 0.4s ease;
  transform-style: preserve-3d; will-change: transform;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
              rgba(66, 214, 196, 0.1), transparent 60%);
  transition: opacity 0.4s ease; pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { border-color: var(--border-strong); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(66, 214, 196, 0.14), rgba(91, 140, 255, 0.12));
  border: 1px solid var(--border-strong);
  color: var(--accent);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.18rem; margin: 1.1rem 0 0.55rem; }
.feature-card p { color: var(--muted); font-size: 0.95rem; }

/* ── Section Omni Téléphone ────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.4rem, 6vw, 5rem); align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0.85rem; }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--text); }
.check-list .check {
  flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(56, 245, 160, 0.12); color: var(--green);
  border: 1px solid rgba(56, 245, 160, 0.35); font-size: 0.7rem; font-weight: 700;
}

.phone-mock {
  width: min(330px, 86%); margin-inline: auto;
  border-radius: 42px; padding: 0.8rem;
  background: linear-gradient(160deg, #161d28, #0a0f16);
  border: 1px solid var(--border);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  position: relative;
}
.phone-screen {
  border-radius: 32px; background: #05080d; overflow: hidden;
  padding: 2.2rem 1.1rem 1.6rem; min-height: 520px;
  display: flex; flex-direction: column; gap: 1rem; position: relative;
}
.phone-screen::before {
  content: ""; position: absolute; top: 0.7rem; left: 50%;
  transform: translateX(-50%);
  width: 86px; height: 22px; border-radius: 12px; background: #10151d;
}
.call-status { text-align: center; margin-top: 0.8rem; }
.call-status .who {
  font-family: var(--font-display); color: var(--text-strong); font-size: 1.05rem;
}
.call-status .live {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: var(--green); letter-spacing: 0.12em;
  text-transform: uppercase; margin-top: 0.3rem;
}
.call-status .live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.6s ease-out infinite;
}
.call-wave {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; height: 54px; margin: 0.4rem 0;
}
.call-wave i {
  width: 4px; border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  animation: wave-bar 1.15s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.09s);
  height: 14px;
}
@keyframes wave-bar {
  0%, 100% { height: 9px; opacity: 0.55; }
  50% { height: 46px; opacity: 1; }
}
.call-bubbles { display: grid; gap: 0.6rem; margin-top: auto; }
.bubble {
  max-width: 88%; padding: 0.6rem 0.85rem; border-radius: 14px;
  font-size: 0.82rem; line-height: 1.45;
  opacity: 0; animation: bubble-cycle 12s ease infinite;
  animation-delay: var(--bd, 0s);
}
.bubble.in {
  background: #121925; border: 1px solid var(--border);
  border-bottom-left-radius: 4px; justify-self: start;
}
.bubble.out {
  background: linear-gradient(130deg, rgba(66, 214, 196, 0.16), rgba(91, 140, 255, 0.14));
  border: 1px solid var(--border-strong);
  border-bottom-right-radius: 4px; justify-self: end;
  color: var(--text-strong);
}
@keyframes bubble-cycle {
  0%, 4% { opacity: 0; transform: translateY(12px) scale(0.96); }
  8%, 88% { opacity: 1; transform: none; }
  95%, 100% { opacity: 0; transform: translateY(-6px); }
}

/* ── Emplacements médias (vidéo / photos) ──────────────────────── */
.media-grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.3rem;
  align-items: start;
}
.media-video {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow), 0 0 40px rgba(66, 214, 196, 0.08);
  aspect-ratio: 16 / 9; background: #000;
}
.media-video video { width: 100%; height: 100%; display: block; object-fit: cover; }
.media-video.wide { max-width: 980px; margin-inline: auto; }
.media-video.hero-video { max-width: none; width: 100%; }
.media-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem; margin-top: 1.3rem;
}
.media-row .media-ph.photo { aspect-ratio: 16 / 9; }
.media-col { display: grid; gap: 1.3rem; align-content: start; }
.media-ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px dashed rgba(140, 165, 190, 0.35);
  background:
    radial-gradient(circle at 30% 20%, rgba(66, 214, 196, 0.07), transparent 50%),
    radial-gradient(circle at 75% 80%, rgba(91, 140, 255, 0.07), transparent 50%),
    var(--card);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.9rem; text-align: center; padding: 2rem;
  transition: border-color 0.4s ease, transform 0.45s var(--ease-out);
}
.media-ph:hover { border-color: var(--border-strong); transform: translateY(-5px); }
.media-ph.video { aspect-ratio: 16 / 9; }
.media-ph.photo { aspect-ratio: 4 / 3; }
.media-ph .play {
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(130deg, var(--accent), var(--accent-2));
  color: #03110e; font-size: 1.5rem;
  box-shadow: 0 14px 44px rgba(66, 214, 196, 0.4);
  animation: orb-breathe 3s ease-in-out infinite;
}
.media-ph .cam {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; color: var(--accent);
  background: rgba(66, 214, 196, 0.08); border: 1px solid var(--border-strong);
}
.media-ph strong { color: var(--text-strong); font-family: var(--font-display); }
.media-ph span { color: var(--muted); font-size: 0.85rem; max-width: 30ch; }

/* ── Stats / compteurs ─────────────────────────────────────────── */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(160deg, rgba(66, 214, 196, 0.06), rgba(91, 140, 255, 0.05));
  border: 1px solid var(--border); border-radius: calc(var(--radius) + 6px);
}
.stat { text-align: center; }
.stat .value {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.1rem); color: var(--text-strong);
}
.stat .value em { font-style: normal; color: var(--accent); }
.stat .label { color: var(--muted); font-size: 0.9rem; margin-top: 0.35rem; }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--card); overflow: hidden;
  transition: border-color 0.35s ease;
}
.faq-item.is-open { border-color: var(--border-strong); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; text-align: left; padding: 1.15rem 1.4rem;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 600;
  color: var(--text-strong);
}
.faq-q .plus {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border-strong); color: var(--accent);
  display: grid; place-items: center; font-size: 1rem;
  transition: transform 0.4s var(--ease-out), background 0.3s ease;
}
.faq-item.is-open .plus { transform: rotate(45deg); background: rgba(66, 214, 196, 0.12); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq-a p { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: 0.97rem; }

/* ── Formulaires ───────────────────────────────────────────────── */
.form-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px); padding: clamp(1.6rem, 3.5vw, 2.6rem);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block; font-size: 0.84rem; font-weight: 600;
  color: var(--text-strong); margin-bottom: 0.45rem; letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: 12px;
  background: var(--field); border: 1px solid var(--border);
  color: var(--text-strong); outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(66, 214, 196, 0.12);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-top: 1.4rem;
}
.form-note { font-size: 0.8rem; color: var(--muted); max-width: 30rem; }
.form-status {
  margin-top: 1rem; padding: 0.85rem 1.1rem; border-radius: 12px;
  font-size: 0.92rem; display: none;
}
.form-status.ok {
  display: block; background: rgba(56, 245, 160, 0.1);
  border: 1px solid rgba(56, 245, 160, 0.4); color: var(--green);
}
.form-status.err {
  display: block; background: rgba(255, 107, 122, 0.08);
  border: 1px solid rgba(255, 107, 122, 0.4); color: var(--danger);
}
.btn.is-loading { pointer-events: none; opacity: 0.7; }
.btn.is-loading::after {
  content: ""; width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid currentColor; border-top-color: transparent;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.contact-aside h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.contact-ways { display: grid; gap: 1.1rem; margin-top: 2rem; }
.contact-way {
  display: flex; gap: 1rem; padding: 1.1rem 1.2rem; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease;
}
.contact-way:hover { transform: translateX(6px); border-color: var(--border-strong); }
.contact-way .ico {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; color: var(--accent);
  background: rgba(66, 214, 196, 0.08); border: 1px solid var(--border-strong);
}
.contact-way strong { display: block; color: var(--text-strong); font-size: 0.95rem; }
.contact-way span { color: var(--muted); font-size: 0.85rem; }

/* ── Bande CTA ─────────────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 2rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at 50% 120%, rgba(66, 214, 196, 0.18), transparent 60%),
    radial-gradient(circle at 80% -20%, rgba(140, 107, 255, 0.14), transparent 55%),
    var(--card);
}
.cta-band h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); max-width: 22ch; margin-inline: auto; }
.cta-band p { color: var(--muted); margin-top: 0.9rem; }
.cta-band .btn { margin-top: 1.8rem; }

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(6, 9, 14, 0.9));
  padding: 3.5rem 0 2rem; margin-top: 4rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.4rem;
}
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 0.9rem; max-width: 30rem; }
.footer h4 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--muted); margin-bottom: 1rem; font-weight: 600;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer ul a { color: var(--text); font-size: 0.94rem; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 2.8rem; padding-top: 1.4rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--muted); font-size: 0.84rem;
}

/* ════════════════════════════════════════════════════════════════
   Page TARIFS
   ════════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 9.5rem 0 3rem; text-align: center; position: relative;
}
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin-top: 1.2rem; }
.page-hero .lead {
  color: var(--muted); max-width: 40rem; margin: 1.2rem auto 0;
  font-size: 1.1rem;
}

.product-tabs {
  display: inline-flex; gap: 0.4rem; padding: 0.4rem;
  border: 1px solid var(--border); border-radius: 999px;
  background: var(--card); margin-top: 2.4rem;
}
.product-tab {
  position: relative; border: 0; cursor: pointer; border-radius: 999px;
  padding: 0.65rem 1.5rem; background: transparent;
  color: var(--muted); font-weight: 600; font-size: 0.95rem;
  transition: color 0.3s ease, background 0.3s ease;
}
.product-tab.is-active {
  background: linear-gradient(120deg, rgba(66, 214, 196, 0.18), rgba(91, 140, 255, 0.16));
  color: var(--text-strong);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}
.product-tab .soon {
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--warm); display: block; line-height: 1;
}
.product-panel { display: none; }
.product-panel.is-active { display: block; }
.panel-soon {
  max-width: 620px; margin: 3rem auto 0; text-align: center;
  padding: 3.5rem 2rem; border: 1px dashed rgba(140, 165, 190, 0.35);
  border-radius: var(--radius); color: var(--muted); background: var(--card);
}
.panel-soon strong { color: var(--text-strong); font-family: var(--font-display); display: block; font-size: 1.2rem; margin-bottom: 0.6rem; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem; margin-top: 3rem; align-items: stretch;
}
.price-card {
  position: relative; display: flex; flex-direction: column;
  padding: 1.9rem 1.4rem; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
  transition: transform 0.45s var(--ease-out), border-color 0.4s ease,
              box-shadow 0.45s ease;
  text-align: left;
}
.price-card:hover {
  transform: translateY(-10px); border-color: var(--border-strong);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
}
.price-card .plan-name {
  font-family: var(--font-display); font-weight: 600;
  color: var(--text-strong); font-size: 1.06rem;
}
.price-card .plan-desc { color: var(--muted); font-size: 0.82rem; margin-top: 0.3rem; min-height: 2.4em; }
.price-card .price {
  margin-top: 1.2rem; font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 700; color: var(--text-strong);
}
.price-card .price small { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.price-card ul {
  list-style: none; padding: 0; margin: 1.3rem 0 1.6rem;
  display: grid; gap: 0.55rem; font-size: 0.87rem;
}
.price-card ul li { display: flex; gap: 0.55rem; align-items: flex-start; color: var(--text); }
.price-card ul li::before { content: "✓"; color: var(--accent); font-weight: 700; flex: none; }
.price-card ul li.off { color: var(--muted); opacity: 0.65; }
.price-card ul li.off::before { content: "—"; color: var(--muted); }
.price-card .btn { margin-top: auto; width: 100%; }

.price-card.featured {
  background:
    radial-gradient(circle at 50% -30%, rgba(66, 214, 196, 0.16), transparent 60%),
    linear-gradient(170deg, #0e1620, #0a1018);
  border-color: var(--border-strong);
  box-shadow: 0 20px 70px rgba(66, 214, 196, 0.13);
  transform: scale(1.045);
  z-index: 2;
}
.price-card.featured:hover { transform: scale(1.045) translateY(-10px); }
.ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 0.32rem 1rem; border-radius: 999px; white-space: nowrap;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #02110f; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 8px 26px rgba(66, 214, 196, 0.45);
}

.compare-wrap { overflow-x: auto; margin-top: 3rem; border-radius: var(--radius); border: 1px solid var(--border); }
.compare {
  width: 100%; border-collapse: collapse; min-width: 760px;
  background: var(--card); font-size: 0.92rem;
}
.compare th, .compare td {
  padding: 0.95rem 1.1rem; text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare thead th {
  font-family: var(--font-display); color: var(--text-strong);
  background: rgba(66, 214, 196, 0.05);
}
.compare tbody th { text-align: left; font-weight: 500; color: var(--muted); }
.compare td .yes { color: var(--accent); font-weight: 700; }
.compare td .no { color: var(--muted); opacity: 0.6; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare .col-featured { background: rgba(66, 214, 196, 0.06); }

/* ════════════════════════════════════════════════════════════════
   Page RECRUTEMENT
   ════════════════════════════════════════════════════════════════ */
.recruit-hero {
  min-height: 86svh; display: flex; align-items: center;
  padding: 8.5rem 0 4rem; position: relative; overflow: clip;
}
.recruit-hero .code-rain {
  position: absolute; inset: 0; opacity: 0.16; pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
}
.recruit-hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); margin-top: 1.3rem; max-width: 18ch; }

.perk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }

.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.role-card {
  padding: 1.8rem 1.6rem; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform 0.45s var(--ease-out), border-color 0.35s ease;
  display: flex; flex-direction: column;
}
.role-card:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.role-card .role-type {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--warm); font-weight: 600;
}
.role-card h3 { font-size: 1.22rem; margin: 0.7rem 0 0.5rem; }
.role-card p { color: var(--muted); font-size: 0.92rem; }
.role-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.1rem; }
.role-tags span {
  font-size: 0.74rem; padding: 0.28rem 0.7rem; border-radius: 999px;
  background: rgba(91, 140, 255, 0.1); border: 1px solid rgba(91, 140, 255, 0.3);
  color: #b9ccff; font-family: var(--font-display);
}

.timeline { position: relative; max-width: 720px; margin-inline: auto; padding-left: 2.4rem; }
.timeline::before {
  content: ""; position: absolute; left: 10px; top: 6px; bottom: 6px;
  width: 2px; border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
}
.tl-item { position: relative; padding: 0 0 2.2rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -2.4rem; top: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--accent);
  box-shadow: 0 0 14px rgba(66, 214, 196, 0.5);
}
.tl-item h3 { font-size: 1.12rem; }
.tl-item .when {
  font-size: 0.76rem; color: var(--accent); letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
}
.tl-item p { color: var(--muted); font-size: 0.95rem; margin-top: 0.4rem; }

.team-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }

/* ════════════════════════════════════════════════════════════════
   Pages LÉGALES
   ════════════════════════════════════════════════════════════════ */
.legal-wrap { max-width: 800px; margin-inline: auto; padding: 9rem 0 4rem; }
.back-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.9rem; color: var(--muted); margin-bottom: 2rem;
}
.back-link:hover { color: var(--accent); }
.legal-wrap h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); }
.legal-meta { color: var(--muted); font-size: 0.88rem; margin-top: 0.8rem; }
.legal-toc {
  margin: 2.4rem 0; padding: 1.5rem 1.8rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.legal-toc h4 { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; }
.legal-toc ol { margin: 0; padding-left: 1.2rem; columns: 2; gap: 2.5rem; font-size: 0.93rem; }
.legal-toc li { margin-bottom: 0.45rem; }
.legal-body h2 {
  font-size: 1.45rem; margin: 2.6rem 0 1rem;
  padding-top: 1.6rem; border-top: 1px solid var(--border);
}
.legal-body h3 { font-size: 1.1rem; margin: 1.6rem 0 0.7rem; }
.legal-body p { margin-bottom: 0.9rem; color: var(--text); font-size: 0.99rem; }
.legal-body ul { margin: 0 0 1rem; padding-left: 1.3rem; }
.legal-body li { margin-bottom: 0.45rem; font-size: 0.97rem; }
.legal-body table {
  width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: 0.92rem;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden;
}
.legal-body th, .legal-body td {
  padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border);
}
.legal-body th { color: var(--text-strong); background: rgba(66, 214, 196, 0.05); font-family: var(--font-display); font-weight: 600; }
.legal-body tr:last-child td { border-bottom: 0; }
.legal-body em { color: var(--warm); }

/* ── Toast ─────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 1.6rem; left: 50%; z-index: 150;
  transform: translate(-50%, 130%);
  padding: 0.9rem 1.4rem; border-radius: 14px;
  background: var(--panel); border: 1px solid var(--border-strong);
  backdrop-filter: blur(16px); color: var(--text-strong); font-size: 0.93rem;
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease-spring);
  max-width: min(92vw, 480px); text-align: center;
}
.toast.is-on { transform: translate(-50%, 0); }

/* ── Transitions entre pages (View Transitions API) ────────────── */
@view-transition { navigation: auto; }
::view-transition-old(root) {
  animation: vt-out 0.3s ease both;
}
::view-transition-new(root) {
  animation: vt-in 0.5s var(--ease-out) both;
}
@keyframes vt-out { to { opacity: 0; transform: translateY(-12px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(16px); } }

/* ── Halo lumineux qui suit le curseur ─────────────────────────── */
.cursor-aura {
  position: fixed; left: 0; top: 0; z-index: 85;
  width: 340px; height: 340px; border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(66, 214, 196, 0.16), rgba(91, 140, 255, 0.05) 45%, transparent 70%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 0.6s ease;
  will-change: transform;
}
body:hover .cursor-aura { opacity: 1; }

/* ── Séparateur « ondes vocales » entre sections ───────────────── */
.wave-divider {
  position: relative; height: 72px; overflow: hidden;
  opacity: 0.55; pointer-events: none;
}
.wave-divider svg {
  position: absolute; left: 0; top: 0;
  width: 200%; height: 100%;
}
.wave-divider .wd-a { animation: wave-slide 16s linear infinite; }
.wave-divider .wd-b { animation: wave-slide 26s linear infinite reverse; opacity: 0.6; }
@keyframes wave-slide { to { transform: translateX(-50%); } }

/* ── Reflet balayant les boutons primaires ─────────────────────── */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.btn-primary:hover::before { transform: translateX(120%); }

/* ── Témoignages ───────────────────────────────────────────────── */
.feedback-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem;
}
.feedback-card {
  position: relative; margin: 0; padding: 1.9rem 1.7rem 1.6rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease-out), border-color 0.35s ease;
}
.feedback-card:hover { transform: translateY(-7px); border-color: var(--border-strong); }
.feedback-card::before {
  content: "“"; position: absolute; top: 0.4rem; right: 1.2rem;
  font-family: var(--font-display); font-size: 4.6rem; line-height: 1;
  color: rgba(66, 214, 196, 0.18);
}
.feedback-card blockquote {
  margin: 0; color: var(--text); font-size: 0.97rem; font-style: italic;
}
.feedback-card figcaption {
  display: flex; align-items: center; gap: 0.8rem; margin-top: 1.4rem;
}
.feedback-card .avatar {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(140deg, rgba(66, 214, 196, 0.25), rgba(91, 140, 255, 0.25));
  border: 1px solid var(--border-strong);
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  color: var(--text-strong);
}
.feedback-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.feedback-card strong { display: block; color: var(--text-strong); font-size: 0.95rem; }
.feedback-card em { font-style: normal; color: var(--muted); font-size: 0.82rem; }
.feedback-empty {
  text-align: center; padding: 3rem 2rem; color: var(--muted);
  border: 1px dashed rgba(140, 165, 190, 0.35); border-radius: var(--radius);
  background: var(--card);
}
.feedback-empty .btn { margin-top: 1.3rem; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-10px); }
  .orb-rail { display: none; }
}

@media (max-width: 920px) {
  .hero-inner, .split, .media-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 7.5rem; }
  .hero-stage { max-width: 420px; }
  .pipeline { grid-template-columns: 1fr; }
  .pipe-step::after { content: "↓"; top: auto; bottom: -1.45rem; right: 50%; transform: translateX(50%); }
  .feature-grid, .perk-grid, .role-grid, .team-strip { grid-template-columns: repeat(2, 1fr); }
  .feedback-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .split.reverse .split-visual { order: -1; }
}

@media (max-width: 720px) {
  body { font-size: 1rem; }
  .media-row { grid-template-columns: 1fr; }
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; z-index: 105;
    flex-direction: column; justify-content: center; gap: 2rem;
    background: rgba(4, 6, 10, 0.96); backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
  }
  .nav-links.is-open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.35rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .feature-grid, .perk-grid, .role-grid, .team-strip { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .legal-toc ol { columns: 1; }
  .product-tabs { flex-direction: column; border-radius: var(--radius); width: 100%; }
  .product-tab { width: 100%; }
  .float-chip { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ── Accessibilité : mouvement réduit ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .split-word > span { opacity: 1 !important; transform: none !important; }
  .grain, .cursor-aura { display: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
}
