:root {
  color-scheme: light;
  --bg: #ffffff;
  --card: #ffffff;
  --border: #e4e4e7;
  --text: #18181b;
  --muted: #71717a;
  --primary: #1f7a3d;
  --primary-hover: #185f30;
  --primary-tint: #eaf4ef;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
}
.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

/* ---- Top navigation ---- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.topnav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topnav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.topnav-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.topnav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.topnav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.topnav-link:hover {
  color: var(--text);
  background: #f4f4f5;
}
.topnav-link.active {
  color: var(--primary-hover);
  background: var(--primary-tint);
}
.topnav-link.cta {
  background: var(--primary);
  color: #fff;
  margin-left: 4px;
}
.topnav-link.cta:hover {
  background: var(--primary-hover);
  color: #fff;
}
@media (max-width: 640px) {
  .topnav-inner { height: auto; flex-wrap: wrap; padding: 12px 16px; }
  .topnav-links { width: 100%; justify-content: center; gap: 2px; }
  .topnav-link { padding: 7px 10px; font-size: 13px; }
}

/* ---- Secondary page header (non-Inicio pages) ---- */
.page-header {
  background: radial-gradient(120% 160% at 85% 10%, #142016 0%, #0a0e0a 55%, #080a08 100%);
  padding: 44px 20px 48px;
  text-align: center;
}
.page-header .eyebrow {
  background: rgba(111, 174, 46, 0.16);
  color: #8fd35c;
}
.page-header h1 {
  color: #fff;
  font-size: 28px;
  margin: 0 0 8px;
}
.page-header p.sub {
  color: #a1a1aa;
  max-width: 520px;
}

/* ---- Hero ---- */
.hero-band {
  background: radial-gradient(120% 160% at 85% 10%, #142016 0%, #0a0e0a 55%, #080a08 100%);
  padding: 64px 20px 72px;
}
.hero {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}
.hero-band h1 { color: #fff; }
.hero-band p.sub { color: #a1a1aa; }
.hero-band .eyebrow { background: rgba(111, 174, 46, 0.16); color: #8fd35c; }
.hero-band p.trial-inline { color: #a1a1aa; }
.hero-band p.trial-inline strong { color: #f4f4f5; }
.hero-band p.trial-inline::before { background: #6fae2e; }
.hero-band .carousel-viewport { border-color: rgba(255, 255, 255, 0.12); box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.6); }
.hero-band .carousel-btn { border-color: rgba(255, 255, 255, 0.18); }
.hero-band .carousel-dots button { background: rgba(255, 255, 255, 0.22); }
.hero-band .carousel-dots button.active { background: #8fd35c; }
img.logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 18px;
}
.eyebrow {
  display: inline-block;
  background: var(--primary-tint);
  color: var(--primary-hover);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
p.sub {
  color: var(--muted);
  font-size: clamp(15.5px, 1.8vw, 18px);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 560px;
}
p.trial-inline {
  font-size: 13.5px;
  color: var(--muted);
  margin: 18px 0 0;
}
p.trial-inline strong {
  color: var(--text);
  font-weight: 600;
}
p.trial-inline::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 7px;
  vertical-align: middle;
}

/* ---- Hero carousel ---- */
.hero-carousel {
  position: relative;
  max-width: 920px;
  margin: 48px auto 0;
}
.carousel-viewport {
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px -16px rgba(24, 24, 27, 0.22);
  overflow: hidden;
  background: var(--card);
  aspect-ratio: 16 / 9;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}
.carousel-slide {
  flex: 0 0 100%;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.dark-bg {
  background: radial-gradient(120% 160% at 50% 30%, #1f7a3d 0%, #142016 55%, #0a0e0a 100%);
}
.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(24, 24, 27, 0.14);
}
.carousel-btn:hover { background: var(--primary-tint); }
.carousel-btn.prev { left: -18px; }
.carousel-btn.next { right: -18px; }
@media (max-width: 640px) {
  .carousel-btn.prev { left: 6px; }
  .carousel-btn.next { right: 6px; }
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}
.carousel-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
}
.carousel-dots button.active {
  background: var(--primary);
  width: 20px;
  border-radius: 4px;
}

/* ---- Section intro ---- */
.section-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}
.section-intro h2 {
  font-size: 24px;
  margin: 0 0 8px;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
}
.section-intro p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

/* ---- Story prose (Sobre nosotros) ---- */
.story {
  max-width: 640px;
  margin: 0 auto 56px;
}
.story p {
  font-size: 15.5px;
  color: #3f3f46;
  margin: 0 0 16px;
}
.story p:last-child { margin-bottom: 0; }

/* ---- Feature blocks (screenshot + text) ---- */
.block {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 72px;
}
.block.reverse {
  flex-direction: row-reverse;
}
.block-media, .block-text {
  flex: 1 1 50%;
  min-width: 0;
}
.frame {
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px -12px rgba(24, 24, 27, 0.18);
  overflow: hidden;
  background: var(--card);
  cursor: zoom-in;
}
.frame img {
  display: block;
  width: 100%;
  height: auto;
}
.zoom-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.15s, transform 0.15s;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.zoom-badge svg { color: #fff; }
.frame:hover .zoom-badge {
  opacity: 1;
  transform: scale(1);
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s;
  z-index: 100;
  cursor: zoom-out;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.media-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 720px) {
  .media-trio { grid-template-columns: 1fr 1fr; }
}
.block-text .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 8px;
}
.block-text h3 {
  font-size: 21px;
  margin: 0 0 12px;
}
.color-swatches {
  display: flex;
  gap: 8px;
  margin: 0 0 16px;
}
.color-swatches .swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.block-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.block-text li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 14px;
  color: #3f3f46;
}
.block-text li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}
@media (max-width: 720px) {
  .block, .block.reverse {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
  }
  .media-pair { grid-template-columns: 1fr 1fr; }
}

/* ---- AI assistant spotlight ---- */
.ai-spotlight {
  background: radial-gradient(120% 160% at 15% 10%, #142016 0%, #0a0e0a 55%, #080a08 100%);
  border-radius: 16px;
  padding: 44px;
  margin-bottom: 72px;
}
.ai-spotlight-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.ai-spotlight-media, .ai-spotlight-text {
  flex: 1 1 50%;
  min-width: 0;
}
.ai-spotlight-media .frame {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.5);
}
.ai-spotlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(111, 174, 46, 0.16);
  color: #8fd35c;
  margin-bottom: 16px;
}
.ai-spotlight .kicker { color: #8fd35c; }
.ai-spotlight h3 {
  color: #fff;
  font-size: 22px;
  margin: 0 0 10px;
}
.ai-spotlight-lead {
  color: #a1a1aa;
  font-size: 14.5px;
  margin: 0 0 22px;
}
.ai-examples {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ai-examples li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  color: #e4e4e7;
  font-style: italic;
}
.ai-spotlight-note {
  color: #71717a;
  font-size: 12.5px;
  margin: 0;
}
@media (max-width: 720px) {
  .ai-spotlight { padding: 28px 20px; }
  .ai-spotlight-inner { flex-direction: column; gap: 24px; }
}

/* ---- Extra features grid (no screenshot) ---- */
h2.grid-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 16px;
  text-align: center;
}
section { margin-bottom: 56px; }
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 720px) {
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .features { grid-template-columns: 1fr; }
}
.feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.feature svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}
.feature p {
  margin: 0;
  font-size: 13.5px;
}
.feature b {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.section-link {
  text-align: center;
  margin: 18px 0 0;
}
.section-link a {
  color: var(--primary-hover);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.section-link a:hover { text-decoration: underline; }

.advantages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .advantages { grid-template-columns: 1fr; }
}
.advantages li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}
.advantages svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

/* ---- Promo band (caja del producto) ---- */
.promo-band {
  background: radial-gradient(120% 160% at 15% 20%, #142016 0%, #0a0e0a 55%, #080a08 100%);
  margin: 80px calc(50% - 50vw) 64px;
  padding: 64px 20px;
}
.promo-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}
.promo-media {
  flex: 0 0 300px;
}
.promo-media img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
}
.promo-text {
  flex: 1 1 auto;
  color: #f4f4f5;
}
.promo-text .eyebrow {
  background: rgba(111, 174, 46, 0.16);
  color: #8fd35c;
}
.promo-text h2 {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: #fff;
}
.promo-text p.lead {
  color: #a1a1aa;
  font-size: 15px;
  margin: 0 0 22px;
  max-width: 440px;
}
.promo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.promo-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #d4d4d8;
}
.promo-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #6fae2e;
}
@media (max-width: 720px) {
  .promo-inner { flex-direction: column; text-align: center; gap: 28px; }
  .promo-media { flex-basis: auto; width: 200px; }
  .promo-text p.lead { margin-left: auto; margin-right: auto; }
  .promo-list li { text-align: left; }
}

/* ---- Trust / security section ---- */
.trust-band {
  background: var(--primary-tint);
  border: 1px solid #d3e8db;
  border-radius: 16px;
  padding: 28px 24px;
  margin: 0 0 40px;
}
.trust-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.trust-inner h2 {
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--text);
}
.trust-inner > p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0 0 18px;
}
.trust-ask {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.trust-ask-q {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.trust-ask-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.trust-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}
.trust-btn.primary {
  background: var(--primary);
  color: #fff;
}
.trust-btn.primary:hover {
  background: var(--primary-hover);
}
.trust-btn.primary svg {
  flex-shrink: 0;
}
.trust-btn.ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}
.trust-btn.ghost:hover {
  border-color: var(--primary);
  color: var(--primary-hover);
}
.trust-ask-done {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-hover);
  margin: 0 0 16px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.trust-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}
.trust-detail {
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 12.5px;
  color: var(--muted);
}
.trust-detail summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-size: 13.5px;
}
.trust-detail .hash {
  display: block;
  margin-top: 10px;
  font-family: 'Consolas', 'SFMono-Regular', Menlo, monospace;
  font-size: 11.5px;
  word-break: break-all;
  background: #f4f4f5;
  border-radius: 6px;
  padding: 8px 10px;
}
.trust-detail p { margin: 10px 0 0; }

/* ---- Final download CTA ---- */
.final-cta {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 24px;
  margin-top: 8px;
}
.final-cta h2 {
  font-size: 22px;
  margin: 0 0 8px;
}
.final-cta p.lead {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 24px;
}
a.download {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background 0.15s;
}
a.download:hover {
  background: var(--primary-hover);
}
p.note {
  color: var(--muted);
  font-size: 12px;
  margin-top: 16px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
footer p { margin: 0; }
.footer-social {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: color 0.15s, background 0.15s;
}
.footer-social:hover {
  color: var(--primary-hover);
  background: var(--primary-tint);
}
