/* Stable — Landing Dueños */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #120d1f;
  --bg-2: #191230;
  --panel: #211a3d;
  --panel-2: #2a2154;
  --line: rgba(187, 167, 245, 0.14);
  --cream: #f4f1fa;
  --muted: #a89fc4;
  --lav: #bba7f5;
  --accent: #8b5cf6;
  --accent-soft: rgba(139, 92, 246, 0.16);
  --gold: #e8c97a;
  --green: #7ed9a7;
  --red: #e98a8a;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --speed: 1.2;
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #fff; }

/* ---------- shared ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: clamp(56px, 8vw, 120px) 0; }

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--lav);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.eyebrow::before {
  content: '';
  width: 34px; height: 1px;
  background: var(--lav);
  opacity: 0.6;
}
h1, h2, .serif { font-family: var(--serif); font-weight: 500; letter-spacing: 0.005em; }
h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12;
  margin: 18px 0 14px;
  text-wrap: balance;
}
.lead { color: var(--muted); font-size: clamp(17px, 1.5vw, 20px); max-width: 56ch; text-wrap: pretty; }
.section-head { margin-bottom: clamp(40px, 5vw, 72px); }
.section-head.center { text-align: center; }
.section-head.center .lead { margin: 0 auto; }
.section-head.center .eyebrow::before { display: none; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 600 16px/1 var(--sans);
  padding: 17px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.4), box-shadow 0.35s ease, background 0.3s ease, border-color 0.3s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), color-mix(in oklch, var(--accent) 70%, #c4b0ff));
  color: #fff;
  box-shadow: 0 10px 34px -10px color-mix(in srgb, var(--accent) 65%, transparent);
}
.btn-primary:hover { box-shadow: 0 18px 44px -10px color-mix(in srgb, var(--accent) 80%, transparent); }
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
}
.btn-primary:hover::after { animation: shine calc(0.9s / var(--speed)) ease forwards; }
@keyframes shine { to { transform: translateX(120%); } }
.btn-ghost {
  background: rgba(244, 241, 250, 0.04);
  border-color: rgba(187, 167, 245, 0.35);
  color: var(--cream);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--lav); background: rgba(187, 167, 245, 0.1); }

/* reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(5px);
  transition:
    opacity calc(0.9s / var(--speed)) cubic-bezier(0.2, 0.65, 0.25, 1),
    transform calc(0.9s / var(--speed)) cubic-bezier(0.2, 0.65, 0.25, 1),
    filter calc(0.9s / var(--speed)) ease;
  transition-delay: calc(var(--d, 0) * 1ms / var(--speed));
}
[data-reveal].in { opacity: 1; transform: none; filter: none; }
body.no-anim [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
  * { animation-duration: 0.01s !important; animation-iteration-count: 1 !important; }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(18, 13, 31, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo .icon svg { height: 56px; width: auto; display: block; transition: height 0.4s ease; }
.nav.scrolled .nav-logo .icon svg { height: 46px; }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 15px; font-weight: 500; }
.nav-links a:not(.btn) { color: var(--muted); position: relative; transition: color 0.25s; }
.nav-links a:not(.btn):hover { color: var(--cream); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--lav);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.6, 0, 0.2, 1);
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links .btn { padding: 12px 22px; font-size: 14px; }
.nav-burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  color: var(--cream);
  -webkit-tap-highlight-color: transparent;
}
.nav-burger svg { width: 34px; height: 34px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background:
    radial-gradient(130% 80% at 50% 0%, rgba(42, 33, 84, 0.65), transparent 62%),
    rgba(15, 11, 26, 0.98);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mm-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.mm-brand {
  font-family: var(--serif); font-weight: 700; font-size: 24px;
  color: var(--cream);
}
.mobile-close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(244, 241, 250, 0.06);
  border: 1px solid var(--line);
  color: var(--cream); cursor: pointer;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-close:hover { background: rgba(244, 241, 250, 0.12); }
.mobile-close svg { width: 24px; height: 24px; }

.mm-nav {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  gap: 4px;
  width: 100%; max-width: 440px; margin: 0 auto;
  padding: 24px 28px calc(24px + env(safe-area-inset-bottom));
}
.mm-aud {
  display: flex; align-items: center; gap: 6px;
  padding: 6px; margin-bottom: 20px;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(244, 241, 250, 0.03);
}
.mm-aud .aud {
  flex: 1; text-align: center;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 13px 10px; border-radius: 999px;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.mm-aud .aud::after { display: none !important; }
.mm-aud .aud-active { background: var(--accent-soft); color: var(--cream); }

.mm-link {
  font-family: var(--serif); font-size: 30px; line-height: 1.2;
  color: var(--cream);
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease, color 0.2s;
}
.mm-link:hover { color: var(--lav); }
.mobile-menu.open .mm-link { opacity: 1; transform: none; }
.mobile-menu.open .mm-link:nth-of-type(1) { transition-delay: 0.05s; }
.mobile-menu.open .mm-link:nth-of-type(2) { transition-delay: 0.1s; }
.mobile-menu.open .mm-link:nth-of-type(3) { transition-delay: 0.15s; }

.mm-cta {
  margin-top: 24px;
  text-align: center;
  padding: 16px;
  font-size: 16px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s ease 0.2s, transform 0.45s ease 0.2s, box-shadow 0.3s;
}
.mobile-menu.open .mm-cta { opacity: 1; transform: none; }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -4% 0 -4% -15%;
  z-index: 0;
  background: var(--bg-2);
  will-change: transform;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right 30%;
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 13, 31, 0.94) 0%, rgba(18, 13, 31, 0.78) 38%, rgba(18, 13, 31, 0.25) 75%, rgba(18, 13, 31, 0.45) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 30%),
    linear-gradient(180deg, rgba(18, 13, 31, 0.6) 0%, transparent 24%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero h1 {
  font-size: clamp(46px, 6.6vw, 92px);
  line-height: 1.05;
  margin: 26px 0 24px;
}
.hero h1 .hl { color: var(--lav); }
.h1-line { display: block; overflow: hidden; }
.h1-line > span { display: block; transform: translateY(115%); transition: transform calc(1.1s / var(--speed)) cubic-bezier(0.16, 0.8, 0.24, 1); transition-delay: calc(var(--d) * 1ms / var(--speed)); }
.hero.in .h1-line > span, body.no-anim .h1-line > span { transform: none; }
.hero .lead { margin-bottom: 38px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
}
.hero-scroll i {
  width: 1px; height: 44px;
  background: linear-gradient(var(--lav), transparent);
  display: block;
  animation: drip calc(2s / var(--speed)) ease-in-out infinite;
  transform-origin: top;
}
@keyframes drip { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

/* ---------- problema ---------- */
.problema { background: var(--bg); }
.quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.4;
  color: var(--cream);
  max-width: 30ch;
  margin-top: 34px;
  text-align: center;
  margin-inline: auto;
}
.quote em {
  font-style: normal;
  color: var(--lav);
  background-image: linear-gradient(var(--lav), var(--lav));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 96%;
  transition: background-size calc(1.4s / var(--speed)) cubic-bezier(0.6, 0, 0.2, 1) 0.5s;
}
.in .quote em, body.no-anim .quote em { background-size: 100% 1px; }
.problema-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(44px, 5vw, 70px);
}
.pain {
  background: linear-gradient(170deg, var(--panel), color-mix(in srgb, var(--panel) 75%, var(--bg)));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 26px 32px;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.2), border-color 0.35s ease, background 0.35s ease;
}
.pain:hover { transform: translateY(-8px) rotate(-0.5deg); border-color: rgba(187, 167, 245, 0.4); }
.pain .icon { width: 64px; height: 64px; margin: 0 0 18px -8px; }
.pain h3 { font-family: var(--serif); font-size: 23px; font-weight: 500; margin-bottom: 10px; }
.pain p { color: var(--muted); font-size: 15.5px; }

/* icon stroke draw */
.icon { display: block; flex: none; }
.icon svg { width: 100%; height: 100%; overflow: visible; display: block; }
.icon.draw svg .cls-2 { transition: stroke-dashoffset calc(1.6s / var(--speed)) cubic-bezier(0.5, 0, 0.2, 1) calc(var(--d, 0) * 1ms / var(--speed)); }

/* ---------- solucion ---------- */
.solucion { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.feature {
  position: relative;
  background: rgba(33, 26, 61, 0.55);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px 30px 36px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.2), border-color 0.35s ease;
}
.feature::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(420px 220px at var(--mx, 50%) var(--my, 0%), var(--accent-soft), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.feature:hover { transform: translateY(-6px); border-color: rgba(187, 167, 245, 0.42); }
.feature:hover::before { opacity: 1; }
.feature .icon { width: 60px; height: 60px; margin: 0 0 20px -6px; }
.feature h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 10px; line-height: 1.25; }
.feature p { color: var(--muted); font-size: 15.5px; }
.badge-premium {
  position: absolute; top: 24px; right: 24px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  background: color-mix(in srgb, var(--gold) 10%, transparent);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---------- asi se ve ---------- */
.asiseve { overflow: hidden; }
.phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}
.phone-card { text-align: center; }
.phone-card:nth-child(2) { margin-top: 56px; }
.phone-frame {
  position: relative;
  border-radius: 28px;
  margin-bottom: 22px;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.15);
}
.phone-card:hover .phone-frame { transform: translateY(-10px) scale(1.02); }
.phone-frame img {
  width: 100%;
  animation: floaty calc(7s / var(--speed)) ease-in-out infinite;
  animation-delay: calc(var(--fd, 0) * 1s);
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.45));
}
body.no-anim .phone-frame img { animation: none; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 8px; }
.phone-card p { color: var(--muted); font-size: 15.5px; max-width: 34ch; margin: 0 auto; }

/* ---------- como funciona (3 pasos) ---------- */
.pasos {
  background: url('assets/bg-pasos.png') center / cover no-repeat;
  border-radius: clamp(0px, 4vw, 48px);
  margin: 0 clamp(0px, 3vw, 40px);
  overflow: hidden;
}
.pasos::before { content: ''; position: absolute; inset: 0; background: radial-gradient(900px 500px at 80% 110%, rgba(139, 92, 246, 0.25), transparent 70%); pointer-events: none; }
.pasos-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.steps { position: relative; margin: 46px 0 40px; display: grid; gap: 38px; }
.steps::before {
  content: '';
  position: absolute;
  left: 27px; top: 16px; bottom: 16px;
  width: 1px;
  background: linear-gradient(var(--lav), transparent 96%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform calc(1.6s / var(--speed)) cubic-bezier(0.6, 0, 0.2, 1) 0.3s;
}
.in .steps::before, body.no-anim .steps::before { transform: scaleY(1); }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: start; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 24px;
  background: var(--bg);
  border: 1px solid rgba(187, 167, 245, 0.45);
  color: var(--lav);
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px rgba(18, 13, 31, 0.55);
}
.step h3 { font-family: var(--serif); font-size: 25px; font-weight: 500; margin: 8px 0 6px; }
.step p { color: var(--muted); font-size: 15.5px; max-width: 44ch; }
.pasos-phone { position: relative; }
.pasos-phone img {
  width: min(420px, 100%);
  margin: 0 auto;
  animation: floaty calc(8s / var(--speed)) ease-in-out infinite;
  filter: drop-shadow(0 50px 60px rgba(0, 0, 0, 0.5));
}
body.no-anim .pasos-phone img { animation: none; }

/* ---------- pension ---------- */
.pension-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.pension-photo {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  max-height: 640px;
}
.pension-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transition: transform calc(1.4s / var(--speed)) cubic-bezier(0.2, 0.7, 0.2, 1); }
.pension-photo:hover img { transform: scale(1.045); }
.sync-diagram {
  margin: 38px 0 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}
.sync-node {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  text-align: center;
}
.sync-node b { display: block; font-family: var(--serif); font-weight: 500; font-size: 19px; margin-bottom: 4px; }
.sync-node span { color: var(--muted); font-size: 13.5px; line-height: 1.45; display: block; }
.sync-link { position: relative; width: clamp(48px, 7vw, 110px); height: 2px; }
.sync-link::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(90deg, var(--lav) 40%, transparent 40%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: 0 center;
  opacity: 0.5;
}
.sync-link i {
  position: absolute; top: 50%; left: 0;
  width: 9px; height: 9px;
  margin-top: -4.5px;
  border-radius: 50%;
  background: var(--lav);
  box-shadow: 0 0 14px 3px color-mix(in srgb, var(--accent) 60%, transparent);
  animation: travel calc(2.4s / var(--speed)) ease-in-out infinite;
}
body.no-anim .sync-link i { animation: none; left: 50%; }
@keyframes travel { 0% { left: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: calc(100% - 9px); opacity: 0; } }
.sync-caption { text-align: center; color: var(--lav); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 36px; }
.pension-list { display: grid; gap: 18px; list-style: none; }
.pension-list li { display: grid; grid-template-columns: 26px 1fr; gap: 14px; align-items: start; color: var(--muted); font-size: 16.5px; }
.pension-list .icon { width: 26px; height: 26px; margin-top: 2px; display: inline-block; }
.pension-list strong { color: var(--cream); font-weight: 600; }

/* ---------- planes ---------- */
.planes { background: linear-gradient(180deg, var(--bg), var(--bg-2) 60%, var(--bg)); }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 460px));
  justify-content: center;
  gap: 26px;
  align-items: stretch;
}
.plan {
  border-radius: 28px;
  padding: 42px 38px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.15);
}
.plan:hover { transform: translateY(-8px); }
.plan-free {
  background: rgba(244, 241, 250, 0.03);
  border: 1px solid rgba(244, 241, 250, 0.75);
  color: var(--cream);
}
.plan-free .plan-feats li { color: var(--cream); }
.plan-free .plan-feats li.off { color: rgba(244, 241, 250, 0.45); }
.plan-premium {
  background: linear-gradient(180deg, #241b46, #170f2e);
  border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
  box-shadow: 0 30px 80px -30px rgba(232, 201, 122, 0.18);
}
.plan-premium::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(540px 240px at 50% -10%, rgba(232, 201, 122, 0.16), transparent 70%);
  pointer-events: none;
}
.plan-tag {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #d4a94e);
  color: #241a06;
  font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.plan h3 .icon { width: 30px; height: 30px; display: inline-block; }
.plan-price { font-family: var(--serif); font-size: clamp(46px, 4vw, 60px); line-height: 1; margin: 18px 0 6px; }
.plan-price small { font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.02em; }
.plan-sub { font-size: 15px; margin-bottom: 26px; color: var(--muted); }
.plan-feats { list-style: none; display: grid; gap: 13px; margin-bottom: 34px; }
.plan-feats li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: 15.5px; color: var(--muted); align-items: start; }
.plan-feats .icon { width: 22px; height: 22px; margin-top: 2px; }
.plan-feats li.off { opacity: 0.55; text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.25); }
.plan .btn { margin-top: auto; width: 100%; }
.plan-free .btn {
  background: rgba(244, 241, 250, 0.06);
  border-color: rgba(244, 241, 250, 0.7);
  color: var(--cream);
}
.plan-free .btn:hover { background: rgba(244, 241, 250, 0.14); box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.5); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d2a64a);
  color: #241a06;
  box-shadow: 0 12px 34px -12px rgba(232, 201, 122, 0.45);
}

/* ---------- cta final + footer ---------- */
.final {
  text-align: center;
  padding-bottom: 60px;
  overflow: hidden;
}
.final h2 { font-size: clamp(38px, 5.6vw, 72px); max-width: 17ch; margin-inline: auto; }
.final h2 .hl { color: var(--lav); }
.final .btn { margin-top: 38px; }
.final-glow {
  position: absolute;
  left: 50%; bottom: -240px;
  width: 760px; height: 480px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 32%, transparent), transparent);
  pointer-events: none;
}
footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 44px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14.5px;
}
.footer-inner .icon svg { height: 48px; width: auto; display: block; }
.footer-links { display: flex; gap: 28px; }
.footer-links a:hover { color: var(--cream); }

/* ---------- responsive ---------- */
@media (max-height: 700px) {
  .hero-scroll { display: none; }
}
@media (max-width: 1020px) {
  .problema-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pasos-grid { grid-template-columns: 1fr; }
  .pension-grid { grid-template-columns: 1fr; }
  .pension-photo { order: -1; aspect-ratio: 16 / 9; max-height: 440px; width: 100%; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .eyebrow { font-size: 13px; letter-spacing: 0.3em; white-space: normal; }
  .eyebrow::before { width: 22px; }
  section { padding: 40px 0; }
  .section-head { margin-bottom: 32px; }
  .hero { padding: 104px 0 48px; min-height: 92svh; }
  .hero-bg { inset: -4% 0; }
  .hero-bg img { object-position: 72% 30%; }
  .hero-veil {
    background:
      linear-gradient(0deg, var(--bg) 4%, rgba(18, 13, 31, 0.55) 45%, rgba(18, 13, 31, 0.82) 100%);
  }
  .hero-ctas .btn { width: 100%; }
  .problema-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .pain { padding: 20px 20px 22px; border-radius: 18px; }
  .pain .icon { width: 48px; height: 48px; margin: 0 0 12px -4px; }
  .pain h3 { font-size: 20px; margin-bottom: 6px; }
  .pain p { font-size: 14.5px; }
  .feature-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature { padding: 22px 22px 24px; border-radius: 18px; }
  .feature .icon { width: 46px; height: 46px; margin: 0 0 12px -4px; }
  .feature h3 { font-size: 21px; }
  .feature p { font-size: 14.5px; }
  /* pantallas en slider horizontal para no alargar la página */
  .phones {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    gap: 16px;
    margin: 0 -24px;
    padding: 4px 24px 18px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .phones::-webkit-scrollbar { display: none; }
  .phone-card { flex: 0 0 78%; scroll-snap-align: center; }
  .phone-card:nth-child(2) { margin-top: 0; }
  .phone-frame img { max-width: 260px; margin: 0 auto; }
  .sync-diagram { grid-template-columns: 1fr; justify-items: center; }
  .sync-link { width: 2px; height: 56px; }
  .sync-link::before { background-image: linear-gradient(180deg, var(--lav) 40%, transparent 40%); background-size: 1px 10px; background-repeat: repeat-y; background-position: center 0; }
  .sync-link i { left: 50% !important; margin-left: -4.5px; animation-name: travelv; }
  @keyframes travelv { 0% { top: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: calc(100% - 9px); opacity: 0; } }
  .plan-grid { grid-template-columns: 1fr; }
  .plan { padding: 36px 26px; }
  .hero-scroll { display: none; }
}

/* ============================================================
   V2 additions — audience switcher, hero tagline, 4-col footer
   ============================================================ */

/* ---------- nav audience switcher ---------- */
.aud-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 241, 250, 0.03);
}
.aud-switch .aud {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.25s, background 0.25s;
}
.aud-switch .aud::after { display: none !important; }
.aud-switch .aud:hover { color: var(--cream); }
.aud-switch .aud-active { background: var(--accent-soft); color: var(--cream); }

/* ---------- hero tagline ---------- */
.hero-tagline {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--lav);
  margin-bottom: 12px;
}

/* ---------- footer (4 columns) ---------- */
footer { background: var(--bg-2); padding: 64px 0 34px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}
.foot-brand .foot-logo svg { height: 46px; width: auto; display: block; margin-bottom: 16px; }
.foot-brand p { color: var(--muted); font-size: 14.5px; max-width: 34ch; }
.foot-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.25s;
}
.foot-ig svg { width: 19px; height: 19px; }
.foot-ig:hover { color: var(--cream); }
.foot-col h4, .news h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lav);
  margin-bottom: 16px;
  font-weight: 700;
}
.foot-col a { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 11px; transition: color 0.2s; }
.foot-col a:hover { color: var(--cream); }
.news p { color: var(--muted); font-size: 13.5px; margin-bottom: 14px; max-width: 32ch; }
.news form { display: flex; gap: 9px; }
.news input {
  flex: 1; min-width: 0;
  background: rgba(244, 241, 250, 0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
}
.news input:focus { border-color: var(--accent); }
.news button {
  background: linear-gradient(135deg, var(--accent), color-mix(in oklch, var(--accent) 70%, #c4b0ff));
  border: 0;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 0 18px;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow 0.25s, transform 0.25s;
}
.news button:hover { box-shadow: 0 12px 28px -10px color-mix(in srgb, var(--accent) 70%, transparent); transform: translateY(-1px); }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.foot-bottom .cr { color: var(--muted); font-size: 13.5px; }
.foot-bottom .made-by { margin: 0 auto; }
.foot-legal { display: flex; gap: 22px; }
.foot-legal a { color: var(--muted); font-size: 13.5px; transition: color 0.2s; }
.foot-legal a:hover { color: var(--cream); }
.made-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(244, 241, 250, 0.03);
  transition: color 0.3s, border-color 0.3s, transform 0.3s;
}
.made-by:hover { color: var(--cream); border-color: rgba(187, 167, 245, 0.4); transform: translateY(-2px); }
.made-by .sl-mark { display: inline-flex; color: var(--accent); transition: color 0.3s, transform 0.4s; }
.made-by .sl-mark svg { width: 16px; height: 16px; }
.made-by:hover .sl-mark { color: var(--gold); transform: rotate(180deg); }
.made-by .sl-name { font-family: var(--serif); font-weight: 600; color: var(--cream); }

@media (max-width: 1020px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 980px) and (min-width: 721px) {
  .nav-links { gap: 18px; }
  .aud-switch .aud { padding: 6px 10px; font-size: 12.5px; }
}
@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .foot-bottom .made-by { margin: 0; }
}
