/* ============================================================
   Crece Hub — Landing page
   Hereda tokens de shared/tokens.css (paleta, Geist, radios).
   Escala tipográfica y espaciado propios: es página de venta,
   respira mucho más que la app. Prefijo lp- en todo.
   ============================================================ */

:root {
  --lp-ease: cubic-bezier(0.32, 0.72, 0, 1);
  --lp-bg: #FBFCFE;
  --lp-ink: var(--ui-text-1);
  --lp-ink-2: var(--ui-text-2);
  --lp-accent: var(--ui-accent);
  --lp-accent-t: var(--ui-accent-t);
  --lp-amber: var(--ui-amber);
  --lp-hairline: rgba(20, 32, 46, 0.08);
  --lp-shadow-soft: 0 24px 80px -32px rgba(20, 32, 46, 0.18);
  --lp-shadow-float: 0 2px 6px rgba(20,32,46,.04), 0 32px 96px -40px rgba(20, 32, 46, 0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-sans);
  background: var(--lp-bg);
  color: var(--lp-ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Layout ─────────────────────────────────────────────── */
.lp-wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.lp-wrap-narrow { max-width: 760px; }
.lp-sec { padding: 128px 0; }
.lp-sec-tint { background: linear-gradient(180deg, #F3F6FB 0%, var(--lp-bg) 100%); }

/* ── Tipografía ─────────────────────────────────────────── */
h1 {
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
h1 em, h2 em { font-style: normal; color: var(--lp-accent); }
h2 {
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 640;
  letter-spacing: -0.028em;
  line-height: 1.1;
  margin-bottom: 20px;
}
h3 { font-weight: 600; letter-spacing: -0.015em; }

.lp-sec-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--lp-ink-2);
  max-width: 640px;
  margin-bottom: 8px;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--lp-hairline);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-ink-2);
  margin-bottom: 24px;
}
.lp-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lp-accent);
}

/* ── Botones (pill + icono anidado) ─────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 560;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.5s var(--lp-ease), box-shadow 0.5s var(--lp-ease), background 0.5s var(--lp-ease);
}
.lp-btn:active { transform: scale(0.98); }
.lp-btn-lg { padding: 16px 16px 16px 28px; font-size: 16px; }
.lp-btn-sm { padding: 8px 8px 8px 18px; font-size: 13.5px; }

.lp-btn-primary {
  background: var(--lp-accent);
  color: #fff;
  box-shadow: 0 12px 32px -12px rgba(61, 107, 232, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.25);
}
.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -14px rgba(61, 107, 232, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

.lp-btn-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 15px;
  transition: transform 0.5s var(--lp-ease);
}
.lp-btn-sm .lp-btn-ico { width: 24px; height: 24px; font-size: 13px; }
.lp-btn:hover .lp-btn-ico { transform: translate(3px, -1px) scale(1.05); }

.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--lp-ink);
  border: 1px solid var(--lp-hairline);
  box-shadow: 0 1px 3px rgba(20, 32, 46, 0.05);
}
.lp-btn-ghost:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 12px 28px -14px rgba(20, 32, 46, 0.25); }

.lp-microcopy { margin-top: 16px; font-size: 13px; color: var(--ui-text-3); }

/* ── Nav pill flotante ──────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-dropdown);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px 8px 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--lp-hairline);
  box-shadow: 0 8px 32px -12px rgba(20, 32, 46, 0.16), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  transition: transform 0.6s var(--lp-ease), box-shadow 0.6s var(--lp-ease);
  max-width: calc(100vw - 32px);
  white-space: nowrap;
}
.lp-nav-brand { display: flex; align-items: center; gap: 9px; text-decoration: none; color: var(--lp-ink); }
.lp-nav-logo {
  width: 28px; height: 28px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.lp-nav-name { font-size: 15px; font-weight: 620; letter-spacing: -0.01em; }
.lp-nav-suite { font-weight: 400; color: var(--ui-text-2); }
.lp-nav-links { display: flex; gap: 22px; }
.lp-nav-links a {
  font-size: 13.5px; font-weight: 500;
  color: var(--lp-ink-2);
  text-decoration: none;
  transition: color 0.4s var(--lp-ease);
}
.lp-nav-links a:hover { color: var(--lp-ink); }
.lp-nav-actions { display: flex; align-items: center; gap: 14px; }
.lp-nav-login { font-size: 13.5px; font-weight: 500; color: var(--lp-ink-2); text-decoration: none; }
.lp-nav-login:hover { color: var(--lp-ink); }

/* Burger */
.lp-nav-burger {
  display: none;
  position: relative;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ui-surface3);
  border: none;
  cursor: pointer;
}
.lp-nav-burger span {
  position: absolute;
  left: 11px;
  width: 16px; height: 1.6px;
  background: var(--lp-ink);
  border-radius: 2px;
  transition: transform 0.55s var(--lp-ease), top 0.55s var(--lp-ease);
}
.lp-nav-burger span:nth-child(1) { top: 15px; }
.lp-nav-burger span:nth-child(2) { top: 21px; }
body.lp-menu-open .lp-nav-burger span:nth-child(1) { top: 18px; transform: rotate(45deg); }
body.lp-menu-open .lp-nav-burger span:nth-child(2) { top: 18px; transform: rotate(-45deg); }

/* Overlay menú mobile */
.lp-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-raised);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: rgba(251, 252, 254, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--lp-ease);
}
body.lp-menu-open .lp-menu { opacity: 1; pointer-events: auto; }
.lp-menu > a {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--lp-ink);
  text-decoration: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--lp-ease), transform 0.7s var(--lp-ease);
  transition-delay: 0s;
}
body.lp-menu-open .lp-menu > a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.08s + var(--i) * 0.055s);
}
.lp-menu > a.lp-btn { font-size: 17px; color: #fff; }
/* el sticky CTA nunca por encima del menú abierto */
body.lp-menu-open .lp-sticky { transform: translateY(120%); }

/* ── Hero ───────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  padding: 172px 0 96px;
  text-align: center;
  overflow: hidden;
}
.lp-hero-glow {
  position: absolute;
  inset: -20% -30% auto;
  height: 90%;
  background:
    radial-gradient(42% 50% at 28% 22%, rgba(61, 107, 232, 0.10), transparent 70%),
    radial-gradient(38% 46% at 74% 16%, rgba(245, 158, 11, 0.08), transparent 70%);
  pointer-events: none;
}
.lp-hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.lp-hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--lp-ink-2);
  max-width: 680px;
  margin-top: 26px;
}
.lp-hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-hero-visual {
  margin-top: 72px;
  width: min(960px, 100%);
}

/* ── Double-bezel (patrón base de tarjetas) ─────────────── */
.lp-bezel {
  background: rgba(20, 32, 46, 0.035);
  border: 1px solid var(--lp-hairline);
  border-radius: 28px;
  padding: 7px;
  box-shadow: var(--lp-shadow-soft);
}
.lp-bezel-core {
  background: #fff;
  border-radius: 21px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(20, 32, 46, 0.04);
  overflow: hidden;
  height: 100%;
}
.lp-bezel-hot {
  background: linear-gradient(160deg, rgba(61, 107, 232, 0.22), rgba(61, 107, 232, 0.06));
  border-color: var(--ui-accent-border);
  box-shadow: 0 32px 96px -36px rgba(61, 107, 232, 0.45);
}

/* ── Slots de imagen (Vertex) ───────────────────────────── */
.lp-imgslot {
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(60% 80% at 20% 20%, rgba(61, 107, 232, 0.16), transparent 60%),
    radial-gradient(50% 70% at 80% 30%, rgba(245, 158, 11, 0.12), transparent 60%),
    linear-gradient(160deg, #EDF1F8, #F7F9FC);
  background-size: cover;
  background-position: center;
}
.lp-imgslot-hero { aspect-ratio: 21 / 10; }
.lp-imgslot-tall { aspect-ratio: 4 / 4.6; }
.lp-imgslot-mod { aspect-ratio: 16 / 8.4; border-radius: 14px; margin-top: auto; }

/* Imágenes reales (Vertex, mismas que genera el producto) */
[data-slot="hero"]          { background-image: url('/landing/img/hero.jpg'); }
[data-slot="show-1"]        { background-image: url('/landing/img/show-1.jpg'); }
[data-slot="show-2"]        { background-image: url('/landing/img/show-2.jpg'); }
[data-slot="show-3"]        { background-image: url('/landing/img/show-3.jpg'); }
[data-slot="show-4"]        { background-image: url('/landing/img/show-4.jpg'); }
[data-slot="show-5"]        { background-image: url('/landing/img/show-5.jpg'); }
[data-slot="cerebro"]       { background-image: url('/landing/img/cerebro.jpg'); }
[data-slot="mod-blueprint"] { background-image: url('/landing/img/mod-blueprint.jpg'); }
[data-slot="mod-carousel"]  { background-image: url('/landing/img/mod-carousel.jpg'); }

/* ── Chat mockup de Queri (continuidad con la app: diamante ✦) ── */
.lp-hubby-chat {
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(170deg, #FDFEFF, #F4F7FC);
}
.lp-chat-row { display: flex; gap: 10px; align-items: flex-end; }
.lp-chat-user { justify-content: flex-end; }
.lp-chat-row p {
  max-width: 78%;
  padding: 12px 16px;
  font-size: 14.5px;
  line-height: 1.5;
  border-radius: 16px;
}
.lp-chat-user p {
  background: var(--lp-accent);
  color: #fff;
  border-bottom-right-radius: 5px;
  box-shadow: 0 8px 20px -10px rgba(61, 107, 232, 0.5);
}
.lp-chat-ai p {
  background: #fff;
  border: 1px solid var(--lp-hairline);
  border-bottom-left-radius: 5px;
  color: var(--lp-ink);
  box-shadow: 0 2px 8px rgba(20, 32, 46, 0.05);
}
.lp-chat-avatar {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ui-accent-bg);
  color: transparent;   /* oculta el ✦ heredado */
  font-size: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px -4px rgba(61, 107, 232, 0.5);
}
/* Isotipo Queri (la Q) como avatar — continuidad con la app (shell.css) */
.lp-chat-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--ui-accent-bg) url('/shared/crecehub.svg') center / 62% no-repeat;
}
.lp-chat-done { color: var(--ui-green) !important; font-weight: 550; }
.lp-chat-done svg { vertical-align: -2px; margin-right: 2px; }
.lp-btn-ico svg { display: block; }

/* ── Showcase ───────────────────────────────────────────── */
.lp-showcase { text-align: center; padding-bottom: 96px; }
.lp-showcase .lp-sec-sub { margin: 0 auto; }
.lp-showcase-track {
  display: flex;
  gap: 28px;
  margin-top: 64px;
  padding: 24px 48px 40px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: safe center;
}
.lp-showcase-track::-webkit-scrollbar { display: none; }
.lp-show-card {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: rotate(var(--r));
  transition: transform 0.7s var(--lp-ease);
}
.lp-show-card:hover { transform: rotate(0deg) translateY(-8px); }
.lp-show-card .lp-imgslot {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  border: 1px solid var(--lp-hairline);
  box-shadow: var(--lp-shadow-float);
}
.lp-show-card span {
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ui-text-3);
}

/* ── Problema (PAS) ─────────────────────────────────────── */
.lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.lp-pain { padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; }
.lp-pain-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ui-accent-bg);
  color: var(--lp-accent-t);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-pain p { font-size: 16.5px; color: var(--lp-ink-2); }
.lp-bridge {
  margin-top: 56px;
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 480;
  letter-spacing: -0.015em;
  text-align: center;
}

/* ── Split (idea central / Queri) ───────────────────────── */
.lp-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.lp-split-rev { grid-template-columns: 0.95fr 1.05fr; }
.lp-split-txt p { color: var(--lp-ink-2); margin-bottom: 8px; }
.lp-checks { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.lp-checks li { display: flex; gap: 10px; align-items: flex-start; color: var(--lp-ink-2); }
.lp-check-ico {
  flex: 0 0 20px;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--ui-accent-bg);
  color: var(--lp-accent-t);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-checks strong { color: var(--lp-ink); }

/* ── Bento módulos ──────────────────────────────────────── */
.lp-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 20px;
  margin-top: 56px;
}
.lp-bento-a { grid-column: span 7; grid-row: span 2; }
.lp-bento-b { grid-column: span 5; }
.lp-bento-c { grid-column: span 5; grid-row: span 2; }
.lp-bento-d { grid-column: span 7; }
.lp-bento-e { grid-column: span 7; }
.lp-bento-f { grid-column: span 5; }
.lp-mod {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-mod h3 { font-size: clamp(17px, 2vw, 21px); line-height: 1.32; font-weight: 560; }
.lp-mod-tag {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-accent-t);
  background: var(--ui-accent-bg);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}
.lp-mod-soon { background: linear-gradient(160deg, #F7F9FC, #EFF3FA); }
.lp-mod-soon .lp-mod-tag { color: var(--ui-text-3); background: var(--ui-surface3); }
.lp-mod-soon h3 { color: var(--lp-ink-2); }
.lp-flow {
  margin-top: 48px;
  text-align: center;
  font-size: 15px;
  font-weight: 550;
  letter-spacing: 0.02em;
  color: var(--lp-ink-2);
}
.lp-flow svg {
  color: var(--lp-accent);
  margin: 0 8px;
  vertical-align: -2px;
  display: inline-block;
}

/* Iconos de la comparativa */
.tico { vertical-align: middle; }
.tico-yes { color: var(--ui-green); }
.tico-no  { color: var(--ui-text-4); }
.tico-meh { color: var(--ui-amber); }

/* ── Cómo funciona ──────────────────────────────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin: 64px 0;
}
.lp-step-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--lp-hairline);
  box-shadow: 0 8px 24px -10px rgba(20, 32, 46, 0.18);
  font-size: 17px;
  font-weight: 650;
  color: var(--lp-accent);
  margin-bottom: 20px;
}
.lp-step h3 { font-size: 19px; margin-bottom: 8px; }
.lp-step p { color: var(--lp-ink-2); font-size: 15.5px; }
.lp-filter { padding: 36px 40px; }
.lp-filter p {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--lp-ink-2);
  max-width: 720px;
}
.lp-filter strong { color: var(--lp-ink); }

/* ── Comparativa ────────────────────────────────────────── */
.lp-tablewrap { overflow-x: auto; margin-top: 48px; }
.lp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 640px;
}
.lp-table th, .lp-table td { padding: 16px 20px; text-align: center; }
.lp-table td:first-child { text-align: left; color: var(--lp-ink-2); font-weight: 480; }
.lp-table thead th {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ui-text-3);
  border-bottom: 1px solid var(--lp-hairline);
}
.lp-table tbody tr + tr td { border-top: 1px solid rgba(20, 32, 46, 0.05); }
.lp-th-hub { color: var(--lp-accent-t) !important; }
.lp-td-hub { background: var(--ui-accent-bg); }
.lp-table tbody tr:last-child .lp-td-hub { border-radius: 0 0 12px 12px; }

/* ── Pricing ────────────────────────────────────────────── */
.lp-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
  align-items: stretch;
}
.lp-plan {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.lp-plan h3 { font-size: 20px; }
.lp-plan-badge {
  position: absolute;
  top: 26px; right: 26px;
  font-size: 10.5px;
  font-weight: 620;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--lp-accent);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  box-shadow: 0 6px 16px -6px rgba(61, 107, 232, 0.5);
}
.lp-plan-price { font-size: 40px; font-weight: 650; letter-spacing: -0.03em; }
.lp-plan-price span { font-size: 14px; font-weight: 480; color: var(--ui-text-3); letter-spacing: 0; }
.lp-plan-desc { color: var(--lp-ink-2); font-size: 15px; }
.lp-plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 6px 0 18px;
  flex: 1;
}
.lp-plan li {
  font-size: 14.5px;
  color: var(--lp-ink-2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.lp-plan li svg {
  flex: 0 0 14px;
  margin-top: 3px;
  color: var(--lp-accent);
}
.lp-plan .lp-btn { justify-content: center; }
.lp-plans-trial { text-align: center; margin-top: 44px; font-size: 16.5px; }
.lp-plans-note { text-align: center; margin-top: 12px; font-size: 14.5px; color: var(--lp-ink-2); }
.lp-plans-guarantee {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--ui-text-3);
}

/* ── FAQ ────────────────────────────────────────────────── */
.lp-faq { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.lp-faq details {
  background: #fff;
  border: 1px solid var(--lp-hairline);
  border-radius: 16px;
  padding: 0 24px;
  transition: box-shadow 0.5s var(--lp-ease);
}
.lp-faq details[open] { box-shadow: var(--lp-shadow-soft); }
.lp-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 560;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq-ico {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ui-surface3);
  color: var(--lp-ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--lp-ease);
}
.lp-faq details[open] .lp-faq-ico { transform: rotate(45deg); }
.lp-faq details p { padding: 0 0 22px; color: var(--lp-ink-2); font-size: 15.5px; max-width: 620px; }

/* ── CTA final ──────────────────────────────────────────── */
.lp-final { position: relative; text-align: center; overflow: hidden; padding-bottom: 160px; }
.lp-final .lp-sec-sub { margin: 0 auto; }
.lp-final .lp-hero-ctas { justify-content: center; }
.lp-final-glow {
  position: absolute;
  inset: auto -30% -40%;
  height: 80%;
  background:
    radial-gradient(46% 60% at 50% 80%, rgba(61, 107, 232, 0.12), transparent 70%),
    radial-gradient(30% 40% at 72% 70%, rgba(245, 158, 11, 0.07), transparent 70%);
  pointer-events: none;
}

/* ── Footer ─────────────────────────────────────────────── */
.lp-footer { border-top: 1px solid var(--lp-hairline); padding: 56px 0 48px; }
.lp-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.lp-footer-tag { font-size: 14px; color: var(--lp-ink-2); }
.lp-footer-links { display: flex; gap: 24px; }
.lp-footer-links a {
  font-size: 13.5px;
  color: var(--lp-ink-2);
  text-decoration: none;
}
.lp-footer-links a:hover { color: var(--lp-ink); }
.lp-footer-legal { font-size: 12.5px; color: var(--ui-text-4); margin-top: 8px; }

/* ── Sticky CTA mobile ──────────────────────────────────── */
.lp-sticky {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: var(--z-raised);
  display: none;
  transform: translateY(120%);
  transition: transform 0.6s var(--lp-ease);
}
.lp-sticky.is-on { transform: translateY(0); }
.lp-sticky .lp-btn {
  width: 100%;
  justify-content: center;
  padding: 15px 22px;
  box-shadow: 0 16px 48px -12px rgba(61, 107, 232, 0.65);
}

/* ── Reveals al scroll ──────────────────────────────────── */
.lp-reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s var(--lp-ease), transform 0.9s var(--lp-ease), filter 0.9s var(--lp-ease);
}
.lp-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .lp-menu > a, .lp-btn, .lp-show-card { transition: none; }
}

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-split, .lp-split-rev { grid-template-columns: 1fr; gap: 40px; }
  .lp-split-rev .lp-split-visual { order: 2; }
  .lp-bento-a, .lp-bento-b, .lp-bento-c, .lp-bento-d, .lp-bento-e, .lp-bento-f {
    grid-column: span 12;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .lp-sec { padding: 80px 0; }
  .lp-hero { padding: 132px 0 72px; }
  .lp-nav { gap: 14px; padding: 8px 8px 8px 16px; }
  .lp-nav-links, .lp-nav-login { display: none; }
  .lp-nav-actions .lp-btn { display: none; }
  .lp-nav-burger { display: block; }
  .lp-pain-grid, .lp-steps, .lp-plans { grid-template-columns: 1fr; gap: 16px; }
  .lp-steps { gap: 36px; }
  .lp-showcase-track { justify-content: flex-start; padding: 16px 24px 32px; }
  .lp-show-card { flex-basis: 200px; }
  .lp-sticky { display: block; }
  .lp-hero-visual { margin-top: 48px; }
  .lp-bezel { border-radius: 22px; padding: 5px; }
  .lp-bezel-core { border-radius: 17px; }
  body { font-size: 16px; }
  /* H1 ≤2 líneas en 375px (criterio C8 del blueprint) */
  h1 { font-size: clamp(28px, 8.2vw, 42px); }
}
