:root {
  color-scheme: dark;
  --bg: #080b08;
  --bg-soft: #0f1510;
  --panel: #151c13;
  --panel-strong: #1c2618;
  --line: rgba(206, 228, 183, 0.16);
  --text: #f4f7f0;
  --muted: #b5bdae;
  --dim: #7e8878;
  --lime: #86c617;
  --lime-strong: #a8ee19;
  --gold: #e2ba4a;
  --red: #d94b4b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px 42px;
  background: rgba(8, 11, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--lime-strong);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
}

.header-cta {
  padding: 0 18px;
  background: var(--lime);
  color: #101608;
}

.header-tools,
.language-switch {
  display: flex;
  align-items: center;
}

.header-tools {
  gap: 12px;
}

.language-switch {
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switch button {
  min-width: 38px;
  min-height: 34px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.language-switch button[aria-pressed="true"] {
  background: var(--lime);
  color: #101608;
}

.language-switch button:focus-visible {
  outline: 2px solid var(--lime-strong);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("Banner.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 5, 0.96) 0%, rgba(5, 7, 5, 0.82) 34%, rgba(5, 7, 5, 0.34) 70%, rgba(5, 7, 5, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 7, 5, 0.48) 0%, rgba(5, 7, 5, 0.16) 52%, rgba(8, 11, 8, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 88px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 5.6rem;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  color: #e4eadd;
  font-size: 1.32rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
  margin-top: 30px;
}

.store-badge {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
}

.store-badge img {
  height: 72px;
  width: auto;
  margin: -11px;
}

.store-block {
  display: grid;
  gap: 2px;
  justify-items: center;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.store-badge.ios img {
  height: 50px;
  margin: 0;
  border-radius: 9px;
}

.store-note {
  margin: 0;
  color: var(--lime-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button.manual {
  gap: 10px;
  border: 1px solid rgba(226, 186, 74, 0.55);
  background: rgba(226, 186, 74, 0.1);
  color: var(--gold);
  box-shadow: 0 0 30px rgba(226, 186, 74, 0.1);
}

.hero-actions > .button {
  min-height: 50px;
}

.button.manual:hover,
.button.manual:focus-visible {
  background: rgba(226, 186, 74, 0.18);
}

.store-badge:hover img,
.store-badge:focus-visible img {
  transform: translateY(-1px);
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--lime-strong);
  color: #101608;
  box-shadow: 0 12px 36px rgba(134, 198, 23, 0.24);
}

.button.secondary {
  border-color: rgba(244, 247, 240, 0.22);
  background: rgba(244, 247, 240, 0.06);
  color: var(--text);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: min(920px, 100%);
  margin: 54px 0 0;
}

.proof-panel {
  position: relative;
  padding: 26px 26px 22px;
  border-radius: var(--radius);
  background: rgba(12, 16, 11, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.proof-panel.free {
  border: 1px solid rgba(168, 238, 25, 0.32);
  box-shadow: 0 0 44px rgba(134, 198, 23, 0.1);
}

.proof-panel.pro {
  border: 1px solid rgba(226, 186, 74, 0.42);
  box-shadow: 0 0 44px rgba(226, 186, 74, 0.12);
}

.proof-panel > .tag-free,
.proof-panel > .tag-pro {
  position: absolute;
  top: -11px;
  left: 22px;
  padding: 3px 14px;
  background: #0c100b;
  font-size: 0.72rem;
}

.proof-item + .proof-item {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(244, 247, 240, 0.14);
}

.proof-item h3 {
  position: relative;
  margin: 0 0 4px;
  padding-left: 24px;
  font-size: 1.08rem;
}

.proof-panel.free .proof-item h3 {
  color: var(--lime-strong);
}

.proof-panel.pro .proof-item h3 {
  color: var(--gold);
}

.proof-item h3::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.28em;
  width: 6px;
  height: 12px;
  border: solid currentColor;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.proof-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section,
.section-band,
.closing-cta {
  padding: 104px 0;
}

.section-band {
  background: #0d120d;
  border-bottom: 1px solid var(--line);
}

/* Franja de privacidad */
.privacy-band {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.privacy-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.privacy-strip div {
  position: relative;
  padding: 20px 22px 20px 52px;
  border: 1px solid rgba(168, 238, 25, 0.22);
  border-radius: var(--radius);
  background: rgba(134, 198, 23, 0.05);
}

.privacy-strip div::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 27px;
  width: 7px;
  height: 14px;
  border: solid var(--lime-strong);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.privacy-strip h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.privacy-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-dark {
  background:
    linear-gradient(180deg, #0d130d 0%, #070a07 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.intro-grid p:last-child,
.copy-block p,
.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 72px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 480px) minmax(0, 1fr);
}

.copy-block {
  max-width: 640px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #e5eadf;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--lime);
  box-shadow: 0 0 20px rgba(134, 198, 23, 0.45);
  transform: rotate(45deg);
}

.check-list.gold li::before {
  background: var(--gold);
  box-shadow: 0 0 20px rgba(226, 186, 74, 0.4);
}

/* Marco de móvil para capturas */
.device {
  padding: 10px;
  border: 1px solid rgba(244, 247, 240, 0.14);
  border-radius: 30px;
  background: #10140e;
  box-shadow: var(--shadow), 0 0 60px rgba(134, 198, 23, 0.07);
  position: relative;
}

.device::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: rgba(244, 247, 240, 0.16);
}

.device img {
  width: 100%;
  aspect-ratio: 1080 / 2340;
  object-fit: cover;
  border-radius: 20px;
}

.phone-stage {
  position: relative;
  justify-self: center;
  width: min(100%, 365px);
}

.phone-stage.multi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: min(100%, 480px);
  align-items: center;
}

.phone-stage.multi .device:first-child {
  margin-top: 46px;
}

.phone-stage.multi .device:last-child {
  margin-bottom: 46px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.compact {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.left {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 200ms ease, transform 200ms ease;
}

.feature-card:hover {
  border-color: rgba(168, 238, 25, 0.35);
  transform: translateY(-2px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(134, 198, 23, 0.12);
  color: var(--lime-strong);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card p,
.pro-panel p,
.faq-list p {
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(134, 198, 23, 0.14);
  color: var(--lime-strong);
  font-weight: 900;
}

.steps p {
  margin: 6px 0 0;
  color: #e5eadf;
}

.pro-section {
  background:
    linear-gradient(90deg, rgba(8, 11, 8, 0.94), rgba(8, 11, 8, 0.72)),
    url("Banner.png") center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.pro-copy p {
  max-width: 560px;
  color: #e2e8dc;
}

.pro-price {
  margin: 18px 0 12px;
  font-size: 1.25rem;
}

.pro-price strong {
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 900;
}

/* Opciones de pago PRO */
.price-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}

.price-options div {
  min-width: 132px;
  padding: 14px 18px;
  border: 1px solid rgba(226, 186, 74, 0.28);
  border-radius: var(--radius);
  background: rgba(8, 11, 8, 0.7);
  text-align: center;
}

.price-options div.is-featured {
  border-color: rgba(226, 186, 74, 0.65);
  background: rgba(226, 186, 74, 0.08);
  box-shadow: 0 0 30px rgba(226, 186, 74, 0.12);
}

.price-options strong {
  display: block;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
}

.price-options span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Señales de planificación */
.signal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.signal-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.signal-group {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.signal-group h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 1.02rem;
}

.signal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-chips li {
  padding: 5px 12px;
  border: 1px solid rgba(168, 238, 25, 0.28);
  border-radius: 999px;
  background: rgba(134, 198, 23, 0.08);
  color: #e5eadf;
  font-size: 0.85rem;
  font-weight: 600;
}

.signal-chips.gold li {
  border-color: rgba(226, 186, 74, 0.32);
  background: rgba(226, 186, 74, 0.07);
}

/* Etiquetas Gratis / PRO */
.tag-free,
.tag-pro {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-free {
  border: 1px solid rgba(168, 238, 25, 0.4);
  color: var(--lime-strong);
  background: rgba(134, 198, 23, 0.1);
}

.tag-pro {
  border: 1px solid rgba(226, 186, 74, 0.45);
  color: var(--gold);
  background: rgba(226, 186, 74, 0.08);
}

/* Precios en tarjeta de plan */
.plan-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 4px;
}

.plan-prices div {
  padding: 10px 8px;
  border: 1px solid rgba(226, 186, 74, 0.28);
  border-radius: var(--radius);
  background: rgba(8, 11, 8, 0.45);
  text-align: center;
}

.plan-prices div.is-featured {
  border-color: rgba(226, 186, 74, 0.65);
  background: rgba(226, 186, 74, 0.08);
}

.plan-prices strong {
  display: block;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
}

.plan-prices span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.trial-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.trial-strip li {
  position: relative;
  padding: 7px 14px 7px 32px;
  border: 1px solid rgba(226, 186, 74, 0.32);
  border-radius: 999px;
  background: rgba(8, 11, 8, 0.6);
  color: #e5eadf;
  font-size: 0.9rem;
  font-weight: 600;
}

.trial-strip li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 5px;
  height: 10px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: translateY(-62%) rotate(45deg);
}

.pro-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pro-panel div {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(226, 186, 74, 0.28);
  border-radius: var(--radius);
  background: rgba(8, 11, 8, 0.7);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.pro-panel h3 {
  color: var(--gold);
}

.compare-section {
  background: #0d120d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 940px;
  margin: 0 auto;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.plan-card.is-pro {
  border-color: rgba(226, 186, 74, 0.45);
  background: rgba(226, 186, 74, 0.05);
  box-shadow: 0 0 50px rgba(226, 186, 74, 0.08);
}

.plan-card h3 {
  font-size: 1.6rem;
}

.plan-card h3 span {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-card.is-pro h3 {
  color: var(--gold);
}

.plan-tagline {
  color: var(--muted);
}

.plan-card .check-list {
  margin: 18px 0 28px;
  gap: 10px;
  font-size: 0.98rem;
}

.plan-card .button {
  margin-top: auto;
}

.compare-details {
  max-width: 940px;
  margin: 26px auto 0;
  border: none;
  background: none;
}

.compare-details > summary {
  cursor: pointer;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  list-style: none;
}

.compare-details > summary::-webkit-details-marker {
  display: none;
}

.compare-details > summary:hover {
  color: var(--lime-strong);
  border-color: rgba(168, 238, 25, 0.35);
}

.compare-details[open] > summary {
  margin-bottom: 18px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare-table thead th {
  font-weight: 900;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.compare-table thead th.is-pro {
  color: var(--gold);
}

.compare-table tbody th {
  font-weight: 600;
  color: #e5eadf;
}

.compare-table td {
  width: 120px;
  text-align: center;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover th,
.compare-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}

.yes,
.no {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.yes {
  position: relative;
}

.yes::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid var(--lime-strong);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.no {
  position: relative;
}

.no::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--dim);
}

.compare-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.screen-gallery {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 42px;
  align-items: center;
}

.screen-view {
  justify-self: center;
  width: min(100%, 390px);
}

.screen-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.screen-thumbs button {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.screen-thumbs button.is-active {
  border-color: rgba(168, 238, 25, 0.82);
  box-shadow: 0 0 0 1px rgba(168, 238, 25, 0.25);
}

.screen-thumbs img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
}

.screen-thumbs span {
  min-height: 22px;
  font-weight: 900;
}

.faq-section {
  background: #0d120d;
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 68px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
}

.closing-cta {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8, 11, 8, 0.7), rgba(8, 11, 8, 0.96)),
    url("Banner.png") center / cover;
}

.closing-inner {
  display: grid;
  justify-items: center;
}

.closing-inner .hero-actions {
  justify-content: center;
}

.closing-inner > img {
  border-radius: 8px;
  margin-bottom: 18px;
}

.closing-inner p {
  max-width: 640px;
  color: var(--muted);
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: #050705;
  color: var(--dim);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner div {
  display: flex;
  gap: 20px;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--lime-strong);
}

/* Aparición suave al hacer scroll (solo con JS activo) */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 981px) and (max-width: 1120px) {
  .site-header {
    gap: 14px;
    padding: 16px 22px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .header-tools {
    gap: 8px;
  }

  .header-cta {
    padding: 0 12px;
  }

  .language-switch button {
    min-width: 34px;
    padding: 0 7px;
  }
}

@media (max-width: 980px) {
  section[id] {
    scroll-margin-top: 76px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
    padding: 14px 22px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-tools .header-cta {
    display: none;
  }

  .header-tools {
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 65px;
    left: 16px;
    right: 16px;
    z-index: 40;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 11, 8, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 14px;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 7, 5, 0.98) 0%, rgba(5, 7, 5, 0.82) 50%, rgba(5, 7, 5, 0.35) 100%),
      linear-gradient(180deg, rgba(5, 7, 5, 0.32) 0%, rgba(8, 11, 8, 0.95) 100%);
  }

  .intro-grid,
  .split,
  .split.reverse,
  .pro-layout,
  .screen-gallery,
  .faq-layout,
  .plan-cards,
  .signal-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-strip {
    grid-template-columns: 1fr;
  }

  .pro-panel {
    grid-template-columns: 1fr;
  }

  .section-heading.left {
    margin-bottom: 8px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-behavior: auto;
  }

  .section,
  .section-band,
  .closing-cta {
    padding: 72px 0;
  }

  .section-inner,
  .hero-content {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    background: rgba(8, 11, 8, 0.96);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 56px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-media {
    background-position: 63% center;
    transform: none;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 1.12rem;
  }

  .store-badge img {
    height: 62px;
    margin: -6px;
  }

  .hero-proof,
  .feature-grid,
  .screen-thumbs,
  .signal-panel {
    grid-template-columns: 1fr;
  }

  .price-options {
    display: grid;
    grid-template-columns: 1fr;
  }

  .plan-prices {
    grid-template-columns: 1fr;
  }

  .proof-panel {
    padding: 22px 18px 18px;
  }

  .phone-stage.multi {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .feature-card,
  .pro-panel div {
    min-height: auto;
  }

  .device {
    padding: 7px;
    border-radius: 22px;
  }

  .device img {
    border-radius: 15px;
  }

  .device,
  .phone-stage .device {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  }

  .pro-panel div {
    box-shadow: none;
  }

  .plan-card {
    padding: 24px;
  }

  .screen-thumbs {
    max-height: none;
    overflow: visible;
  }

  .screen-thumbs button {
    grid-template-columns: 82px 1fr;
    align-items: center;
  }

  .screen-thumbs img {
    height: 92px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .compare-table-wrap {
    border: none;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
  }

  .compare-table tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
  }

  .compare-table tbody th {
    padding: 14px 18px;
    font-weight: 900;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--line);
  }

  .compare-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    padding: 10px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .compare-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.92rem;
  }

  .compare-table tbody tr:last-child th,
  .compare-table tbody tr:last-child td {
    border-bottom: 1px solid var(--line);
  }

  .compare-table tr td:last-child {
    border-bottom: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
