/* ============================================================
   Landing pública (/) — rediseño visual, autocontenido.

   Todo lo nuevo vive bajo el prefijo lp- y solo se aplica dentro de body.landing, así que no
   puede filtrarse a ninguna otra página. Las pocas piezas que SÍ son compartidas con el resto
   del sitio (.brand-row/.brand-logo/.brand-home, .site-footer, .nav-links — ver
   static/style.css, sección "Hero / brand header") se tocan solo por sobreescritura con
   selectores body.landing .clase-compartida, nunca editando su definición base: esa base la
   usan el dashboard, el login, el portal entero.

   Tipografía: Space Grotesk para títulos ya está declarada globalmente en style.css
   (--font-display) y se reutiliza tal cual. Acá se suman las dos fuentes que solo usa esta
   página — Instrument Sans (cuerpo) e IBM Plex Mono (todo lo técnico: hashes, horas, micro-
   etiquetas) — autohospedadas en static/fonts/, mismo criterio que Space Grotesk: sin
   dependencia de Google Fonts en runtime.
   ============================================================ */

@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/static/fonts/instrument-sans/InstrumentSans-Variable.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/ibm-plex/IBMPlexMono-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/static/fonts/ibm-plex/IBMPlexMono-Medium.woff2') format('woff2');
}

body.landing {
  /* --- paleta --- */
  --lp-white: #ffffff;
  --lp-band: #fbfcfd;
  --lp-ink: #0b1220;      /* títulos */
  --lp-body: #4a5768;     /* párrafos */
  --lp-mono: #5a6779;     /* texto pequeño y mono — piso de contraste sobre blanco */
  --lp-line: #e0e5ed;
  --lp-line-2: #e6e9ef;
  --lp-accent: #006bbb;
  --lp-accent-dark-bg: #4cb3ff;  /* el mismo azul, aclarado para leerse sobre #0b1220 */
  --lp-ok: #00a86b;
  --lp-ok-bg: #e6f6ef;
  --lp-ok-ink: #00663f;
  --lp-dark: #0b1220;
  --lp-dark-ink: #ffffff;
  --lp-dark-ink-2: #a7b2c2;
  --lp-dark-line: #26303f;

  /* --- tipografía --- */
  --lp-display: var(--font-display); /* Space Grotesk, ya declarada en style.css */
  --lp-sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --lp-mono-font: 'IBM Plex Mono', 'SF Mono', Consolas, monospace;

  /* --- ritmo --- */
  --lp-section-pad: clamp(64px, 8vw, 104px);
  --lp-container-pad: clamp(20px, 5vw, 48px);

  background: var(--lp-white);
  color: var(--lp-body);
  font-family: var(--lp-sans);
}
body.landing h1, body.landing h2, body.landing h3 { font-family: var(--lp-display); color: var(--lp-ink); }
body.landing p { color: var(--lp-body); }

.lp-container { max-width: 1240px; margin: 0 auto; padding: 0 var(--lp-container-pad); }

/* Título de sección — el mismo tamaño en toda la página, para que "El impacto", "El problema",
   "La cadena", "Qué garantiza" y la FAQ lean como capítulos del mismo documento. */
body.landing h2.lp-h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: -0.038em;
  line-height: 1.03;
  font-weight: 700;
  text-wrap: balance;
}

/* Micro-etiqueta de sección ("EL IMPACTO", "◆ API", "LA CADENA") — siempre mono, siempre el
   mismo tratamiento, para que funcione como un rótulo de archivador en toda la página. */
.lp-eyebrow {
  display: block;
  font-family: var(--lp-mono-font);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lp-mono);
  margin-bottom: 14px;
}
body.landing .lp-band-dark .lp-eyebrow { color: var(--lp-dark-ink-2); }

/* Bandas alternas — blanco / #fbfcfd / oscuro, en ese orden por toda la página, para que el
   scroll tenga un ritmo en vez de ser una sola superficie continua. */
.lp-band { padding: var(--lp-section-pad) 0; }
.lp-band-alt { background: var(--lp-band); }
.lp-band-dark { background: var(--lp-dark); color: var(--lp-dark-ink-2); }
/* Especificidad igual a la regla base "body.landing h1,h2,h3 {color:ink}" (0,1,2 en los dos
   casos) — sin el prefijo body.landing acá, esa regla base le ganaba el empate por ser más
   específica y los títulos sobre fondo oscuro quedaban casi negros sobre casi negro,
   ilegibles. Con la misma especificidad, gana esta por venir después en el archivo. */
body.landing .lp-band-dark h2, body.landing .lp-band-dark h3 { color: var(--lp-dark-ink); }
/* Mismo motivo: "body.landing p {color:body}" (0,1,2) le ganaba a ".lp-band-dark p" (0,1,1) sin
   este prefijo, y los párrafos en las bandas oscuras salían con el gris pensado para fondo
   blanco (#4a5768) — 2.5:1 sobre #0b1220, muy por debajo del mínimo de 4.5:1. */
body.landing .lp-band-dark p { color: var(--lp-dark-ink-2); }

/* Botones — pill en toda la página, tres variantes (sólido, outline, y sus contrapartes sobre
   fondo oscuro). Nunca rectangulares, como pide el brief. */
.lp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--lp-sans); font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 140ms ease;
}
.lp-btn:hover { text-decoration: none; }
.lp-btn:active { transform: scale(0.97); }
.lp-btn:focus-visible { outline: 2px solid var(--lp-accent); outline-offset: 2px; }
.lp-btn-solid { background: var(--lp-ink); color: var(--lp-white); }
.lp-btn-solid:hover { background: var(--lp-accent); }
.lp-btn-outline { background: transparent; color: var(--lp-ink); border-color: var(--lp-line); }
.lp-btn-outline:hover { border-color: var(--lp-ink); }
.lp-btn-white { background: var(--lp-white); color: var(--lp-ink); }
.lp-btn-white:hover { background: var(--lp-accent-dark-bg); color: var(--lp-ink); }
.lp-btn-outline-dark { background: transparent; color: var(--lp-dark-ink); border-color: rgba(255,255,255,0.26); }
.lp-btn-outline-dark:hover { border-color: rgba(255,255,255,0.7); }
.lp-btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* Pills genéricas (badge del hero, chips de la comparativa, sellos de la cadena). */
.lp-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; color: var(--lp-ink);
  border: 1px solid var(--lp-line); background: var(--lp-white);
}
.lp-pill-mono { font-family: var(--lp-mono-font); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11.5px; }
.lp-pill-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--lp-ok); flex-shrink: 0; box-shadow: 0 0 0 3px rgba(0,168,107,0.15); }
.lp-pill-ok { background: var(--lp-ok-bg); color: var(--lp-ok-ink); border-color: transparent; }

/* ------------------------------------------------------------
   Header — sticky, translúcido, con blur. Reemplaza visualmente a .hero como barra de
   navegación (la landing ya no usa .hero/.hero-inner: ese contenedor sigue siendo el header
   compartido del resto del sitio, y acá se arma uno propio para no arrastrar su fondo con
   grilla técnica ni su comportamiento no-sticky).
   ------------------------------------------------------------ */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lp-line-2);
}
.lp-header-inner {
  max-width: 1240px; margin: 0 auto; padding: 14px var(--lp-container-pad);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
/* El logo ya trae el wordmark "NotifiCert" dibujado adentro del PNG (icono + texto en un solo
   archivo) — no se agrega un texto aparte, solo se lo agranda: hoy se ve subdimensionado. */
body.landing .lp-header .brand-logo { height: 28px; }
.lp-header-inner .nav-links { font-family: var(--lp-sans); }
body.landing .lp-header .nav-links a {
  font-size: 14px; font-weight: 500; color: var(--lp-mono);
  border-bottom-color: transparent;
}
body.landing .lp-header .nav-links a:hover, body.landing .lp-header .nav-links a.active {
  color: var(--lp-ink); border-bottom-color: transparent;
}
body.landing .lp-header .nav-links a.active { font-weight: 600; }
.lp-header-cta { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.lp-header-cta .lp-btn { padding: 10px 20px; font-size: 13.5px; }

/* ------------------------------------------------------------
   Hero — grid de dos columnas, resplandor único detrás, tarjeta de evidencia a la derecha.
   ------------------------------------------------------------ */
.lp-hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 96px) 0 var(--lp-section-pad); }
.lp-hero-glow {
  position: absolute; top: -10%; left: 50%; width: 1100px; height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,107,187,0.13), transparent 68%);
  pointer-events: none; z-index: 0;
}
.lp-hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: clamp(40px, 6vw, 72px); align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(430px, 100%), 1fr));
}
.lp-hero-copy h1 {
  font-size: clamp(40px, 6.6vw, 82px);
  line-height: 0.97;
  letter-spacing: -0.042em;
  font-weight: 700;
  margin: 18px 0 22px;
  text-wrap: balance;
}
.lp-hero-copy .lp-lead {
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.6;
  color: var(--lp-body);
  max-width: 50ch;
  margin-bottom: 32px;
}
.lp-hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Tarjeta de evidencia — reemplaza al viejo diagrama decorativo de 4 nodos por el producto
   real: la cadena de eventos tal como se ve en un certificado, con su hash encadenado. */
.lp-evidence-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-line);
  border-radius: 18px;
  box-shadow: 0 24px 60px -24px rgba(11,18,32,0.24);
  overflow: hidden;
}
.lp-evidence-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 22px; border-bottom: 1px solid var(--lp-line-2);
}
.lp-evidence-head .lp-eyebrow { margin-bottom: 0; }
.lp-evidence-timeline { list-style: none; padding: 8px 22px; margin: 0; }
.lp-evidence-timeline li {
  position: relative; padding: 16px 0 16px 26px; border-left: 1.5px solid var(--lp-line-2);
}
.lp-evidence-timeline li:first-child { padding-top: 18px; }
.lp-evidence-timeline li:last-child { border-left-color: transparent; padding-bottom: 4px; }
.lp-evidence-dot {
  position: absolute; left: -6.5px; top: 20px;
  width: 12px; height: 12px; border-radius: 999px;
  background: var(--lp-white); border: 1.5px solid var(--lp-accent);
}
.lp-evidence-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.lp-evidence-name { font-size: 14.5px; font-weight: 600; color: var(--lp-ink); }
.lp-evidence-time { font-family: var(--lp-mono-font); font-size: 12.5px; color: var(--lp-mono); }
.lp-evidence-hash {
  font-family: var(--lp-mono-font); font-size: 11.5px; color: var(--lp-mono);
  margin-top: 5px; overflow-wrap: anywhere;
}
/* var(--lp-mono), no un gris más claro: la regla de contraste del brief es explícita — nada
   bajo 14px puede ir más claro que #5a6779 sobre blanco, y esta nota está en 11.5px. */
.lp-evidence-hash .lp-evidence-note { color: var(--lp-mono); }
.lp-evidence-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 16px 22px; border-top: 1px solid var(--lp-line-2); background: var(--lp-band);
}
.lp-evidence-foot .lp-eyebrow { margin-bottom: 0; }
.lp-evidence-foot a { color: var(--lp-accent); font-weight: 600; font-size: 13.5px; text-decoration: none; }
.lp-evidence-foot a:hover { text-decoration: underline; }

/* ------------------------------------------------------------
   El impacto — tres columnas numeradas.
   ------------------------------------------------------------ */
.lp-impact-grid {
  display: grid; gap: clamp(28px, 4vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 40px;
}
.lp-impact-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.lp-impact-num { font-family: var(--lp-mono-font); font-weight: 500; color: var(--lp-accent); font-size: 14px; }
.lp-impact-col h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.lp-impact-col p { font-size: 14.5px; line-height: 1.65; }

/* ------------------------------------------------------------
   Las tres formas de usarlo (API / Portal / Masivo) — tarjetas con mini-visual propio.
   ------------------------------------------------------------ */
.lp-ways-grid {
  display: grid; gap: 20px; margin-top: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.lp-way-card {
  border: 1px solid var(--lp-line); border-radius: 18px; padding: 26px;
  display: flex; flex-direction: column;
  transition: border-color 160ms ease;
}
.lp-way-card:hover { border-color: var(--lp-ink); }
.lp-way-card h3 { font-size: 19px; font-weight: 600; margin: 10px 0 8px; letter-spacing: -0.01em; }
.lp-way-card p { font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.lp-way-card .lp-eyebrow { color: var(--lp-accent); margin-bottom: 4px; }
.lp-way-visual { border-radius: 12px; overflow: hidden; margin-bottom: 18px; margin-top: auto; }
.lp-way-link { font-size: 13.5px; font-weight: 700; color: var(--lp-accent); text-decoration: none; margin-top: auto; }
.lp-way-link:hover { text-decoration: underline; }

/* Mini-visual API: bloque de código */
.lp-code-mini {
  background: var(--lp-dark); color: var(--lp-dark-ink-2);
  font-family: var(--lp-mono-font); font-size: 12.5px; line-height: 1.7;
  padding: 16px 18px;
}
.lp-code-mini .k { color: var(--lp-dark-ink-2); }
.lp-code-mini .s { color: #8ee6b8; }
.lp-code-mini .kw { color: var(--lp-accent-dark-bg); font-weight: 500; }

/* Mini-visual Portal: filas tipo formulario */
.lp-form-mini { background: var(--lp-band); padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.lp-form-mini-row { display: grid; grid-template-columns: 72px 1fr; gap: 10px; align-items: baseline; }
.lp-form-mini-label {
  font-family: var(--lp-mono-font); font-size: 10.5px; font-weight: 500;
  color: var(--lp-mono); text-transform: uppercase; letter-spacing: 0.08em;
}
.lp-form-mini-value { font-size: 13px; color: var(--lp-ink); overflow-wrap: anywhere; }

/* Mini-visual Masivo: contador */
.lp-bulk-mini {
  background: var(--lp-band); padding: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.lp-bulk-mini-file { font-family: var(--lp-mono-font); font-size: 12.5px; color: var(--lp-mono); }
.lp-bulk-mini-count { font-family: var(--lp-display); font-size: 38px; font-weight: 700; color: var(--lp-ink); line-height: 1; }
.lp-bulk-mini-count small {
  display: block; font-family: var(--lp-mono-font); font-size: 10.5px; font-weight: 500;
  color: var(--lp-mono); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px;
}

/* ------------------------------------------------------------
   El problema — banda oscura, párrafo + comparativa de dos columnas con chips.
   ------------------------------------------------------------ */
.lp-problem-lead { font-size: clamp(16px, 1.6vw, 18.5px); line-height: 1.65; max-width: 68ch; margin-top: 18px; }
.lp-compare-grid {
  display: grid; gap: 20px; margin-top: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.lp-compare-card { border-radius: 16px; padding: 26px; border: 1.5px solid; }
.lp-compare-bad { border-color: var(--lp-dark-line); }
.lp-compare-good { border-color: #1d4f77; background: rgba(0,107,187,0.10); }
.lp-compare-card h3 { font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; }
/* Mismo motivo que el fix de arriba: hace falta el prefijo body.landing para empatar en
   especificidad con la regla base de h1/h2/h3 y ganarle por orden de aparición. */
body.landing .lp-compare-bad h3 { color: var(--lp-dark-ink-2); }
body.landing .lp-compare-good h3 { color: var(--lp-accent-dark-bg); }
.lp-chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-chip {
  display: inline-flex; align-items: center; padding: 6px 13px; border-radius: 999px;
  font-size: 12.5px; font-weight: 500; border: 1px solid;
}
.lp-chip-bad { color: var(--lp-dark-ink-2); border-color: var(--lp-dark-line); background: transparent; }
.lp-chip-good { color: var(--lp-accent-dark-bg); border-color: rgba(76,179,255,0.35); background: rgba(76,179,255,0.08); }

/* ------------------------------------------------------------
   La cadena — grilla 2×2 de celdas con hairlines, nunca 3+1.
   ------------------------------------------------------------ */
.lp-chain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(max(46%, 300px), 1fr));
  gap: 1px; background: var(--lp-line);
  border-radius: 16px; overflow: hidden; margin-top: 40px;
}
.lp-chain-cell { background: var(--lp-white); padding: 28px 26px; }
.lp-chain-num { font-family: var(--lp-mono-font); font-weight: 500; color: var(--lp-accent); font-size: 13px; display: block; margin-bottom: 10px; }
.lp-chain-cell h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.lp-chain-cell p { font-size: 13.5px; line-height: 1.6; margin-bottom: 16px; }
.lp-chain-hash {
  font-family: var(--lp-mono-font); font-size: 11.5px; color: var(--lp-mono);
  padding-top: 14px; border-top: 1px solid var(--lp-line-2); overflow-wrap: anywhere;
}
.lp-seal-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.lp-seal { font-family: var(--lp-mono-font); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ------------------------------------------------------------
   Qué garantiza — los 4 bloques originales, en dos columnas parejas.
   ------------------------------------------------------------ */
.lp-guarantee-grid {
  display: grid; gap: 0 48px; margin-top: 40px;
  grid-template-columns: repeat(auto-fit, minmax(max(44%, 340px), 1fr));
}
.lp-guarantee-item {
  display: grid; grid-template-columns: clamp(34px, 4vw, 48px) 1fr; gap: 20px;
  padding: 28px 0; border-top: 1px solid var(--lp-line);
}
.lp-guarantee-num {
  font-family: var(--lp-display); font-weight: 700; color: #9aa8bb;
  font-size: clamp(34px, 4vw, 48px); line-height: 1;
}
.lp-guarantee-item h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.lp-guarantee-item p { font-size: 14px; line-height: 1.65; max-width: 48ch; }

/* ------------------------------------------------------------
   FAQ — acordeón nativo <details>/<summary>, sin JS.
   ------------------------------------------------------------ */
.lp-faq { margin-top: 32px; border-top: 1px solid var(--lp-line); }
.lp-faq-item { border-bottom: 1px solid var(--lp-line); }
.lp-faq-item summary {
  display: flex; align-items: center; gap: 18px; padding: 24px 0;
  cursor: pointer; list-style: none;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-num { font-family: var(--lp-mono-font); font-weight: 500; color: var(--lp-accent); font-size: 13px; flex-shrink: 0; }
.lp-faq-item summary h3 {
  flex: 1; font-size: clamp(17px, 1.8vw, 21px); font-weight: 600; letter-spacing: -0.01em;
}
.lp-faq-plus {
  flex-shrink: 0; position: relative; width: 18px; height: 18px;
  transition: transform 200ms var(--ease-out);
}
.lp-faq-plus::before, .lp-faq-plus::after {
  content: ''; position: absolute; background: var(--lp-ink); border-radius: 2px;
}
.lp-faq-plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.lp-faq-plus::after { top: 0; left: 8px; width: 2px; height: 18px; }
.lp-faq-item[open] .lp-faq-plus { transform: rotate(45deg); }
.lp-faq-answer { padding: 0 0 24px 31px; font-size: 15px; line-height: 1.65; max-width: 68ch; }

/* ------------------------------------------------------------
   Cierre — banda oscura, título enorme.
   ------------------------------------------------------------ */
.lp-cta-title {
  font-size: clamp(36px, 7vw, 86px); letter-spacing: -0.045em; line-height: 0.96;
  max-width: 20ch; font-weight: 700; text-wrap: balance;
}
.lp-cta-lead { font-size: clamp(16px, 1.6vw, 18.5px); line-height: 1.6; max-width: 52ch; margin: 20px 0 32px; }
.lp-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ------------------------------------------------------------
   Footer — oscuro, una sola fila.
   ------------------------------------------------------------ */
body.landing footer.site-footer {
  background: var(--lp-dark); color: var(--lp-dark-ink-2);
  text-align: left; font-size: 13px; margin-top: 0; padding: 28px 0;
}
.lp-footer-row {
  max-width: 1240px; margin: 0 auto; padding: 0 var(--lp-container-pad);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
body.landing .lp-footer-row .brand-logo { height: 22px; }
.lp-footer-links { display: flex; gap: 18px; flex-wrap: wrap; margin: 0 auto; }
body.landing footer.site-footer .lp-footer-links a { color: var(--lp-dark-ink-2); text-decoration: none; }
body.landing footer.site-footer .lp-footer-links a:hover { color: var(--lp-dark-ink); text-decoration: underline; }
.lp-footer-copy {
  font-family: var(--lp-mono-font); font-size: 11px; color: #9aa8bb;
  letter-spacing: 0.04em; white-space: nowrap;
}
@media (max-width: 680px) {
  .lp-footer-row { justify-content: center; text-align: center; }
  .lp-footer-links { order: 3; width: 100%; justify-content: center; }
  .lp-footer-copy { order: 2; }
}

/* ------------------------------------------------------------
   Entrada — fade + leve translateY en cascada, solo en el primer vistazo (misma convención que
   tenía la landing antes del rediseño).
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  .lp-hero-copy > * { animation: lp-in 480ms var(--ease-out) both; }
  .lp-hero-copy > *:nth-child(1) { animation-delay: 0ms; }
  .lp-hero-copy > *:nth-child(2) { animation-delay: 70ms; }
  .lp-hero-copy > *:nth-child(3) { animation-delay: 140ms; }
  .lp-hero-copy > *:nth-child(4) { animation-delay: 210ms; }
  .lp-evidence-card { animation: lp-in 560ms var(--ease-out) 120ms both; }
}
@keyframes lp-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------
   Responsive de detalle — el resto de la página ya reflowa sola vía clamp()/auto-fit; esto
   cubre los pocos lugares donde un layout de fila necesita apilarse antes que el resto.
   ------------------------------------------------------------ */
@media (max-width: 620px) {
  .lp-header-cta { gap: 12px; }
  .lp-evidence-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .lp-bulk-mini { flex-direction: column; align-items: flex-start; }
}
