:root {
  --mk-bg: #05080D;
  --mk-bg-2: #0B111A;
  --mk-card: rgba(14, 22, 33, .86);
  --mk-card-strong: rgba(10, 17, 27, .97);
  --mk-text: #F4F8FC;
  --mk-muted: #9BB0C6;
  --mk-cyan: #2A84FF;
  --mk-blue: #4F7EB8;
  --mk-pink: #23344A;
  --mk-yellow: #9BB7D4;
  --mk-violet: #1D5DA8;
  --mk-line: rgba(255, 255, 255, .14);
  --mk-shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.mk-page,
body.demo-page {
  margin: 0;
  color: var(--mk-text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 102, 255, .28), transparent 26rem),
    radial-gradient(circle at 82% 5%, rgba(79, 126, 184, .30), transparent 24rem),
    radial-gradient(circle at 52% 42%, rgba(42, 132, 255, .14), transparent 28rem),
    linear-gradient(135deg, #020407 0%, #08111D 48%, #101A28 100%);
  min-height: 100vh;
}
h1, h2, h3, h4,
.mk-brand,
.mk-section-label,
.mk-plan-card h3,
.mk-tour-card h3,
.mk-final-cta h2 { font-family: "Sora", "Inter", system-ui, sans-serif; letter-spacing: -0.015em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.mk-shell { width: min(1320px, calc(100% - 40px)); margin: 0 auto; }

.mk-topbar,
.demo-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px max(20px, calc((100vw - 1320px) / 2));
  background: rgba(5, 9, 20, .78);
  border-bottom: 1px solid var(--mk-line);
  backdrop-filter: blur(18px);
}
.mk-brand,
.demo-topbar > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.mk-brand-lockup { display:inline-flex; align-items:center; gap:9px; min-width:0; }
.mk-brand-icon { width:40px; height:36px; object-fit:contain; flex:0 0 auto; filter:drop-shadow(0 0 14px rgba(0,102,255,.30)); }
.mk-brand-wordmark { width:132px; height:auto; object-fit:contain; flex:0 1 auto; filter:drop-shadow(0 0 12px rgba(0,102,255,.20)); }
.mk-nav,
.demo-topbar nav { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.mk-nav a,
.demo-topbar nav a {
  color: #d9e7ff;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.mk-nav .mk-nav-cta {
  color: #f8fbff;
  background: linear-gradient(135deg, #0066FF, #4F7EB8);
  box-shadow: 0 12px 34px rgba(0, 102, 255, .26);
}

.mk-hero { position: relative; overflow: hidden; padding: 76px 0 42px; }
.mk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}
.mk-hero-shell { position: relative; z-index: 1; text-align: center; }
.mk-logo-stage {
  position: relative;
  width: 240px;
  max-width: 92vw;
  min-height: 200px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
}
.mk-logo-stage img {
  width: 168px;
  max-width: 60vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(0, 102, 255, .34)) drop-shadow(0 0 30px rgba(79, 126, 184, .24));
}
.mk-kicker,
.mk-section-label {
  color: var(--mk-cyan);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.mk-hero h1,
.mk-pricing-hero h1 {
  max-width: 1080px;
  margin: 12px auto;
  font-size: clamp(42px, 7vw, 92px);
  line-height: .92;
  letter-spacing: 0;
}
.mk-hero-lead,
.mk-pricing-hero p {
  max-width: 900px;
  margin: 0 auto;
  color: #d7e2f5;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
}
.mk-hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.mk-btn,
.mk-plan-cta,
.demo-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
}
.mk-btn-primary,
.mk-plan-cta,
.demo-actions a:first-child {
  color: #ffffff;
  background: linear-gradient(135deg, #0066FF, #4F7EB8);
  box-shadow: 0 18px 45px rgba(0, 102, 255, .28);
}
.mk-btn-ghost,
.demo-actions a:last-child {
  color: #f8fbff;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
}

/* ─── Aurora austral detrás del logo del hero (reemplaza .mk-hero-glow) ─── */
.mk-aurora {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(820px, 94%);
  height: 240px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 80% at 30% 40%, rgba(0, 102, 255, .46), transparent 70%),
    radial-gradient(60% 80% at 72% 30%, rgba(79, 126, 184, .42), transparent 70%),
    radial-gradient(50% 70% at 55% 60%, rgba(42, 132, 255, .30), transparent 70%);
  filter: blur(46px);
  opacity: .8;
  animation: mk-aurora-sway 12s ease-in-out infinite alternate;
}
@keyframes mk-aurora-sway {
  0%   { transform: translateX(-52%) scaleX(1); }
  100% { transform: translateX(-48%) scaleX(1.12); }
}

/* ─── Píldoras de confianza del hero ─── */
.mk-hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.mk-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--mk-line);
  font-size: 13px;
  font-weight: 600;
  color: #d9e7ff;
}
.mk-trust i { color: var(--mk-cyan); font-size: 15px; }
@media (prefers-reduced-motion: reduce) {
  .mk-aurora { animation: none; }
}

.mk-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: end;
  margin-top: 48px;
}
.mk-browser,
.mk-panel-preview,
.mk-feature-card,
.mk-demo-card,
.mk-plan-card,
.mk-final-cta,
.demo-screen,
.demo-content article {
  border: 1px solid var(--mk-line);
  background: var(--mk-card);
  box-shadow: var(--mk-shadow);
  backdrop-filter: blur(18px);
}
.mk-browser { border-radius: 28px; overflow: hidden; }
.mk-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,.08);
  border-bottom: 1px solid var(--mk-line);
}
.mk-browser-bar span { width: 12px; height: 12px; border-radius: 50%; background: var(--mk-pink); }
.mk-browser-bar span:nth-child(2) { background: var(--mk-yellow); }
.mk-browser-bar span:nth-child(3) { background: var(--mk-cyan); }
.mk-browser-bar b { margin-left: auto; color: var(--mk-muted); font-size: 13px; }
.mk-front-preview {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(42,132,255,.2), rgba(79,126,184,.13));
}
.mk-front-copy h2 { font-size: clamp(30px, 4vw, 56px); line-height: .98; margin: 8px 0; }
.mk-front-copy p,
.mk-band p,
.mk-section-head p,
.mk-feature-card p,
.mk-demo-card p,
.mk-plan-card p,
.mk-final-cta p,
.demo-copy p,
.demo-content p { color: var(--mk-muted); line-height: 1.55; }
.mk-front-copy small,
.mk-demo-card span,
.demo-copy span {
  color: #06121f;
  background: var(--mk-yellow);
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 900;
}
.mk-front-copy a {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--mk-pink);
  font-weight: 900;
}
.mk-product-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-self: center;
}
.mk-product-stack img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
}
.mk-product-stack img:first-child { grid-row: span 2; aspect-ratio: 1 / 2.08; }
.mk-panel-preview {
  border-radius: 24px;
  padding: 18px;
  display: grid;
  gap: 12px;
}
.mk-panel-preview div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.mk-panel-preview strong { display: block; font-size: 26px; }
.mk-panel-preview span { color: var(--mk-muted); }

.mk-band { padding: 64px 0 20px; }
.mk-band-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: end;
}
.mk-band h2,
.mk-section-head h2,
.mk-final-cta h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4.5vw, 60px);
  line-height: 1;
}
.mk-section { padding: 64px 0; }
.mk-section-head { max-width: 1040px; margin-bottom: 24px; }

.mk-hero-note {
  margin: 16px auto 0;
  color: #dbe7fa;
  font-size: .96rem;
  font-weight: 800;
}

.mk-layer-grid,
.mk-include-grid,
.mk-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mk-layer-card,
.mk-include-card,
.mk-faq-grid article,
.mk-profile-card,
.mk-trust-panel {
  border: 1px solid var(--mk-line);
  background: var(--mk-card);
  box-shadow: var(--mk-shadow);
  backdrop-filter: blur(18px);
  border-radius: 24px;
}
.mk-layer-card,
.mk-include-card,
.mk-faq-grid article {
  padding: 24px;
}
.mk-layer-icon,
.mk-profile-card header > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #06121f;
  background: linear-gradient(135deg, var(--mk-cyan), var(--mk-yellow));
  font-size: 1.35rem;
  flex: 0 0 auto;
}
.mk-layer-card h3,
.mk-include-card h3,
.mk-faq-grid h3,
.mk-profile-card h3 {
  margin: 14px 0 8px;
  font-size: 1.25rem;
}
.mk-layer-card p,
.mk-include-card p,
.mk-faq-grid p,
.mk-profile-card p {
  margin: 0;
  color: var(--mk-muted);
  line-height: 1.56;
}

.mk-rubro-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.mk-rubro-board article {
  padding: 22px;
  border: 1px solid var(--mk-line);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}
.mk-rubro-board h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
}

.mk-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.mk-badge--optional {
  color: #dbe7fa;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
}
.mk-badge--activation {
  color: var(--mk-yellow);
  background: color-mix(in srgb, var(--mk-yellow) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--mk-yellow) 34%, transparent);
}
.mk-include-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}
.mk-include-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  color: #dbe7fa;
  line-height: 1.45;
}
.mk-include-card li i { color: var(--mk-cyan); margin-top: 2px; }
.mk-include-card:nth-child(3) li i { color: var(--mk-yellow); }

.mk-profile-grid {
  display: grid;
  gap: 18px;
}
.mk-profile-card {
  padding: 24px;
  scroll-margin-top: 110px;
}
.mk-profile-card header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.mk-profile-card header h3 {
  margin: 0 0 4px;
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
}
.mk-profile-card header em {
  display: inline-flex;
  margin-left: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--mk-yellow);
  background: color-mix(in srgb, var(--mk-yellow) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--mk-yellow) 28%, transparent);
  font-size: .68rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .05em;
  vertical-align: middle;
}
.mk-profile-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.mk-profile-cols > div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}
.mk-profile-cols b {
  display: block;
  color: #f8fbff;
  margin-bottom: 8px;
  font-size: .86rem;
}
.mk-profile-card--soon {
  border-color: color-mix(in srgb, var(--mk-yellow) 36%, var(--mk-line));
  background: linear-gradient(135deg, rgba(255,207,74,.08), rgba(255,255,255,.04)), var(--mk-card);
}

.mk-trust-panel {
  max-width: 980px;
  padding: clamp(28px, 5vw, 52px);
}
.mk-trust-panel h2 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}
.mk-trust-panel p {
  margin: 0;
  color: #d7e2f5;
  line-height: 1.65;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}
.mk-faq-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.mk-faq-grid article {
  box-shadow: none;
}
.mk-faq-grid h3 {
  font-size: 1rem;
  margin-top: 0;
}
.mk-feature-grid,
.mk-demo-grid,
.mk-plans-grid,
.demo-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mk-feature-card,
.mk-plan-card,
.demo-content article {
  border-radius: 24px;
  padding: 24px;
}
.mk-feature-card img { width: 58px; height: 58px; margin-bottom: 18px; }
.mk-feature-card h3,
.mk-demo-card h3,
.mk-plan-card h3 { margin: 0 0 10px; font-size: 24px; }

.mk-demo-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.mk-demo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,9,20,.96), rgba(5,9,20,.16), transparent);
}
.mk-demo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.mk-demo-card > *:not(img) { position: relative; z-index: 1; }
.mk-demo-card b { color: var(--accent); }

.mk-plans-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.04), transparent); }
.mk-plan-promise {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}
.mk-plan-promise div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--mk-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  color: #eef6ff;
  font-weight: 800;
}
.mk-plan-promise i { color: var(--mk-yellow); font-size: 20px; }
.mk-plan-card { position: relative; background: var(--mk-card-strong); }
.mk-plan-card.is-featured {
  border-color: rgba(42,132,255,.65);
  transform: translateY(-10px);
  box-shadow: 0 34px 100px rgba(42,132,255,.18);
}
.mk-plan-card-empty {
  grid-column: 1 / -1;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.mk-plan-chip {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #06121f;
  background: var(--mk-cyan);
  font-weight: 900;
}
.mk-price { margin: 18px 0; }
.mk-price strong { font-size: 42px; }
.mk-price span { color: var(--mk-muted); }
.mk-plan-card ul { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 10px; color: #dbe7fa; }
.mk-plan-card li { display: flex; gap: 10px; align-items: flex-start; }
.mk-plan-card li i { color: var(--mk-cyan); }
.mk-plans-link { text-align: center; margin-top: 24px; }
.mk-plans-link a { color: var(--mk-cyan); font-weight: 900; }
.mk-final-cta {
  border-radius: 30px;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  background: linear-gradient(135deg, rgba(42,132,255,.18), rgba(79,126,184,.18)), var(--mk-card);
}
.mk-footer { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; padding: 34px 18px; color: var(--mk-muted); border-top: 1px solid var(--mk-line); }

.mk-pricing-hero { padding: 96px 0 34px; text-align: center; }
.mk-alert {
  margin: 18px auto 0;
  max-width: 680px;
  padding: 14px 18px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 92, 138, .18);
  border: 1px solid rgba(255, 92, 138, .4);
}

.demo-layout { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 54px 0 80px; }
.demo-hero { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: center; }
.demo-copy h1 { font-size: clamp(38px, 6vw, 78px); line-height: .95; margin: 14px 0; }
.demo-screen { border-radius: 28px; overflow: hidden; }
.demo-screen-body {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  padding: 26px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 70%), rgba(255,255,255,.08));
}
.demo-screen-body img { width: 100%; aspect-ratio: 1 / 1.1; object-fit: cover; border-radius: 22px; }
.demo-screen-body h2 { font-size: 38px; line-height: 1; margin: 8px 0; }
.demo-screen-body button {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  color: #06121f;
  background: var(--mk-yellow);
  font-weight: 900;
}
.demo-content { margin-top: 28px; }
.demo-content i { color: var(--accent); font-size: 30px; }

@media (max-width: 900px) {
  .mk-topbar,
  .demo-topbar { align-items: flex-start; flex-direction: column; }
  .mk-showcase,
  .mk-band-grid,
  .mk-front-preview,
  .demo-hero,
  .demo-screen-body { grid-template-columns: 1fr; }
  .mk-feature-grid,
  .mk-demo-grid,
  .mk-plans-grid,
  .demo-content,
  .mk-plan-promise,
  .mk-layer-grid,
  .mk-include-grid,
  .mk-faq-grid,
  .mk-rubro-board,
  .mk-profile-cols { grid-template-columns: 1fr; }
  .mk-plan-card.is-featured { transform: none; }
  .mk-panel-preview { display: none; }
  .mk-hero { padding-top: 44px; }
  .mk-hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .mk-profile-card header { align-items: flex-start; }
}

@media (max-width: 520px) {
  .mk-nav a { padding: 9px 10px; font-size: 13px; }
  .mk-logo-stage { width: 240px; min-height: 160px; }
  .mk-logo-stage img { width: 200px; height: auto; }
  .mk-front-preview,
  .mk-feature-card,
  .mk-plan-card,
  .mk-layer-card,
  .mk-include-card,
  .mk-profile-card,
  .mk-rubro-board article,
  .mk-faq-grid article { padding: 20px; }
  .mk-profile-card header {
    display: grid;
    grid-template-columns: 44px 1fr;
  }
  .mk-profile-card header > span {
    width: 44px;
    height: 44px;
  }
  .mk-rubro {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ───── Panel tour preview cards (home #panel) ───── */
.mk-panel-tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.mk-panel-tour-card {
  --accent: var(--mk-cyan);
  display: flex; flex-direction: column; gap: 8px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: var(--mk-card);
  border: 1px solid var(--mk-line);
  color: var(--mk-text);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  position: relative; overflow: hidden;
}
.mk-panel-tour-card::after {
  content: "";
  position: absolute; inset: auto -40% -60% auto;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--accent), transparent 65%);
  opacity: .18; pointer-events: none;
}
.mk-panel-tour-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 14px 36px rgba(0,0,0,.35);
}
.mk-panel-tour-card h3 { margin: 6px 0 0; font-size: 18px; font-weight: 800; }
.mk-panel-tour-card p { margin: 0; color: var(--mk-muted); font-size: 14px; }
.mk-tour-icon {
  display: inline-flex; width: 44px; height: 44px; border-radius: 12px;
  align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: var(--accent);
  font-size: 22px;
}

/* ───── Tour page ───── */
.mk-tour-hero {
  padding: 78px 0 32px;
  text-align: center;
  position: relative;
}
.mk-tour-hero h1 {
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.04; margin: 12px auto 14px;
  max-width: 880px; font-weight: 800; letter-spacing: -.02em;
}
.mk-tour-lead {
  margin: 0 auto 22px; max-width: 720px;
  color: var(--mk-muted); font-size: 17px;
}
.mk-tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 22px;
  margin-top: 12px;
}
.mk-tour-card {
  --accent: var(--mk-cyan);
  display: flex; flex-direction: column; gap: 14px;
  padding: 24px; border-radius: 22px;
  background: var(--mk-card-strong);
  border: 1px solid var(--mk-line);
}
.mk-tour-card header { display: flex; align-items: center; gap: 14px; }
.mk-tour-card header h3 { margin: 0; font-size: 19px; font-weight: 800; }
.mk-tour-card header p { margin: 2px 0 0; color: var(--mk-muted); font-size: 14px; }
.mk-tour-desc { color: var(--mk-muted); margin: 4px 0 0; font-size: 14.5px; }
.mk-tour-list { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 6px; }
.mk-tour-list li {
  display: flex; align-items: center; gap: 8px;
  color: var(--mk-text); font-size: 14px;
}
.mk-tour-list li i { color: var(--accent); }

/* mockups dentro de cards del tour */
.mk-tour-mock {
  background: linear-gradient(180deg, #0a1226 0%, #0c1430 100%);
  border: 1px solid var(--mk-line);
  border-radius: 14px;
  padding: 12px;
  font-size: 12px;
  color: #d9e7ff;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 200px;
}
.mk-mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 8px; border-bottom: 1px solid var(--mk-line);
  color: #8aa0c5; font-weight: 700; font-size: 11px;
}
.mk-mock-bar span {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.16);
}
.mk-mock-bar b { margin-left: auto; opacity: .8; }

/* ventas */
.mk-mock-table { display: grid; gap: 4px; }
.mk-mock-table .row { display: grid; grid-template-columns: 1.4fr .4fr .6fr; gap: 6px; padding: 5px 6px; border-radius: 6px; align-items: center; }
.mk-mock-table .row.head { color: #8aa0c5; font-size: 10px; text-transform: uppercase; letter-spacing: .04em; }
.mk-mock-table .row:not(.head):not(.total) { background: rgba(255,255,255,.03); }
.mk-mock-table .total { font-weight: 800; border-top: 1px dashed var(--mk-line); padding-top: 8px; margin-top: 4px; }
.mk-mock-table .total b { color: var(--accent); }
.mk-mock-pay { display: flex; gap: 10px; justify-content: flex-end; opacity: .7; font-size: 16px; }

/* cards stats */
.mk-mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.mk-mock-cards > div {
  background: rgba(255,255,255,.04); border: 1px solid var(--mk-line);
  border-radius: 8px; padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
}
.mk-mock-cards span { font-size: 10px; color: #8aa0c5; text-transform: uppercase; letter-spacing: .04em; }
.mk-mock-cards b { font-size: 14px; font-weight: 800; color: var(--mk-text); }

/* list rows */
.mk-mock-list { display: grid; gap: 4px; }
.mk-mock-list > div {
  display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 8px;
  padding: 5px 6px; background: rgba(255,255,255,.03); border-radius: 6px;
}
.mk-mock-list i { color: #8aa0c5; }
.mk-mock-list b { color: var(--accent); font-weight: 800; }

/* reparaciones */
.mk-mock-orders { display: grid; gap: 5px; }
.mk-mock-orders .order {
  display: grid; grid-template-columns: 68px 1fr auto; gap: 8px; align-items: center;
  padding: 6px 8px; background: rgba(255,255,255,.03); border-radius: 6px;
}
.mk-mock-orders .order b { color: var(--accent); font-weight: 800; }
.mk-mock-orders .order span { color: #d9e7ff; font-size: 12px; }
.mk-mock-orders .estado {
  font-size: 10px; padding: 3px 8px; border-radius: 999px; font-style: normal;
  font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.mk-mock-orders .estado.en-diag { background: rgba(255,207,74,.18); color: #ffcf4a; }
.mk-mock-orders .estado.listo { background: rgba(42,132,255,.18); color: #2A84FF; }
.mk-mock-orders .estado.presup { background: rgba(56,189,248,.18); color: #38bdf8; }

/* ecommerce */
.mk-mock-shop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mk-mock-shop .prod {
  background: rgba(255,255,255,.04); border: 1px solid var(--mk-line);
  border-radius: 10px; padding: 8px;
  display: flex; flex-direction: column; gap: 4px; text-align: center;
}
.mk-mock-shop .prod img { width: 100%; height: 56px; object-fit: cover; border-radius: 6px; }
.mk-mock-shop .prod b { font-size: 11px; }
.mk-mock-shop .prod span { color: var(--accent); font-weight: 800; font-size: 13px; }
.mk-mock-cart {
  background: rgba(255,255,255,.04); border: 1px dashed var(--mk-line);
  border-radius: 8px; padding: 6px 10px; font-size: 12px; color: #d9e7ff;
  display: flex; align-items: center; gap: 6px;
}
.mk-mock-cart i { color: var(--accent); }
.mk-mock-cart b { margin-left: auto; color: var(--accent); }

/* restaurant */
.mk-mock-tables { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.mk-mock-tables .mesa {
  height: 38px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
  border: 1px solid var(--mk-line);
}
.mk-mock-tables .libre { background: rgba(42,132,255,.10); color: #2A84FF; }
.mk-mock-tables .ocupada { background: rgba(79,126,184,.16); color: #4F7EB8; }
.mk-mock-tables .reservada { background: rgba(56,189,248,.16); color: #38bdf8; }
.mk-mock-cmd {
  background: rgba(255,255,255,.03); border-radius: 6px; padding: 6px 8px;
  font-size: 12px; display: flex; gap: 6px; align-items: center;
}
.mk-mock-cmd i { color: var(--accent); }

/* IA chat */
.mk-mock-chat { display: flex; flex-direction: column; gap: 5px; }
.mk-mock-chat .msg {
  max-width: 80%; padding: 6px 9px; border-radius: 10px; font-size: 12px;
  line-height: 1.35;
}
.mk-mock-chat .cli { background: rgba(255,255,255,.06); align-self: flex-start; }
.mk-mock-chat .bot {
  background: color-mix(in srgb, var(--accent) 18%, #0c1430);
  color: #eaf5ff;
  align-self: flex-end;
  border: 1px solid color-mix(in srgb, var(--accent) 36%, transparent);
}

/* reportes chart */
.mk-mock-chart {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  align-items: end; height: 64px; padding: 4px;
}
.mk-mock-chart div {
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 40%, transparent));
  border-radius: 4px 4px 0 0;
}

@media (max-width: 720px) {
  .mk-tour-grid { grid-template-columns: 1fr; }
  .mk-tour-hero { padding-top: 56px; }
}

/* ═══ Banda de tecnología/servicios/seguridad — marquee inferior ═══ */
.mk-techband {
  padding: 56px 0 64px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.mk-techband-head { text-align: center; margin-bottom: 28px; }
.mk-techband-head h2 {
  font-size: clamp(1.25rem, 3.5vw, 1.9rem);
  line-height: 1.2; margin: .35rem auto .5rem; max-width: 32ch;
}
.mk-techband-head p { color: var(--muted, #94a3b8); max-width: 56ch; margin: 0 auto; font-size: .95rem; }
.mk-marquee {
  display: flex; overflow: hidden; width: 100%; margin-top: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.mk-track {
  display: flex; gap: 12px; padding-right: 12px; flex: 0 0 auto;
  min-width: 100%; width: max-content;
  animation: mk-scroll 42s linear infinite; will-change: transform;
}
.mk-track-rev { animation-direction: reverse; animation-duration: 50s; }
.mk-marquee:hover .mk-track { animation-play-state: paused; }
@keyframes mk-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mk-pill {
  display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
  padding: .6rem 1.05rem; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: var(--text, #e2e8f0); font-size: .88rem; font-weight: 600;
  backdrop-filter: blur(4px);
}
.mk-pill i { font-size: 1.15rem; color: var(--cta, #a5b4fc); flex-shrink: 0; }
/* Fila de logos de marca — tinte por mask sobre banda oscura */
.mk-marquee-logos { margin: 6px 0 4px; }
.mk-marquee-logos .mk-track { gap: 44px; align-items: center; animation-duration: 46s; }
.mk-logo {
  flex-shrink: 0; width: 54px; height: 30px;
  background-color: rgba(255,255,255,.8);
  -webkit-mask: var(--logo) center / contain no-repeat;
          mask: var(--logo) center / contain no-repeat;
  transition: background-color .22s ease, transform .22s ease; cursor: default;
}
.mk-logo:hover { background-color: var(--cta, #a5b4fc); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  .mk-track { animation: none; flex-wrap: wrap; justify-content: center; min-width: 0; width: auto; }
  .mk-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ═══ Mejora visual: logos más grandes (sin nombres) ═══ */
.mk-pill i { color: var(--mk-cyan); }
.mk-marquee-logos { margin: 8px 0 4px; opacity: .82; }
.mk-marquee-logos .mk-track { gap: 34px; align-items: center; animation-duration: 48s; }
.mk-logo {
  width: 42px; height: 26px;
  background-color: var(--mk-text, #f8fbff);
}
.mk-logo:hover { background-color: var(--mk-cyan, #2A84FF); transform: translateY(-2px) scale(1.05); }
@media (max-width: 640px) { .mk-logo { width: 34px; height: 22px; } .mk-marquee-logos .mk-track { gap: 26px; } }

/* ═══ Perfiles por rubro — chips ═══ */
.mk-rubros-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.mk-rubro {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .7rem 1.15rem; border-radius: 999px;
  background: var(--mk-card); border: 1px solid var(--mk-line);
  color: var(--mk-text); font-size: .92rem; font-weight: 600;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.mk-rubro i { font-size: 1.1rem; color: var(--mk-cyan); }
.mk-rubro:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--mk-cyan) 50%, var(--mk-line));
  background: var(--mk-card-strong);
}

/* ═══ Fondo animado — orbes a la deriva (detrás de todo) ═══ */
body.mk-page::before {
  content: "";
  position: fixed; inset: -20vh -10vw; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38vw 38vw at 15% 18%, rgba(42,132,255,.18), transparent 60%),
    radial-gradient(34vw 34vw at 85% 12%, rgba(56,189,248,.16), transparent 60%),
    radial-gradient(40vw 40vw at 70% 88%, rgba(139,92,246,.18), transparent 62%),
    radial-gradient(30vw 30vw at 25% 80%, rgba(79,126,184,.12), transparent 60%);
  filter: blur(8px);
  animation: mk-bg-drift 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes mk-bg-drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-2.5%, 2%, 0) scale(1.06); }
  100% { transform: translate3d(2.5%, -2%, 0) scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
  body.mk-page::before { animation: none; }
}

/* Grupos de rubros: disponibles vs próximamente */
.mk-rubro-group {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--mk-cyan); margin: 0 0 12px;
}
.mk-rubro-group-soon { color: var(--mk-muted); margin-top: 26px; }
.mk-rubro.is-soon {
  opacity: .55; cursor: default;
}
.mk-rubro.is-soon i { color: var(--mk-muted); }
.mk-rubro.is-soon:hover { transform: none; background: var(--mk-card); border-color: var(--mk-line); }
.mk-rubro.is-soon small {
  font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  padding: .12rem .45rem; border-radius: 999px;
  background: color-mix(in srgb, var(--mk-yellow) 18%, transparent);
  color: var(--mk-yellow);
  border: 1px solid color-mix(in srgb, var(--mk-yellow) 32%, transparent);
}

/* Logo-forward navbar + fineprint de conversión */
.mk-topbar .mk-brand-icon { width:40px; height:36px; }
.mk-topbar .mk-brand-wordmark { width:132px; height:auto; }
.mk-footer-brand { display: inline-flex; align-items: center; gap: 8px; }
.mk-footer-wordmark { width:132px; height:auto; object-fit:contain; }
.mk-cta-fineprint { margin-top: 14px; font-size: .82rem; color: var(--mk-muted); display: inline-flex; align-items: center; gap: 7px; flex-wrap: wrap; justify-content: center; }
.mk-cta-fineprint i { color: var(--mk-cyan); }
