/* Onde — Landing page · palette Ember
 * Variables tokens cohérentes avec l'extension.
 * ----------------------------------------------------- */
:root {
  /* Palette Ember */
  --af-accent:        #D9531E;
  --af-accent-hover:  #B83F0E;
  --af-accent-soft:   #FCEBE0;
  --af-accent-border: #F5C6A8;
  --af-accent-ink:    #7A2A0A;
  --af-on-accent:     #FFFFFF;

  --af-secondary:     #0F766E;
  --af-secondary-soft:#E6F4F2;
  --af-secondary-ink: #0A4F4A;

  --af-n0:   #FFFDFB;
  --af-n50:  #FAF7F3;
  --af-n100: #F2EDE6;
  --af-n200: #E5DED4;
  --af-n300: #CFC4B5;
  --af-n400: #A0958A;
  --af-n500: #7A6F66;
  --af-n600: #564E47;
  --af-n700: #3A332E;
  --af-n800: #241F1B;
  --af-n900: #15110E;

  --af-success:       #16A34A;
  --af-success-soft:  #DCFCE7;
  --af-success-ink:   #14532D;
  --af-warning:       #D97706;
  --af-warning-soft:  #FCEFD9;
  --af-danger:        #DC2626;
  --af-danger-soft:   #FCEAEA;

  --af-slack:         #4A154B;

  --af-font:      'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --af-font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --af-shadow-e1: 0 1px 2px rgba(20, 14, 10, 0.04), 0 1px 1px rgba(20, 14, 10, 0.03);
  --af-shadow-e2: 0 4px 12px rgba(20, 14, 10, 0.08), 0 1px 2px rgba(20, 14, 10, 0.04);
  --af-shadow-e3: 0 12px 32px rgba(20, 14, 10, 0.10), 0 2px 6px rgba(20, 14, 10, 0.04);
  --af-shadow-glow: 0 30px 60px -20px rgba(217, 83, 30, 0.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--af-font);
  color: var(--af-n800);
  background: var(--af-n0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ───────────────────────── LAYOUT ────────────────────── */
.lp-page { min-height: 100vh; display: flex; flex-direction: column; }
.lp-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; width: 100%; }
.lp-section { padding: 96px 0; }
.lp-section--tight { padding: 64px 0; }

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--af-font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--af-accent);
}
.lp-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--af-accent);
}

.lp-h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--af-n900);
  margin: 16px 0 16px;
  max-width: 22ch;
  text-wrap: balance;
}
.lp-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--af-n600);
  margin: 0;
  max-width: 60ch;
  text-wrap: pretty;
}

/* ───────────────────────── NAV ──────────────────────── */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--af-n0) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--af-n100);
}
.lp-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.lp-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: -0.02em; font-size: 17px;
  color: var(--af-n900);
}
.lp-brand-mark {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--af-accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.14);
}
.lp-nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; color: var(--af-n600);
}
.lp-nav-links a:hover { color: var(--af-n900); }
.lp-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  height: 34px; padding: 0 14px;
  font-size: 13px; font-weight: 600;
  border-radius: 999px;
  background: var(--af-n900);
  color: var(--af-n0);
  border: none; cursor: pointer;
  transition: transform 90ms ease, background 90ms ease;
}
.lp-nav-cta:hover { background: var(--af-accent); transform: translateY(-1px); }

/* ───────────────────────── BUTTONS ──────────────────── */
.lp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 20px;
  font-family: var(--af-font); font-size: 14px; font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
  white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn--primary {
  background: var(--af-accent); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 6px 16px -4px rgba(217,83,30,0.4);
}
.lp-btn--primary:hover { background: var(--af-accent-hover); box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 20px -4px rgba(217,83,30,0.5); }
.lp-btn--ghost {
  background: transparent; color: var(--af-n900);
  border-color: var(--af-n200);
}
.lp-btn--ghost:hover { background: var(--af-n50); border-color: var(--af-n300); }
.lp-btn--dark {
  background: var(--af-n900); color: var(--af-n0);
}
.lp-btn--dark:hover { background: var(--af-n800); }

.lp-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ───────────────────────── HERO ─────────────────────── */
.lp-hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.lp-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, color-mix(in oklab, var(--af-accent) 10%, transparent) 0%, transparent 60%),
    radial-gradient(40% 40% at 10% 30%, color-mix(in oklab, var(--af-secondary) 6%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.lp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}
.lp-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  height: 28px; padding: 0 12px 0 6px;
  background: var(--af-n0);
  border: 1px solid var(--af-n200);
  border-radius: 999px;
  font-size: 12px; font-weight: 500; color: var(--af-n700);
  box-shadow: var(--af-shadow-e1);
  white-space: nowrap;
}
.lp-hero-eyebrow-pill {
  display: inline-flex; align-items: center;
  height: 18px; padding: 0 8px;
  background: var(--af-accent-soft); color: var(--af-accent-ink);
  border-radius: 999px;
  font-family: var(--af-font-mono);
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.lp-hero-title {
  font-size: 64px; line-height: 1.02; letter-spacing: -0.035em;
  font-weight: 600; color: var(--af-n900);
  margin: 20px 0 20px;
  text-wrap: balance;
}
.lp-hero-title em {
  font-style: normal;
  background: linear-gradient(transparent 62%, var(--af-accent-soft) 62%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 2px;
}
.lp-hero-title em strong { font-weight: 600; color: var(--af-accent); }
.lp-hero-lead {
  font-size: 19px; line-height: 1.55; color: var(--af-n600);
  margin: 0 0 28px; max-width: 52ch;
  text-wrap: pretty;
}
.lp-hero-bullets {
  display: flex; flex-wrap: wrap; gap: 18px 24px;
  margin: 28px 0 0; padding: 0; list-style: none;
}
.lp-hero-bullets li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--af-n700);
}
.lp-hero-bullets svg {
  width: 14px; height: 14px;
  color: var(--af-accent);
  flex-shrink: 0;
}

/* ── Hero stage ── */
.lp-hero-stage {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: 18px;
  overflow: hidden;
  background: var(--af-n900);
  box-shadow: var(--af-shadow-glow), var(--af-shadow-e3);
}
.lp-hero-stage--abstract {
  background: linear-gradient(135deg, #FFFDFB 0%, #FCEBE0 100%);
  border: 1px solid var(--af-n200);
}
.lp-hero-stage--mock {
  background: var(--af-n0);
  border: 1px solid var(--af-n200);
}

/* ──────────── HERO MOCK (Drive-like) ──────────── */
.hm-frame {
  position: absolute; inset: 0;
  display: grid;
  grid-template-rows: 32px 1fr;
  background: #fff;
}
.hm-titlebar {
  display: flex; align-items: center; gap: 6px;
  padding: 0 12px;
  background: var(--af-n50);
  border-bottom: 1px solid var(--af-n100);
  font-family: var(--af-font-mono);
  font-size: 10px; color: var(--af-n500);
}
.hm-titlebar-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--af-n200);
}
.hm-titlebar-dot.r { background: #FF5F57; }
.hm-titlebar-dot.y { background: #FFBD2E; }
.hm-titlebar-dot.g { background: #28C840; }
.hm-titlebar-url {
  margin-left: 16px; padding: 2px 10px;
  background: #fff; border-radius: 6px; border: 1px solid var(--af-n200);
}
.hm-body {
  display: grid;
  grid-template-columns: 132px 1fr;
}
.hm-side {
  background: var(--af-n50);
  border-right: 1px solid var(--af-n100);
  padding: 12px 8px;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 11px;
}
.hm-side-item {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 8px; border-radius: 6px;
  color: var(--af-n600);
}
.hm-side-item--active {
  background: var(--af-accent-soft);
  color: var(--af-accent-ink);
  font-weight: 500;
}
.hm-side-dot {
  width: 12px; height: 12px; border-radius: 3px;
  background: var(--af-n200);
}
.hm-side-item--active .hm-side-dot { background: var(--af-accent); }

.hm-main {
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
}
.hm-toolbar {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 12px; border-bottom: 1px solid var(--af-n100);
}
.hm-chip {
  display: inline-flex; align-items: center; gap: 4px;
  height: 22px; padding: 0 8px;
  background: var(--af-n50);
  border: 1px solid var(--af-n200);
  border-radius: 999px;
  font-size: 10px; color: var(--af-n600);
}
.hm-chip--accent {
  background: var(--af-accent);
  color: #fff;
  border-color: var(--af-accent);
}
.hm-chip--success {
  background: #fff;
  color: var(--af-success-ink);
  border-color: var(--af-success);
}
.hm-chip-count {
  font-family: var(--af-font-mono);
  font-size: 9px;
  background: var(--af-success-soft);
  color: var(--af-success-ink);
  padding: 1px 5px;
  border-radius: 999px;
}
.hm-chip-divider { width: 1px; height: 16px; background: var(--af-n200); margin: 0 4px; }

.hm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  flex: 1;
}
.hm-card {
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--af-n200);
  background: var(--af-n50);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.hm-card--approved {
  border: 2px solid var(--af-success);
}
.hm-thumb {
  flex: 1;
  background: linear-gradient(135deg, var(--c1, #D9531E) 0%, var(--c2, #7A2A0A) 100%);
  position: relative;
  min-height: 70px;
}
.hm-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 8px;
  background: #fff;
  border-top: 1px solid var(--af-n100);
  font-family: var(--af-font-mono);
  font-size: 9px;
  color: var(--af-n600);
}
.hm-card-badge {
  position: absolute;
  top: 6px; right: 6px;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 6px;
  background: var(--af-n900); color: #fff;
  border-radius: 999px;
  font-family: var(--af-font-mono);
  font-size: 9px; font-weight: 600;
}
.hm-card-check {
  position: absolute;
  top: 6px; right: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--af-success);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Annotation pin overlay */
.hm-pin {
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--af-accent);
  color: #fff;
  font-family: var(--af-font-mono);
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25), 0 0 0 2px #fff;
  animation: hm-pin-pop 600ms cubic-bezier(0.2,0.8,0.2,1) backwards;
}
@keyframes hm-pin-pop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

/* Notif overlay (Slack/Email card flotting from card) */
.hm-notif {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 220px;
  background: #fff;
  border: 1px solid var(--af-n200);
  border-radius: 10px;
  box-shadow: var(--af-shadow-e3);
  padding: 10px;
  display: flex; gap: 8px;
  font-size: 11px;
  animation: hm-notif-in 320ms cubic-bezier(0.2,0.8,0.2,1) backwards;
}
@keyframes hm-notif-in {
  from { transform: translateY(8px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.hm-notif-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--af-slack);
  color: #fff;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.hm-notif-icon--mail { background: var(--af-secondary); }
.hm-notif-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hm-notif-title { font-weight: 600; color: var(--af-n900); font-size: 11px; }
.hm-notif-meta {
  font-family: var(--af-font-mono);
  font-size: 9px;
  color: var(--af-n500);
}

/* Step indicator */
.hm-stepper {
  position: absolute;
  bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: rgba(21,17,14,0.9);
  color: #fff;
  border-radius: 999px;
  font-family: var(--af-font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  z-index: 5;
  backdrop-filter: blur(6px);
}
.hm-stepper-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.hm-stepper-dot--active { background: var(--af-accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--af-accent) 30%, transparent); }

/* ── Animation hero abstract ── */
.lp-hero-abstract {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.lp-abs-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--af-n200);
  border-radius: 14px;
  box-shadow: var(--af-shadow-e2);
  padding: 16px;
  width: 240px;
}

/* ───────────────────────── Hero stage variant: animation ─────────── */
.lp-hero-stage--animation {
  background: var(--af-n900);
  border: 1px solid var(--af-n800);
}
.hm-anim-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1A1410 0%, #15110E 70%);
  color: #fff;
}
.hm-anim-orbit {
  position: relative;
  width: 380px; height: 380px;
}
.hm-anim-center {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 22px;
  background: var(--af-accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 20px; letter-spacing: -0.02em;
  box-shadow: 0 20px 50px rgba(217,83,30,0.5);
}
.hm-anim-pill {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 12px; color: #fff;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.hm-anim-pill svg { width: 14px; height: 14px; }
.hm-anim-pill-mark {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--af-accent);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ───────────────────────── PROBLEM ──────────────────── */
.lp-problem {
  background: var(--af-n50);
  border-top: 1px solid var(--af-n100);
  border-bottom: 1px solid var(--af-n100);
}
.lp-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}
.lp-problem-list {
  display: flex; flex-direction: column;
  margin: 0; padding: 0; list-style: none;
}
.lp-problem-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--af-n200);
}
.lp-problem-item:last-child { border-bottom: none; }
.lp-problem-num {
  font-family: var(--af-font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--af-accent);
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.lp-problem-title {
  font-size: 17px; font-weight: 600; color: var(--af-n900);
  margin: 0 0 4px; letter-spacing: -0.01em;
}
.lp-problem-desc {
  font-size: 14px; line-height: 1.6; color: var(--af-n600);
  margin: 0;
}

/* ───────────────────────── FEATURES ─────────────────── */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.lp-feature-card {
  background: var(--af-n0);
  border: 1px solid var(--af-n200);
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color 120ms, transform 120ms;
}
.lp-feature-card:hover {
  border-color: var(--af-n300);
  transform: translateY(-2px);
}
.lp-feature-card--lg {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}
.lp-feature-card--dark {
  background: var(--af-n900);
  border-color: var(--af-n900);
  color: var(--af-n100);
}
.lp-feature-card--dark .lp-feature-title { color: #fff; }
.lp-feature-card--dark .lp-feature-desc { color: rgba(255,255,255,0.65); }
.lp-feature-card--dark .lp-feature-tag { color: var(--af-accent); }

.lp-feature-tag {
  font-family: var(--af-font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--af-accent);
}
.lp-feature-title {
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--af-n900);
  margin: 0;
  text-wrap: balance;
}
.lp-feature-desc {
  font-size: 14px; line-height: 1.6;
  color: var(--af-n600);
  margin: 0;
}
.lp-feature-art {
  border-radius: 12px;
  background: var(--af-n50);
  border: 1px solid var(--af-n200);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}
.lp-feature-card--dark .lp-feature-art {
  background: #1a1410;
  border-color: rgba(255,255,255,0.08);
}

/* feature : Annotations / Comments mock */
.fa-anno {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #D9531E 0%, #7A2A0A 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fa-anno-pin {
  position: absolute;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--af-accent);
  font-family: var(--af-font-mono);
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.fa-anno-bubble {
  position: absolute;
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  border-bottom-left-radius: 2px;
  font-size: 11px;
  color: var(--af-n800);
  max-width: 200px;
  box-shadow: var(--af-shadow-e2);
  line-height: 1.4;
}
.fa-anno-bubble-author {
  font-size: 10px; font-weight: 600;
  color: var(--af-accent);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

/* feature : Notif Slack mock */
.fa-notif {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px;
  background: linear-gradient(180deg, #15110E 0%, #241F1B 100%);
}
.fa-notif-card {
  background: #1F1A14;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px;
  display: flex; gap: 10px;
  color: #fff;
}
.fa-notif-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--af-slack);
  color: #fff;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.fa-notif-icon--mail { background: var(--af-secondary); }
.fa-notif-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.fa-notif-title { font-size: 12px; font-weight: 600; }
.fa-notif-msg { font-size: 11px; color: rgba(255,255,255,0.65); line-height: 1.4; }
.fa-notif-meta { font-family: var(--af-font-mono); font-size: 10px; color: rgba(255,255,255,0.4); }
.fa-notif-cta {
  display: inline-flex; align-items: center; gap: 6px;
  height: 24px; padding: 0 10px;
  background: var(--af-accent); color: #fff;
  border-radius: 6px;
  font-size: 11px; font-weight: 600;
  align-self: flex-start;
  margin-top: 4px;
}

/* feature : Tout approuver mock */
.fa-approve {
  position: absolute; inset: 0;
  background: var(--af-n50);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.fa-approve-bar {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--af-n200);
  border-radius: 12px;
  box-shadow: var(--af-shadow-e2);
}
.fa-approve-btn {
  display: inline-flex; align-items: center; gap: 7px;
  height: 30px; padding: 0 12px 0 14px;
  background: #fff;
  border: 1px solid var(--af-success);
  border-radius: 999px;
  color: var(--af-success-ink);
  font-size: 12px; font-weight: 600;
  letter-spacing: -0.005em;
}
.fa-approve-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9px;
  background: var(--af-success-soft);
  color: var(--af-success-ink);
  font-family: var(--af-font-mono);
  font-size: 10px; font-weight: 600;
}
.fa-approve-divider { width: 1px; height: 18px; background: var(--af-n200); }
.fa-approve-pill {
  display: inline-flex; align-items: center; gap: 6px;
  height: 26px; padding: 0 10px;
  background: var(--af-n50);
  border: 1px solid var(--af-n200);
  border-radius: 999px;
  font-size: 11px; color: var(--af-n600);
}

/* feature : Smart View mock */
.fa-smart {
  position: absolute; inset: 0;
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
}
.fa-smart-head {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--af-n100);
  font-family: var(--af-font-mono);
  font-size: 10px; color: var(--af-n500);
}
.fa-smart-grid {
  display: grid;
  grid-template-columns: 70px repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 6px;
  padding: 14px;
  font-family: var(--af-font-mono);
  font-size: 9px;
  flex: 1;
  min-height: 0;
  align-items: center;
}
.fa-smart-row-label {
  font-size: 10px;
  color: var(--af-n700);
  align-self: center;
  font-family: var(--af-font);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.fa-smart-cell {
  border-radius: 4px;
  background: linear-gradient(135deg, var(--c1, #D9531E), var(--c2, #7A2A0A));
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 4px;
  color: rgba(255,255,255,0.85);
  font-size: 9px;
  height: 100%;
  min-height: 0;
  width: 100%;
}
.fa-smart-cell--empty {
  background: var(--af-n50);
  border: 1px dashed var(--af-n200);
}

/* ───────────────────────── HOW IT WORKS ─────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.lp-step {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px;
  background: var(--af-n0);
  border: 1px solid var(--af-n200);
  border-radius: 16px;
  position: relative;
}
.lp-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--af-accent-soft);
  color: var(--af-accent-ink);
  font-family: var(--af-font-mono);
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.01em;
}
.lp-step-title {
  font-size: 18px; font-weight: 600;
  color: var(--af-n900);
  margin: 0;
  letter-spacing: -0.015em;
}
.lp-step-desc {
  font-size: 14px; line-height: 1.55;
  color: var(--af-n600);
  margin: 0;
}
.lp-step-tag {
  font-family: var(--af-font-mono);
  font-size: 10px;
  color: var(--af-n500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--af-n200);
}

/* ───────────────────────── COMPARE ──────────────────── */
.lp-compare {
  background: var(--af-n50);
  border-top: 1px solid var(--af-n100);
  border-bottom: 1px solid var(--af-n100);
}
.lp-compare-table {
  margin-top: 48px;
  background: var(--af-n0);
  border: 1px solid var(--af-n200);
  border-radius: 16px;
  overflow: hidden;
}
.lp-compare-row {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.lp-compare-row + .lp-compare-row { border-top: 1px solid var(--af-n100); }
.lp-compare-cell {
  padding: 18px 20px;
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.lp-compare-cell--head {
  background: var(--af-n50);
  font-family: var(--af-font-mono);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--af-n600);
  padding: 14px 20px;
}
.lp-compare-cell--brand {
  color: var(--af-accent-ink);
  background: var(--af-accent-soft);
  font-weight: 600;
}
.lp-compare-cell--label {
  font-weight: 500; color: var(--af-n900);
}
.lp-compare-icon {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-compare-icon--ok { background: var(--af-success); color: #fff; }
.lp-compare-icon--no { background: var(--af-n200); color: var(--af-n500); }
.lp-compare-icon--mid {
  background: var(--af-warning-soft);
  color: var(--af-warning);
  border: 1px solid var(--af-warning);
}
.lp-compare-note {
  font-family: var(--af-font-mono);
  font-size: 11px;
  color: var(--af-n500);
}

/* ───────────────────────── BETA / CTA ──────────────── */
.lp-beta {
  background: var(--af-n900);
  color: #fff;
  border-radius: 24px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.lp-beta::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(60% 80% at 100% 0%, color-mix(in oklab, var(--af-accent) 35%, transparent) 0%, transparent 60%),
    radial-gradient(40% 60% at 0% 100%, color-mix(in oklab, var(--af-secondary) 25%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.lp-beta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.lp-beta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-family: var(--af-font-mono);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.lp-beta-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.2);
}
.lp-beta-title {
  font-size: 44px; line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 600;
  margin: 16px 0 16px;
  text-wrap: balance;
}
.lp-beta-lead {
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0 0 28px;
  max-width: 50ch;
}
.lp-beta-checks {
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 20px;
}
.lp-beta-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.lp-beta-check svg {
  width: 16px; height: 16px;
  color: var(--af-accent);
  flex-shrink: 0;
}
.lp-beta-check > span:nth-child(2) {
  flex: 1; min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-beta-check > span:last-child {
  font-family: var(--af-font-mono);
  font-size: 11px;
  flex-shrink: 0;
  text-align: right;
  min-width: 56px;
  color: rgba(255,255,255,0.45);
}
.lp-beta .lp-btn--primary { background: #fff; color: var(--af-n900); }
.lp-beta .lp-btn--primary:hover { background: var(--af-accent-soft); color: var(--af-accent-ink); }
.lp-beta .lp-btn--ghost { color: #fff; border-color: rgba(255,255,255,0.2); background: transparent; }
.lp-beta .lp-btn--ghost:hover { background: rgba(255,255,255,0.06); }

/* ───────────────────────── FOOTER ───────────────────── */
.lp-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--af-n100);
  background: var(--af-n0);
}
.lp-footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--af-n100);
}
.lp-footer-blurb {
  font-size: 13px; line-height: 1.55;
  color: var(--af-n500);
  margin: 16px 0 0;
  max-width: 32ch;
}
.lp-footer-col-title {
  font-family: var(--af-font-mono);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--af-n500);
  margin: 0 0 14px;
}
.lp-footer-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 13px;
}
.lp-footer-list a { color: var(--af-n700); }
.lp-footer-list a:hover { color: var(--af-accent); }
.lp-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  font-size: 12px;
  color: var(--af-n500);
  font-family: var(--af-font-mono);
}

/* ───────────────────────── HERO V3 (Drive flouté + player + panel) ─── */
.lp-hero-stage--mock {
  background: var(--af-n900);
  border: 1px solid var(--af-n200);
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

/* arrière-plan Drive flouté */
.hd-drive-bg {
  position: absolute; inset: 0;
  background: var(--af-n0);
  filter: blur(2.5px) saturate(0.85);
  opacity: 0.55;
  display: flex; flex-direction: column;
  pointer-events: none;
  transform: scale(1.05);
}
.hd-drive-top {
  height: 38px;
  display: flex; align-items: center; gap: 10px;
  padding: 0 14px;
  background: var(--af-n50);
  border-bottom: 1px solid var(--af-n100);
}
.hd-drive-search-bg {
  flex: 1;
  height: 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--af-n200);
  display: flex; align-items: center;
  padding: 0 10px;
  font-size: 11px;
  color: var(--af-n500);
}
.hd-drive-account-bg {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--af-accent);
}
.hd-drive-body {
  flex: 1;
  display: grid;
  grid-template-columns: 140px 1fr;
}
.hd-drive-side {
  background: var(--af-n50);
  border-right: 1px solid var(--af-n100);
  padding: 10px 8px;
  display: flex; flex-direction: column; gap: 3px;
}
.hd-drive-side-item {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 8px;
  font-size: 11px;
  color: var(--af-n600);
  border-radius: 4px;
}
.hd-drive-side-dot {
  width: 12px; height: 12px;
  border-radius: 3px;
  background: var(--af-n200);
}
.hd-drive-main {
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.hd-drive-crumb {
  font-size: 13px; font-weight: 500; color: var(--af-n800);
}
.hd-drive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hd-drive-thumb {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: linear-gradient(135deg, #E8DFC8, #7E8855);
  border: 1px solid var(--af-n200);
}

/* voile sombre par-dessus le Drive */
.hd-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 30% 50%, rgba(20,16,12,0.65) 0%, rgba(20,16,12,0.85) 100%);
  pointer-events: none;
}

/* lecteur vidéo central */
.hd-player {
  position: absolute;
  left: 4%;
  top: 8%;
  width: 62%;
  height: 84%;
  display: flex; flex-direction: column;
  gap: 6px;
}
.hd-player-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}
.hd-player-name {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
}
.hd-player-extern {
  display: inline-flex; align-items: center;
  padding: 2px 8px;
  background: var(--af-accent);
  color: #fff;
  border-radius: 4px;
  font-family: var(--af-font-mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hd-player-frame {
  position: relative;
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}
.hd-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 2;
}
.hd-anno-rect {
  position: absolute;
  border: 2px solid var(--af-accent);
  border-radius: 2px;
  pointer-events: none;
  z-index: 3;
  transition: opacity 240ms ease;
  box-shadow: 0 0 0 999px rgba(0,0,0,0.05);
}
.hd-anno-rect-num {
  position: absolute;
  top: -10px; left: -10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--af-accent);
  color: #fff;
  font-family: var(--af-font-mono);
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.hd-approved-banner {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: rgba(20,83,45,0.92);
  color: #fff;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  z-index: 4;
  animation: hd-pop 320ms cubic-bezier(0.2,0.8,0.2,1) backwards;
  backdrop-filter: blur(6px);
}
@keyframes hd-pop {
  from { transform: translateX(-50%) translateY(-8px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.hd-approved-tick {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--af-success);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.hd-nav-arrow {
  position: absolute;
  top: 50%; right: 8px;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(20,17,14,0.85);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 3;
}

/* timeline */
.hd-tl {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 8px;
}
.hd-tl-bar {
  flex: 1; position: relative;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}
.hd-tl-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
  transition: width 320ms ease;
}
.hd-tl-marker {
  position: absolute;
  top: 50%; transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--af-n900);
}
.hd-tl-handle {
  position: absolute;
  top: 50%; transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px var(--af-n900);
}
.hd-tl-time {
  font-family: var(--af-font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
}

/* toolbar du haut (outils annotation) */
.hd-toolbar-top {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px;
  background: rgba(20,17,14,0.92);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  z-index: 5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.hd-tool {
  width: 24px; height: 24px;
  border-radius: 5px;
  color: rgba(255,255,255,0.7);
  display: inline-flex; align-items: center; justify-content: center;
}
.hd-tool--active {
  background: var(--af-accent-soft);
  color: var(--af-accent);
}
.hd-toolbar-divider {
  width: 1px; height: 16px;
  background: rgba(255,255,255,0.1);
  margin: 0 2px;
}

/* toolbar couleurs en bas */
.hd-toolbar-colors {
  position: absolute;
  bottom: 36%; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(20,17,14,0.92);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  z-index: 5;
}
.hd-color {
  width: 16px; height: 16px;
  border-radius: 50%;
  cursor: pointer;
}
.hd-color--active {
  box-shadow: 0 0 0 2px rgba(20,17,14,0.92), 0 0 0 4px #fff;
}

/* panel commentaires à droite */
.hd-panel {
  position: absolute;
  right: 0; top: 0;
  width: 32%;
  height: 100%;
  background: #fff;
  display: flex; flex-direction: column;
  padding: 14px;
  gap: 10px;
  overflow: hidden;
  border-left: 1px solid var(--af-n200);
  box-shadow: -8px 0 32px rgba(0,0,0,0.2);
}
.hd-panel-head {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 14px;
  color: var(--af-n900);
}
.hd-panel-title { font-weight: 600; }
.hd-panel-count {
  font-family: var(--af-font-mono);
  font-size: 12px;
  color: var(--af-n500);
}
.hd-approve-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 32px;
  background: var(--af-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 120ms;
}
.hd-approve-btn[data-active="true"] { background: var(--af-accent-hover); transform: translateY(-1px); }
.hd-approve-tick {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; justify-content: center;
}
.hd-comments {
  flex: 1;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
}
.hd-comment {
  display: flex; gap: 8px;
  font-size: 11px;
}
.hd-comment--new { animation: hd-pop-in 320ms cubic-bezier(0.2,0.8,0.2,1) backwards; }
@keyframes hd-pop-in {
  from { transform: translateY(6px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.hd-comment-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.hd-comment-body { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.hd-comment-meta {
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
  color: var(--af-n900);
  font-size: 11px;
}
.hd-comment-meta strong { font-weight: 600; }
.hd-comment-time {
  font-family: var(--af-font-mono);
  font-size: 9px;
  color: var(--af-n500);
  white-space: nowrap;
  flex-shrink: 0;
}
.hd-comment-role {
  font-size: 10px;
  color: var(--af-n500);
}
.hd-comment-text {
  font-size: 11px;
  color: var(--af-n700);
  line-height: 1.4;
  margin-top: 2px;
}
.hd-comment-tc {
  display: inline-flex; align-items: center; gap: 3px;
  font-family: var(--af-font-mono);
  font-size: 10px;
  color: var(--af-n500);
}
.hd-panel-input {
  border-top: 1px solid var(--af-n100);
  padding-top: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.hd-panel-input-tools {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px;
  color: var(--af-n600);
}
.hd-panel-input-divider {
  width: 1px; height: 12px;
  background: var(--af-n200);
}
.hd-panel-input-color {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.hd-panel-input-field {
  padding: 6px 10px;
  background: var(--af-n50);
  border: 1px solid var(--af-n200);
  border-radius: 6px;
  font-size: 11px;
  color: var(--af-n400);
}

/* indicateur d'étape (en bas de la stage, hors panel) */
.hd-stepper {
  position: absolute;
  bottom: 14px; left: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(20,17,14,0.85);
  color: rgba(255,255,255,0.85);
  border-radius: 999px;
  font-family: var(--af-font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  z-index: 6;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.06);
}
.hd-stepper-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.hd-stepper-dot--active {
  background: var(--af-accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--af-accent) 30%, transparent);
}

/* ───────────────────────── HERO MOCK V2 (legacy bento helpers) ─────────── */
.hm-drive-top {
  display: flex; align-items: center; gap: 12px;
  height: 38px; padding: 0 14px;
  background: var(--af-n50);
  border-bottom: 1px solid var(--af-n100);
}
.hm-drive-logo {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600; font-size: 13px; color: var(--af-n800);
}
.hm-drive-name { margin-left: 8px; }
.hm-drive-search {
  flex: 1;
  height: 26px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--af-n200);
  border-radius: 8px;
  font-size: 11px;
  color: var(--af-n500);
  display: flex; align-items: center;
}
.hm-drive-account {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--af-accent);
  color: #fff;
  font-size: 10px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hm-stage-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  height: calc(100% - 38px);
  background: var(--af-n100);
}
.hm-preview {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--af-n900);
  padding: 16px;
  gap: 8px;
}
.hm-preview-thumb {
  position: relative;
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--af-n200);
  display: flex; align-items: center; justify-content: center;
}
.hm-anno-rect {
  position: absolute;
  border: 2px solid var(--af-secondary);
  border-radius: 2px;
  pointer-events: none;
  animation: hm-anno-in 240ms ease backwards;
}
@keyframes hm-anno-in {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.hm-anno-rect-label {
  position: absolute;
  top: -10px; left: -10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--af-secondary);
  color: #fff;
  font-family: var(--af-font-mono);
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3), 0 0 0 2px #fff;
}
.hm-preview-approved-ring {
  position: absolute; inset: 0;
  border: 3px solid var(--af-success);
  border-radius: 6px;
  pointer-events: none;
  animation: hm-anno-in 240ms ease backwards;
}
.hm-timeline {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--af-font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.6);
}
.hm-timeline-time { flex-shrink: 0; }
.hm-timeline-bar {
  flex: 1;
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.hm-timeline-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  transition: width 240ms ease;
}
.hm-timeline-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--af-secondary);
  box-shadow: 0 0 0 2px var(--af-n900);
}
.hm-panel {
  display: flex; flex-direction: column;
  background: #fff;
  border-left: 1px solid var(--af-n200);
  padding: 14px;
  gap: 10px;
  overflow: hidden;
}
.hm-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--af-n100);
  font-size: 12px;
  color: var(--af-n800);
}
.hm-panel-title { font-weight: 600; }
.hm-panel-count {
  font-family: var(--af-font-mono);
  font-size: 10px;
  background: var(--af-n100);
  color: var(--af-n600);
  padding: 1px 6px;
  border-radius: 999px;
}
.hm-panel-approved {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  background: var(--af-success-soft);
  border-radius: 8px;
  font-size: 11px;
  color: var(--af-success-ink);
  animation: hm-anno-in 240ms ease backwards;
}
.hm-panel-approved-tick {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--af-success);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hm-comment {
  display: flex; gap: 8px;
  font-size: 11px;
}
.hm-comment--new { animation: hm-anno-in 280ms ease backwards; }
.hm-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--af-font-mono);
  font-size: 10px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hm-comment-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hm-comment-meta {
  display: flex; align-items: baseline; gap: 6px;
  color: var(--af-n800);
}
.hm-comment-meta strong { font-weight: 600; font-size: 11px; }
.hm-comment-tc {
  font-family: var(--af-font-mono);
  font-size: 9px;
  color: var(--af-n500);
}
.hm-comment-text { color: var(--af-n700); line-height: 1.4; }
.hm-panel-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: auto;
  height: 32px;
  background: var(--af-n900);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.hm-panel-cta:hover { background: var(--af-accent); }
/* notif update */
.hm-notif {
  position: absolute;
  bottom: 14px; left: 14px;
  width: 240px;
  background: #fff;
  border: 1px solid var(--af-n200);
  border-radius: 10px;
  box-shadow: var(--af-shadow-e3);
  padding: 10px;
  display: flex; gap: 8px;
  font-size: 11px;
  z-index: 10;
}
.hm-notif-msg { font-size: 11px; color: var(--af-n700); line-height: 1.4; }

.hm-stepper {
  display: flex; align-items: center; gap: 8px;
  margin-top: 12px;
  font-family: var(--af-font-mono);
  font-size: 10px;
  color: var(--af-n600);
  letter-spacing: 0.06em;
  justify-content: center;
}

/* ───────────────────────── FEATURES V2 (3 cards + bento) ─────── */
.lp-features-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.lp-feature {
  background: var(--af-n0);
  border: 1px solid var(--af-n200);
  border-radius: 16px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 120ms, transform 120ms;
}
.lp-feature:hover { border-color: var(--af-n300); transform: translateY(-2px); }
.lp-feature-art {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--af-n50);
  border: 1px solid var(--af-n100);
  position: relative;
}
.lp-feature-art--commentaires { background: linear-gradient(135deg, #FCEBE0 0%, #FFFDFB 100%); }
.lp-feature-art--annotations { background: linear-gradient(135deg, #1A1410 0%, #15110E 100%); }
.lp-feature-art--approve { background: linear-gradient(135deg, #FAF7F3 0%, #F2EDE6 100%); }
.lp-feature-art--bento { aspect-ratio: auto; min-height: 200px; }

/* art commentaires */
.art { position: absolute; inset: 0; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.art-file-tabs {
  display: inline-flex; gap: 4px;
  padding: 3px; background: rgba(255,255,255,0.7);
  border-radius: 8px;
  align-self: flex-start;
  border: 1px solid var(--af-n200);
  font-size: 10px;
}
.art-tab {
  padding: 4px 8px; border-radius: 5px;
  color: var(--af-n500);
  font-family: var(--af-font-mono);
  letter-spacing: 0.04em;
}
.art-tab--active { background: #fff; color: var(--af-n900); box-shadow: var(--af-shadow-e1); }
.art-comments-stack { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.art-comment {
  display: flex; gap: 8px;
  background: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--af-n200);
  font-size: 10px;
}
.art-avatar {
  width: 20px; height: 20px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--af-font-mono);
  font-size: 9px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.art-comment-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.art-comment-meta { display: flex; align-items: baseline; gap: 6px; color: var(--af-n800); font-size: 10px; }
.art-comment-meta strong { font-weight: 600; }
.art-comment-meta span { font-family: var(--af-font-mono); color: var(--af-n500); font-size: 9px; }
.art-comment-text { color: var(--af-n700); line-height: 1.4; }
.art-comment-attach {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 4px;
  font-family: var(--af-font-mono); font-size: 9px;
  color: var(--af-secondary);
}

/* art annotations */
.art--annotations { padding: 14px; gap: 8px; }
.art-video {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  position: relative;
  display: flex;
  justify-content: center;
}
.art-video-frame {
  position: relative;
  height: 100%;
  aspect-ratio: 5/7;
}
.art-anno-rect {
  position: absolute;
  border: 2px solid var(--af-accent);
  border-radius: 2px;
  pointer-events: none;
}
.art-anno-rect-label {
  position: absolute;
  top: -8px; left: -8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--af-accent);
  color: #fff;
  font-family: var(--af-font-mono);
  font-size: 9px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3), 0 0 0 2px #fff;
}
.art-tools {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; gap: 4px;
  padding: 4px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  border-radius: 6px;
}
.art-tool {
  width: 22px; height: 22px;
  border-radius: 4px;
  color: rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; justify-content: center;
}
.art-tool--active { background: var(--af-accent); color: #fff; }
.art-tl {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--af-font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.6);
}
.art-tl-bar {
  flex: 1; position: relative;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}
.art-tl-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}
.art-tl-marker {
  position: absolute;
  top: 50%; transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #15110E;
}

/* art approve */
.art--approve { padding: 18px; gap: 12px; justify-content: center; }
.art-cta-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.art-approve-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px 5px 4px;
  background: #fff;
  border: 1px solid var(--af-success);
  border-radius: 999px;
  font-size: 10px; font-weight: 600;
  color: var(--af-success-ink);
}
.art-tick {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--af-success);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.art-review-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  background: var(--af-n900);
  color: #fff;
  border-radius: 999px;
  font-size: 10px; font-weight: 600;
}
.art-notif {
  background: #fff;
  border: 1px solid var(--af-n200);
  border-radius: 8px;
  padding: 8px 10px;
  box-shadow: var(--af-shadow-e1);
  font-size: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.art-notif-head {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px;
  color: var(--af-n800);
}
.art-notif-app-icon {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: var(--af-slack);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.art-notif-app { font-weight: 600; font-size: 10px; }
.art-notif-tag {
  font-family: var(--af-font-mono);
  font-size: 8px; font-weight: 700;
  padding: 1px 4px;
  background: var(--af-n100);
  color: var(--af-n500);
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.art-notif-time { margin-left: auto; font-family: var(--af-font-mono); font-size: 9px; color: var(--af-n500); }
.art-notif-body {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 10px;
  color: var(--af-n800);
  line-height: 1.4;
}
.art-notif-tick {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--af-success);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.art-notif-quote {
  margin-left: 20px;
  padding: 4px 8px;
  border-left: 2px solid var(--af-n300);
  font-size: 10px;
  color: var(--af-n600);
  font-style: italic;
}
.art-notif-mail-meta {
  font-family: var(--af-font-mono);
  font-size: 9px;
  color: var(--af-n500);
}

/* bento secondaire */
.lp-bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.lp-bento-card {
  background: var(--af-n0);
  border: 1px solid var(--af-n200);
  border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.lp-bento-card--moat { background: linear-gradient(180deg, var(--af-n0) 0%, var(--af-n50) 100%); }

.art--safezones { padding: 14px; gap: 10px; }
.art-sz-head {
  font-family: var(--af-font-mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--af-n500);
}
.art-sz-stack {
  display: flex; gap: 10px; align-items: stretch;
  flex: 1;
  justify-content: center;
}
.art-sz-frame {
  position: relative;
  background: linear-gradient(135deg, #E8DFC8, #7E8855);
  border-radius: 4px;
  flex: 0 1 auto;
  height: 100%;
  max-height: 140px;
  overflow: hidden;
}
.art-sz-tag {
  position: absolute;
  top: 4px; left: 4px;
  font-family: var(--af-font-mono);
  font-size: 8px; font-weight: 700;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 1px 4px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.art-sz-overlay {
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255,255,255,0.7);
  border-radius: 2px;
}
.art-sz-zone {
  position: absolute;
  left: 0; right: 0;
  background: rgba(217,83,30,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--af-font-mono);
  font-size: 7px; color: #fff;
  padding: 2px;
  text-align: center;
  line-height: 1.1;
}
.art-sz-zone--top { top: 0; height: 18%; background: rgba(74,21,75,0.5); }
.art-sz-zone--bottom { bottom: 0; height: 22%; }
.art-sz-foot {
  display: flex; flex-wrap: wrap; gap: 4px;
}
.art-sz-chip {
  font-family: var(--af-font-mono);
  font-size: 9px;
  padding: 2px 6px;
  background: var(--af-n100);
  border-radius: 4px;
  color: var(--af-n600);
}

/* art smart view */
.art--smart { padding: 14px; gap: 10px; }
.art-sv-head {
  font-family: var(--af-font-mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--af-accent);
}
.art-sv-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px;
  align-items: center;
}
.art-sv-label {
  font-size: 10px;
  color: var(--af-n700);
  font-weight: 500;
}
.art-sv-cells {
  display: flex; gap: 6px; align-items: stretch;
  height: 56px;
}
.art-sv-cell {
  border-radius: 3px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 3px;
  height: 100%;
}
.art-sv-cell span {
  font-family: var(--af-font-mono);
  font-size: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 1px 3px;
  border-radius: 2px;
}

/* ───────────────────────── PRIVACY ─────────── */
.lp-privacy {
  background: var(--af-n900);
  color: #fff;
}
.lp-privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.lp-eyebrow--invert { color: var(--af-accent); }
.lp-eyebrow--invert::before { background: var(--af-accent); }
.lp-h2--invert { color: #fff; }
.lp-lead--invert { color: rgba(255,255,255,0.7); }
.lp-priv-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  margin-top: 32px;
}
.lp-priv-bullet { display: flex; gap: 10px; }
.lp-priv-tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--af-accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.lp-priv-tick svg { width: 10px; height: 10px; }
.lp-priv-bullet-title {
  font-size: 13px; font-weight: 600;
  color: #fff;
}
.lp-priv-bullet-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
  margin-top: 2px;
}
.lp-priv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.lp-priv-card-head {
  font-family: var(--af-font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.lp-priv-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
}
.lp-priv-row-tick, .lp-priv-row-cross {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-priv-row-tick { background: var(--af-success); color: #fff; }
.lp-priv-row-cross { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.1); }
.lp-priv-row-title { color: #fff; font-weight: 500; }
.lp-priv-row-sub { color: rgba(255,255,255,0.55); font-size: 12px; margin-top: 2px; }
.lp-priv-card-divider {
  height: 1px; background: rgba(255,255,255,0.08);
  margin: 6px 0;
}
.lp-priv-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--af-accent);
  font-weight: 600;
}

/* ───────────────────────── RESPONSIVE QUICK ─────────── */
@media (max-width: 920px) {
  .lp-hero-grid,
  .lp-problem-grid,
  .lp-features-grid,
  .lp-features-3,
  .lp-bento,
  .lp-steps,
  .lp-beta-inner,
  .lp-footer-top,
  .lp-feature-card--lg {
    grid-template-columns: 1fr !important;
  }
  .lp-hero-title { font-size: 44px; }
  .lp-h2 { font-size: 32px; }
  .lp-section { padding: 64px 0; }
  .lp-beta { padding: 36px; }
  .lp-feature-card { grid-column: span 1 !important; }
  .lp-compare-row { grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); }
  .lp-nav-links { display: none; }
}

@media (max-width: 640px) {
  .lp-container { padding: 0 20px; }
  .lp-hero-title { font-size: 36px; }
  .lp-h2 { font-size: 26px; }
  .lp-section { padding: 48px 0; }
  .lp-hero { padding: 32px 0 48px; }
  .lp-beta { padding: 28px; border-radius: 18px; }
  .lp-beta-title { font-size: 30px; }
  .lp-compare-row { grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); }
  .lp-compare-cell { padding: 12px 8px; font-size: 12px; }
  .lp-compare-cell--head { padding: 10px 6px; font-size: 10px; }
  .lp-quote-card { padding: 24px 22px; }
  .lp-quote-text { font-size: 18px; }
  .lp-stats-row { gap: 14px; }
  .lp-footer-top--slim { grid-template-columns: 1fr; gap: 24px; }
}

/* ───────────────────────── ZERO COPY ──────────────────── */
.lp-zerocopy {
  padding: 56px 0;
}
.lp-zerocopy-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 40px;
  background: var(--af-n900);
  color: #fff;
  border-radius: 18px;
}
.lp-zerocopy-card .lp-eyebrow {
  color: var(--af-accent);
}
.lp-zerocopy-card .lp-h2,
.lp-zerocopy-card .lp-lead {
  color: #fff;
}
.lp-zerocopy-card .lp-lead {
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
}
.lp-zerocopy-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 32px;
}
.lp-zerocopy-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.lp-zerocopy-stat strong {
  font-family: var(--af-font-mono);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
  min-width: 80px;
}
.lp-zerocopy-stat span {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
@media (max-width: 900px) {
  .lp-zerocopy-card { grid-template-columns: 1fr; padding: 28px; }
  .lp-zerocopy-stats { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 24px; }
}

/* ───────────────────────── QUOTE ──────────────────── */
.lp-quote {
  padding: 56px 0;
}
.lp-quote-card {
  margin: 0;
  padding: 36px 40px;
  background: var(--af-n0);
  border: 1px solid var(--af-n200);
  border-radius: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 820px;
}
.lp-quote-mark {
  position: absolute;
  top: 14px;
  left: 28px;
  font-family: var(--af-font);
  font-size: 80px;
  line-height: 1;
  color: var(--af-accent);
  opacity: 0.18;
}
.lp-quote-text {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--af-n900);
  font-weight: 500;
  padding-left: 8px;
}
.lp-quote-cite {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 8px;
}
.lp-quote-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--af-accent-soft);
  color: var(--af-accent);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
  border: 2px dashed var(--af-accent);
}
.lp-quote-cite strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--af-n900);
}
.lp-quote-cite strong + span {
  display: block;
  font-size: 12.5px;
  color: var(--af-n500);
  margin-top: 1px;
}
.lp-quote-tag {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--af-font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--af-accent);
  background: var(--af-accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ───────────────────────── BETA PRICING NOTE ──────────────────── */
.lp-beta-pricing {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--af-n500);
  line-height: 1.55;
  max-width: 460px;
}
.lp-stats {
  padding: 24px 0;
  background: var(--af-n900);
  color: #fff;
}
.lp-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.lp-stats-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--af-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}
.lp-stats-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--af-accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--af-accent) 30%, transparent);
  animation: lp-stats-pulse 2s ease-in-out infinite;
}
@keyframes lp-stats-pulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in oklab, var(--af-accent) 30%, transparent); }
  50% { box-shadow: 0 0 0 7px color-mix(in oklab, var(--af-accent) 12%, transparent); }
}
.lp-stats-row {
  display: flex;
  align-items: baseline;
  gap: 40px;
  flex-wrap: wrap;
}
.lp-stats-cell {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.lp-stats-cell strong {
  font-family: var(--af-font-mono);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.lp-stats-cell span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 900px) {
  .lp-stats-row { gap: 18px; }
  .lp-stats-cell { gap: 6px; }
  .lp-stats-cell strong { font-size: 18px; }
}

/* ───────────────────────── PUBLIC LINK ──────────────────── */
.lp-publink {
  background: linear-gradient(180deg, var(--af-n0) 0%, var(--af-n50) 100%);
  border-top: 1px solid var(--af-n200);
  border-bottom: 1px solid var(--af-n200);
}
.lp-publink-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.lp-publink-bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex; flex-direction: column;
  gap: 16px;
}
.lp-publink-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
}
.lp-publink-bullets strong {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--af-n900);
  margin-bottom: 2px;
}
.lp-publink-bullets span {
  font-size: 13px; color: var(--af-n600);
  line-height: 1.5;
}
.lp-publink-tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--af-accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

.lp-publink-mock { position: relative; }
.lp-publink-browser {
  background: var(--af-n0);
  border: 1px solid var(--af-n200);
  border-radius: 14px;
  box-shadow: 0 12px 40px -8px rgba(20,14,10,.12), 0 2px 6px rgba(20,14,10,.04);
  overflow: hidden;
}
.lp-publink-url {
  background: var(--af-n100);
  padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--af-font-mono);
  font-size: 12px;
  color: var(--af-n600);
  border-bottom: 1px solid var(--af-n200);
}
.lp-publink-url svg { color: #3F8A4E; }

.lp-publink-head {
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--af-n100);
}
.lp-publink-logo {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #15110E;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.lp-publink-titles { flex: 1; min-width: 0; }
.lp-publink-ttl {
  font-size: 13.5px; font-weight: 600;
  color: var(--af-n900);
  letter-spacing: -0.005em;
}
.lp-publink-meta {
  font-family: var(--af-font-mono);
  font-size: 10.5px;
  color: var(--af-n500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.lp-publink-meta strong {
  color: var(--af-accent);
  font-family: var(--af-font);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}
.lp-publink-guest {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: color-mix(in oklab, #1F6F6E 12%, transparent);
  border: 1px solid color-mix(in oklab, #1F6F6E 32%, transparent);
  border-radius: 999px;
  font-size: 11.5px;
  color: #1F6F6E;
  font-weight: 500;
}

.lp-publink-tiles {
  padding: 16px 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lp-publink-tile {
  background: var(--af-n0);
  border: 1px solid var(--af-n200);
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.lp-publink-thumb {
  aspect-ratio: 4/3;
  position: relative;
}
.lp-publink-tile-type {
  position: absolute;
  top: 6px; left: 6px;
  padding: 2px 6px;
  background: rgba(21,17,14,.75);
  color: #fff;
  border-radius: 4px;
  font-family: var(--af-font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}
.lp-publink-tile-unread {
  position: absolute;
  top: 6px; right: 6px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--af-accent);
  color: #fff;
  border-radius: 999px;
  border: 1.5px solid #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--af-font-mono);
  font-size: 10px;
  font-weight: 600;
}
.lp-publink-approved {
  position: absolute;
  top: 6px; right: 6px;
  width: 18px; height: 18px;
  background: #3F8A4E;
  color: #fff;
  border-radius: 50%;
  border: 1.5px solid #fff;
  display: grid; place-items: center;
}
.lp-publink-tile-name {
  padding: 7px 10px;
  font-size: 11.5px;
  color: var(--af-n800);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-top: 1px solid var(--af-n100);
}

.lp-publink-bar {
  padding: 12px 18px;
  border-top: 1px solid var(--af-n100);
  display: flex; align-items: center; gap: 10px;
  background: var(--af-n50);
}
.lp-publink-bar-chips {
  display: inline-flex; gap: 6px;
  flex: 1; flex-wrap: wrap;
}
.lp-publink-chip {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  background: var(--af-n0);
  border: 1px solid var(--af-n200);
  border-radius: 999px;
  font-size: 11px;
  color: var(--af-n600);
  font-weight: 500;
}
.lp-publink-chip.is-active {
  background: var(--af-accent-soft);
  border-color: var(--af-accent-border);
  color: var(--af-accent);
}
.lp-publink-done {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--af-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 4px 12px -3px rgba(217,83,30,.4);
}

.lp-publink-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--af-n0);
  border: 1px solid var(--af-n200);
  border-radius: 999px;
  font-family: var(--af-font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--af-n600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: absolute;
  bottom: -22px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px -2px rgba(20,14,10,.08);
  white-space: nowrap;
}
.lp-publink-badge svg { color: #F38020; }

@media (max-width: 900px) {
  .lp-publink-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-publink-badge { position: static; transform: none; margin: 16px auto 0; }
}

/* ───────────────────────── VOICE & VIDEO NOTES ──────────────────── */
.art-voice {
  display: flex; align-items: center; gap: 8px;
  margin-top: 6px;
  padding: 8px 10px;
  background: var(--af-accent-soft);
  border-radius: 8px;
}
.art-voice-play {
  width: 22px; height: 22px;
  background: var(--af-accent);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.art-voice-waves {
  flex: 1;
  display: flex; align-items: center; gap: 2px;
  height: 22px;
}
.art-voice-waves span {
  flex: 1;
  background: var(--af-accent);
  border-radius: 1px;
  min-height: 4px;
}
.art-voice-time {
  font-family: var(--af-font-mono);
  font-size: 10.5px;
  color: var(--af-accent-ink);
  font-weight: 500;
  flex-shrink: 0;
}

.art-vidnote {
  display: flex; align-items: center; gap: 8px;
  margin-top: 6px;
  padding: 6px 10px 6px 6px;
  background: var(--af-n100);
  border-radius: 8px;
  border: 1px solid var(--af-n200);
}
.art-vidnote-thumb {
  width: 38px; height: 38px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.art-vidnote-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px; height: 18px;
  background: rgba(0,0,0,.55);
  border-radius: 50%;
  display: grid; place-items: center;
}
.art-vidnote-body {
  display: flex; flex-direction: column;
  gap: 2px;
  flex: 1; min-width: 0;
}
.art-vidnote-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--af-n900);
}
.art-vidnote-time {
  font-family: var(--af-font-mono);
  font-size: 10px;
  color: var(--af-n500);
  letter-spacing: 0.04em;
}

/* ═══════════════════════ v0.5 — REFONTE ═══════════════════════ */

/* ── Comment ça marche : pictos par étape ── */
.lp-step-head { display: flex; align-items: center; }
.lp-stepviz {
  border: 1px solid var(--af-n200);
  border-radius: 10px;
  background: var(--af-n50);
  overflow: hidden;
  height: 124px;
  display: flex;
  flex-direction: column;
}
/* step 1 — install */
.lp-stepviz--install { padding: 0; }
.lp-stepviz-bar {
  display: flex; align-items: center; gap: 6px;
  height: 30px; padding: 0 10px;
  background: var(--af-n100);
  border-bottom: 1px solid var(--af-n200);
}
.lp-stepviz-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--af-n300); flex-shrink: 0; }
.lp-stepviz-dot.r { background: #FF5F57; }
.lp-stepviz-dot.y { background: #FFBD2E; }
.lp-stepviz-dot.g { background: #28C840; }
.lp-stepviz-url {
  flex: 1; margin-left: 6px;
  font-family: var(--af-font-mono); font-size: 10px; color: var(--af-n500);
  background: #fff; border: 1px solid var(--af-n200); border-radius: 6px;
  padding: 3px 8px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lp-stepviz-puzzle { color: var(--af-accent); display: inline-flex; flex-shrink: 0; }
.lp-stepviz-install-row {
  flex: 1; display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px;
}
.lp-stepviz-app {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 13px; color: var(--af-n900);
}
.lp-stepviz-add {
  font-size: 11px; font-weight: 600; color: #fff;
  background: var(--af-accent); padding: 6px 11px; border-radius: 8px;
  box-shadow: 0 4px 12px -4px rgba(217,83,30,0.5);
  white-space: nowrap; flex-shrink: 0;
}
/* step 2 — open */
.lp-stepviz--open { flex-direction: row; padding: 12px; gap: 10px; align-items: stretch; }
.lp-stepviz-file {
  flex: 1; border-radius: 8px;
  background: linear-gradient(135deg, #7C3AED, #1F6F6E);
  position: relative; min-height: 0;
}
.lp-stepviz-file-type {
  position: absolute; top: 6px; left: 6px;
  font-family: var(--af-font-mono); font-size: 8px; font-weight: 600;
  color: #fff; background: rgba(0,0,0,0.4); padding: 2px 5px; border-radius: 3px;
  letter-spacing: 0.05em;
}
.lp-stepviz-panel {
  width: 44%; background: #fff;
  border: 1px solid var(--af-n200); border-radius: 8px;
  padding: 10px; display: flex; flex-direction: column; gap: 7px;
  box-shadow: -4px 0 12px rgba(20,14,10,0.05);
}
.lp-stepviz-panel-line { height: 6px; border-radius: 3px; background: var(--af-n200); }
.lp-stepviz-panel-cta {
  margin-top: auto; font-size: 10px; font-weight: 600; color: #fff;
  background: var(--af-accent); border-radius: 6px; padding: 5px 0; text-align: center;
}
/* step 3 — review */
.lp-stepviz--review { padding: 12px; gap: 8px; justify-content: center; }
.lp-stepviz-comment {
  display: flex; gap: 8px; align-items: flex-start;
  background: #fff; border: 1px solid var(--af-n200); border-radius: 8px;
  padding: 8px 10px;
}
.lp-stepviz-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--af-accent); color: #fff;
  font-family: var(--af-font-mono); font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lp-stepviz-bubble { font-size: 11px; color: var(--af-n700); line-height: 1.4; }
.lp-stepviz-actions { display: flex; gap: 8px; }
.lp-stepviz-approve {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: var(--af-success-ink);
  background: var(--af-success-soft);
  border: 1px solid color-mix(in oklab, var(--af-success) 40%, transparent);
  border-radius: 999px; padding: 4px 10px;
}
.lp-stepviz-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: var(--af-n600);
  background: var(--af-n0); border: 1px solid var(--af-n200);
  border-radius: 999px; padding: 4px 10px;
}

/* ── Beta checks : grille 2 colonnes ── */
.lp-beta-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.lp-beta-check > span:nth-child(2),
.lp-beta-check > span:last-child {
  font-family: var(--af-font);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-align: left;
  min-width: 0;
  white-space: normal;
  flex: 1;
}

/* ── Témoignage : logo + avatar plein ── */
.lp-quote-avatar { border: none; background: var(--af-accent); color: #fff; }
.lp-quote-logo {
  margin-left: auto;
  font-family: var(--af-font-mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--af-n300);
}

/* ── FAQ ── */
.lp-faq {
  background: var(--af-n50);
  border-top: 1px solid var(--af-n100);
  border-bottom: 1px solid var(--af-n100);
}
.lp-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}
.lp-faq-intro .lp-h2 { margin-bottom: 12px; }
.lp-faq-mail { color: var(--af-accent); font-weight: 600; }
.lp-faq-mail:hover { text-decoration: underline; }
.lp-faq-list {
  background: var(--af-n0);
  border: 1px solid var(--af-n200);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--af-shadow-e1);
}
.lp-faq-item { border-bottom: 1px solid var(--af-n100); }
.lp-faq-item:last-child { border-bottom: none; }
.lp-faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; font-size: 16px; font-weight: 600;
  color: var(--af-n900); letter-spacing: -0.01em;
  transition: color 120ms ease;
}
.lp-faq-q:hover { color: var(--af-accent); }
.lp-faq-icon {
  flex-shrink: 0; color: var(--af-n400);
  display: inline-flex;
  transition: transform 280ms cubic-bezier(0.2,0.8,0.2,1), color 120ms ease;
}
.lp-faq-item.is-open .lp-faq-q { color: var(--af-accent); }
.lp-faq-item.is-open .lp-faq-icon { transform: rotate(135deg); color: var(--af-accent); }
.lp-faq-a-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms cubic-bezier(0.2,0.8,0.2,1);
}
.lp-faq-item.is-open .lp-faq-a-wrap { max-height: 360px; }
.lp-faq-a {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--af-n600);
  max-width: 62ch;
}

@media (max-width: 920px) {
  .lp-faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .lp-beta-checks { grid-template-columns: 1fr; }
}

/* ── Logo Onde + footer slim ── */
.lp-footer-top--slim { grid-template-columns: 1.6fr 1fr; }
.lp-footer-top--slim .lp-footer-blurb { max-width: 42ch; }

/* ── Lien public : checks vert foncé ── */
.lp-publink-tick { background: #245230; color: #fff; }
.lp-publink-tick svg { color: #fff; stroke: #fff; }

/* ── Comparatif : centrage titres + checks ── */
.lp-compare-cell { justify-content: center; text-align: center; }
.lp-compare-cell--label { justify-content: flex-start; text-align: left; }
.lp-compare-cell--head { justify-content: center; text-align: center; }

/* ── Lien public : vrai logo Onde (app icon beige), pas de pastille sombre ── */
.lp-publink-logo { background: transparent; border-radius: 8px; }

/* ═══════════════════════ PAGES LÉGALES (privacy / terms) ═══════════════════════ */
.lp-legal { padding: 56px 0 96px; }
.lp-legal-inner { max-width: 760px; }
.lp-legal-back {
  display: flex; width: fit-content;
  align-items: center; gap: 6px;
  font-family: var(--af-font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--af-n500);
  margin-bottom: 28px;
  transition: color 120ms ease;
}
.lp-legal-back:hover { color: var(--af-accent); }
.lp-legal-back svg { width: 13px; height: 13px; }
.lp-legal h1 {
  font-size: 40px; line-height: 1.08; letter-spacing: -0.025em;
  font-weight: 600; color: var(--af-n900);
  margin: 8px 0 10px;
  text-wrap: balance;
}
.lp-legal-updated {
  font-family: var(--af-font-mono);
  font-size: 12px; color: var(--af-n500);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.lp-legal-intro {
  font-size: 17px; line-height: 1.6; color: var(--af-n600);
  margin: 20px 0 8px;
  padding: 18px 20px;
  background: var(--af-n50);
  border: 1px solid var(--af-n200);
  border-radius: 12px;
  text-wrap: pretty;
}
.lp-legal-body { margin-top: 24px; }
.lp-legal-body h2 {
  font-size: 22px; line-height: 1.2; letter-spacing: -0.015em;
  font-weight: 600; color: var(--af-n900);
  margin: 44px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--af-n100);
}
.lp-legal-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.lp-legal-body h3 {
  font-size: 16px; font-weight: 600; color: var(--af-n800);
  letter-spacing: -0.01em;
  margin: 28px 0 8px;
}
.lp-legal-body p {
  font-size: 15px; line-height: 1.7; color: var(--af-n700);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.lp-legal-body ul {
  margin: 0 0 16px; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 9px;
}
.lp-legal-body li {
  position: relative;
  padding-left: 20px;
  font-size: 15px; line-height: 1.6; color: var(--af-n700);
}
.lp-legal-body li::before {
  content: "";
  position: absolute; left: 4px; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--af-accent);
}
.lp-legal-body strong { color: var(--af-n900); font-weight: 600; }
.lp-legal-body a {
  color: var(--af-accent); font-weight: 500;
  text-decoration: underline; text-underline-offset: 2px;
  text-decoration-color: var(--af-accent-border);
}
.lp-legal-body a:hover { text-decoration-color: var(--af-accent); }
.lp-legal-table-wrap { overflow-x: auto; margin: 0 0 16px; }
.lp-legal-body table {
  width: 100%; border-collapse: collapse;
  font-size: 13.5px;
  border: 1px solid var(--af-n200);
  border-radius: 10px;
  overflow: hidden;
}
.lp-legal-body th, .lp-legal-body td {
  text-align: left; padding: 10px 14px;
  border-bottom: 1px solid var(--af-n100);
  line-height: 1.5;
  vertical-align: top;
}
.lp-legal-body th {
  background: var(--af-n50);
  font-family: var(--af-font-mono);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--af-n600);
}
.lp-legal-body tr:last-child td { border-bottom: none; }
.lp-legal-contact {
  margin-top: 40px;
  padding: 20px 22px;
  background: var(--af-n900);
  color: #fff;
  border-radius: 14px;
  font-size: 14px; line-height: 1.7;
}
.lp-legal-contact strong { color: #fff; }
.lp-legal-contact a { color: var(--af-accent); font-weight: 500; }

@media (max-width: 640px) {
  .lp-legal h1 { font-size: 30px; }
  .lp-legal-body h2 { font-size: 19px; }
  .lp-legal { padding: 36px 0 64px; }
}
