:root {
  --ink: #0a0a0a;
  --muted: #525252;
  --line: #e5e5e5;
  --paper: #fafafa;
  --white: #ffffff;
  --font: "Inter", "SF Pro Text", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.nav-links a:hover { color: var(--ink); }
.nav-links button[data-view-target],
.nav-drawer button[data-view-target] {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  font-size: inherit;
  line-height: inherit;
}
.nav-drawer button[data-view-target] {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: left;
}
.text-slate-900 { color: #0f172a; }
.font-medium { font-weight: 500; }
.text-slate-500 { color: #64748b; }
.hover\:text-slate-700:hover { color: #334155; }
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.divide-y > :not([hidden]) ~ :not([hidden]) { border-top-width: 1px; border-top-style: solid; }
.divide-slate-200 > :not([hidden]) ~ :not([hidden]) { border-color: #e2e8f0; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-slate-200 { border-color: #e2e8f0; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.text-left { text-align: left; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.text-slate-400 { color: #94a3b8; }
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.duration-200 { transition-duration: 200ms; }
.landing-view[hidden] { display: none !important; }
.max-w-5xl { max-width: 64rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.bg-white { background-color: #fff; }
.bg-slate-50 { background-color: #f8fafc; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.border { border-width: 1px; border-style: solid; }
.border-slate-200\/80 { border-color: rgb(226 232 240 / 0.8); }
.p-6 { padding: 1.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.hover\:border-slate-300:hover { border-color: #cbd5e1; }
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.font-semibold { font-weight: 600; }
.text-slate-600 { color: #475569; }
.flex-col { flex-direction: column; }
.whitespace-nowrap { white-space: nowrap; }
.hover\:underline:hover { text-decoration: underline; text-underline-offset: 0.12em; }
.space-y-2 {
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding-left: 1.1rem;
  list-style: disc;
}
.space-y-2 > li + li { margin-top: 0.5rem; }
#confianza h3 { margin: 0; }
#confianza .flex p { margin: 0; }
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.overflow-hidden { overflow: hidden; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.1), 0 4px 6px -4px rgb(15 23 42 / 0.08); }
.bg-slate-900 { background-color: #0f172a; }
.text-white { color: #fff; }
.border-slate-800 { border-color: #1e293b; }
.line-through { text-decoration: line-through; }
.list-none { list-style: none; padding: 0; margin: 0; }
.gap-3 { gap: 0.75rem; }
.p-5 { padding: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-4xl { max-width: 56rem; }
.items-stretch { align-items: stretch; }
.items-start { align-items: flex-start; }
.p-8 { padding: 2rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mb-0 { margin-bottom: 0; }
.m-0 { margin: 0; }
.min-w-0 { min-width: 0; }
.min-w-\[44rem\] { min-width: 44rem; }
.relative { position: relative; }
.absolute { position: absolute; }
.-top-3 { top: -0.75rem; }
.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.border-2 { border-width: 2px; }
.border-slate-900 { border-color: #0f172a; }
.border-slate-100 { border-color: #f1f5f9; }
.border-collapse { border-collapse: collapse; }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(15 23 42 / 0.1), 0 2px 4px -2px rgb(15 23 42 / 0.08); }
.rounded-full { border-radius: 9999px; }
.rounded { border-radius: 0.25rem; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-200\/60 { background-color: rgb(226 232 240 / 0.6); }
.bg-slate-50\/80 { background-color: rgb(248 250 252 / 0.8); }
.text-slate-800 { color: #1e293b; }
.text-slate-700 { color: #334155; }
.text-slate-300 { color: #cbd5e1; }
.text-emerald-600 { color: #059669; }
.text-\[11px\] { font-size: 11px; line-height: 1rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-center { text-align: center; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.uppercase { text-transform: uppercase; }
.font-bold { font-weight: 700; }
.block { display: block; }
.shrink-0 { flex-shrink: 0; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.overflow-x-auto { overflow-x: auto; }
.hover\:bg-slate-800:hover { background-color: #1e293b; }
.hover\:bg-slate-200:hover { background-color: #e2e8f0; }
.hover\:bg-slate-50\/50:hover { background-color: rgb(248 250 252 / 0.5); }
.space-y-3 { margin: 1.25rem 0 0; padding: 0; list-style: none; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-preview { min-width: 0; }
.niche-tabs {
  display: flex;
  gap: 0.2rem;
  margin: 0 0 0.85rem;
  padding: 0.22rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.7rem;
}
.niche-tab {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  padding: 0.48rem 0.35rem;
  border-radius: 0.55rem;
  cursor: pointer;
  white-space: nowrap;
}
.niche-tab[aria-selected="true"] {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.08);
}
.bento-kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 0.7rem;
}
#producto article h3 { margin: 0 0 0.4rem; }
#producto article p.text-sm { margin: 0; }
.exp-chrome-body { padding: 1.15rem 1.2rem 1.25rem; }
.exp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  border-bottom: 1px solid #e2e8f0;
  margin: 0 0 1.1rem;
}
.exp-tab {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 0 0 0.7rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
}
.exp-tab[aria-selected="true"] {
  color: #0f172a;
  border-bottom-color: #0f172a;
}
.exp-tab:hover { color: #334155; }
.exp-panel[hidden] { display: none !important; }
.flow-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.55rem 0;
  font-size: 0.9rem;
  line-height: 1.45;
}
.flow-item svg { flex: 0 0 1rem; width: 1rem; height: 1rem; margin-top: 0.18rem; }
.flow-col.is-dark .flow-label { color: #94a3b8; }
.epi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  font-size: 0.82rem;
}
.epi-cell {
  border: 1px solid #e2e8f0;
  border-radius: 0.55rem;
  padding: 0.65rem 0.7rem;
}
.epi-cell span { display: block; color: #64748b; font-size: 0.68rem; margin-bottom: 0.15rem; }
.hist-list { margin: 0; padding: 0; list-style: none; font-size: 0.82rem; }
.hist-list li { display: flex; justify-content: space-between; gap: 0.75rem; padding: 0.45rem 0; border-bottom: 1px solid #e2e8f0; }
.hist-list li:last-child { border-bottom: 0; }
.hist-list time { color: #94a3b8; font-size: 0.72rem; white-space: nowrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.6rem;
  padding: 0 1.1rem;
  border-radius: 0.55rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { opacity: 0.9; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--paper); }
.hero {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}
h1 {
  font-size: clamp(2.15rem, 4.1vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin: 0 0 1.1rem;
}
.lede {
  font-size: 1.05rem;
  color: #475569;
  max-width: 38rem;
  margin: 0 0 1.75rem;
}
.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-top: 1.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.trust-row span { display: flex; align-items: center; gap: 0.4rem; }
.trust-row i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 99px;
  background: var(--ink);
  display: inline-block;
}
.mock {
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--paper);
}
.mock-bar {
  height: 2.4rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.9rem;
  font-size: 0.72rem;
  color: var(--muted);
}
.mock-dot { width: 0.5rem; height: 0.5rem; border-radius: 99px; background: #d4d4d4; }
.mock-body { display: grid; grid-template-columns: 7.5rem 1fr; min-height: 22rem; }
.mock-side {
  border-right: 1px solid var(--line);
  padding: 0.85rem 0.7rem;
  background: #f4f4f5;
  font-size: 0.68rem;
  color: var(--muted);
}
.mock-side b { display: block; color: var(--ink); margin: 0.7rem 0 0.35rem; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.mock-item { padding: 0.35rem 0.45rem; border-radius: 0.35rem; }
.mock-item.is-on { background: var(--white); color: var(--ink); font-weight: 600; }
.mock-main { padding: 1rem; }
.mock-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; }
.mock-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  padding: 0.55rem;
  min-height: 16rem;
}
.mock-col h4 { margin: 0 0 0.55rem; font-size: 0.68rem; font-weight: 600; color: var(--muted); }
.card-mini {
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  padding: 0.55rem;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
}
.card-mini strong { display: block; font-size: 0.78rem; margin-bottom: 0.15rem; }
.pill { display: inline-block; font-size: 0.62rem; color: var(--muted); }
.section { padding: 4rem 0; border-top: 1px solid var(--line); }
.section h2 {
  font-size: 1.85rem;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.section-sub { color: #475569; margin: 0 0 2rem; max-width: 38rem; }
.section h3 { font-weight: 600; }
.section-sub a { text-decoration: underline; text-underline-offset: 0.12em; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.step {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.35rem 1.25rem;
  min-height: 11rem;
}
.step-n {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.step h3 { margin: 0 0 0.45rem; font-size: 1.05rem; font-weight: 600; letter-spacing: -0.03em; }
.step p { margin: 0; color: #475569; font-size: 0.9rem; }
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.fact {
  padding: 1.2rem 1rem;
  background: var(--paper);
  border-radius: 0.75rem;
}
.fact b { display: block; font-size: 1.05rem; letter-spacing: -0.03em; margin-bottom: 0.25rem; }
.fact span { color: var(--muted); font-size: 0.85rem; }
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.plan {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.4rem 1.25rem;
}
.plan.is-rec {
  border: 1.5px solid var(--ink);
  box-shadow: 0 14px 36px rgba(10, 10, 10, 0.12);
}
.plan-badge {
  position: absolute;
  top: 0;
  left: 1.25rem;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.plan h3 { margin: 0 0 0.2rem; font-size: 1.05rem; }
.plan .price { font-size: 1.7rem; letter-spacing: -0.04em; font-weight: 650; margin: 0.6rem 0; }
.plan ul { margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 0.88rem; }
.plan li { padding: 0.28rem 0; }
.plan-perks {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}
.plan-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: #3f3f46;
}
.plan-perks li::before {
  content: "";
  flex: 0 0 0.9rem;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.22rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.2 8.2l3.1 3.1 6.5-7' stroke='%2315803d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
#precio table svg { display: block; }
.plans-cta { margin: 1.5rem 0 0; }
.plans-cta .btn {
  height: auto;
  min-height: 2.6rem;
  padding: 0.7rem 1.15rem;
  text-align: center;
}
.plans-cta-note {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  color: var(--muted);
}
.trial-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
  border: 1px dashed var(--ink);
  border-radius: 0.85rem;
  padding: 1.25rem 1.4rem;
  margin: 0 0 1.25rem;
  background: var(--paper);
}
.trial-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  margin-bottom: 0.45rem;
}
.trial-box h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}
.trial-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 40rem;
}
.trial-box-meta {
  text-align: right;
  white-space: nowrap;
}
.trial-box-meta .price {
  font-size: 1.7rem;
  font-weight: 650;
  letter-spacing: -0.04em;
  margin: 0;
}
.trial-box-meta span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.trial-box-meta .btn {
  margin-top: 0.75rem;
}
.compare-wrap { margin-top: 2.25rem; }
.compare-title {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
}
.compare {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.compare th,
.compare td {
  padding: 0.72rem 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}
.compare thead th {
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare tbody th {
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
  color: var(--ink);
  background: var(--white);
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 0; }
.compare thead th:nth-child(2),
.compare tbody td:nth-child(2) { background: #f4f4f5; }
.compare thead th:nth-child(4),
.compare tbody td:nth-child(4) { background: #fafafa; }
.compare .is-best { font-weight: 700; color: var(--ink); }
.compare .ok { color: #15803d; font-weight: 600; }
.compare .dash,
.compare .muted { color: var(--muted); }
.compare .hint {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
.foot {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}
.foot p { flex: 1 0 100%; margin: 0; }
.lexia-help {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 0.25rem;
  vertical-align: middle;
  cursor: help;
}
.lexia-help-q {
  display: inline-flex;
  width: 0.95rem;
  height: 0.95rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
}
.lexia-help-bubble {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.35rem);
  transform: translateX(-50%);
  width: 15.5rem;
  padding: 0.45rem 0.55rem;
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.35;
  border-radius: 0.4rem;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.lexia-help:hover .lexia-help-bubble,
.lexia-help:focus .lexia-help-bubble { opacity: 1; }
.lexia-mult-badge {
  font-weight: 700;
  font-size: 0.78rem;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 30;
  background: var(--ink);
  color: #fff;
  padding: 0.45rem 0.75rem;
  border-radius: 0.4rem;
}
.skip-link:focus { top: 0.75rem; }
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.nav-toggle {
  display: none;
  height: 2.4rem;
  padding: 0 0.85rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.nav-drawer a { color: var(--muted); font-size: 0.9rem; }
.nav-drawer .btn { width: 100%; }
.product-frame {
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.06);
}
.product-chrome {
  height: 2.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.9rem;
  font-size: 0.72rem;
  color: var(--muted);
}
.product-chrome-title { margin-left: 0.35rem; }
.product-body {
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  min-height: 22rem;
}
.product-side {
  border-right: 1px solid var(--line);
  padding: 0.85rem 0.65rem;
  background: #f4f4f5;
  font-size: 0.68rem;
  color: var(--muted);
}
.product-side b {
  display: block;
  color: var(--ink);
  margin: 0.55rem 0 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-board {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  overflow-x: auto;
}
.product-board[hidden] { display: none !important; }
.pcol {
  flex: 0 0 9.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  padding: 0.5rem;
  min-height: 18rem;
}
.pcol h4 {
  margin: 0 0 0.5rem;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--muted);
}
.pcard {
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  padding: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
}
.pcard strong { display: block; font-size: 0.76rem; }
.pcard-meta { color: var(--muted); font-size: 0.62rem; }
.pbar {
  height: 3px;
  background: #ececec;
  border-radius: 99px;
  margin: 0.4rem 0 0.35rem;
}
.pbar i {
  display: block;
  height: 100%;
  background: var(--ink);
  border-radius: 99px;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}
.exp-frame {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.15rem 1.2rem;
  background: var(--white);
}
.exp-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}
.exp-fase {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  color: var(--ink);
}
.exp-name { margin: 0; font-size: 1.25rem; letter-spacing: -0.03em; }
.exp-meta { margin: 0.25rem 0 1rem; color: var(--muted); font-size: 0.82rem; }
.exp-check {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.75rem;
  font-size: 0.82rem;
}
.exp-check li::before { content: "○ "; color: #a3a3a3; }
.exp-check li.ok::before { content: "● "; color: #15803d; }
.exp-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.exp-table th, .exp-table td {
  text-align: left;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}
.split-copy article { margin-bottom: 1.15rem; }
.split-copy h3 { margin: 0 0 0.3rem; font-size: 1.02rem; font-weight: 600; letter-spacing: -0.03em; }
.split-copy p { margin: 0; color: #475569; font-size: 0.9rem; }
.flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.flow-col {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.2rem 1.25rem;
}
.flow-label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--muted);
}
.flow-col ul { margin: 0; padding: 0; }
.flow-col li { margin: 0.35rem 0; }
.limits {
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.faq {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.faq details {
  border: 0;
  border-radius: 0;
  padding: 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  background: none;
  border: 0;
  letter-spacing: -0.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex-shrink: 0; }
.faq details[open] > summary svg { transform: rotate(180deg); }
.faq details p {
  margin: 0;
  padding: 0 0 1.25rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 400;
}
@supports (interpolate-size: allow-keywords) {
  .faq details::details-content {
    height: 0;
    overflow: hidden;
    interpolate-size: allow-keywords;
    transition: height 0.2s ease, content-visibility 0.2s allow-discrete;
  }
  .faq details[open]::details-content { height: auto; }
}
.price-period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.price-iva {
  margin: -0.35rem 0 0.7rem;
  font-size: 0.72rem;
  color: var(--muted);
}
.plan-btn {
  margin-top: 1rem;
  width: 100%;
}
.legal-note {
  margin: 0 auto 0.5rem;
  padding-bottom: 1.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 44rem;
}
.prose { max-width: 44rem; padding: 3.5rem 0 5rem; }
.prose h1 { font-size: 2.2rem; margin-bottom: 0.75rem; }
.prose h2 { font-size: 1.15rem; margin: 2rem 0 0.5rem; letter-spacing: -0.03em; }
.prose p, .prose li { color: #404040; }
.prose ul { padding-left: 1.15rem; }
.prose a { text-decoration: underline; text-underline-offset: 0.12em; }
@media (max-width: 860px) {
  .hero, .mock-body, .steps, .facts, .split, .flow, .product-body { grid-template-columns: 1fr; }
  .niche-tabs { flex-wrap: wrap; }
  .niche-tab { flex: 1 1 calc(50% - 0.2rem); white-space: normal; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav-drawer:not([hidden]) { display: flex; }
  .hero { padding-top: 2.5rem; }
  .product-side { display: none; }
}
