:root {
  --bg: #07091A;
  --bg-2: #0B1028;
  --line: rgba(140, 170, 240, 0.10);
  --line-strong: rgba(140, 170, 240, 0.20);
  --ink: #ECEFFF;
  --ink-2: #B6BEE5;
  --ink-3: #7A82B0;
  --ink-4: #545A85;
  --cyan: #44D6FF;
  --cyan-soft: #7FE3FF;
  --violet: #B084FF;
  --pink: #FF6FB5;
  --orange: #FF9A4D;
  --yellow: #FFD66B;
  --green: #5BE3A0;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(91, 140, 255, 0.20), transparent 60%),
    radial-gradient(900px 600px at 10% 5%, rgba(68, 214, 255, 0.10), transparent 60%),
    radial-gradient(1000px 800px at 50% 110%, rgba(176, 132, 255, 0.10), transparent 60%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}
::selection { background: rgba(68, 214, 255, 0.35); color: white; }
h1, h2, h3, h4 {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; color: var(--ink-2); line-height: 1.55; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(1180px, 92vw); margin: 0 auto; }

/* ---------- Nav ---------- */
nav.top {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 9, 26, 0.55);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Inter Tight"; font-weight: 800;
  letter-spacing: 0.04em; font-size: 14px;
}
.brand-mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #9FE7FF 0%, #44D6FF 35%, #2C7BFF 70%, #1438AB 100%);
  box-shadow: 0 0 0 3px rgba(68, 214, 255, 0.10), 0 0 18px rgba(68, 214, 255, 0.5);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 20px;
  border-radius: 12px;
  font-family: "Inter Tight"; font-weight: 700; font-size: 14px;
  letter-spacing: 0.005em;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  color: #04111F;
  background: linear-gradient(180deg, #7FE3FF 0%, #44D6FF 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 10px 30px rgba(68, 214, 255, 0.30);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.45) inset, 0 14px 36px rgba(68, 214, 255, 0.45); }
.btn-ghost {
  color: var(--ink); background: rgba(255,255,255,0.04);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-lg { height: 56px; padding: 0 26px; font-size: 16px; border-radius: 14px; }
.btn-soon {
  position: relative;
  overflow: visible;
}

/* Bulle BD */
.btn-soon::before {
  content: "Ça arrive très bientôt ! 🙌";
  position: absolute;
  bottom: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) scale(0.5) rotate(-2deg);
  transform-origin: bottom center;
  white-space: nowrap;
  background: #ffffff;
  color: #07091A;
  font-family: "Inter Tight";
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  padding: 10px 18px;
  border-radius: 16px 16px 16px 4px;
  border: 2.5px solid #07091A;
  box-shadow: 4px 4px 0 #07091A;
  opacity: 0;
  pointer-events: none;
  transition: opacity .12s ease, transform .42s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 200;
}

/* Queue de la bulle */
.btn-soon::after {
  content: "";
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-4px) rotate(45deg) scale(0);
  transform-origin: bottom right;
  width: 11px; height: 11px;
  background: #ffffff;
  border-right: 2.5px solid #07091A;
  border-bottom: 2.5px solid #07091A;
  opacity: 0;
  pointer-events: none;
  transition: opacity .12s ease, transform .38s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 199;
}

.btn-soon:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1) rotate(-2deg);
}
.btn-soon:hover::after {
  opacity: 1;
  transform: translateX(-4px) rotate(45deg) scale(1);
}

/* Bulle vers le bas pour le bouton du header */
nav .btn-soon::before {
  bottom: auto;
  top: calc(100% + 18px);
  transform-origin: top center;
  transform: translateX(-50%) scale(0.5) rotate(-2deg);
  border-radius: 4px 16px 16px 16px;
}
nav .btn-soon::after {
  bottom: auto;
  top: calc(100% + 10px);
  border-right: none;
  border-bottom: none;
  border-left: 2.5px solid #07091A;
  border-top: 2.5px solid #07091A;
  transform: translateX(-4px) rotate(45deg) scale(0);
}
nav .btn-soon:hover::before {
  transform: translateX(-50%) scale(1) rotate(-2deg);
}
nav .btn-soon:hover::after {
  transform: translateX(-4px) rotate(45deg) scale(1);
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
}

/* Spotlight beam on the H1 */
.spotlight-stage {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  width: 1800px;
  max-width: 100vw;
  height: 720px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.spotlight-stage.lit { opacity: 1; }

.spot-source {
  position: absolute;
  left: 50%; top: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #FFFFFF;
  transform: translate(-50%, -50%) scale(0);
  box-shadow:
    0 0 12px rgba(255,255,255,0.9),
    0 0 28px rgba(127,227,255,0.7),
    0 0 60px rgba(68,214,255,0.5);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.spotlight-stage.lit .spot-source { transform: translate(-50%, -50%) scale(1); }

.spot-cone {
  position: absolute;
  left: 50%; top: 0;
  width: 1800px; height: 720px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 55% 95% at 50% 0%,
      rgba(255, 252, 240, 0.50) 0%,
      rgba(200, 240, 255, 0.30) 18%,
      rgba(127, 227, 255, 0.18) 38%,
      rgba(68, 214, 255, 0.10) 60%,
      rgba(68, 214, 255, 0.03) 80%,
      transparent 100%);
  -webkit-mask: linear-gradient(180deg, black, transparent 95%);
          mask: linear-gradient(180deg, black, transparent 95%);
  clip-path: polygon(49% 0%, 51% 0%, 99% 100%, 1% 100%);
  filter: blur(2px);
  opacity: 0;
  animation: spotFlicker 6s ease-in-out infinite;
  transition: opacity 1.4s ease .2s;
}
.spotlight-stage.lit .spot-cone { opacity: 1; }

.spot-pool {
  position: absolute;
  left: 50%; bottom: 30px;
  width: 1400px; height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 50% at 50% 50%,
    rgba(127, 227, 255, 0.28) 0%,
    rgba(68, 214, 255, 0.14) 35%,
    transparent 70%);
  filter: blur(8px);
  opacity: 0;
  transition: opacity 1.6s ease .4s;
}
.spotlight-stage.lit .spot-pool { opacity: 1; }

@keyframes spotFlicker {
  0%, 100% { filter: blur(2px) brightness(1); }
  45% { filter: blur(2px) brightness(1.06); }
  50% { filter: blur(2px) brightness(0.94); }
  55% { filter: blur(2px) brightness(1.04); }
}

.dust-canvas {
  position: absolute;
  left: 50%; top: 0;
  width: 1800px; height: 720px;
  transform: translateX(-50%);
  clip-path: polygon(48% 0%, 52% 0%, 100% 100%, 0% 100%);
  opacity: 0;
  transition: opacity 1.8s ease .6s;
  mix-blend-mode: screen;
}
.spotlight-stage.lit .dust-canvas { opacity: 1; }

.hero .wrap { position: relative; z-index: 1; }

.hero h1 {
  transition: filter 1.4s ease .4s, text-shadow 1.4s ease .4s;
}
.spotlight-stage.lit ~ .wrap h1 {
  text-shadow:
    0 0 24px rgba(127, 227, 255, 0.35),
    0 0 60px rgba(68, 214, 255, 0.18);
}

@media (max-width: 720px) {
  .spotlight-stage, .spot-cone, .dust-canvas { width: 100vw; }
  .spot-pool { width: 90vw; }
}

@media (prefers-reduced-motion: reduce) {
  .spot-cone { animation: none; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.025);
  font-size: 12px; color: var(--ink-2);
  font-family: "JetBrains Mono"; letter-spacing: 0.04em;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
}
.hero h1 {
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.94;
  margin-top: 28px;
  background: linear-gradient(180deg, #FFFFFF 0%, #B6C0F0 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .accent {
  background: linear-gradient(180deg, #7FE3FF 0%, #44D6FF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lede {
  margin: 28px auto 0;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-2);
  max-width: 620px;
}
.hero-actions {
  display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; justify-content: center;
}
.hero-meta {
  margin-top: 22px;
  color: var(--ink-3); font-size: 13px;
  font-family: "JetBrains Mono"; letter-spacing: 0.04em;
}

/* Hero stage */
.hero-stage {
  margin: 72px auto 0;
  width: min(1100px, 96vw);
  aspect-ratio: 16/9;
  border-radius: 22px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 12px, rgba(255,255,255,0) 12px 24px),
    linear-gradient(180deg, #0E1535 0%, #060A1E 100%);
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.02) inset, 0 0 80px rgba(68, 214, 255, 0.10);
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.hero-stage::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 50%, rgba(68,214,255,0.10), transparent 60%);
  pointer-events: none;
}
.placeholder-label {
  font-family: "JetBrains Mono"; font-size: 13px;
  letter-spacing: 0.10em; color: var(--ink-3);
  text-align: center; line-height: 1.7;
  position: relative;
}
.placeholder-label small {
  display: block; font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-4); margin-top: 4px;
}
.hero-stage-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: "JetBrains Mono"; font-size: 10px;
  color: var(--ink-4); letter-spacing: 0.10em;
  background: rgba(7,9,26,0.6);
  border: 1px solid var(--line);
  padding: 4px 8px; border-radius: 5px;
}

/* Hero badges row */
.hero-badges {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.eyebrow-vs {
  background: rgba(176, 132, 255, 0.08);
  border-color: rgba(176, 132, 255, 0.30);
  color: var(--violet);
}

/* ---------- ZoomIt comparison ---------- */
.sec-compare { padding: 0 0 80px; }
.compare-banner {
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(176,132,255,0.06), rgba(68,214,255,0.04));
  border: 1px solid var(--line-strong);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .compare-banner { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; }
}
.compare-intro .sec-eyebrow { display: block; margin-bottom: 10px; }
.compare-intro p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }

.compare-rows { display: flex; flex-direction: column; gap: 0; }
.compare-row {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.cr-bad {
  font-size: 14px; color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-color: rgba(122, 130, 176, 0.4);
}
.cr-arrow {
  text-align: center;
  color: var(--cyan);
  font-size: 16px;
  font-weight: 700;
}
.cr-good {
  font-size: 14px; color: var(--ink);
  font-weight: 500;
}

/* ---------- Section base ---------- */
section { position: relative; }
.sec { padding: 100px 0; }
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-eyebrow {
  font-family: "JetBrains Mono"; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan);
  display: inline-block; margin-bottom: 18px;
}
.sec h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  max-width: 820px; margin: 0 auto;
  background: linear-gradient(180deg, #FFFFFF 0%, #C7D0FF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-sub {
  margin: 20px auto 0; font-size: 18px;
  color: var(--ink-2); max-width: 620px;
}

/* ---------- Showcase / effects ---------- */
.showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.feat {
  grid-column: span 6;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease;
}
.feat:hover { border-color: var(--line-strong); }
.feat.span-12 { grid-column: span 12; }
.feat.span-4 { grid-column: span 4; }
@media (max-width: 900px) {
  .feat, .feat.span-12, .feat.span-4 { grid-column: span 12; }
}
.feat-media {
  aspect-ratio: 16/10;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 10px, rgba(255,255,255,0) 10px 20px),
    linear-gradient(180deg, #0A1130 0%, #050817 100%);
  border-bottom: 1px solid var(--line);
  display: grid; place-items: center;
  position: relative;
}
.feat-media::after {
  content: "GIF";
  position: absolute; top: 14px; right: 14px;
  font-family: "JetBrains Mono"; font-size: 10px;
  color: var(--ink-4); letter-spacing: 0.14em;
  background: rgba(7,9,26,0.6);
  border: 1px solid var(--line);
  padding: 3px 8px; border-radius: 4px;
}
.feat-body { padding: 28px 30px 32px; }
.feat-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "JetBrains Mono"; font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.feat-tag .swatch { width: 8px; height: 8px; border-radius: 50%; }
.feat-tag .pro {
  color: var(--violet);
  background: rgba(176,132,255,0.10);
  border: 1px solid rgba(176,132,255,0.40);
  padding: 2px 6px; border-radius: 4px;
  font-size: 9px; margin-left: auto;
}
.feat h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.1;
}
.feat p {
  margin-top: 10px; font-size: 15px;
}

/* ---------- Ways to activate ---------- */
.ways-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.way-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 16px;
  overflow: hidden;
  position: relative;
}
.way-num {
  font-family: "JetBrains Mono"; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan);
}
.way-card h3 {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em;
}
.way-card p { font-size: 14.5px; color: var(--ink-2); }
.way-stage {
  margin-top: auto;
  height: 220px;
  border-radius: 14px;
  background:
    radial-gradient(420px 260px at 50% 50%, rgba(68,214,255,0.08), transparent 70%),
    linear-gradient(180deg, #0A0F2A, #070A1F);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* --- Way 1: Ring action --- */
.ring-demo {
  position: relative;
  width: 180px; height: 180px;
}
.ring-demo .ring-center {
  position: absolute; left: 50%; top: 50%;
  width: 14px; height: 14px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.ring-demo .ring-item {
  position: absolute; left: 50%; top: 50%;
  width: 38px; height: 38px;
  margin: -19px 0 0 -19px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ring-demo .ring-item.active {
  background: rgba(68,214,255,0.18);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 16px rgba(68,214,255,0.5);
}
.ring-demo .ring-item svg { width: 18px; height: 18px; }

/* --- Way 2: Toolbox --- */
.toolbox-demo {
  width: 220px;
  background: linear-gradient(180deg, #0F1538, #0A0F2A);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  animation: toolboxBob 4s ease-in-out infinite;
}
@keyframes toolboxBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.toolbox-demo .tb-header {
  display: flex; align-items: center; gap: 8px;
  font-family: "JetBrains Mono"; font-size: 10px;
  letter-spacing: 0.12em; color: var(--ink-3); text-transform: uppercase;
  margin-bottom: 12px;
}
.toolbox-demo .tb-header::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
}
.toolbox-demo .tb-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.toolbox-demo .tb-cell {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  transition: all 0.3s;
}
.toolbox-demo .tb-cell.active {
  background: rgba(68,214,255,0.18);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: inset 0 0 10px rgba(68,214,255,0.25);
}
.toolbox-demo .tb-cell svg { width: 16px; height: 16px; }

/* --- Way 3: Keyboard --- */
.keys-demo {
  display: flex; gap: 8px;
  align-items: center;
}
.key {
  min-width: 44px; height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #1A2147, #0E1430);
  border: 1px solid var(--line-strong);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 3px 0 rgba(0,0,0,0.6),
    0 4px 6px rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: "JetBrains Mono"; font-size: 12px; font-weight: 600;
  color: var(--ink-2);
  transition: transform 0.08s, box-shadow 0.08s, color 0.2s, background 0.2s;
}
.key.pressed {
  transform: translateY(3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 rgba(0,0,0,0.6),
    0 1px 2px rgba(0,0,0,0.5),
    0 0 16px rgba(68,214,255,0.5);
  background: linear-gradient(180deg, #1F4870, #0E2A45);
  color: var(--cyan);
  border-color: var(--cyan);
}
.key-plus { color: var(--ink-3); font-family: "JetBrains Mono"; font-size: 14px; }

@media (max-width: 880px) {
  .ways-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .toolbox-demo { animation: none; }
}

/* ---------- Pricing ---------- */
.price-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto;
}
@media (max-width: 800px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  border: 1px solid var(--line);
  padding: 36px;
  display: flex; flex-direction: column;
}
.price-card.pro {
  background: linear-gradient(180deg, rgba(176,132,255,0.10), rgba(176,132,255,0.02));
  border-color: rgba(176,132,255,0.45);
  box-shadow: 0 0 60px rgba(176,132,255,0.10);
}
.price-card .plan-label {
  font-family: "JetBrains Mono"; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 8px;
}
.price-card.pro .plan-label { color: var(--violet); }
.price-card .price-num {
  font-family: "Inter Tight"; font-weight: 800;
  font-size: 56px; letter-spacing: -0.03em;
  line-height: 1;
}
.price-card .price-num small {
  font-size: 16px; color: var(--ink-3); font-weight: 500; margin-left: 4px;
}
.price-card .price-tag { margin-top: 8px; color: var(--ink-3); font-size: 14px; }
.price-list {
  margin: 28px 0 32px;
  display: flex; flex-direction: column; gap: 10px;
  list-style: none; padding: 0;
}
.price-list li {
  display: flex; align-items: start; gap: 10px;
  font-size: 15px; color: var(--ink-2);
}
.price-list li svg { flex-shrink: 0; margin-top: 4px; }
.price-list li.head {
  font-family: "JetBrains Mono"; font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.12em; text-transform: uppercase;
  padding-top: 6px;
}
.price-card .price-cta { margin-top: auto; }

/* ---------- Final CTA ---------- */
.cta-final {
  padding: 120px 0 140px;
  text-align: center;
  position: relative;
}
.cta-final::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68,214,255,0.14), transparent 60%);
  pointer-events: none;
}
.cta-final h2 {
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.98;
  background: linear-gradient(180deg, #FFFFFF 0%, #C7D0FF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.cta-final p { margin: 22px auto 0; font-size: 18px; max-width: 560px; position: relative; }
.cta-final .actions {
  margin-top: 40px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 56px;
}
.foot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  color: var(--ink-3); font-size: 13px;
}
.foot-links { display: flex; gap: 22px; }
.foot-links a:hover { color: var(--ink); }
.ver { font-family: "JetBrains Mono"; font-size: 11px; color: var(--ink-4); }

/* Cursor halo */
.cursor-halo {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(68,214,255,0.18) 0%, rgba(68,214,255,0.06) 30%, transparent 65%);
  transform: translate(-50%,-50%);
  z-index: 1;
  mix-blend-mode: screen;
  transition: opacity .4s ease, width .3s ease, height .3s ease;
  opacity: 0;
  will-change: left, top;
}
body.has-halo .cursor-halo { opacity: 1; }
body.halo-pulse .cursor-halo {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(176,132,255,0.22) 0%, rgba(68,214,255,0.10) 30%, transparent 65%);
}

/* Section reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.10s; }
.reveal.delay-2 { transition-delay: 0.20s; }
.reveal.delay-3 { transition-delay: 0.30s; }

/* Spotlight reveal */
.spotlight {
  -webkit-mask: radial-gradient(circle 0px at 50% 35%, black 100%, transparent 100%);
          mask: radial-gradient(circle 0px at 50% 35%, black 100%, transparent 100%);
  transition: -webkit-mask 1.4s cubic-bezier(.2,.7,.2,1), mask 1.4s cubic-bezier(.2,.7,.2,1);
}
.spotlight.in {
  -webkit-mask: radial-gradient(circle 1800px at 50% 35%, black 100%, transparent 100%);
          mask: radial-gradient(circle 1800px at 50% 35%, black 100%, transparent 100%);
}

/* Hero stage cursor demo */
.stage-demo-cursor {
  position: absolute;
  left: 50%; top: 55%;
  pointer-events: none;
  transition: left 1.6s cubic-bezier(.45,.05,.25,1), top 1.6s cubic-bezier(.45,.05,.25,1);
  z-index: 4;
}
.stage-demo-cursor .ring {
  position: absolute; left: 0; top: 0;
  width: 200px; height: 200px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68,214,255,0.45) 0%, rgba(68,214,255,0.15) 35%, rgba(68,214,255,0) 70%);
  animation: heroPulse 2.6s ease-in-out infinite;
  filter: blur(2px);
}
@keyframes heroPulse {
  0%, 100% { opacity: 0.85; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
}
.stage-demo-cursor .arrow {
  position: absolute; left: 0; top: 0;
  transform: translate(-30%, -30%);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

/* Pulsing dot in eyebrows */
.sec-eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  margin-right: 10px;
  box-shadow: 0 0 0 0 rgba(68,214,255,0.7);
  vertical-align: middle;
  animation: dotPulse 2.2s ease-out infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(68,214,255,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(68,214,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(68,214,255,0); }
}

/* Card spotlight on hover */
.why-card, .feat { position: relative; }
.why-card::before, .feat::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(68,214,255,0.10), transparent 60%);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.why-card:hover::before, .feat:hover::before { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .spotlight { transition: none; opacity: 1; transform: none; -webkit-mask: none; mask: none; }
  .cursor-halo { display: none; }
  .stage-demo-cursor .ring, .sec-eyebrow::before { animation: none; }
}

/* ---------- Click burst ---------- */
.click-flash {
  position: fixed;
  width: 16px; height: 16px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #fff 0%, rgba(68, 214, 255, 0.7) 45%, transparent 70%);
  animation: clickFlash .35s ease-out forwards;
}
@keyframes clickFlash {
  from { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  to   { transform: translate(-50%, -50%) scale(5); opacity: 0; }
}

.click-ring {
  position: fixed;
  width: 0; height: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(68, 214, 255, 0.9);
  box-shadow: 0 0 12px rgba(68, 214, 255, 0.35), inset 0 0 8px rgba(68, 214, 255, 0.15);
  animation: clickRing .6s cubic-bezier(.2, .6, .2, 1) forwards;
}
.click-ring.r2 {
  animation-delay: 90ms;
  border-color: rgba(176, 132, 255, 0.7);
  box-shadow: 0 0 12px rgba(176, 132, 255, 0.3);
}
@keyframes clickRing {
  from { width: 0; height: 0; opacity: 1; }
  to   { width: 150px; height: 150px; opacity: 0; }
}

.click-spark {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  animation: clickSpark .5s ease-out forwards;
}
@keyframes clickSpark {
  from { transform: translate(-50%, -50%) translate(0, 0) scale(1); opacity: 1; }
  to   { transform: translate(-50%, -50%) translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

/* ---------- Curseurs emoji par section ---------- */
.hero        { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ctext y='28' font-size='28'%3E✨%3C/text%3E%3C/svg%3E") 0 0, auto; }
#effets      { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ctext y='28' font-size='28'%3E🎬%3C/text%3E%3C/svg%3E") 0 0, auto; }
#activation  { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ctext y='28' font-size='28'%3E⌨️%3C/text%3E%3C/svg%3E") 0 0, auto; }
#tarifs      { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ctext y='28' font-size='28'%3E💎%3C/text%3E%3C/svg%3E") 0 0, auto; }
#download    { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ctext y='28' font-size='28'%3E🚀%3C/text%3E%3C/svg%3E") 0 0, auto; }
.btn-soon    { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ctext y='28' font-size='28'%3E❤️%3C/text%3E%3C/svg%3E") 14 14, not-allowed; }
