/**
 * NEZO — Landing publique (visiteur non connecté).
 * Styles scopés sous `.nezo-lp` pour ne rien faire fuiter sur le reste de l'app.
 * Thème sombre #0a0a0a + accent cyan #00d4ff. Les maquettes `.nz-*` sont
 * reprises fidèlement de la page sebastienmot.com/nezo (données d'exemple).
 */

.nezo-lp {
  background: #0a0a0a;
  color: #e8eaf0;
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    sans-serif;
  min-height: 100vh;
}

/* ── Layout ─────────────────────────────────────────── */
.nezo-lp .lp-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}
.nezo-lp .lp-section {
  padding: 52px 0;
}
.nezo-lp .lp-section--dark {
  background: #0d0d10;
  border-top: 1px solid #16161b;
  border-bottom: 1px solid #16161b;
}

/* ── Nav ────────────────────────────────────────────── */
.nezo-lp .lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #16161b;
}
.nezo-lp .lp-nav__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nezo-lp .lp-nav__brand {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nezo-lp .lp-nav__brand span {
  color: #00d4ff;
}
.nezo-lp .lp-login {
  font-size: 13px;
  font-weight: 500;
  color: #a8b0c8;
  text-decoration: none;
  border: 1px solid #2a3441;
  border-radius: 8px;
  padding: 7px 15px;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}
.nezo-lp .lp-login:hover {
  color: #00d4ff;
  border-color: #00d4ff;
}

/* ── Hero ───────────────────────────────────────────── */
.nezo-lp .lp-hero {
  padding: 44px 0 0;
  text-align: center;
}
.nezo-lp .lp-hero h1 {
  font-size: clamp(40px, 7vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.nezo-lp .lp-hero h1 .accent {
  color: #00d4ff;
}
.nezo-lp .lp-hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: #a8b0c8;
  max-width: 640px;
  margin: 18px auto 0;
}
.nezo-lp .lp-hero__desc strong {
  color: #fff;
  font-weight: 600;
}
.nezo-lp .lp-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ── Texte de section ───────────────────────────────── */
.nezo-lp .lp-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00d4ff;
  font-weight: 600;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  margin: 0 0 14px;
  text-align: center;
}
.nezo-lp .lp-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}
.nezo-lp .lp-title .accent {
  color: #00d4ff;
}
.nezo-lp .lp-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #a8b0c8;
  max-width: 640px;
  margin: 16px auto 0;
  text-align: center;
}

/* ── Bloc « prose » (le problème vécu) ──────────────── */
.nezo-lp .lp-prose {
  background: #0f0f13;
  border: 1px solid #1c1c22;
  border-radius: 16px;
  padding: 28px 32px;
  margin: 22px auto 0;
  max-width: 720px;
}
.nezo-lp .lp-prose p {
  font-size: 17px;
  line-height: 1.75;
  color: #c2c8d8;
  margin: 0;
}
.nezo-lp .lp-prose p + p {
  margin-top: 16px;
}
.nezo-lp .lp-prose strong {
  color: #fff;
  font-weight: 600;
}
.nezo-lp .lp-prose .accent {
  color: #00d4ff;
}

/* ── Item numéroté (01, 02) ─────────────────────────── */
.nezo-lp .lp-block {
  margin-top: 22px;
}
.nezo-lp .lp-edit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.nezo-lp .lp-edit__num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  color: #00d4ff;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.nezo-lp .lp-edit__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nezo-lp .lp-edit__content h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 2px 0 0;
  color: #fff;
}
.nezo-lp .lp-edit__content p {
  font-size: 15px;
  color: #a8b0c8;
  margin: 6px auto 0;
  line-height: 1.6;
  max-width: 560px;
}

/* ── Boutons ────────────────────────────────────────── */
.nezo-lp .lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.nezo-lp .lp-btn--primary {
  background: #00d4ff;
  color: #0a0e14;
}
.nezo-lp .lp-btn--primary:hover {
  background: #1adbff;
}

/* ── Bloc CTA « être prévenu » ──────────────────────── */
.nezo-lp .lp-cta {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.nezo-lp .lp-cta .lp-title {
  margin-top: 4px;
}
.nezo-lp .lp-cta .lp-intro {
  margin-left: auto;
  margin-right: auto;
}
.nezo-lp .lp-cta__action {
  margin-top: 26px;
}

/* ── Footer ─────────────────────────────────────────── */
.nezo-lp .lp-footer {
  border-top: 1px solid #16161b;
  padding: 56px 0;
  text-align: center;
}
.nezo-lp .lp-footer__quote {
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: #c2c8d8;
  max-width: 600px;
  margin: 0 auto;
}
.nezo-lp .lp-footer__name {
  display: block;
  font-weight: 600;
  font-size: 18px;
  margin-top: 32px;
  color: #fff;
}
.nezo-lp .lp-footer__name span {
  color: #00d4ff;
}
.nezo-lp .lp-footer__bio {
  color: #a8b0c8;
  font-size: 14px;
  margin: 8px 0 0;
  line-height: 1.6;
}
.nezo-lp .lp-footer__links {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-top: 18px;
}
.nezo-lp .lp-footer__links a {
  color: #a8b0c8;
  text-decoration: none;
  font-size: 14px;
}
.nezo-lp .lp-footer__links a:hover {
  color: #00d4ff;
}
.nezo-lp .lp-footer__bottom {
  margin-top: 30px;
  font-size: 13px;
  color: #6b7390;
}

/* ════════════════════════════════════════════════════
   Aperçus de l'app NEZO (maquettes, données d'exemple).
   Repris fidèlement de la page de présentation.
   ════════════════════════════════════════════════════ */
.nezo-lp .nz-cap {
  font-size: 0.625rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7390;
  margin: 0 0 8px;
  text-align: center;
}
.nezo-lp .nz-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
}
.nezo-lp .nz-win {
  display: flex;
  background: #0a0e14;
  border: 1px solid #2a3441;
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  text-align: left;
}
.nezo-lp .nz-side {
  width: 148px;
  flex-shrink: 0;
  background: #131a26;
  border-right: 1px solid #1f2937;
  padding: 12px 8px;
}
.nezo-lp .nz-brand {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 6px 12px;
}
.nezo-lp .nz-brand span {
  color: #00d4ff;
}
.nezo-lp .nz-side a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #a8b0c8;
  padding: 6px 7px;
  border-radius: 7px;
  margin-bottom: 1px;
  border-left: 2px solid transparent;
}
.nezo-lp .nz-side a .nz-ic {
  font-size: 15px;
  color: #6b7390;
}
.nezo-lp .nz-side a.nz-on {
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.08);
  border-left: 2px solid #00d4ff;
}
.nezo-lp .nz-side a.nz-on .nz-ic {
  color: #00d4ff;
}
.nezo-lp .nz-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.nezo-lp .nz-tbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-bottom: 1px solid #1f2937;
  background: #131a26;
}
.nezo-lp .nz-scope {
  display: flex;
  gap: 2px;
  background: #0a0e14;
  border: 1px solid #2a3441;
  border-radius: 8px;
  padding: 3px;
}
.nezo-lp .nz-scope span {
  font-size: 11px;
  color: #6b7390;
  padding: 4px 10px;
  border-radius: 5px;
}
.nezo-lp .nz-scope .nz-on {
  background: #00d4ff;
  color: #0a0e14;
  font-weight: 500;
}
.nezo-lp .nz-tright {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #6b7390;
}
.nezo-lp .nz-ava {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(0, 212, 255, 0.12);
  color: #00d4ff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nezo-lp .nz-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.nezo-lp .nz-headline {
  border: 1px solid rgba(0, 212, 255, 0.3);
  background: #131a26;
  border-radius: 13px;
  padding: 16px 18px;
}
.nezo-lp .nz-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 212, 255, 0.7);
  margin: 0;
  font-weight: 600;
}
.nezo-lp .nz-hnum {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 5px 0 4px;
  font-variant-numeric: tabular-nums;
}
.nezo-lp .nz-hsub {
  font-size: 12px;
  color: #a8b0c8;
  margin: 0;
}
.nezo-lp .nz-hsplit {
  margin-top: 9px;
  font-size: 12px;
  color: #a8b0c8;
}
.nezo-lp .nz-hsplit b {
  color: #00d4ff;
  font-weight: 500;
}
.nezo-lp .nz-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.nezo-lp .nz-cols--3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.nezo-lp .nz-card {
  background: #131a26;
  border: 1px solid #1f2937;
  border-radius: 11px;
  padding: 12px 13px;
}
.nezo-lp .nz-ctitle {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7390;
  margin: 0 0 9px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nezo-lp .nz-ctitle .nz-ic {
  font-size: 13px;
}
.nezo-lp .nz-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 5px 0;
}
.nezo-lp .nz-line + .nz-line {
  border-top: 1px solid #1a2332;
}
.nezo-lp .nz-mut {
  color: #a8b0c8;
}
.nezo-lp .nz-num {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.nezo-lp .nz-acc {
  color: #00d4ff;
}
.nezo-lp .nz-pos {
  color: #10b981;
}
.nezo-lp .nz-warn {
  color: #f59e0b;
}
.nezo-lp .nz-dng {
  color: #ef4444;
}
.nezo-lp .nz-inf {
  color: #3b82f6;
}
.nezo-lp .nz-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.nezo-lp .nz-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.nezo-lp .nz-kpi {
  border-radius: 10px;
  padding: 10px 11px;
}
.nezo-lp .nz-kpi p {
  margin: 0;
}
.nezo-lp .nz-kpi--acc {
  border: 1px solid rgba(0, 212, 255, 0.25);
  background: rgba(0, 212, 255, 0.05);
}
.nezo-lp .nz-kpi--warn {
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.05);
}
.nezo-lp .nz-kpi--inf {
  border: 1px solid rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.05);
}
.nezo-lp .nz-kpi--pos {
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.05);
}
.nezo-lp .nz-kl {
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nezo-lp .nz-kl .nz-ic {
  font-size: 13px;
}
.nezo-lp .nz-kv {
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
  font-variant-numeric: tabular-nums;
}
.nezo-lp .nz-kh {
  font-size: 10.5px;
  margin-top: 2px;
}
.nezo-lp .nz-track {
  height: 6px;
  background: #1a2332;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 7px;
}
.nezo-lp .nz-fill {
  height: 100%;
  border-radius: 4px;
}
.nezo-lp .nz-pill {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 5px;
  font-weight: 500;
}
.nezo-lp .nz-actbtn {
  font-size: 11px;
  color: #0a0e14;
  background: #00d4ff;
  border-radius: 7px;
  padding: 6px 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nezo-lp .nz-gtitle {
  font-size: 13px;
  font-weight: 600;
}
.nezo-lp .nz-note {
  font-size: 11.5px;
  color: #6b7390;
  margin: 2px 0 0;
}
.nezo-lp .nz-ic {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: -2px;
}
.nezo-lp .nz-half {
  max-width: 560px;
  margin: 18px auto 0;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .nezo-lp .lp-section {
    padding: 40px 0;
  }
  .nezo-lp .nz-side {
    display: none;
  }
  .nezo-lp .nz-cols,
  .nezo-lp .nz-cols--3 {
    grid-template-columns: 1fr;
  }
  .nezo-lp .nz-hnum {
    font-size: 27px;
  }
  .nezo-lp .lp-prose {
    padding: 22px 18px;
  }
}

/* Reset pour page statique autonome */
html,body{margin:0;padding:0;background:#0a0a0a}
*{box-sizing:border-box}
