:root {
  --navy: #1f304b;
  --navy-dark: #0d1420;
  --surface: #f6f8fb;
  --surface-alt: #eef2f7;
  --card: #ffffff;
  --stroke: #d4dce8;
  --stroke-soft: #e4e9f1;
  --teal: #30c8b8;
  --teal-dark: #16a890;
  --accent: #26C485;
  --blue: #1f77b9;
  --ok: #7be23f;
  --text: #1d2636;
  --text-soft: #5d6b80;
  --text-inverse: #f4f7fb;
  --text-inverse-soft: #a7b3c7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--navy-dark) 88%, transparent);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 78px;
  transition: min-height 0.3s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
}

.brand-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.05rem;
}

.brand-tag {
  font-size: .72rem;
  color: var(--text-soft);
  font-weight: 500;
  margin-top: .16rem;
}

.brand-mark { color: var(--teal); }

.main-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .35rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
}

.main-nav a {
  color: #c9d3e2;
  text-decoration: none;
  font-size: .97rem;
  font-weight: 600;
  padding: .62rem .9rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.section { padding: 5.5rem 0; }
.section-soft {
  background: var(--surface-alt);
  border-top: 1px solid var(--stroke-soft);
  border-bottom: 1px solid var(--stroke-soft);
}

.hero {
  padding: 4.8rem 0 4rem;
  background:
    radial-gradient(circle at 20% 30%, rgba(38, 196, 133, 0.05) 0%, rgba(18, 24, 38, 1) 70%),
    linear-gradient(180deg, #0d1420 0%, #131e30 100%);
  color: var(--text-inverse);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 2.35rem;
  align-items: start;
}

h1, h2, h3 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}

.hero-highlight {
  color: var(--accent);
}
h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 800;
  text-wrap: balance;
}
h3 { font-size: 1.08rem; }

.lead {
  color: var(--text-inverse-soft);
  max-width: 55ch;
  font-size: 1.25rem;
  line-height: 1.85;
}
.eyebrow {
  color: var(--teal);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .8rem;
  font-size: .9rem;
  font-weight: 600;
}

.hero-proof {
  color: #8bd5ff;
  font-size: .95rem;
  margin: 1rem 0 1.5rem;
}

.hero-panel {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 1.25rem;
  padding-bottom: 2rem;
  background: rgba(17, 26, 42, 0.9);
  backdrop-filter: blur(10px);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(48, 200, 184, 0.10);
}

.hero-panel::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(48, 200, 184, 0.45), transparent);
  margin: -1.25rem -1.25rem 1rem;
}


.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.state-ok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 30px;
  padding: 0 .8rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ok) 88%, white);
  color: #10220c;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .01em;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--ok) 72%, #6abf38);
}

.hero-panel ul,
.scope-grid ul {
  margin: .6rem 0 0;
  padding-left: 1.05rem;
  color: var(--text-soft);
  font-size: .95rem;
  line-height: 1.6;
}

.hero-panel ul {
  color: var(--text-inverse-soft);
}

.hero-validator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: .4rem;
}

.inline-link { color: var(--teal); text-decoration: none; display: inline-block; margin-top: .2rem; }
.section-intro {
  color: var(--text-soft);
  max-width: 70ch;
  font-size: 1.12rem;
  line-height: 1.7;
}

.route-sequence {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0;
}

.card-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .95rem;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 1rem;
  background: var(--card);
  margin-bottom: .9rem;
}

.card-step::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 100%;
  width: 1px;
  height: .9rem;
  background: color-mix(in srgb, var(--teal) 30%, var(--stroke));
}

.card-step:last-child::after { display: none; }

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #edf5f9;
  color: var(--navy);
  font-weight: 700;
  font-size: .84rem;
  border: 1px solid #c8dce8;
}

.step-state {
  margin: 0;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .73rem;
  font-weight: 700;
}

.card-step h3 {
  margin: .18rem 0 .35rem;
  font-size: 1rem;
}

.card-step p {
  margin: 0;
  color: var(--text-soft);
}

.two-col {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.checklist-operativa {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1rem;
  background: var(--card);
  display: grid;
  gap: .75rem;
}

.card-check {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: .9rem;
  background: var(--card);
}

.check-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.checklist-title {
  margin: 0;
  font-weight: 800;
  font-size: 1.08rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.check-meta {
  margin: .15rem 0 0;
  color: var(--text-soft);
  font-size: .8rem;
}

.card-check ul {
  margin: .7rem 0 0;
  padding-left: 0;
  list-style: none;
}

.card-check li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  color: var(--text-soft);
  border-top: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  padding-top: .5rem;
  margin-top: .2rem;
}

.card-check li:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.card-check li > span {
  color: var(--ok);
  font-weight: 800;
  margin-top: .12rem;
}

.card-check .state-ok {
  color: #0d1420;
  background: var(--ok);
  font-weight: 800;
}

.card-proof {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--card);
  padding: .9rem 1rem;
}

.proof-label {
  margin: 0 0 .35rem;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.card-proof p {
  margin: 0;
  color: var(--text-soft);
}

.plan-system {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.card-plan {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 1rem;
  background: var(--card);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: .8rem;
}

.card-plan.featured {
  border-color: color-mix(in srgb, var(--teal) 42%, var(--stroke));
  background: linear-gradient(180deg, #f3fcfa, #ffffff 42%);
  box-shadow: 0 12px 24px -20px color-mix(in srgb, var(--teal) 35%, #000);
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
}

.plan-tier {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.plan-badge {
  font-size: .74rem;
  font-weight: 700;
  color: var(--teal);
  border: 1px solid color-mix(in srgb, var(--teal) 45%, var(--stroke));
  border-radius: 999px;
  padding: .2rem .55rem;
}

.plan-price {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.2;
  font-family: 'Manrope', sans-serif;
}

.plan-metrics {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-metrics li {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  padding: .55rem 0;
  border-top: 1px solid color-mix(in srgb, var(--stroke) 72%, transparent);
}

.plan-metrics li:first-child { border-top: 0; }

.plan-metrics span {
  color: var(--text-soft);
  font-size: .95rem;
}

.proof-compare {
  margin-top: .95rem;
}

.scope-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.scope-grid article {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 1rem;
  background: var(--card);
}

.demos-layout {
  display: grid;
  grid-template-columns: .95fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.demos-copy {
  position: sticky;
  top: 88px;
}

.demo-stack {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

/* ===== DEMOS: hacer estructura visible ===== */
.demo-card{
  border: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  border-radius: 16px;
  background: #fff;
  padding: 1.1rem 1.1rem 1.2rem;
  box-shadow: 0 10px 22px rgba(13,20,32,0.05);
  transition: 180ms ease;
}

.demo-card:hover{
  border-color: color-mix(in srgb, var(--teal) 20%, var(--stroke));
  box-shadow: 0 14px 34px rgba(13,20,32,0.08);
}

.demo-kicker{
  margin: 0 0 .35rem;
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
}

.demo-card h3{
  margin: 0 0 .7rem;
  font-size: 1.05rem;
}

/* chips + plan típico */
.demo-meta{
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .5rem;
  align-items: center;
  margin-bottom: .85rem;
}

.demo-chip{
  display: inline-flex;
  align-items: center;
  padding: .18rem .5rem;
  border-radius: 999px;
  background: rgba(48,200,184,0.10);
  border: 1px solid rgba(48,200,184,0.18);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: .78rem;
}

.demo-plan{
  margin-left: .2rem;
  color: var(--text-soft);
  font-size: .82rem;
}

.demo-plan strong{
  color: var(--navy-dark);
  font-weight: 900;
}

/* mini-sitemap */
.demo-map{
  border-radius: 14px;
  background: color-mix(in srgb, var(--teal) 6%, #fff);
  border: 1px solid rgba(48,200,184,0.14);
  padding: .85rem .9rem;
}

.demo-map-title{
  margin: 0 0 .55rem;
  font-weight: 900;
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  color: color-mix(in srgb, var(--teal-dark) 70%, var(--navy-dark));
}

.demo-map-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}

.demo-map-list li{
  padding-left: 1.1rem;
  position: relative;
  color: color-mix(in srgb, var(--navy-dark) 88%, #000);
  font-size: .92rem;
  line-height: 1.35;
}

.demo-map-list li::before{
  content: "↳";
  position: absolute;
  left: 0;
  top: 0;
  color: color-mix(in srgb, var(--teal-dark) 60%, var(--text-soft));
  font-weight: 900;
}

.ops-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}

.ops-panel {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ops-panel.accent {
  background: #f8fbff;
}

.ops-kicker {
  margin: 0 0 .35rem;
}

.ops-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: .36rem;
  padding: .28rem .6rem;
  border-radius: 999px;
  background: #f4f6f8;
  color: var(--navy-dark);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ops-kicker-pill svg {
  width: .86rem;
  height: .86rem;
  color: #47b8a2;
  flex-shrink: 0;
}

.ops-panel h3 {
  margin-bottom: .4rem;
}

.ops-panel p {
  margin: 0;
  color: var(--text-soft);
}

.ops-highlight {
  font-weight: 500;
  color: var(--navy-dark);
}

.ops-sla-panel {
  padding-right: 4.8rem;
}

.ops-robot {
  position: absolute;
  top: -8px;
  right: -10px;
  width: min(80px, 28%);
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.14));
  pointer-events: none;
}

.faq-wrap details {
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: .8rem .95rem;
  background: var(--card);
  margin-top: .7rem;
}

.faq-wrap summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-wrap p {
  color: var(--text-soft);
  margin-bottom: .2rem;
  font-size: .95rem;
  line-height: 1.6;
}

.cta-final { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 1.8rem;
  transition: 180ms ease;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy-dark);
  box-shadow: 0px 4px 15px rgba(38, 196, 133, 0.3);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0px 8px 20px rgba(38, 196, 133, 0.35);
}

.btn-ghost {
  color: var(--navy);
  border-color: var(--stroke);
  background: var(--card);
}

.btn-ghost:hover,
.btn-plan:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.btn-plan {
  border-color: var(--stroke);
  color: var(--navy);
  background: var(--card);
}

.btn-whatsapp {
  min-height: 48px;
  padding: 0 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
  white-space: nowrap;
}

.btn-whatsapp:hover {
  border-color: color-mix(in srgb, var(--teal) 55%, rgba(255,255,255,0.12));
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.cta-final {
  background: linear-gradient(180deg, #101a2a 0%, #0d1420 100%);
  color: var(--text-inverse);
}

.cta-final p { color: var(--text-inverse-soft); }

.hero-actions,
.section-actions,
.plan-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero-grid, .two-col, .scope-grid, .demos-layout, .ops-grid, .plan-system { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }

  .demos-copy {
    position: static;
    top: auto;
  }

  .demo-preview {
    width: 100%;
  }
}


/* ===== Pricing v2 ===== */
.pricing-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1.25rem;
  margin-bottom: 1.1rem;
}
.pricing-actions{
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
  align-items:center;
}
.pricing-kicker{
  margin: 1.1rem 0 .4rem;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.pricing-actions .btn-ghost{
  background: transparent;
  border-color: transparent;
  padding: 0;
  border-radius: 0;
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 6px;
}
.pricing-actions .btn-ghost:hover{
  color: var(--teal);
}

.pricing-includes-strip{
  margin-top: 1.1rem;
  border: 1px solid var(--stroke);
  background: #fff;
  border-radius: 18px;
  padding: .9rem;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
  overflow: hidden;
}
.pricing-includes-strip .inc{
  display:flex;
  gap:.75rem;
  align-items: center;
  background: transparent;
  border: 0;
  border-right: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  border-radius: 0;
  padding: .85rem 1rem;
}
.pricing-includes-strip .inc:last-child{
  border-right: 0;
}
.pricing-includes-strip strong{
  display:block;
  font-family:'Manrope',sans-serif;
  font-weight:800;
  font-size:.95rem;
}
.pricing-includes-strip span{
  display:block;
  color: var(--text-soft);
  font-size: .88rem;
  line-height: 1.35;
}
.inc-ico{
  color: var(--teal-dark);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  line-height: 0;
  flex: 0 0 44px;
  background: color-mix(in srgb, var(--teal) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--teal) 22%, var(--stroke));
  position: relative;
}
.inc-ico::before{
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid color-mix(in srgb, var(--teal-dark) 72%, transparent);
  border-left: 1.5px solid color-mix(in srgb, var(--teal-dark) 72%, transparent);
  border-radius: 2px 0 0 0;
  opacity: .35;
  pointer-events: none;
}
.inc-ico::after{
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--teal-dark) 78%, #fff);
  opacity: .45;
  pointer-events: none;
}
.ico{
  width: 22px;
  height: 22px;
  display:block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.checklist-title .ico{
  width: 18px;
  height: 18px;
  color: var(--teal-dark);
  flex: 0 0 auto;
}
.inc-ico .ico{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  display: block;
  transform: translate(-50%, -50%) translateY(var(--nudge-y, 0px)) translateX(var(--nudge-x, 0px));
}
.inc-ico .ico[data-ico="publicacion"] { --nudge-x: 0px; --nudge-y: -0.5px; }
.inc-ico .ico[data-ico="checklist"] { --nudge-x: 0px; --nudge-y: 0px; }
.inc-ico .ico[data-ico="seo"] { --nudge-x: 0px; --nudge-y: -0.25px; }
.inc-ico .ico[data-ico="monitoreo"] { --nudge-x: 0px; --nudge-y: -0.75px; }

.plan-system-v2{
  margin-top: 1rem;
}
.plan-v2{
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: 0 10px 24px rgba(13,20,32,0.06);
}
.plan-kicker{
  margin:.15rem 0 0;
  color: var(--text-soft);
  font-size: .92rem;
}
.plan-price-row{
  margin-top: .15rem;
}
.plan-price{
  margin:.2rem 0 0;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-family:'Manrope',sans-serif;
}
.plan-price span{
  font-size: .95rem;
  color: var(--text-soft);
  font-weight: 700;
  margin-left: .25rem;
}
.plan-note{
  margin:.2rem 0 0;
  color: var(--text-soft);
  font-size: .92rem;
}
.plan-ideal{
  margin:.7rem 0 .3rem;
  color: var(--text-soft);
}
.plan-ideal strong{ color: var(--text); }

.card-plan.featured{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13,20,32,0.10);
}
.card-plan.featured .plan-price{
  font-size: 2.3rem;
}
.badge-strong{
  background: color-mix(in srgb, var(--teal) 18%, #fff);
  color: var(--teal-dark);
  border-color: color-mix(in srgb, var(--teal) 45%, var(--stroke));
}

.plan-ctas{
  display:flex;
  gap:.65rem;
  margin-top: .95rem;
  flex-wrap:wrap;
}
.plan-ctas .btn{
  flex: 1 1 auto;
  min-height: 44px;
}
.plan-link{
  align-self:center;
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
  padding: .6rem .2rem;
}
.plan-link:hover{
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Comparación */
.plan-compare{
  margin-top: 1.2rem;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: #fff;
  overflow:hidden;
}
.plan-compare summary{
  cursor:pointer;
  padding: .95rem 1rem;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  list-style: none;
}
.plan-compare summary::-webkit-details-marker{ display:none; }
.compare-inner{
  border-top: 1px solid var(--stroke);
  padding: 1rem;
}
.compare-table{
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.compare-table th,
.compare-table td{
  text-align: left;
  padding: .7rem .65rem;
  border-bottom: 1px solid color-mix(in srgb, var(--stroke) 75%, transparent);
  vertical-align: top;
}
.compare-table thead th{
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
}
.compare-table .col-pro{
  background: color-mix(in srgb, var(--teal) 10%, #fff);
}
.compare-note{
  margin:.9rem 0 0;
  color: var(--text-soft);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .pricing-head{ flex-direction: column; align-items:flex-start; }
  .pricing-includes-strip{ grid-template-columns: 1fr; }
  .card-plan.featured{ transform:none; }
}


/* ===== Pricing fine-tuning ===== */
.pricing-includes-strip{
  margin-bottom: 1.35rem;
}

.pricing-actions .btn-ghost{
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  opacity: .92;
}
.pricing-actions .btn-ghost:hover,
.pricing-actions .btn-ghost:focus-visible{
  color: var(--teal-dark);
  opacity: 1;
}

.plan-ctas{
  align-items: stretch;
}
.plan-ctas .plan-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 .2rem;
  line-height: 1;
}

.plan-compare summary{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  min-height: 52px;
  padding: .85rem 1rem;
  color: var(--text);
  background: color-mix(in srgb, var(--teal) 6%, #fff);
  transition: background-color .2s ease, color .2s ease;
}
.plan-compare[open] summary{
  background: color-mix(in srgb, var(--teal) 9%, #fff);
}
.plan-compare summary:hover,
.plan-compare summary:focus-visible{
  color: var(--teal-dark);
  background: color-mix(in srgb, var(--teal) 11%, #fff);
}
.compare-summary-ico{
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  opacity: .8;
}

/* =========================
   HEADER + HERO REFINEMENTS
   ========================= */

/* HEADER: CTA outlined fuerte */
.btn-whatsapp{
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 800;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

.btn-whatsapp:hover{
  background: rgba(255,255,255,0.09);
  border-color: color-mix(in srgb, var(--teal) 55%, rgba(255,255,255,0.18));
}

/* NAV: hover más visible (sin activo) */
.main-nav{
  border-color: rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.main-nav a{
  color: rgba(244,247,251,0.84);
  font-weight: 600;
  transition: all 0.3s ease;
}

.main-nav a:hover{
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* HERO PANEL: tarjeta premium (borde + sombra + highlight) */
.hero-panel{
  background: rgba(17,26,42,0.9);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.48),
    inset 0 0 0 1px rgba(48,200,184,0.10);
}

/* highlight superior sutil */
.hero-panel::before{
  content:"";
  display:block;
  height:1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(48,200,184,0.55),
    transparent
  );
  margin: -1.25rem -1.25rem 1rem;
  opacity: .75;
}

/* texto del panel un pelín más legible */
.hero-panel ul{
  color: rgba(244,247,251,0.82);
}


/* ===== Hero panel: checklist operativa ===== */
.proof-list{
  list-style: none;
  padding: 0;
  margin: .85rem 0 0;
  display: grid;
  gap: .55rem;
  max-width: 65%;
}

.proof-list li{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .65rem;
  align-items: start;
  padding-top: .55rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.proof-list li:first-child{
  border-top: 0;
  padding-top: 0;
}

.proof-ico{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal); /* teal (marca), NO verde */
  line-height: 0;
  transform: translateY(2px); /* ajuste óptico */
}

.proof-ico .ico{
  width: 18px;
  height: 18px;
  display: block;
}

.proof-list span:last-child{
  color: rgba(244,247,251,0.82);
  font-size: .95rem;
  line-height: 1.5;
}

/* ===== Hero panel checklist: micro-pulido premium ===== */

/* 1) Separadores más suaves */
.proof-list li{
  border-top-color: rgba(255,255,255,0.06); /* antes se veía más fuerte */
}

/* 2) Micro-cápsula para el check */
.proof-ico{
  width: 20px;
  height: 20px;
  border-radius: 8px;

  background: rgba(48,200,184,0.10);              /* teal muy suave */
  border: 1px solid rgba(48,200,184,0.18);        /* borde sutil */
  color: var(--teal);                              /* check teal */

  transform: translateY(1px);                      /* ajuste óptico */
}

/* Mantener el SVG ajustado al nuevo contenedor */
.proof-ico .ico{
  width: 16px;
  height: 16px;
}

/* 3) Aire entre lista y robot */

/* ===== RUTA: sistema + nodos + resultados ===== */
/* Badge paso: icono + número */
.step-index{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--teal) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--teal) 22%, var(--stroke));
  color: var(--navy-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 0;
}

.step-index .ico{
  width: 18px;
  height: 18px;
  display: block;
}

.step-index .step-num{
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  color: color-mix(in srgb, var(--navy-dark) 80%, var(--teal-dark));
}

/* Conector: más visible + nodo alineado */
.card-step{
  border-radius: 14px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  box-shadow: 0 10px 22px rgba(13,20,32,0.06);
}

.card-step::after{
  left: 22px;
  width: 2px;
  height: 1.05rem;
  background: color-mix(in srgb, var(--teal) 22%, var(--stroke));
  opacity: .9;
}

.card-step::before{
  content:"";
  position:absolute;
  left: 20px;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--teal) 12%, #fff);
}

/* Resultado por paso */
.step-result{
  margin: .55rem 0 0;
  font-size: .92rem;
  color: var(--text-soft);
}

.step-result strong{
  color: var(--teal-dark);
  font-weight: 800;
}

/* ===== RUTA micro-pulido: menos ruido + más sistema ===== */
/* 1) Quitar micro-nodo (puntito) si existe */
#ruta .card-step::before{
  display: none !important;
}

/* 2) Conector vertical más presente (sin exagerar) */
#ruta .card-step::after{
  left: 22px;
  width: 2px;
  height: 1.1rem;
  background: color-mix(in srgb, var(--teal) 22%, var(--stroke));
  opacity: .75;
}

/* 2.1) Compactación suave + ancho de lectura */
#ruta .card-step{
  padding: .95rem 1rem;
}

#ruta .card-step p{
  margin-top: .25rem;
}

#ruta .card-step > div{
  max-width: 72ch;
}

/* 3) Resultado sobrio (etiqueta suave + texto legible) */
#ruta .step-result{
  margin-top: .55rem;
  font-size: .92rem;
  color: rgba(167,179,199,0.92);
}

#ruta .step-result strong{
  color: color-mix(in srgb, var(--teal-dark) 70%, var(--text-soft));
  font-weight: 800;
  opacity: .85;
  letter-spacing: .02em;
}

/* 4) Destacar SOLO paso 04 */
#ruta .card-step.is-focus{
  border-color: color-mix(in srgb, var(--teal) 28%, var(--stroke));
  background:
    linear-gradient(90deg, transparent, rgba(48,200,184,0.65), transparent) top / 100% 2px no-repeat,
    color-mix(in srgb, var(--teal) 6%, #fff);
  box-shadow: 0 12px 28px rgba(13,20,32,0.08);
}

#ruta .card-step.is-focus .step-index{
  border-color: color-mix(in srgb, var(--teal) 35%, var(--stroke));
  background: color-mix(in srgb, var(--teal) 14%, #fff);
}

/* 5) CTA final más sistema */
#ruta .section-actions .btn{
  box-shadow: 0 10px 22px rgba(13,20,32,0.10);
}

/* ===== CHECKLIST: sticky + resumen operativo + robot ===== */
#checklist .two-col{
  align-items: start;
}

.checklist-sticky{
  position: sticky;
  top: 96px;
}

.checklist-summary{
  margin-top: 1rem;
  border: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(13,20,32,0.06);
  padding: 1rem;
}

.summary-title{
  margin: 0 0 .75rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--teal-dark) 70%, var(--text-soft));
}

.summary-item{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .8rem;
  padding: .75rem 0;
  border-top: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
}

.summary-item:first-of-type{
  border-top: 0;
  padding-top: 0;
}

.summary-item strong{
  display: block;
  font-weight: 900;
  font-family: 'Manrope', sans-serif;
  color: var(--navy-dark);
  margin-bottom: .12rem;
}

.summary-item span{
  display: block;
  color: var(--text-soft);
  font-size: .92rem;
  line-height: 1.35;
}

.summary-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--teal) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--teal) 22%, var(--stroke));
  color: var(--navy-dark);
  line-height: 0;
  position: relative;
}

.summary-ico .ico{
  width: 20px;
  height: 20px;
  display: block;
}

.summary-ico::after{
  content:"";
  position:absolute;
  right:8px;
  top:8px;
  width:6px;
  height:6px;
  border-radius:999px;
  background: color-mix(in srgb, var(--teal) 70%, #fff);
  opacity: .65;
}

.checklist-assistant{
  margin-top: 1rem;
  display: grid;
  justify-items: start;
  gap: .4rem;
}

.checklist-assistant img{
  width: 150px;
  height: auto;
}

.checklist-assistant p{
  margin: 0;
  color: var(--text-soft);
  font-size: .95rem;
}

@media (max-width: 980px){
  .checklist-sticky{
    position: static;
    top: auto;
  }

  .checklist-assistant{
    justify-items: center;
  }
}

/* ===== CHECKLIST: panel único + CTA final con peso + hover premium ===== */
#checklist .two-col{
  align-items: start;
}

.checklist-sticky{
  position: sticky;
  top: 96px;
}

.checklist-leftpanel{
  border: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(13,20,32,0.08);
  padding: 1.25rem;
}

.leftpanel-cta{
  margin-top: .9rem;
}

.cta-micro{
  margin: .45rem 0 0;
  color: var(--text-soft);
  font-size: .92rem;
}

.checklist-summary{
  margin-top: 1rem;
  border: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
  padding: 1rem;
}

.summary-title{
  margin: 0 0 .75rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--teal-dark) 70%, var(--text-soft));
}

.summary-item{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .8rem;
  padding: .75rem 0;
  border-top: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
}

.summary-item:first-of-type{
  border-top: 0;
  padding-top: 0;
}

.summary-item strong{
  display: block;
  font-weight: 900;
  font-family: 'Manrope', sans-serif;
  color: var(--navy-dark);
  margin-bottom: .12rem;
}

.summary-item span{
  display: block;
  color: var(--text-soft);
  font-size: .92rem;
  line-height: 1.35;
}

.summary-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--teal) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--teal) 22%, var(--stroke));
  color: var(--navy-dark);
  line-height: 0;
  position: relative;
}

.summary-ico .ico{
  width: 20px;
  height: 20px;
  display: block;
}

.summary-ico::after{
  content:"";
  position:absolute;
  right:8px;
  top:8px;
  width:6px;
  height:6px;
  border-radius:999px;
  background: color-mix(in srgb, var(--teal) 70%, #fff);
  opacity: .55;
}

.checklist-assistant{
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: .8rem;
  align-items: center;
  padding: .85rem 1rem;
  border-radius: 16px;
  background: rgba(48,200,184,0.06);
  border: 1px solid rgba(48,200,184,0.16);
}

.checklist-assistant img{
  width: 140px;
  height: auto;
}

.checklist-assistant p{
  margin: 0;
  color: var(--text-soft);
  font-size: .95rem;
}

.btn-proof{
  margin-top: .6rem;
  font-weight: 800;
}

.checklist-leftpanel,
.checklist-operativa .card-check,
.checklist-operativa .card-proof{
  transition: 180ms ease;
}

.checklist-leftpanel:hover{
  box-shadow: 0 18px 48px rgba(13,20,32,0.10);
  border-color: color-mix(in srgb, var(--teal) 18%, var(--stroke));
}

.checklist-operativa .card-check:hover,
.checklist-operativa .card-proof:hover{
  box-shadow: 0 14px 34px rgba(13,20,32,0.08);
  border-color: color-mix(in srgb, var(--teal) 18%, var(--stroke));
}

@media (max-width: 980px){
  .checklist-sticky{
    position: static;
    top: auto;
  }

  .checklist-assistant{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

/* ===== CHECKLIST micro-pulido: robot compacto + panel menos dominante ===== */

/* Panel izquierdo: sombra un poco más sobria */
.checklist-leftpanel{
  box-shadow: 0 12px 30px rgba(13,20,32,0.07); /* antes era más fuerte */
}

/* Robot: horizontal + compacto */
.checklist-assistant{
  padding: .75rem .9rem;
  grid-template-columns: 88px 1fr; /* más compacto que 160px */
  gap: .75rem;
  align-items: center;
  text-align: left;
}

.checklist-assistant img{
  width: 82px; /* sube presencia del robot sin agrandar el bloque */
  justify-self: start;
}

.checklist-assistant p{
  font-size: .93rem;
  line-height: 1.35;
  margin: 0;
}

/* ===== CHECKLIST micro-ajuste: iconos SVG centrados ===== */
#checklist .summary-ico,
#checklist .proof-ico{
  display: grid;
  place-items: center;
}

#checklist .summary-ico .ico,
#checklist .proof-ico .ico,
#checklist .checklist-title .ico{
  display: block;
  margin: 0 auto;
  align-self: center;
}

/* ===== ALCANCE: matriz + mini-glosario (lectura operativa) ===== */
.scope-matrix{
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 18px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  box-shadow: 0 12px 28px rgba(13,20,32,0.06);
  overflow: hidden;
}

.scope-col{
  padding: 1.1rem 1.1rem 1.15rem;
}

.scope-col + .scope-col{
  border-left: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
}

.scope-col-head h3{
  margin: 0 0 .25rem;
  font-size: 1.05rem;
}

.scope-col-head p{
  margin: 0 0 .85rem;
  color: var(--text-soft);
  font-size: .92rem;
  line-height: 1.35;
}

/* Listas semánticas */
.scope-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.scope-list li{
  position: relative;
  padding-left: 1.35rem;
  color: color-mix(in srgb, var(--navy-dark) 92%, #000);
  font-size: .95rem;
  line-height: 1.45;
  padding-top: .45rem;
  border-top: 1px solid color-mix(in srgb, var(--stroke) 65%, transparent);
}

.scope-list li:first-child{
  border-top: 0;
  padding-top: 0;
}

/* Incluye: check teal (marca, no verde) */
.scope-list-yes li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: .43rem;
  color: var(--teal-dark);
  font-weight: 900;
}

/* No incluye: x sobria (sin rojo) */
.scope-list-no li::before{
  content: "×";
  position: absolute;
  left: 0;
  top: .40rem;
  color: color-mix(in srgb, var(--text-soft) 80%, var(--navy-dark));
  font-weight: 900;
  opacity: .85;
}

/* Mini-glosario */
.scope-defs{
  margin-top: 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  box-shadow: 0 12px 28px rgba(13,20,32,0.06);
  padding: 1rem 1.1rem;
}

.defs-title{
  margin: 0 0 .85rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--teal-dark) 70%, var(--text-soft));
}

.defs-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1rem;
}

.def-item{
  border-top: 1px solid color-mix(in srgb, var(--stroke) 65%, transparent);
  padding-top: .75rem;
}

.def-item:nth-child(1),
.def-item:nth-child(2){
  border-top: 0;
  padding-top: 0;
}

.def-chip{
  display: inline-flex;
  align-items: center;
  padding: .22rem .55rem;
  border-radius: 999px;
  background: rgba(48,200,184,0.10);
  border: 1px solid rgba(48,200,184,0.18);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .02em;
}

.def-item p{
  margin: .45rem 0 0;
  color: var(--text-soft);
  font-size: .95rem;
  line-height: 1.45;
}

/* Hover premium (sutil) */
.scope-matrix:hover,
.scope-defs:hover{
  border-color: color-mix(in srgb, var(--teal) 18%, var(--stroke));
  box-shadow: 0 14px 34px rgba(13,20,32,0.08);
  transition: 180ms ease;
}

/* Responsive */
@media (max-width: 980px){
  .scope-matrix{
    grid-template-columns: 1fr;
  }

  .scope-col + .scope-col{
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  }

  .defs-grid{
    grid-template-columns: 1fr;
  }

  .def-item:nth-child(2){
    border-top: 1px solid color-mix(in srgb, var(--stroke) 65%, transparent);
    padding-top: .75rem;
  }
}


/* ===== ALCANCE: CTA de cierre + aire en definiciones ===== */

.scope-cta{
  margin-top: 1.35rem;        /* más separación para “cierre” */
  align-items: flex-start;    /* mantiene alineación a la izquierda */
}

.scope-cta-btn{
  min-width: 320px;           /* más “peso” en desktop */
  justify-content: center;
}

.scope-cta-micro{
  margin: .45rem 0 0;
  color: var(--text-soft);
  font-size: .92rem;
  line-height: 1.35;
  max-width: 52ch;
}

/* Mobile: CTA ancho completo */
@media (max-width: 980px){
  .scope-cta-btn{
    width: 100%;
    min-width: 0;
  }
}

/* Definiciones: más aire entre chip y texto */
.def-item p{
  margin-top: .55rem;   /* antes era más apretado */
  line-height: 1.55;
}

/* ===== DEMOS: diferenciación + CTA local + jump links ===== */
/* mini-switch (lado izquierdo) */
.demo-jump{
  margin-top: .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  color: var(--text-soft);
  font-size: .92rem;
}

.demo-jump-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .36rem .82rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #F4F4F4;
  color: var(--text-soft);
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.demo-jump-chip:hover,
.demo-jump-chip:focus-visible,
.demo-jump-chip.is-active{
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}

.demo-preview{
  margin-top: 1rem;
  width: min(100%, 500px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--stroke) 75%, transparent);
  background: #fff;
  box-shadow: 0 14px 34px rgba(13,20,32,0.08);
}

.demo-preview img{
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

/* CTA local en cada card */
.demo-cta{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .35rem;
  margin-top: .9rem;
  width: 100%;
  text-align: right;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
}

.demo-cta:hover{
  text-decoration: underline;
}

/* card destacada */
.demo-card.featured{
  border-color: color-mix(in srgb, var(--teal) 25%, var(--stroke));
  background: color-mix(in srgb, var(--teal) 5%, #fff);
  box-shadow: 0 16px 40px rgba(13,20,32,0.09);
}

/* badge “Más frecuente” (sobrio, no verde) */
.demo-badge{
  display: inline-flex;
  align-items: center;
  padding: .18rem .55rem;
  border-radius: 999px;
  background: rgba(80,200,248,0.12);
  border: 1px solid rgba(80,200,248,0.22);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: .78rem;
  margin-left: .1rem;
}

/* ===== DEMOS: acento por rubro (icono grande + header) ===== */
.demo-card{
  --demo-accent: var(--teal-dark);
}

.demo-pro{
  --demo-accent: var(--teal-dark);
}

.demo-cons{
  --demo-accent: var(--blue);
}

.demo-club{
  --demo-accent: var(--teal);
}

.demo-head{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: .7rem;
}

.demo-headcopy{
  min-width: 0;
}

.demo-headcopy h3{
  margin-bottom: 0;
}

.demo-ico{
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--demo-accent) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--demo-accent) 18%, var(--stroke));
  color: var(--demo-accent);
  display: grid;
  place-items: center;
}

.demo-ico svg{
  width: 26px;
  height: 26px;
  display: block;
}

.demo-kicker{
  color: var(--demo-accent);
}

.demo-card:hover{
  border-color: color-mix(in srgb, var(--demo-accent) 20%, var(--stroke));
  box-shadow: 0 14px 32px rgba(13,20,32,0.075);
  transform: scale(1.02);
}

/* =========================
   HERO PANEL v3 (fix definitivo)
   ========================= */

/* Panel como columna para poder "anclar" el cierre abajo */
.hero-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
    width: calc(120% - 36px);
    margin-right: auto;
    padding-bottom: 160px;
}

/* Lista: deja escena al robot (65–70%) */
.hero-panel .proof-list{
  max-width: 66%;
}

/* Contenedor final: al fondo, alineado a la izquierda y por encima del robot */
.hero-panel .hero-validator{
  margin-top: auto;          /* empuja este bloque al fondo */
  align-items: flex-start;   /* link NO centrado */
  text-align: left;
  position: relative;
  z-index: 3;
}

/* Link: 1 sola línea en desktop */
.hero-panel .inline-link{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .9rem;
  white-space: nowrap;       /* evita el corte feo */
}

/* Robot: “peek” afuera del panel y un poco más abajo */
.hero-panel .hero-robot{
  position: absolute;
  right: -28px;
  bottom: -150px;
  width: 255px;
  max-width: 58%;
  height: auto;
  z-index: 2;
  transform: none !important;
  pointer-events: none;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.55));
}

/* Mobile: vuelve a flujo normal (sin nowrap) */
@media (max-width: 980px){
  .hero-panel{
    width: 100%;
    padding-bottom: 1.25rem;
    display: block;
  }
  .hero-panel .hero-robot{
    position: static;
    width: min(70%, 260px);
    max-width: none;
  }
  .hero-panel .inline-link{
    white-space: normal;
  }
}
