/* ═══════════════════════════════════════════════════════════════════
   Accompagnement Mathys — UI System
   Dark • glass • cyan accent • tactile
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* palette */
  --bg-0: #06070b;
  --bg-1: #0b0c12;
  --bg-2: #11131c;
  --bg-card: rgba(19, 21, 30, 0.72);
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);

  --text: #ffffff;
  --text-soft: #c7c9d4;
  --text-muted: #7e8298;
  --text-dim: #565a6e;

  --cyan: #22d3ee;
  --cyan-bright: #67e8f9;
  --cyan-deep: #0891b2;
  --violet: #8b5cf6;
  --rose: #fb7185;

  --discord: #5865f2;
  --discord-hover: #6974ff;
  --youtube: #ef1c3a;
  --youtube-hover: #ff3551;
  --whatsapp: #25d366;

  /* shadows */
  --shadow-card: 0 30px 80px -20px rgba(0, 0, 0, 0.65),
                 0 10px 30px -15px rgba(34, 211, 238, 0.15);
  --shadow-btn: 0 8px 24px -6px rgba(34, 211, 238, 0.45);
  --shadow-btn-hover: 0 14px 40px -10px rgba(34, 211, 238, 0.75);

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.6, 0, 0.4, 1);

  /* radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* type scale */
  --fz-h1: clamp(28px, 4vw, 38px);
  --fz-h2: clamp(22px, 2.6vw, 28px);
  --fz-body: 15px;
  --fz-sm: 13.5px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg-0);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11", "tnum";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(16px, 4vw, 48px);
  position: relative;
  overflow-x: hidden;
}

::selection { background: var(--cyan); color: #000; }

/* ─── AMBIENT BACKGROUND ─────────────────────────────────────────── */
.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: float 22s var(--ease) infinite alternate;
  will-change: transform;
}

.orb--cyan {
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.6) 0%, transparent 70%);
}

.orb--violet {
  bottom: -25%;
  right: -10%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.55) 0%, transparent 70%);
  animation-delay: -7s;
  animation-duration: 28s;
}

@keyframes float {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(3vw, -4vh, 0) scale(1.05); }
  100% { transform: translate3d(-4vw, 2vh, 0) scale(0.95); }
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.5;
}

.noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.4'/></svg>");
  opacity: 0.035;
  mix-blend-mode: overlay;
}

/* ─── SHELL ───────────────────────────────────────────────────────── */
.shell {
  width: 100%;
  max-width: 560px;
  display: grid;
  place-items: center;
  position: relative;
}

/* Larger shell for success view */
.shell:has(.view--success.is-active) { max-width: 980px; }

/* ─── VIEWS ──────────────────────────────────────────────────────── */
.view {
  display: none;
  width: 100%;
}
.view.is-active {
  display: block;
  animation: viewIn 0.45s var(--ease) both;
}

@keyframes viewIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    filter: blur(0);   }
}

/* ─── CARD ───────────────────────────────────────────────────────── */
.card {
  position: relative;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  isolation: isolate;
}

/* subtle inner border gradient */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(34, 211, 238, 0.45), rgba(139, 92, 246, 0.2) 40%, rgba(255, 255, 255, 0.02) 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.card--hero {
  padding: clamp(32px, 5vw, 52px) clamp(24px, 4vw, 44px) clamp(28px, 4vw, 36px);
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.28), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.card-body { padding: clamp(24px, 4vw, 38px); padding-top: clamp(32px, 4vw, 40px); }

/* Rocket (custom SVG) */
.rocket {
  display: inline-block;
  position: relative;
  width: 120px;
  height: 140px;
  margin-bottom: 14px;
  filter: drop-shadow(0 16px 30px rgba(34, 211, 238, 0.35));
}
.rocket-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: rocketFloat 4.5s var(--ease) infinite;
  transform-origin: 50% 50%;
}

@keyframes rocketFloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%     { transform: translateY(-10px) rotate(3deg); }
}

/* flames — flicker & stretch */
.rocket-svg .r-flame { transform-origin: 60px 88px; }
.rocket-svg .r-flame-outer {
  transform-origin: 60px 88px;
  animation: flameOuter 0.18s steps(2, end) infinite;
}
.rocket-svg .r-flame-inner {
  transform-origin: 60px 88px;
  animation: flameInner 0.14s steps(2, end) infinite;
  animation-delay: -0.07s;
}

@keyframes flameOuter {
  0%   { transform: scaleY(1)    scaleX(1); }
  50%  { transform: scaleY(1.12) scaleX(0.92); }
  100% { transform: scaleY(0.95) scaleX(1.05); }
}
@keyframes flameInner {
  0%,100% { transform: scaleY(1)    scaleX(1); opacity: 0.85; }
  50%     { transform: scaleY(1.18) scaleX(0.88); opacity: 1; }
}

/* sparkles — twinkle */
.rocket-svg .r-sparks circle {
  animation: twinkle 2.2s ease-in-out infinite;
  transform-origin: center;
}
.rocket-svg .r-sparks circle:nth-child(1) { animation-delay: -0.0s; }
.rocket-svg .r-sparks circle:nth-child(2) { animation-delay: -0.4s; }
.rocket-svg .r-sparks circle:nth-child(3) { animation-delay: -0.9s; }
.rocket-svg .r-sparks circle:nth-child(4) { animation-delay: -1.4s; }
.rocket-svg .r-sparks circle:nth-child(5) { animation-delay: -1.8s; }

@keyframes twinkle {
  0%,100% { opacity: 0.2; transform: scale(0.6); }
  50%     { opacity: 1;   transform: scale(1.2); }
}

.title {
  margin: 0 0 10px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: var(--fz-h1);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand {
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan) 40%, #3b82f6);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.subtitle {
  margin: 0 0 28px;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: var(--fz-body);
}
.subtitle b { color: var(--text); font-weight: 600; }
.muted { color: var(--text-muted); font-size: var(--fz-sm); font-weight: 500; }

/* Trust row */
.trust {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 500;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 7px; }
.trust-divider { width: 3px; height: 3px; border-radius: 99px; background: var(--text-dim); }
.dot {
  width: 6px; height: 6px; border-radius: 99px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

/* ─── PROGRESS BAR ───────────────────────────────────────────────── */
.progress {
  height: 3px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: var(--p, 25%);
  background: linear-gradient(90deg, var(--cyan), var(--cyan-bright));
  box-shadow: 0 0 20px var(--cyan);
  border-radius: 99px;
  transition: width 0.6s var(--ease);
}

/* ─── QUESTION ───────────────────────────────────────────────────── */
.q-title {
  margin: 0 0 8px;
  font-size: var(--fz-h2);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-family: "Space Grotesk", "Inter", sans-serif;
}
.q-sub {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: var(--fz-body);
  line-height: 1.55;
}

/* ─── CHOICES ────────────────────────────────────────────────────── */
.choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.choice {
  position: relative;
  appearance: none;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 18px 22px;
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: center;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  overflow: hidden;
}
.choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(34, 211, 238, 0.08) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.choice:hover {
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -12px rgba(34, 211, 238, 0.4);
}
.choice:hover::before { transform: translateX(100%); }
.choice:active { transform: translateY(0) scale(0.99); }

.choice--highlight {
  background: linear-gradient(135deg, var(--cyan), #0ea5e9);
  border-color: rgba(255, 255, 255, 0.2);
  color: #001824;
  box-shadow: 0 10px 30px -8px rgba(34, 211, 238, 0.55);
}
.choice--highlight:hover {
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
  box-shadow: 0 14px 40px -8px rgba(34, 211, 238, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
}
.choice .tag { margin-left: 4px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }

/* ─── FIELD ──────────────────────────────────────────────────────── */
.field {
  display: block;
  position: relative;
  margin-bottom: 26px;
}
.field input {
  width: 100%;
  appearance: none;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  padding: 18px 22px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  outline: none;
  letter-spacing: 0.01em;
}
.field input::placeholder { color: var(--text-dim); }
.field input:focus {
  border-color: var(--cyan);
  background: rgba(34, 211, 238, 0.04);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}
.field input.is-error {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.15);
  animation: shake 0.35s var(--ease-in);
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* ─── ACTIONS ────────────────────────────────────────────────────── */
.actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 4px;
}
.actions--split { justify-content: space-between; }

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  --pad-y: 13px;
  --pad-x: 22px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  appearance: none;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  color: var(--text-soft);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); color: var(--text); }

.btn--primary {
  background: linear-gradient(135deg, var(--cyan), #0ea5e9);
  color: #002933;
  box-shadow: var(--shadow-btn);
  padding: 15px 26px;
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-1px);
}
.btn--primary svg { margin-left: 2px; }

.btn--lg {
  --pad-y: 18px;
  --pad-x: 32px;
  font-size: 16px;
  min-width: 300px;
  letter-spacing: 0.005em;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 13.5px;
}

.btn--discord {
  background: linear-gradient(135deg, var(--discord), #7983ff);
  color: #fff;
  box-shadow: 0 10px 28px -10px rgba(88, 101, 242, 0.6);
  padding: 14px 24px;
}
.btn--discord:hover {
  background: linear-gradient(135deg, var(--discord-hover), #8891ff);
  box-shadow: 0 14px 38px -10px rgba(88, 101, 242, 0.8);
  transform: translateY(-1px);
}

.btn--youtube {
  background: linear-gradient(135deg, var(--youtube), #ff3551);
  color: #fff;
  box-shadow: 0 10px 28px -10px rgba(239, 28, 58, 0.6);
  padding: 14px 24px;
}
.btn--youtube:hover {
  background: linear-gradient(135deg, var(--youtube-hover), #ff4f68);
  box-shadow: 0 14px 38px -10px rgba(239, 28, 58, 0.8);
  transform: translateY(-1px);
}

.btn.is-loading { pointer-events: none; opacity: 0.7; }
.btn.is-loading::after {
  content: "";
  width: 14px; height: 14px;
  border-radius: 99px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.check { filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25)); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── SUCCESS VIEW ───────────────────────────────────────────────── */
.view--success { display: none; }
.view--success.is-active { display: grid; gap: 22px; }

.success-ribbon {
  position: relative;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(16, 185, 129, 0.08));
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--r-lg);
  text-align: center;
  overflow: hidden;
}
.success-ribbon::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(34, 211, 238, 0.25) 50%, transparent 70%);
  animation: sweep 4s linear infinite;
  pointer-events: none;
}
@keyframes sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.fire {
  display: inline-block;
  font-size: 28px;
  margin-bottom: 4px;
  filter: drop-shadow(0 4px 12px rgba(251, 146, 60, 0.6));
  animation: fireBob 2.2s var(--ease) infinite;
}
@keyframes fireBob {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-4px) scale(1.08); }
}

.success-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 4px 0 0;
  font-weight: 700;
}
.name-grad {
  background: linear-gradient(135deg, #fef08a, #facc15 40%, #f97316);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Video hero */
.video-hero {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #000;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8);
  position: relative;
}
.video-hero-inner {
  position: relative;
  padding-top: 56.25%;
}
.video-hero iframe,
.video-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: contain;
}

/* Pitch */
.pitch {
  text-align: center;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
}
.pitch h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pitch p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.pitch p b { color: var(--text); font-weight: 700; }

/* ─── PROOFS SECTION ─────────────────────────────────────────────── */
.proofs-head {
  text-align: center;
  padding: 4px 16px 0;
}
.proofs-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 999px;
  margin-bottom: 10px;
}
.proofs-title {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  background: linear-gradient(135deg, #ffffff 30%, #94a3b8);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.proofs-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.proofs {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.proof {
  position: relative;
  margin: 0;
  background: linear-gradient(180deg, rgba(19, 21, 30, 0.9), rgba(11, 12, 18, 0.95));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.8);
}
.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(34, 211, 238, 0.35), rgba(139, 92, 246, 0.12) 50%, transparent 80%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.35s var(--ease);
}
.proof:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 30px 60px -25px rgba(34, 211, 238, 0.25), 0 20px 50px -25px rgba(0, 0, 0, 0.9);
}
.proof:hover::before { opacity: 1; }

/* media area */
.proof-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #0a0b12;
  background-image:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent 60%),
    repeating-linear-gradient(45deg, transparent 0 10px, rgba(255,255,255,0.02) 10px 11px);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.proof:hover .proof-media img { transform: scale(1.03); }

/* empty state (when image fails to load) */
.proof--empty .proof-media img { display: none; }
.proof--empty .proof-media::after {
  content: "📸 Screenshot à déposer";
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

/* verified badge */
.proof-verified {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00ff9c;
  background: rgba(0, 40, 25, 0.7);
  border: 1px solid rgba(0, 255, 156, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* metric pill (bottom-right of image) */
.proof-metric {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 8px 14px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.95), rgba(8, 145, 178, 0.95));
  color: #002933;
  box-shadow: 0 10px 24px -6px rgba(34, 211, 238, 0.55);
  backdrop-filter: blur(8px);
}
.proof-metric-value {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.proof-metric-label {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
  margin-top: 2px;
}

/* caption */
.proof-caption {
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.proof-caption b { color: var(--text); font-weight: 700; margin-right: 2px; }
.proof-period { margin-left: auto; color: var(--text-dim); font-size: 12.5px; }

/* ─── WHATSAPP CTA BAR ──────────────────────────────────────────── */
.wa-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(20, 184, 166, 0.08));
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
}
.wa-cta > div { flex: 1; min-width: 0; }
.wa-cta h4 {
  margin: 0 0 2px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.wa-cta p { margin: 0; font-size: 13px; color: var(--text-muted); }

.btn--wa {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.55) !important;
  flex-shrink: 0;
}
.btn--wa:hover {
  background: linear-gradient(135deg, #2aed75, #159b8a) !important;
  box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.75) !important;
}
.pulse {
  display: inline-flex;
  width: 10px; height: 10px;
  border-radius: 99px;
  background: var(--whatsapp);
  position: relative;
  box-shadow: 0 0 12px var(--whatsapp);
}
.pulse span {
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background: var(--whatsapp);
  animation: pulse 1.8s var(--ease) infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(3);   opacity: 0;   }
}

/* ─── TOAST ──────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: rgba(15, 18, 28, 0.95);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 13px 20px;
  font-size: 14px;
  color: var(--text);
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  z-index: 100;
  max-width: calc(100% - 32px);
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.is-error { border-color: rgba(251, 113, 133, 0.35); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 560px) {
  body { padding: 16px 14px 24px; }
  .btn--lg { min-width: 260px; width: 100%; }
  .actions--split { flex-direction: column-reverse; gap: 10px; align-items: stretch; }
  .actions--split .btn { width: 100%; justify-content: center; }
  .proofs { grid-template-columns: 1fr; }
  .wa-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .wa-cta .btn { width: 100%; }
  .footer { flex-direction: column; align-items: stretch; }
  .footer .btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   BENTO PROOFS — v2 : horizontal stats bar + 12-col bento grid
═══════════════════════════════════════════════════════════ */

/* Stats bar — horizontal strip with vertical dividers (pas de 3 cards) */
.proofs-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 56px);
  max-width: 880px;
  margin: -6px auto 40px;
  padding: 22px 24px;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(600px 120px at 50% 0%, rgba(34, 211, 238, 0.08), transparent 70%);
}
.pstat { text-align: center; min-width: 0; }
.pstat-value {
  display: block;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #f1fafc;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "ss01" 1;
}
.pstat-label {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.48);
}
.pstat-sep {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
  flex: 0 0 auto;
}
@media (max-width: 560px) {
  .proofs-stats { gap: 20px 28px; padding: 18px 16px; }
  .pstat-sep { display: none; }
}

/* ── Bento grid — 12 cols, explicit spans per nth-child ─────── */
.proofs--bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(150px, 17vw, 210px);
  gap: clamp(10px, 1.4vw, 16px);
  margin-top: 8px;
}
.proofs--bento .proof        { margin: 0; cursor: zoom-in; min-width: 0; }
.proofs--bento .proof:focus-visible {
  outline: 2px solid #22d3ee;
  outline-offset: 3px;
}
/* override base .proof-media — fill the grid cell fully, no fixed aspect */
.proofs--bento .proof-media {
  height: 100%;
  width: 100%;
  aspect-ratio: auto;
  display: block;
  background: #0a0b12;
}
.proofs--bento .proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1), filter 0.4s ease;
  display: block;
}
.proofs--bento .proof:hover .proof-media img,
.proofs--bento .proof:focus-visible .proof-media img {
  transform: scale(1.055);
  filter: brightness(1.04);
}

/* Explicit cell spans — 14 cards bento (rebuilt v27) */
.proofs--bento .proof:nth-child(1)  { grid-column: span 6; grid-row: span 2; }
.proofs--bento .proof:nth-child(2)  { grid-column: span 3; grid-row: span 2; }
.proofs--bento .proof:nth-child(3)  { grid-column: span 3; grid-row: span 2; }
.proofs--bento .proof:nth-child(4)  { grid-column: span 6; }
.proofs--bento .proof:nth-child(5)  { grid-column: span 3; }
.proofs--bento .proof:nth-child(6)  { grid-column: span 3; }
.proofs--bento .proof:nth-child(7)  { grid-column: span 3; }
.proofs--bento .proof:nth-child(8)  { grid-column: span 3; }
.proofs--bento .proof:nth-child(9)  { grid-column: span 3; }
.proofs--bento .proof:nth-child(10) { grid-column: span 3; }
.proofs--bento .proof:nth-child(11) { grid-column: span 3; }
.proofs--bento .proof:nth-child(12) { grid-column: span 3; }
.proofs--bento .proof:nth-child(13) { grid-column: span 3; }
.proofs--bento .proof:nth-child(14) { grid-column: span 3; }

/* Tablet — 6-col grid — 14 cards */
@media (max-width: 960px) {
  .proofs--bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: clamp(140px, 22vw, 200px); }
  .proofs--bento .proof:nth-child(1)  { grid-column: span 6; grid-row: span 2; }
  .proofs--bento .proof:nth-child(2)  { grid-column: span 3; grid-row: span 2; }
  .proofs--bento .proof:nth-child(3)  { grid-column: span 3; grid-row: span 2; }
  .proofs--bento .proof:nth-child(4)  { grid-column: span 6; }
  .proofs--bento .proof:nth-child(5)  { grid-column: span 3; }
  .proofs--bento .proof:nth-child(6)  { grid-column: span 3; }
  .proofs--bento .proof:nth-child(7)  { grid-column: span 3; }
  .proofs--bento .proof:nth-child(8)  { grid-column: span 3; }
  .proofs--bento .proof:nth-child(9)  { grid-column: span 3; }
  .proofs--bento .proof:nth-child(10) { grid-column: span 3; }
  .proofs--bento .proof:nth-child(11) { grid-column: span 3; }
  .proofs--bento .proof:nth-child(12) { grid-column: span 3; }
  .proofs--bento .proof:nth-child(13) { grid-column: span 3; }
  .proofs--bento .proof:nth-child(14) { grid-column: span 6; }
}

/* Mobile — single column */
@media (max-width: 560px) {
  .proofs--bento { grid-template-columns: 1fr; grid-auto-rows: clamp(180px, 52vw, 260px); }
  .proofs--bento .proof:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .proofs--bento .proof:nth-child(1) { grid-row: span 2; }
}

/* ── LIVE pill (featured card) — green dot, not the usual cyan pulse ── */
.proof-live {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d1fadf;
  background: rgba(8, 10, 16, 0.72);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 999px;
  z-index: 3;
  white-space: nowrap;
}
.proof-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  animation: live-pulse 1.6s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  80%  { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ── Featured caption overlay — text on image, not below ── */
.proof-caption--over {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 7, 12, 0.92) 100%);
  color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-caption--over b {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.proof-caption--over span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.proof--featured .proof-caption { display: none; }
.proof--featured .proof-media { height: 100%; }

/* ── Overlay caption behavior on small cards stays as-is ── */
.proofs--bento .proof-caption {
  padding: 12px 14px;
  font-size: 12px;
  letter-spacing: -0.005em;
}
.proofs--bento .proof-caption b { letter-spacing: -0.01em; }

/* ── Metric pill — cleaner, no gradient everywhere ── */
.proofs--bento .proof-metric {
  position: absolute;
  bottom: 12px; right: 12px;
  padding: 8px 12px;
  background: rgba(8, 10, 16, 0.78);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 10px;
  text-align: right;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.proofs--bento .proof-metric-value {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 800;
  line-height: 1;
  color: #22d3ee;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.proofs--bento .proof-metric-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Verified badge — smaller, refined ── */
.proofs--bento .proof-verified {
  top: 14px; left: 14px;
  padding: 6px 10px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
}

/* ═══ Lightbox ═══ */
.proof-lightbox {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(5, 7, 12, 0.96);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  z-index: 1000;
  animation: pl-fade 0.22s ease;
}
.proof-lightbox.is-open { display: flex; }
@keyframes pl-fade { from { opacity: 0; } to { opacity: 1; } }
.proof-lightbox-img {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: pl-zoom 0.28s cubic-bezier(.2,.8,.2,1);
}
@keyframes pl-zoom { from { transform: scale(0.97); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.proof-lightbox-close,
.proof-lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 17, 24, 0.85);
  color: #fff;
  line-height: 1;
  cursor: pointer;
  transition: all 0.18s ease;
}
.proof-lightbox-close {
  top: 20px; right: 22px;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 24px;
}
.proof-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 26px;
}
.proof-lightbox-prev { left: 24px; }
.proof-lightbox-next { right: 24px; }
.proof-lightbox-close:hover,
.proof-lightbox-nav:hover {
  background: rgba(34, 211, 238, 0.2);
  border-color: #22d3ee;
  color: #fff;
}
.proof-lightbox-counter {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(15, 17, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 600px) {
  .proof-lightbox-nav { width: 42px; height: 42px; font-size: 22px; }
  .proof-lightbox-prev { left: 12px; }
  .proof-lightbox-next { right: 12px; }
}


/* Featured hero metric — top-left, larger */
.proofs--bento .proof-metric--hero {
  top: 14px; left: 14px;
  bottom: auto; right: auto;
  padding: 10px 14px;
  background: rgba(8, 10, 16, 0.78);
  border-color: rgba(34, 211, 238, 0.32);
  text-align: left;
  gap: 2px;
}
.proofs--bento .proof-metric--hero .proof-metric-value {
  font-size: clamp(20px, 2.6vw, 30px);
  color: #22d3ee;
}
.proofs--bento .proof-metric--hero .proof-metric-label {
  font-size: 10px;
}


/* ═══════════════════════════════════════════════════════════
   GROWTH CURVE — animated SVG replacing the rocket
═══════════════════════════════════════════════════════════ */
.growth {
  display: inline-block;
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 14px;
  filter: drop-shadow(0 16px 32px rgba(34, 211, 238, 0.28));
}
.growth-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: gc-float 5.5s cubic-bezier(.4,0,.2,1) infinite;
  transform-origin: 50% 50%;
}
@keyframes gc-float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-6px) rotate(1deg); }
}

/* Line traces itself then loops */
.gc-line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: gc-draw 5s cubic-bezier(.2,.8,.2,1) infinite;
}
@keyframes gc-draw {
  0%   { stroke-dashoffset: 100; }
  30%  { stroke-dashoffset: 0;   }
  80%  { stroke-dashoffset: 0;   }
  100% { stroke-dashoffset: 100; }
}

/* Glow line pulses with main line */
.gc-line-glow {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: gc-draw 5s cubic-bezier(.2,.8,.2,1) infinite;
}

/* Area fill fades with line progress */
.gc-area {
  opacity: 0;
  animation: gc-area-in 5s cubic-bezier(.2,.8,.2,1) infinite;
}
@keyframes gc-area-in {
  0%   { opacity: 0;    transform: translateY(12px); }
  30%  { opacity: 0;    transform: translateY(6px); }
  55%  { opacity: 1;    transform: translateY(0); }
  80%  { opacity: 1;    transform: translateY(0); }
  100% { opacity: 0;    transform: translateY(12px); }
}

/* Data points pop in sequentially */
.gc-points circle {
  opacity: 0;
  transform-origin: center;
  transform: scale(0);
  animation: gc-point-pop 5s cubic-bezier(.2,1.4,.4,1) infinite;
}
.gc-points circle:nth-child(1) { animation-delay: 0.0s; }
.gc-points circle:nth-child(2) { animation-delay: 0.35s; }
.gc-points circle:nth-child(3) { animation-delay: 0.75s; }
.gc-points circle:nth-child(4) { animation-delay: 1.15s; }
.gc-points circle:nth-child(5) { animation-delay: 1.5s; }
@keyframes gc-point-pop {
  0%,5%   { opacity: 0; transform: scale(0); }
  12%     { opacity: 1; transform: scale(1.4); }
  18%     { opacity: 1; transform: scale(1); }
  80%     { opacity: 1; transform: scale(1); }
  95%,100%{ opacity: 0; transform: scale(0.6); }
}

/* End-point ring pulses outward */
.gc-end-ring {
  opacity: 0;
  transform-origin: 130px 18px;
  animation: gc-ring 2.4s ease-out infinite;
  animation-delay: 1.6s;
}
@keyframes gc-ring {
  0%   { opacity: 0.9; transform: scale(0.6); }
  100% { opacity: 0;   transform: scale(2.4); }
}

/* Arrow badge appears when line reaches top */
.gc-arrow {
  opacity: 0;
  transform-origin: 130px 18px;
  animation: gc-arrow-in 5s cubic-bezier(.2,1.4,.4,1) infinite;
  animation-delay: 1.5s;
}
@keyframes gc-arrow-in {
  0%,10% { opacity: 0; transform: translate(130px, 18px) scale(0); }
  25%    { opacity: 1; transform: translate(130px, 18px) scale(1.25); }
  32%    { opacity: 1; transform: translate(130px, 18px) scale(1); }
  78%    { opacity: 1; transform: translate(130px, 18px) scale(1); }
  100%   { opacity: 0; transform: translate(130px, 18px) scale(0.6); }
}

/* Sparkles twinkle */
.gc-sparks circle {
  animation: gc-twinkle 2.4s ease-in-out infinite;
  transform-origin: center;
}
.gc-sparks circle:nth-child(1) { animation-delay: -0.0s; }
.gc-sparks circle:nth-child(2) { animation-delay: -0.5s; }
.gc-sparks circle:nth-child(3) { animation-delay: -1.0s; }
.gc-sparks circle:nth-child(4) { animation-delay: -1.5s; }
.gc-sparks circle:nth-child(5) { animation-delay: -2.0s; }
@keyframes gc-twinkle {
  0%,100% { opacity: 0.2; transform: scale(0.5); }
  50%     { opacity: 1;   transform: scale(1.3); }
}

@media (prefers-reduced-motion: reduce) {
  .growth-svg,
  .gc-line, .gc-line-glow,
  .gc-area, .gc-points circle,
  .gc-end-ring, .gc-arrow,
  .gc-sparks circle { animation: none; }
  .gc-line, .gc-line-glow { stroke-dashoffset: 0; }
  .gc-area, .gc-points circle, .gc-arrow { opacity: 1; }
  .gc-points circle, .gc-arrow { transform: none; }
}


/* ═══════════════════════════════════════════════════════════
   VIDEO LOCK — locked teaser that unlocks by completing quiz
═══════════════════════════════════════════════════════════ */
.video-lock {
  display: grid;
  grid-template-rows: auto auto;
  width: min(400px, 92%);
  margin: 14px auto 22px;
  padding: 0;
  background: rgba(10, 12, 20, 0.7);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  font: inherit;
  text-align: left;
  color: inherit;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.video-lock::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(400px circle at 50% 0%, rgba(34, 211, 238, 0.08), transparent 60%);
}
.video-lock:hover,
.video-lock:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 18px 40px -14px rgba(34, 211, 238, 0.38);
  outline: none;
}
.video-lock:hover .video-lock-icon,
.video-lock:focus-visible .video-lock-icon {
  transform: scale(1.08);
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.7);
}
.video-lock:active { transform: translateY(-1px); }

.video-lock-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0b14;
}
.video-lock-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(10px) saturate(1.25) brightness(0.55);
  transform: scale(1.08); /* mask blur edges */
}
.video-lock-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(420px circle at 50% 35%, rgba(34, 211, 238, 0.22), transparent 68%),
    linear-gradient(180deg, rgba(5,7,12,0.35) 0%, rgba(5,7,12,0.72) 100%);
}
.video-lock-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(8, 10, 16, 0.9);
  border: 1.5px solid rgba(34, 211, 238, 0.55);
  display: grid; place-items: center;
  color: #22d3ee;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  animation: vlock-pulse 2.6s ease-in-out infinite;
}
@keyframes vlock-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.45); }
  50%     { box-shadow: 0 0 0 11px rgba(34, 211, 238, 0); }
}
.video-lock-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e0f7fa;
  background: rgba(8, 10, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.video-lock-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px 14px;
}
.video-lock-caption b {
  color: #f1fafc;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.video-lock-caption > span {
  color: rgba(255,255,255,0.6);
  font-size: 12.5px;
  line-height: 1.35;
}
.video-lock-caption em {
  font-style: normal;
  color: #22d3ee;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .video-lock-icon { animation: none; }
}


/* ═══════════════════════════════════════════════════════════
   SOCIAL PROOF MARQUEE — infinite horizontal scroll
═══════════════════════════════════════════════════════════ */
.social-proof {
  width: 100%;
  overflow: hidden;
  margin: 4px 0 10px;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.social-proof-track {
  display: flex;
  width: max-content;
  animation: sp-scroll 46s linear infinite;
}
.social-proof:hover .social-proof-track { animation-play-state: paused; }
@keyframes sp-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.social-proof-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 9px;
  flex-shrink: 0;
}
.sp-quote {
  font-size: 13px;
  color: rgba(230, 240, 245, 0.85);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.sp-quote b { color: #fff; font-weight: 700; }
.sp-quote em {
  font-style: normal;
  font-weight: 700;
  color: #22d3ee;
}
.sp-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.55);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   PROGRESS STEP LABEL — "Étape X sur 4"
═══════════════════════════════════════════════════════════ */
.progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 18px 0;
}
.progress-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #22d3ee;
}
.progress-step em {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
}
.progress-wrap .progress { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .social-proof-track { animation: none; }
}


/* ── FIX: grid children must allow shrinking, else wide marquee breaks layout */
.shell, .shell > .view, .shell > .view > .card { min-width: 0; }
.card { max-width: 100%; overflow: hidden; }
.social-proof, .social-proof-track { min-width: 0; }


/* ═══════════════════════════════════════════════════════════
   V3 additions — Avatar, Reassurance, FAQ, Cookie banner, Legal
═══════════════════════════════════════════════════════════ */

/* ── Mathys avatar in hero ── */
.mathys-avatar {
  position: relative;
  width: 108px;
  height: 108px;
  margin: 4px auto 18px;
  border-radius: 50%;
  overflow: visible;
  isolation: isolate;
}
.mathys-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(34, 211, 238, 0.35);
  box-shadow: 0 8px 24px -8px rgba(34, 211, 238, 0.4);
  display: block;
  background: #0a0b14;
}
.mathys-avatar-initial {
  position: absolute; inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
  color: #22d3ee;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0f1420, #050710);
  border: 2px solid rgba(34, 211, 238, 0.45);
  border-radius: 50%;
  z-index: 1;
}
.mathys-avatar--placeholder .mathys-avatar-initial { display: flex; }
.mathys-avatar-badge {
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 11px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #052e16;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 4px 12px -4px rgba(74, 222, 128, 0.6);
}

/* ── Reassurance line under Q4 phone input ── */
.reassurance {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(230, 250, 255, 0.75);
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 10px;
}
.reassurance svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #4ade80;
}
.reassurance b { color: #fff; font-weight: 700; }

/* ── FAQ accordion ── */
.faq-head {
  margin-top: 40px;
  margin-bottom: 14px;
  text-align: center;
}
.faq-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: #f1fafc;
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.faq-item {
  background: rgba(19, 21, 30, 0.7);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-item[open] {
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(19, 24, 35, 0.85);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #eaf4f7;
  cursor: pointer;
  list-style: none;
  user-select: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
  color: #22d3ee;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−";
  background: rgba(34, 211, 238, 0.18);
  transform: rotate(180deg);
}
.faq-item summary:hover { color: #fff; }
.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(230, 240, 245, 0.75);
}
.faq-item p b { color: #22d3ee; font-weight: 700; }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 900;
  background: rgba(10, 12, 20, 0.95);
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 16px;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  animation: ck-slide 0.35s cubic-bezier(.2,.8,.2,1);
  max-width: 820px;
  margin: 0 auto;
}
@keyframes ck-slide {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
}
.cookie-banner-icon { font-size: 24px; line-height: 1; }
.cookie-banner-text b {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 2px;
}
.cookie-banner-text p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(230, 240, 245, 0.72);
}
.cookie-banner-text em {
  font-style: normal;
  color: #22d3ee;
  font-weight: 600;
}
.cookie-banner-text a { color: #67e8f9; text-underline-offset: 2px; }
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .cookie-banner-content { grid-template-columns: 1fr; text-align: left; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; }
  .cookie-banner-icon { display: none; }
}

/* ── Footer legal links ── */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 0;
  width: 100%;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: #22d3ee; }

/* ── Legal pages layout ── */
.shell--legal {
  max-width: 780px !important;
  padding: 40px 20px 80px;
  place-items: start;
}
.legal {
  width: 100%;
  color: rgba(230, 240, 245, 0.85);
  line-height: 1.65;
  font-size: 15px;
}
.legal-back {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.legal-back:hover { color: #22d3ee; }
.legal h1 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: #fff;
}
.legal-updated {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 32px;
}
.legal h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: #22d3ee;
  margin: 32px 0 10px;
  letter-spacing: -0.01em;
}
.legal p, .legal ul { margin: 0 0 14px; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal a { color: #67e8f9; text-underline-offset: 2px; }
.legal code {
  padding: 2px 6px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 4px;
  font-size: 13px;
  color: #a5f3fc;
}
.legal b { color: #fff; }

.proof--tallhero .proof-media { height: 100%; }
