/* ═══════════════════════════════════════════════════════════════════
   Live Pads — Landing page
   Tema match con la app (gi_setlist): dorado #FBAE00 sobre fondo dark.
   Stack: HTML + CSS + JS mínimo. Sin frameworks, sin build step.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --accent: #FBAE00;
  --accent2: #FF6B35;
  --glow: rgba(251, 174, 0, 0.14);
  --glow-strong: rgba(251, 174, 0, 0.35);

  --bg: #07070d;
  --bg-card: #0f0f17;
  --bg-surface: #16161e;
  --bg-hover: #1f1f2a;

  --text: #ffffff;
  --text-muted: #a3a3a3;
  --text-dim: #6b6b76;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;

  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}
.container-narrow {
  width: min(800px, 100% - 48px);
  margin-inline: auto;
}

/* ─── NAV ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 13, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.3px;
}
.nav-logo { width: 26px; height: 26px; }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 18px;
  background: var(--accent);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.2px;
  transition: filter 0.18s ease, transform 0.18s var(--ease-spring);
}
.nav-cta:hover { filter: brightness(1.08); }
.nav-cta:active { transform: scale(0.97); }

/* ─── HERO ──────────────────────────────────────────────────────────── */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 700px;
  background: radial-gradient(ellipse at center, var(--glow-strong) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(251, 174, 0, 0.08);
  border: 1px solid rgba(251, 174, 0, 0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: hero-dot-pulse 2s ease-in-out infinite;
}
@keyframes hero-dot-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-title .accent {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 28px auto 36px;
  line-height: 1.65;
}

.hero-cta-row {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Shared CTA */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease-spring), filter 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.cta:active { transform: scale(0.97); }
.cta-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 8px 28px var(--glow-strong);
}
.cta-primary:hover { filter: brightness(1.07); box-shadow: 0 10px 36px var(--glow-strong); }
.cta-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.cta-ghost:hover { border-color: var(--accent); color: var(--accent); }
.cta-large {
  padding: 16px 28px;
  font-size: 15px;
  border-radius: 14px;
}

/* Hero screenshot */
.hero-screenshot {
  margin-top: 70px;
  perspective: 1400px;
  position: relative;
}
/* Hero hereda .mac-window pero refuerza el shadow + tilt para que se
   sienta "el screenshot principal", más prominente que los del tour. */
.hero-mac-window {
  position: relative;
  z-index: 1;
  transform: perspective(1400px) rotateX(6deg);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 120px var(--glow-strong),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.6s var(--ease-spring), box-shadow 0.6s ease;
}
.hero-mac-window:hover {
  transform: perspective(1400px) rotateX(2deg) translateY(-6px);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.75),
    0 0 140px var(--glow-strong),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Halo behind the hero image — radial glow blob centered behind the
   screenshot adds the "this matters" feel without distracting from
   the content. */
.hero-halo {
  position: absolute;
  inset: -40px -10% -60px -10%;
  background:
    radial-gradient(ellipse at 30% 30%, var(--glow-strong) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(255, 107, 53, 0.18) 0%, transparent 55%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* ─── MAC WINDOW FRAME ──────────────────────────────────────────────
   Marco estilo macOS (chrome con traffic lights) que envuelve una
   imagen real de la app. Se usa en las 4 secciones del tour. */
.mac-window {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 13px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 60px var(--glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s ease;
}
.mac-window:hover {
  transform: translateY(-4px);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.6),
    0 0 80px var(--glow-strong),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.mac-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-bottom: 1px solid var(--border);
}
.mac-chrome span {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.mac-chrome span:nth-child(1) { background: #ff5f57; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.18); }
.mac-chrome span:nth-child(2) { background: #febc2e; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.18); }
.mac-chrome span:nth-child(3) { background: #28c840; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.18); }

.mac-shot {
  display: block;
  width: 100%;
  height: auto;
  background: var(--bg-card);
}

/* ─── SECTIONS ──────────────────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.012) 50%, transparent 100%);
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.8px;
  max-width: 720px;
  margin-bottom: 16px;
}
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ─── FEATURES GRID ─────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.feature-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 0.22s ease, transform 0.22s var(--ease-spring), background 0.22s ease;
}
.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  background: var(--bg-surface);
}
/* Highlighted (new headline) feature card */
.feature-card--highlight {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: linear-gradient(160deg, rgba(251,174,0,0.07), var(--bg-card) 60%);
}
.feature-card--highlight .feature-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0a14;
}
.feature-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #0a0a14;
  background: var(--accent);
  border-radius: 999px;
  vertical-align: middle;
}
.feature-card b { color: var(--text); font-weight: 700; }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(251, 174, 0, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── TOUR ──────────────────────────────────────────────────────────── */
.tour-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.tour-row:last-child { border-bottom: none; }
.tour-row--reverse { grid-template-columns: 1.15fr 1fr; }
.tour-row--reverse .tour-copy { order: 2; }
.tour-row--reverse .tour-shot { order: 1; }

.tour-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: rgba(251, 174, 0, 0.05);
}
.tour-copy h3 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.tour-copy p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}
.tour-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tour-bullets li {
  font-size: 14px;
  color: var(--text);
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}
.tour-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.tour-shot .screenshot-placeholder {
  aspect-ratio: 16 / 10;
}

/* ─── PERSONA GRID ──────────────────────────────────────────────────── */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.persona-card {
  padding: 32px 28px;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-surface));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 0.22s ease, transform 0.22s var(--ease-spring);
}
.persona-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.persona-emoji {
  font-size: 36px;
  margin-bottom: 16px;
}
.persona-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}
.persona-card > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}
.persona-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.persona-card ul li {
  font-size: 13px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.persona-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

/* ─── SHORTCUTS ─────────────────────────────────────────────────────── */
.shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.shortcut-card {
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shortcut-card h3 {
  font-size: 16px;
  font-weight: 800;
}
.shortcut-card h4 {
  font-size: 13px;
  font-weight: 800;
}
.shortcut-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}
.shortcut-card--feature {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(251, 174, 0, 0.08), rgba(251, 174, 0, 0.02));
  border-color: rgba(251, 174, 0, 0.25);
}
.shortcut-card--feature h3 {
  font-size: 20px;
}
.shortcut-card--feature p {
  font-size: 13.5px;
  color: var(--text);
}
.kbd-big {
  display: inline-block;
  font-family: 'Inter', 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  background: var(--bg-hover);
  border: 1px solid var(--border-strong);
  border-bottom-width: 2px;
  border-radius: 6px;
  color: var(--text);
  letter-spacing: 0.5px;
  align-self: flex-start;
  line-height: 1.3;
}
.shortcut-card--feature .kbd-big {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  font-size: 15px;
  padding: 8px 16px;
}

/* ─── FAQ ───────────────────────────────────────────────────────────── */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.18s ease;
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  list-style: none;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-item code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--text);
}
.faq-item a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ─── DOWNLOAD SECTION ──────────────────────────────────────────────── */
.download-section { padding: 140px 0; }
.download-card {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-surface));
  border: 1px solid var(--accent);
  border-radius: 24px;
  box-shadow: 0 0 80px var(--glow);
  position: relative;
  overflow: hidden;
}
.download-card::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, var(--glow-strong) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.download-card > * { position: relative; }
.download-logo {
  width: 56px; height: 56px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 16px var(--glow));
}
.download-card h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.download-card > p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.download-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.download-fineprint {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
  letter-spacing: 0.4px;
}

/* ─── FOOTER ────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  background: var(--bg);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 340px;
}
.footer-logo { width: 36px; height: 36px; }
.footer-brand strong { font-size: 15px; font-weight: 800; }
.footer-brand p { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  letter-spacing: 0.3px;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero { padding: 130px 0 60px; }
  .hero-title { font-size: 34px; }
  .hero-sub { font-size: 15px; }
  .hero-mac-window { transform: none; }
  .hero-mac-window:hover { transform: translateY(-4px); }
  .section { padding: 70px 0; }
  .tour-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 50px 0;
  }
  .tour-row--reverse { grid-template-columns: 1fr; }
  .tour-row--reverse .tour-copy { order: 1; }
  .tour-row--reverse .tour-shot { order: 2; }
  .shortcut-card--feature { grid-column: span 1; }
  .download-card { padding: 40px 24px; }
  .download-card h2 { font-size: 24px; }
}

/* ─── Reveal on scroll ──────────────────────────────────────────────
   Added by script.js via IntersectionObserver. Elements start slightly
   below their final position + transparent, then settle in as they
   enter the viewport. Skipped when prefers-reduced-motion is set. */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s var(--ease-spring),
    transform 0.6s var(--ease-spring);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-badge-dot { animation: none; }
  .cta:active, .nav-cta:active { transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ════════════════════════════════════════════════════════════════════
   Mockups CSS — recrean en HTML/CSS las 4 capturas del tour de forma
   pixel-perfect a cualquier resolución. Mismas convenciones de color
   y tipografía que la app (accent #FBAE00, secciones #60a5fa).
   ════════════════════════════════════════════════════════════════════ */

.mk {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg, #0a0a14);
  color: var(--text, #e2e8f0);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  padding: 16px 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* ── Mockup 1: Setlist con Now Playing ────────────────────────────── */
.mk-setlist {}
.mk-st-tabs {
  display: flex;
  gap: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mk-st-tab {
  font-size: 10.5px;
  padding: 5px 11px;
  border-radius: 6px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.mk-st-tab.is-active {
  background: rgba(251,174,0,0.16);
  color: var(--accent);
}
.mk-st-now {
  background: rgba(251,174,0,0.08);
  border: 1px solid rgba(251,174,0,0.28);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mk-st-now-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.mk-st-now-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.mk-st-now-meta {
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
}
.mk-st-progress {
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  padding: 0 2px;
}
.mk-st-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mk-st-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 7px;
  font-size: 11.5px;
}
.mk-st-row .num {
  font-size: 9.5px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  text-align: center;
}
.mk-st-row .title { color: #d4d4dc; }
.mk-st-row .key {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
}
.mk-st-row.is-active {
  background: rgba(251,174,0,0.14);
  border-color: rgba(251,174,0,0.42);
  box-shadow: 0 0 22px rgba(251,174,0,0.18);
}
.mk-st-row.is-active .title { color: #fff; font-weight: 700; }
.mk-st-row.is-active .key { background: rgba(251,174,0,0.22); color: var(--accent); }
.mk-st-row.is-active .num { color: var(--accent); }
.mk-st-row.dimmed { opacity: 0.45; }
.mk-st-row.queued { border-color: rgba(96,165,250,0.32); }
.mk-st-row.queued::after {
  content: "PRÓXIMA";
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #60a5fa;
  grid-column: 3;
  margin-left: 6px;
}

/* ── Mockup 2: Editor de letras ───────────────────────────────────── */
.mk-editor {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.mk-ed-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mk-ed-title {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
}
.mk-ed-tools { display: flex; align-items: center; gap: 8px; }
.mk-ed-tone {
  font-size: 10.5px;
  color: rgba(255,255,255,0.6);
}
.mk-ed-tone b { color: var(--accent); font-weight: 800; }
.mk-ed-btn {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 11px;
  cursor: default;
}
.mk-ed-save {
  font-size: 10px;
  color: #4ade80;
  font-weight: 700;
  padding: 3px 8px;
  background: rgba(74,222,128,0.12);
  border-radius: 999px;
}
.mk-ed-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 6px;
}
.mk-ed-section {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  color: #60a5fa;
  margin-top: 10px;
}
.mk-ed-section:first-child { margin-top: 0; }
.mk-ed-chord {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent);
}
.mk-ed-lyric {
  font-size: 12px;
  color: #d4d4dc;
  margin-bottom: 4px;
}

/* ── Mockup 3: Mapeos activos ─────────────────────────────────────── */
.mk-mappings {}
.mk-mp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mk-mp-title {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
}
.mk-mp-controller {
  font-size: 10px;
  color: #4ade80;
  font-weight: 600;
}
.mk-mp-filters { display: flex; gap: 5px; }
.mk-mp-filter {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.mk-mp-filter.is-active {
  background: var(--accent);
  color: #0a0a14;
}
.mk-mp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}
.mk-mp-row {
  display: grid;
  grid-template-columns: 1fr auto auto 18px;
  gap: 10px;
  align-items: center;
  padding: 7px 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 7px;
  font-size: 11px;
}
.mk-mp-row .action { color: #d4d4dc; }
.mk-mp-row .src {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 2px 6px;
  border-radius: 4px;
}
.mk-mp-row .src.kbd  { background: rgba(96,165,250,0.18); color: #60a5fa; }
.mk-mp-row .src.midi { background: rgba(251,174,0,0.18); color: var(--accent); }
.mk-mp-row .key {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 10.5px;
  color: rgba(255,255,255,0.7);
  padding: 2px 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
}
.mk-mp-row .x {
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  text-align: center;
}

/* ── Mockup 4: Pre-vuelo ──────────────────────────────────────────── */
.mk-preflight {}
.mk-pf-header {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 1.4px;
  color: var(--accent);
}
.mk-pf-sub {
  margin: 0;
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
}
.mk-pf-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}
.mk-pf-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  align-items: flex-start;
  padding: 7px 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid;
  border-radius: 7px;
}
.mk-pf-row.ok   { border-color: rgba(74,222,128,0.32); }
.mk-pf-row.warn { border-color: rgba(245,158,11,0.4); }
.mk-pf-row .ic {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 900;
  margin-top: 1px;
}
.mk-pf-row.ok   .ic { background: rgba(74,222,128,0.18);  color: #4ade80; }
.mk-pf-row.warn .ic { background: rgba(245,158,11,0.18); color: #f59e0b; }
.mk-pf-row b {
  font-size: 11px;
  color: #fff;
  display: block;
  font-weight: 700;
  margin-bottom: 1px;
}
.mk-pf-row span {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  display: block;
  line-height: 1.35;
}
.mk-pf-summary {
  margin-top: 2px;
  font-size: 10.5px;
  font-weight: 700;
  text-align: center;
  padding: 7px;
  border-radius: 7px;
}
.mk-pf-summary.ok   { background: rgba(74,222,128,0.14);  color: #4ade80; }
.mk-pf-summary.warn { background: rgba(245,158,11,0.14); color: #f59e0b; }

/* ════════════════════════════════════════════════════════════════════
   Companion section — phone mockup + QR + bullets
   ════════════════════════════════════════════════════════════════════ */

.section-companion {
  background:
    radial-gradient(900px 500px at 30% 30%, rgba(251,174,0,0.07), transparent 60%),
    radial-gradient(700px 400px at 80% 80%, rgba(96,165,250,0.06), transparent 60%);
}

.companion-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.companion-lede {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
}

.companion-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.companion-bullets li {
  padding-left: 18px;
  position: relative;
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  line-height: 1.55;
}
.companion-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(251,174,0,0.45);
}
.companion-bullets strong {
  color: #fff;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.companion-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.companion-chip {
  font-size: 11px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* ── Phone mockup ─────────────────────────────────────────────────── */

.companion-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: #1a1a26;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 38px;
  padding: 12px 10px;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.6),
    0 0 0 4px #0a0a14,
    0 0 0 5px rgba(255,255,255,0.05),
    0 0 80px rgba(251,174,0,0.15);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0a0a14;
  border-radius: 999px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #0a0a14;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px 14px 14px;
  box-sizing: border-box;
  position: relative;
}

.ph-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}
.ph-brand {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.ph-brand b { color: var(--accent); font-weight: 700; }
.ph-right { display: flex; align-items: center; gap: 6px; }
.ph-chord-toggle {
  font-size: 8.5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.ph-conn {
  font-size: 8.5px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(74,222,128,0.4);
  background: rgba(74,222,128,0.08);
  color: #4ade80;
  font-weight: 600;
}

.ph-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
}
.ph-meta-key {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ph-live {
  position: absolute;
  top: 4px; right: 4px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.7);
  animation: phLive 1.4s ease-out infinite;
}
@keyframes phLive {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.ph-meta-text { display: flex; flex-direction: column; gap: 2px; }
.ph-meta-title { font-size: 13px; font-weight: 700; color: #fff; }
.ph-meta-artist { font-size: 10.5px; color: rgba(255,255,255,0.55); }
.ph-meta-bpm { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; }

.ph-lyrics { padding: 0 2px; }
.ph-section {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  color: #60a5fa;
  margin: 12px 0 4px;
}
.ph-section:first-child { margin-top: 0; }
.ph-chord {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
}
.ph-lyric {
  font-size: 12px;
  color: #d4d4dc;
  margin-bottom: 4px;
}

/* ── QR + hint ────────────────────────────────────────────────────── */
.companion-qr-hint {
  display: flex;
  justify-content: center;
}
.qr-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 16px;
}
.qr-frame {
  width: 88px;
  height: 88px;
  padding: 6px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-frame svg { width: 100%; height: 100%; display: block; }
.qr-caption {
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.qr-step {
  display: inline-flex;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a14;
  font-weight: 800;
  font-size: 10px;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .companion-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .phone-frame { width: 240px; height: 500px; }
}

/* ════════════════════════════════════════════════════════════════════
   Soon modal — disparado por cualquier [data-soon] (Descargar, GitHub)
   mientras el binario y el repo público no están listos.
   ════════════════════════════════════════════════════════════════════ */

.soon-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.soon-modal[hidden] { display: none; }

.soon-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: soonFadeIn 0.2s ease-out;
}

.soon-panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--bg-surface, #0e0f1c);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 36px 32px 30px;
  text-align: center;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(251, 174, 0, 0.18);
  animation: soonPop 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes soonFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes soonPop {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.soon-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}
.soon-close:hover {
  border-color: var(--accent, #fbae00);
  color: var(--accent, #fbae00);
}

.soon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(251, 174, 0, 0.12);
  color: var(--accent, #fbae00);
  margin-bottom: 18px;
  box-shadow: 0 0 0 1px rgba(251, 174, 0, 0.25), 0 0 40px rgba(251, 174, 0, 0.22);
}

.soon-panel h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}

.soon-panel p {
  margin: 0 0 24px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.soon-ok {
  min-width: 140px;
  justify-content: center;
}
