/* ============================================================================
   myvigia — Landing público (apex/www) · Sistema "Atalaya"
   ----------------------------------------------------------------------------
   CSS de página del site comercial. Consume los tokens Atalaya de tokens.css;
   el shell de la app NO aplica aquí. El landing corre dark-first (es su
   escaparate) con [data-theme="dark"] forzado en <html> desde el template.

   Reglas: un solo acento (Iris/--brand); Pulso (--accent) SOLO para "en vivo";
   hairline-first; transforms/opacity para animar; todo con fallback
   prefers-reduced-motion. Cero glassmorphism gratuito, cero morados genéricos.
   ============================================================================ */

/* ── Base de página ──────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.lp {
  background: var(--canvas);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;            /* clip, no hidden: no rompe position:sticky */
  -webkit-font-smoothing: antialiased;
}
.lp img { max-width: 100%; display: block; }
.lp a { color: inherit; text-decoration: none; }

/* Contenedor */
.lp-wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Tipografía de marketing (escala mayor que la app; densidad de app = 14,
   aquí el escaparate respira más) */
.lp h1, .lp h2, .lp h3 { color: var(--text-strong); letter-spacing: -0.02em; }
.lp .display {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  line-height: 1.04;
  font-weight: 720;
  letter-spacing: -0.035em;
}
.lp .h-sec {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  font-weight: 680;
  letter-spacing: -0.03em;
}
.lp .lead {
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 400;
}
.lp .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-text);
}
.lp .eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--live-bg);
}

/* Enlace de acento (subrayado que se dibuja al hover) */
.lp .ln {
  color: var(--brand-text); font-weight: 500;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1.5px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size var(--t-base) var(--ease);
  padding-bottom: 1px;
}
.lp .ln:hover { background-size: 100% 1.5px; }

/* ── Botones ─────────────────────────────────────────────────────── */
.lp .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  line-height: 1; border-radius: var(--r-md);
  padding: 13px 22px; cursor: pointer; border: 1px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  will-change: transform;
}
.lp .btn svg { width: 17px; height: 17px; }
.lp .btn-primary {
  background: var(--brand); color: var(--on-brand);
  box-shadow: 0 1px 2px rgba(16,18,26,.16), 0 0 0 1px color-mix(in srgb, var(--brand) 40%, transparent);
}
.lp .btn-primary:hover { background: var(--brand-hover); }
.lp .btn-ghost {
  background: color-mix(in srgb, var(--surface) 60%, transparent);
  color: var(--text-strong); border-color: var(--border-strong);
}
.lp .btn-ghost:hover { border-color: var(--brand); background: var(--surface-2); }
.lp .btn-lg { font-size: 16px; padding: 15px 26px; }
.lp .btn-block { width: 100%; }

/* ── Barra de progreso de scroll (Iris, fina) ────────────────────── */
.lp-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  z-index: 90; pointer-events: none;
}

/* ── Cursor personalizado (desktop, fine pointer) ────────────────── */
.lp-cursor, .lp-cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 95;
  pointer-events: none; border-radius: 50%;
  opacity: 0; transition: opacity var(--t-base) var(--ease);
  mix-blend-mode: difference;
}
.lp-cursor {
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border: 1.5px solid #fff;
  transition: opacity var(--t-base) var(--ease),
              width var(--t-base) var(--ease-emph),
              height var(--t-base) var(--ease-emph),
              margin var(--t-base) var(--ease-emph),
              background var(--t-fast) var(--ease);
}
.lp-cursor-dot { width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; background: #fff; }
.lp-cursor.is-hot {
  width: 54px; height: 54px; margin: -27px 0 0 -27px;
  background: rgba(255,255,255,.12);
}
body.lp-has-cursor { cursor: none; }
body.lp-has-cursor a, body.lp-has-cursor button { cursor: none; }
/* En campos de texto SÍ conservamos el cursor nativo */
body.lp-has-cursor input, body.lp-has-cursor textarea, body.lp-has-cursor select { cursor: auto; }

/* ── Navegación ──────────────────────────────────────────────────── */
.lp-nav {
  position: sticky; top: 0; z-index: 80;
  background: color-mix(in srgb, var(--canvas) 82%, transparent);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.lp-nav.is-scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--canvas) 92%, transparent);
}
.lp-nav .lp-wrap { display: flex; align-items: center; gap: 20px; height: 64px; }
.lp-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 19px; font-weight: 600; letter-spacing: -0.02em; color: var(--text-strong);
}
.lp-brand .mark { width: 26px; height: 26px; display: block; }
.lp-brand b { font-weight: 600; }
.lp-nav nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.lp-nav nav a:not(.btn) {
  font-size: 14px; font-weight: 450; color: var(--text-muted);
  transition: color var(--t-fast) var(--ease);
}
.lp-nav nav a:not(.btn):hover { color: var(--text-strong); }

/* ── HERO ────────────────────────────────────────────────────────── */
.lp-hero {
  position: relative; isolation: isolate;
  padding: clamp(56px, 9vw, 108px) 0 clamp(64px, 8vw, 96px);
  overflow: clip;
}
/* Gradiente ULTRA sutil permitido solo aquí (brief §2.5) */
.lp-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1200px 620px at 72% -10%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 60%),
    radial-gradient(900px 500px at 8% 8%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 62%);
}
/* Rejilla técnica tenue (patrón de la atalaya) */
.lp-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -2; opacity: .5;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--border) 60%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--border) 60%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 78%);
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 78%);
}
#lp-radar {
  position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%;
  pointer-events: none;
}
.lp-hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.lp-hero .display { margin: 18px 0 20px; max-width: 15ch; }
.lp-hero .display .accent { color: var(--brand-text); }
.lp-hero .lead { max-width: 46ch; }
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.lp-hero-trust {
  margin-top: 26px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-subtle);
}
.lp-hero-trust svg { width: 15px; height: 15px; color: var(--brand); flex-shrink: 0; }

/* Mock abstracto del producto (parallax leve) */
.lp-hero-visual { position: relative; }
.lp-mock {
  position: relative; z-index: 2;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--sh-lg), var(--card-highlight);
  overflow: clip;
}
.lp-mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 14px; background: var(--surface-2); border-bottom: 1px solid var(--border);
}
.lp-mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
.lp-mock-bar span {
  margin-left: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--text-subtle);
}
.lp-mock-body { padding: 16px; display: grid; gap: 10px; }
.lp-mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.lp-mock-kpi { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: 11px 12px; }
.lp-mock-kpi .n {
  font-size: 22px; font-weight: 700; color: var(--text-strong);
  letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
}
.lp-mock-kpi .l { font-size: 10px; color: var(--text-subtle); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }
.lp-mock-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: 11px 13px;
}
.lp-mock-row .t { font-size: 12.5px; font-weight: 550; color: var(--text-strong); }
.lp-mock-row .d { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.lp-mock-glow {
  position: absolute; inset: -12% -8% -8%; z-index: 1; border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 40%, color-mix(in srgb, var(--brand) 22%, transparent), transparent 70%);
  filter: blur(30px); pointer-events: none;
}

/* Pills */
.lp-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 600; padding: 3px 9px; border-radius: var(--r-full);
  letter-spacing: .01em; white-space: nowrap;
}
.lp-pill.brand { background: var(--brand-tint-strong); color: var(--brand-text); }
.lp-pill.warn  { background: var(--warn-bg); color: var(--warn-fg); }
.lp-pill.err   { background: var(--err-bg); color: var(--err-fg); }
.lp-pill.live  { background: var(--live-bg); color: var(--live); }
.lp-pill.live .beat {
  width: 6px; height: 6px; border-radius: 50%; background: var(--live);
  animation: lp-beat 1.6s var(--ease) infinite;
}
@keyframes lp-beat {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent); }
  50%      { box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 0%, transparent); }
}

/* ── Secciones ───────────────────────────────────────────────────── */
.lp-section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }
.lp-section.alt { background: var(--surface); border-block: 1px solid var(--border); }
.lp-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.lp-head .h-sec { margin: 14px 0 14px; }
.lp-head.center { margin-inline: auto; text-align: center; }
.lp-head.center .eyebrow { justify-content: center; }

/* ── Franja de confianza (marquee) ───────────────────────────────── */
.lp-trust { padding: 34px 0; border-block: 1px solid var(--border); background: var(--surface); }
.lp-trust-label {
  text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 22px;
}
.lp-marquee {
  position: relative; overflow: clip;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-marquee-track {
  display: flex; width: max-content; gap: 56px;
  animation: lp-marquee 34s linear infinite;
}
.lp-marquee:hover .lp-marquee-track { animation-play-state: paused; }
@keyframes lp-marquee { to { transform: translateX(-50%); } }
.lp-stat { display: flex; align-items: baseline; gap: 12px; white-space: nowrap; }
.lp-stat .n {
  font-size: 26px; font-weight: 700; color: var(--text-strong);
  letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
}
.lp-stat .l { font-size: 13.5px; color: var(--text-muted); }
.lp-stat .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); }

/* ── Capacidades (3 bloques grandes) ─────────────────────────────── */
.lp-caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-cap {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px; box-shadow: var(--sh-xs);
  transform: translateZ(0);
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease),
              transform var(--t-base) var(--ease);
}
.lp-cap:hover { border-color: color-mix(in srgb, var(--brand) 40%, var(--border)); box-shadow: var(--sh-md); }
.lp-cap .ic {
  width: 46px; height: 46px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-tint); color: var(--brand); margin-bottom: 18px;
  border: 1px solid color-mix(in srgb, var(--brand) 24%, transparent);
}
.lp-cap .ic svg { width: 22px; height: 22px; }
.lp-cap h3 { font-size: 19px; font-weight: 620; margin-bottom: 8px; letter-spacing: -0.02em; }
.lp-cap p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; }
.lp-cap ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.lp-cap li { display: flex; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.45; }
.lp-cap li svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }

/* Nota propose-confirm */
.lp-doctrine {
  margin-top: 28px; display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--brand); border-radius: var(--r-lg); padding: 18px 20px;
}
.lp-doctrine svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.lp-doctrine p { font-size: 14.5px; color: var(--text); margin: 0; }
.lp-doctrine strong { color: var(--text-strong); font-weight: 620; }

/* ── Cómo funciona (sticky scroll-telling) ───────────────────────── */
.lp-how { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.lp-how-sticky { position: sticky; top: 96px; }
.lp-how-figure {
  aspect-ratio: 4 / 3.4; border-radius: var(--r-xl); border: 1px solid var(--border);
  background: var(--surface); box-shadow: var(--sh-md), var(--card-highlight);
  position: relative; overflow: clip; display: grid; place-items: center;
}
.lp-how-steps { display: grid; gap: 14px; }
.lp-how-step {
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: 22px 24px;
  background: var(--surface); opacity: .5;
  transition: opacity var(--t-base) var(--ease), border-color var(--t-base) var(--ease),
              background var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.lp-how-step.is-active {
  opacity: 1; border-color: color-mix(in srgb, var(--brand) 55%, var(--border));
  box-shadow: var(--sh-sm);
}
.lp-how-step .k {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: var(--r-full);
  background: var(--brand-tint); color: var(--brand-text);
  font-family: var(--font-mono); font-size: 13px; font-weight: 600; margin-bottom: 12px;
  border: 1px solid color-mix(in srgb, var(--brand) 30%, transparent);
}
.lp-how-step.is-active .k { background: var(--brand); color: var(--on-brand); border-color: var(--brand); }
.lp-how-step h3 { font-size: 18px; font-weight: 620; margin-bottom: 6px; letter-spacing: -0.02em; }
.lp-how-step p { font-size: 14.5px; color: var(--text-muted); margin: 0; }

/* Figuras del sticky (una por paso) */
.lp-how-scene { position: absolute; inset: 0; display: grid; place-items: center; padding: 28px;
  opacity: 0; transform: scale(.98); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.lp-how-scene.is-active { opacity: 1; transform: scale(1); }
.lp-scene-card {
  width: 100%; max-width: 320px; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 16px; display: grid; gap: 10px;
}
.lp-scene-line { height: 9px; border-radius: 6px; background: var(--surface-3); }
.lp-scene-line.b { background: var(--brand-tint-strong); }
.lp-scene-badge { align-self: flex-start; }

/* ── Diferenciadores (grid 2x2) ──────────────────────────────────── */
.lp-diffs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.lp-diff {
  display: flex; gap: 16px; padding: 24px; border: 1px solid var(--border);
  border-radius: var(--r-xl); background: var(--surface); box-shadow: var(--sh-xs);
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.lp-diff .ic {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--r-lg);
  display: grid; place-items: center; background: var(--brand-tint); color: var(--brand);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
}
.lp-diff .ic svg { width: 20px; height: 20px; }
.lp-diff h3 { font-size: 16.5px; font-weight: 620; margin-bottom: 5px; letter-spacing: -0.015em; }
.lp-diff p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ── Planes ──────────────────────────────────────────────────────── */
.lp-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.lp-plan {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px; box-shadow: var(--sh-xs);
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.lp-plan.featured {
  border-color: color-mix(in srgb, var(--brand) 55%, var(--border));
  box-shadow: var(--sh-md), 0 0 0 1px color-mix(in srgb, var(--brand) 30%, transparent);
}
.lp-plan-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.lp-plan h3 { font-size: 20px; font-weight: 650; letter-spacing: -0.02em; }
.lp-plan .who { font-size: 13.5px; color: var(--text-muted); margin-bottom: 20px; min-height: 40px; }
.lp-plan ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; flex: 1; }
.lp-plan li { display: flex; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.4; }
.lp-plan li svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.lp-plan .price-note { font-size: 12.5px; color: var(--text-subtle); text-align: center; margin-top: 14px; }

/* ── FAQ (acordeón) ──────────────────────────────────────────────── */
.lp-faq { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.lp-faq-item { border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); overflow: clip; }
.lp-faq-item.is-open { border-color: color-mix(in srgb, var(--brand) 45%, var(--border)); }
.lp-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; background: none; border: 0; text-align: left; cursor: pointer;
  font-family: var(--font-sans); font-size: 16.5px; font-weight: 560; color: var(--text-strong);
  letter-spacing: -0.01em;
}
.lp-faq-q .chev { width: 20px; height: 20px; color: var(--text-muted); flex-shrink: 0;
  transition: transform var(--t-base) var(--ease-emph), color var(--t-fast) var(--ease); }
.lp-faq-item.is-open .lp-faq-q .chev { transform: rotate(180deg); color: var(--brand); }
.lp-faq-a { overflow: clip; height: 0; transition: height var(--t-base) var(--ease-emph); }
.lp-faq-a-inner { padding: 0 22px 22px; font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.lp-faq-a-inner a { color: var(--brand-text); }

/* ── CTA + formulario ────────────────────────────────────────────── */
.lp-cta { position: relative; overflow: clip; }
.lp-cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(900px 460px at 50% -20%, color-mix(in srgb, var(--brand) 14%, transparent), transparent 62%);
}
.lp-cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.lp-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px; box-shadow: var(--sh-md), var(--card-highlight);
}
.lp-form label {
  display: block; font-size: 12.5px; font-weight: 600; color: var(--text-muted);
  margin: 16px 0 7px; letter-spacing: .01em;
}
.lp-form label:first-of-type { margin-top: 0; }
.lp-form input, .lp-form textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--r-md);
  border: 1px solid var(--border-strong); background: var(--surface-2);
  color: var(--text-strong); font-family: inherit; font-size: 15px;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.lp-form input:focus, .lp-form textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: var(--focus-ring);
}
.lp-form textarea { resize: vertical; min-height: 84px; }
.lp-form .submit { margin-top: 22px; }
.lp-form .ok {
  background: var(--ok-bg); border: 1px solid color-mix(in srgb, var(--ok) 40%, transparent);
  color: var(--ok-fg); padding: 18px; border-radius: var(--r-md); font-size: 15px;
}
.lp-form .err {
  background: var(--err-bg); border: 1px solid color-mix(in srgb, var(--err) 45%, transparent);
  color: var(--err-fg); padding: 14px; border-radius: var(--r-md); font-size: 14px; margin-bottom: 4px;
}
.lp-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lp-cta-copy .lead { max-width: 42ch; }
.lp-cta-points { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.lp-cta-points li { display: flex; gap: 11px; font-size: 15px; color: var(--text); }
.lp-cta-points li svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; margin-top: 1px; }

/* ── Footer del site público (Atalaya) ───────────────────────────── */
.lp-foot {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 40px 0; font-size: 13.5px; color: var(--text-muted);
}
.lp-foot .lp-wrap { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.lp-foot .lp-brand { font-size: 16px; color: var(--text); }
.lp-foot .lp-brand .mark { width: 22px; height: 22px; }
.lp-foot nav { margin-left: auto; display: flex; gap: 22px; }
.lp-foot nav a { color: var(--text-muted); transition: color var(--t-fast) var(--ease); }
.lp-foot nav a:hover { color: var(--text-strong); }
.lp-foot .copy { flex-basis: 100%; margin-top: 8px; font-size: 12.5px; color: var(--text-subtle); }

/* ── Reveal on scroll (coreografía de entrada) ───────────────────── */
.lp-reveal { opacity: 0; transform: translateY(22px); }
.lp-in .lp-reveal, .lp-reveal.lp-shown {
  opacity: 1; transform: none;
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease-emph);
}
.lp-reveal[data-delay="1"] { transition-delay: 70ms; }
.lp-reveal[data-delay="2"] { transition-delay: 140ms; }
.lp-reveal[data-delay="3"] { transition-delay: 210ms; }
.lp-reveal[data-delay="4"] { transition-delay: 280ms; }

/* ── Tilt (tarjetas 3D) — se activa por JS con perspectiva ───────── */
.lp-tilt { transform-style: preserve-3d; }

/* ── WhatsApp flotante (re-vestido Atalaya) ──────────────────────── */
.wa-btn {
  position: fixed; right: 22px; bottom: 22px; z-index: 85;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand); color: var(--on-brand);
  border: 1px solid color-mix(in srgb, var(--brand) 55%, transparent);
  box-shadow: var(--sh-lg);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.wa-btn:hover { transform: translateY(-2px); background: var(--brand-hover); }
@media (max-width: 600px) { .wa-btn { right: 16px; bottom: 16px; width: 48px; height: 48px; } }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 940px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-visual { max-width: 480px; }
  .lp-caps, .lp-plans { grid-template-columns: 1fr; }
  .lp-diffs { grid-template-columns: 1fr; }
  .lp-how { grid-template-columns: 1fr; }
  .lp-how-sticky { position: static; margin-bottom: 24px; }
  .lp-cta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .lp-nav nav a:not(.btn) { display: none; }
  .lp-mock-kpis { grid-template-columns: repeat(3, 1fr); }
  .lp-hero-cta .btn { flex: 1; }
}

/* ── Fallbacks de accesibilidad / motion ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .lp-reveal { opacity: 1 !important; transform: none !important; }
  .lp-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
  .lp-pill.live .beat { animation: none; }
  .lp-cursor, .lp-cursor-dot { display: none !important; }
  body.lp-has-cursor { cursor: auto; }
  .lp-how-step { opacity: 1; }
}
/* Touch / coarse pointer: sin cursor custom */
@media (hover: none), (pointer: coarse) {
  .lp-cursor, .lp-cursor-dot { display: none !important; }
  body.lp-has-cursor { cursor: auto; }
}

/* Aviso Habeas Data del formulario (Ley 1581): letra pequeña, sobria, legible. */
.lp-consent { margin-top: 12px; font-size: 12px; line-height: 1.5; color: var(--text-subtle); }
.lp-consent a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.lp-consent a:hover { color: var(--text); }
