/* MakeSong — styles.css */
:root {
  --bg:           #f5f9fd;
  --bg-deep:      #eaf3fc;
  --surface:      #ffffff;
  --surface-hi:   #ffffff;
  --text:         #0b1c2e;
  --muted:        rgba(11,28,46,0.68);
  --line:         rgba(13,80,160,0.16);
  --fuchsia:      #0e7ee8;  /* azul CreaTuMusica */
  --fuchsia-soft: #0b6ad0;
  --violet:       #0b5ed7;
  --violet-soft:  #1273dd;
  --red:          #e02434;  /* rojo del logo — urgencia y acentos */
  --shadow:       0 24px 60px rgba(15,60,110,0.10);
  --radius:       28px;
  --maxw:         1180px;   /* ancho máximo del contenido centrado */
  --pad:          clamp(16px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
strong { font-weight: 700; }

/* ── Page background ── */
.page-bg {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 12% 15%, rgba(30,155,255,0.10), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(11,94,215,0.08), transparent 28%),
    radial-gradient(circle at 50% 88%, rgba(13,80,160,0.04), transparent 22%),
    linear-gradient(180deg, #eaf4fe 0%, #ffffff 100%);
}
/* Grano de film — le quita el look "plantilla" plano */
.page-bg::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; pointer-events: none;
}

/* ── Header ── */
/* Barra clara para combinar con el logo (azul marino sobre fondo blanco) */
.site-header {
  position: sticky; top: 0; z-index: 50;
  /* Needed so the mobile dropdown positions under the bar */
  isolation: isolate;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  /* Barra full-width, pero el contenido se alinea al contenedor central (max-width) */
  padding-block: 10px;
  padding-inline: max(var(--pad), calc((100% - var(--maxw)) / 2));
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(23,58,107,0.10);
  box-shadow: 0 4px 20px rgba(15,60,110,0.05);
}
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-logo { height: 58px; width: auto; max-width: min(300px, 62vw); display: block; }
.brand-copy { display: none; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a,
.nav-distributor {
  text-decoration: none; color: #2a4a70; font-size: 0.95rem; font-weight: 600;
  transition: color 0.2s;
}
.site-nav a:hover,
.nav-distributor:hover { color: var(--fuchsia); }
.header-cta { min-height: 44px; padding-inline: 20px; font-size: 0.9rem; }
.header-actions { display: flex; align-items: center; gap: 12px; }

/* Botón "Hazte distribuidor": mismo estilo que el resto del nav */
.nav-distributor {
  cursor: pointer; font-family: inherit; background: none; border: 0; padding: 0;
}

/* Menú hamburguesa (solo móvil) */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 9px; cursor: pointer;
  background: rgba(14,126,232,0.08); border: 1px solid rgba(14,126,232,0.25);
  border-radius: 12px;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%; border-radius: 2px;
  background: #2a4a70; transition: transform 0.25s, opacity 0.2s;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  background: rgba(8,22,40,0.55); backdrop-filter: blur(4px);
  animation: fadeUp 0.25s ease;
}
.modal-card {
  position: relative; width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto;
  background: var(--surface); border-radius: 22px; padding: 28px clamp(20px, 4vw, 34px);
  box-shadow: 0 30px 80px rgba(8,22,40,0.4); border: 1px solid var(--line);
}
.modal-close {
  position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(13,80,160,0.05); color: var(--muted);
  cursor: pointer; font-size: 1rem; transition: all 0.2s;
}
.modal-close:hover { background: rgba(224,36,52,0.10); color: #c41828; }
.modal-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--fuchsia-soft);
  background: rgba(14,126,232,0.10); padding: 5px 12px; border-radius: 999px;
}
.modal-head h3 { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.4rem, 3.5vw, 1.8rem); margin: 12px 0 8px; line-height: 1.2; }
.modal-head > p { color: var(--muted); line-height: 1.6; margin: 0 0 14px; }
.modal-perks { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 7px; }
.modal-perks li { font-size: 0.92rem; color: var(--text); }
.modal-form { display: grid; gap: 14px; margin-top: 18px; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-form .field span { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.modal-form input, .modal-form textarea, .modal-form select {
  width: 100%; padding: 11px 14px; border-radius: 12px; border: 1px solid var(--line);
  font: inherit; font-size: 0.95rem; background: #fff; color: var(--text); box-sizing: border-box;
}
.modal-form input:focus, .modal-form textarea:focus, .modal-form select:focus { outline: none; border-color: var(--fuchsia); }
.modal-status { font-size: 0.9rem; margin: 4px 0 0; min-height: 1.4em; }
.modal-status.ok  { color: #0c8a4a; }
.modal-status.err { color: #c81e3c; }

/* Combo país + número */
.phone-combo {
  display: flex; gap: 8px; align-items: stretch;
}
.phone-combo-cc {
  flex: 0 0 auto;
  padding: 11px 10px; border-radius: 12px; border: 1px solid var(--line);
  font: inherit; font-size: 0.88rem; background: #fff; color: var(--text);
  cursor: pointer; appearance: auto;
}
/* Specificity override: beats .modal-form select (0-1-1) */
.phone-combo .phone-combo-cc {
  width: 48%; max-width: 200px;
}
.phone-combo-cc:focus { outline: none; border-color: var(--fuchsia); }
.phone-combo input[type="tel"] {
  flex: 1 1 0; min-width: 0; margin: 0;
}

@media (max-width: 520px) {
  .modal-card { padding: 22px 16px; border-radius: 18px 18px 0 0; max-height: 96vh; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal-row { grid-template-columns: 1fr; }
  .phone-combo .phone-combo-cc { width: 44%; max-width: none; font-size: 0.83rem; }
}

/* ── Layout helpers ── */
/* Todo el contenido se centra dentro de un ancho máximo consistente */
.hero, .section, .proof-strip, .order-section {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.eyebrow, .screen-kicker {
  margin: 0;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.73rem;
  color: var(--fuchsia-soft);
}

/* ── Buttons ── */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 26px;
  border-radius: 999px; border: 1px solid transparent;
  font: inherit; font-weight: 700; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary {
  background: linear-gradient(135deg, #1e9bff, #0b5ed7);
  color: white;
  box-shadow: 0 14px 32px rgba(14,126,232,0.30);
}
.button-secondary {
  background: rgba(13,80,160,0.05);
  border-color: var(--line); color: var(--text);
}
.button:disabled { opacity: 0.55; cursor: wait; pointer-events: none; }
.is-hidden { display: none !important; }

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px; align-items: center;
  padding-top: 56px; padding-bottom: 72px;
  background: linear-gradient(150deg, #e7f3fe 0%, #f8fcff 55%, #ffffff 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(30,155,255,0.15), transparent 50%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  margin: 12px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem,5vw,5rem);
  line-height: 1.0; letter-spacing: -0.05em;
  text-wrap: balance;
}
.hero-accent {
  color: #0e7ee8;
  font-weight: 700;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(140,200,255,0.15);
  font-size: 0.82rem; font-weight: 700;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: #ff2e3e;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,46,62,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(255,46,62,0); }
}
.hero-text { color: var(--muted); line-height: 1.65; margin-top: 18px; font-size: 1.05rem; }
.hero-price { color: #fff; }
.hero-price-tag {
  display: inline-block; padding: 2px 10px; border-radius: 8px;
  background: rgba(14,126,232,0.10); border: 1px solid rgba(14,126,232,0.35);
  color: #0b5ed7; font-weight: 700; white-space: nowrap;
}
/* Equivalente en USD (TRM) — discreto junto al precio en COP */
.usd-equiv { font-weight: 500; opacity: 0.75; font-size: 0.92em; white-space: nowrap; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-risk-free {
  margin: 14px 0 0; font-size: 0.9rem; color: var(--muted);
}
.hero-risk-free strong { color: #0b6ad0; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.hero-proof p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.45; }
.hero-proof strong { color: var(--text); }
.hero-proof-avatars { display: flex; }
.hero-proof-avatars span {
  width: 36px; height: 36px;
  margin-left: -10px; first-child-margin-left: 0;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124,196,255,0.95), rgba(11,94,215,0.95));
}
.hero-proof-avatars span:first-child { margin-left: 0; }

/* ── Hero visual ── */
.hero-media {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 28px 60px rgba(14,94,215,0.18),
    0 0 0 1px rgba(13,80,160,0.10);
}
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(8,22,40,0.08) 72%,
    rgba(8,22,40,0.28) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.hero-photo-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  margin-top: 0;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(14,126,232,0.18);
  box-shadow: 0 10px 28px rgba(14,94,215,0.14);
  backdrop-filter: blur(10px);
}
/* ── Phone mockup (hero) ── */
.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  filter: drop-shadow(0 32px 64px rgba(14,94,215,0.22));
}
.phone-frame {
  background: #fff;
  border-radius: 44px;
  border: 2px solid rgba(14,94,215,0.18);
  box-shadow:
    0 0 0 6px rgba(14,94,215,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.8);
  overflow: hidden;
}
.phone-notch {
  width: 90px; height: 20px;
  background: #0b1c2e;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
}
.phone-screen {
  padding: 0;
  background: #ece5dd;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
/* WhatsApp header */
.wapp-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 10px;
  background: #1e9bff;
  color: #fff;
}
.wapp-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.wapp-info { display: flex; flex-direction: column; line-height: 1.3; }
.wapp-info strong { font-size: 0.82rem; }
.wapp-info span { font-size: 0.7rem; opacity: 0.85; }
/* Chat area */
.wapp-chat {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wapp-msg {
  position: relative;
  max-width: 88%;
  padding: 8px 10px 18px;
  border-radius: 10px;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #111;
}
.wapp-msg time {
  position: absolute; right: 8px; bottom: 4px;
  font-size: 0.6rem; color: rgba(0,0,0,0.45);
}
.wapp-msg--in {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wapp-msg--out {
  background: #d9fdd3;
  border-radius: 10px 0 10px 10px;
  align-self: flex-end;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
/* Reproductor de audio dentro del chat */
.wapp-player {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  width: 88%;
}
.wapp-player-icon {
  grid-row: 1 / 3;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #1e9bff;
  color: #fff;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  padding-left: 2px;
}
.wapp-player-wave {
  display: flex; align-items: center; gap: 2px; height: 18px;
}
.wapp-player-wave span {
  display: block; width: 3px; border-radius: 2px;
  background: #1e9bff;
  animation: wave-bar 1.1s ease-in-out infinite alternate;
}
.wapp-player-wave span:nth-child(1) { height: 6px; animation-delay: 0s; }
.wapp-player-wave span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.wapp-player-wave span:nth-child(3) { height: 9px; animation-delay: 0.2s; }
.wapp-player-wave span:nth-child(4) { height: 16px; animation-delay: 0.05s; }
.wapp-player-wave span:nth-child(5) { height: 8px; animation-delay: 0.15s; }
.wapp-player-wave span:nth-child(6) { height: 13px; animation-delay: 0.25s; }
.wapp-player-wave span:nth-child(7) { height: 6px; animation-delay: 0s; }
.wapp-player-wave span:nth-child(8) { height: 11px; animation-delay: 0.18s; }
.wapp-player-wave span:nth-child(9) { height: 16px; animation-delay: 0.08s; }
.wapp-player-wave span:nth-child(10) { height: 7px; animation-delay: 0.22s; }
@keyframes wave-bar {
  from { transform: scaleY(0.4); opacity: 0.6; }
  to   { transform: scaleY(1);   opacity: 1; }
}
.wapp-player-meta {
  display: flex; flex-direction: column; line-height: 1.2;
}
.wapp-player-meta strong { font-size: 0.64rem; color: #0b1c2e; }
.wapp-player-meta span   { font-size: 0.6rem;  color: rgba(0,0,0,0.5); }
/* Badge flotante */
.phone-badge {
  position: absolute;
  right: -18px; bottom: 40px;
  background: #fff;
  border: 1px solid rgba(14,126,232,0.22);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(14,94,215,0.18);
  backdrop-filter: blur(6px);
  min-width: 180px;
}
.phone-badge-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e9bff, #0b5ed7);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}
.phone-badge strong { font-size: 0.78rem; color: #0b1c2e; display: block; }
.phone-badge span   { font-size: 0.68rem; color: var(--muted); }
@media (max-width: 640px) {
  .phone-mockup { max-width: 240px; }
  .phone-badge  { right: -10px; bottom: 30px; min-width: 150px; }
}
.hero-visual {
  position: relative;
  width: 100%; max-width: 480px;
  padding: 40px 32px 32px;
  border-radius: 36px;
  background: rgba(13,80,160,0.05);
  border: 1px solid rgba(13,80,160,0.14);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 50% 0%, rgba(30,155,255,0.18), transparent 60%);
}
.hv-waveform {
  display: flex; align-items: flex-end; gap: 5px;
  height: 120px; padding: 0 4px;
}
.hv-bar {
  flex: 1; height: var(--h);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--fuchsia), var(--violet));
  opacity: 0.85;
  transform-origin: bottom center;
}
.hv-badge {
  display: flex; align-items: center; gap: 14px;
  margin-top: 24px; padding: 16px 18px;
  border-radius: 18px;
  background: rgba(13,80,160,0.06);
  border: 1px solid rgba(13,80,160,0.14);
}
.hv-badge-icon { font-size: 1.8rem; }
.hv-badge strong { display: block; font-family: "Space Grotesk", sans-serif; }
.hv-badge span { font-size: 0.85rem; color: var(--muted); }
.hv-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.hv-tags span {
  padding: 6px 13px; border-radius: 999px;
  background: rgba(13,80,160,0.06);
  border: 1px solid rgba(13,80,160,0.14);
  font-size: 0.82rem; color: var(--muted);
}

/* ── Proof strip ── */
.proof-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-bottom: 88px;
}
.proof-strip div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.92rem; line-height: 1.55;
}
.proof-strip strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.5rem; color: var(--text); }

/* ── Section shared ── */
.section { margin-bottom: 96px; }
.section-head { max-width: 680px; margin: 0 auto 36px; text-align: center; }
.section-head h2, .order-intro h2 {
  margin: 10px 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem,4.5vw,3.8rem);
  letter-spacing: -0.05em; line-height: 1.0;
}
.section-head p, .order-intro p { color: var(--muted); line-height: 1.65; margin: 0; }

/* ── Samples section ── */
.samples-section .section-head { margin-bottom: 22px; }

/* Banner horizontal de la sección de géneros */
.genres-banner {
  position: relative; margin: 0 auto 24px; border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow);
}
.genres-banner img {
  width: 100%; height: clamp(150px, 24vw, 300px); object-fit: cover; display: block;
}
.genres-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,22,40,0.05) 0%, rgba(8,22,40,0.55) 100%);
}
.genres-banner-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 18px 22px; color: #fff; font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: clamp(1rem, 2.6vw, 1.4rem); line-height: 1.25;
}

/* Nota de géneros */
.genres-note {
  max-width: 720px; margin: 0 auto 32px; padding: 14px 22px;
  border-radius: 18px; text-align: center; line-height: 1.6;
  color: var(--text); font-size: 0.96rem;
  background: linear-gradient(135deg, rgba(30,155,255,0.12), rgba(11,94,215,0.10));
  border: 1px solid rgba(124,196,255,0.25);
}
.genres-note strong { color: var(--fuchsia-soft); }

/* Grid de géneros (reproductor) */
.genres-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px; max-width: 920px; margin: 0 auto;
}
.genre-btn {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 22px 14px; cursor: pointer; min-height: 180px;
  background-size: cover; background-position: center; background-color: rgba(13,80,160,0.06);
  border: 1px solid var(--line); border-radius: 12px;
  color: #fff; font: inherit;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), border-color 0.25s, box-shadow 0.25s;
}
.genre-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(6,12,20,0.7));
  pointer-events: none;
}
.genre-btn::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(30,155,255,0.25), transparent 70%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.genre-btn:hover { transform: translateY(-4px) scale(1.03); border-color: var(--fuchsia); box-shadow: 0 14px 34px rgba(30,155,255,0.22); }
.genre-btn:hover::after { opacity: 1; }
.genre-icon { font-size: 1.9rem; line-height: 1; position: relative; z-index: 1; transition: transform 0.25s; }
.genre-btn:hover .genre-icon { transform: scale(1.2) rotate(-6deg); }
.genre-name { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 0.92rem; position: relative; z-index: 1; }
.genre-play {
  position: relative; z-index: 1;
  width: 28px; height: 28px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #fff;
  background: rgba(30,155,255,0.55); transition: all 0.25s;
}
.genre-btn:hover .genre-play { background: var(--fuchsia); color: #04121f; }
.genre-btn.playing {
  background: linear-gradient(150deg, var(--fuchsia), var(--violet));
  border-color: transparent; box-shadow: 0 16px 40px rgba(30,155,255,0.4);
}
.genre-btn.playing .genre-name { color: #fff; }
.genre-btn.playing .genre-play { background: #fff; color: var(--fuchsia); }
.genre-btn.playing .genre-play::before { content: ""; }

/* Player flotante */
.player-fixed {
  position: fixed; left: clamp(12px,4vw,32px); right: clamp(12px,4vw,32px); bottom: -200px;
  z-index: 80; transition: bottom 0.45s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
.player-fixed.active { bottom: 20px; pointer-events: auto; }
.player-box {
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; gap: 18px;
  padding: 14px 18px; border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #f0f7ff);
  border: 1px solid rgba(14,126,232,0.30);
  box-shadow: 0 22px 60px rgba(15,60,110,0.18);
  backdrop-filter: blur(20px);
}
.eq-visualizer { display: flex; gap: 4px; align-items: flex-end; min-width: 46px; height: 36px; }
.eq-bar { width: 5px; height: 16px; border-radius: 3px; background: linear-gradient(180deg, var(--fuchsia-soft), var(--fuchsia)); animation: eqDance 0.6s ease-in-out infinite; }
.eq-bar:nth-child(2){animation-delay:.1s} .eq-bar:nth-child(3){animation-delay:.2s} .eq-bar:nth-child(4){animation-delay:.1s} .eq-bar:nth-child(5){animation-delay:0s}
.eq-visualizer.paused .eq-bar { height: 5px; animation: none; }
@keyframes eqDance { 0%,100%{height:12px} 50%{height:34px} }
.player-info { flex: 1; min-width: 0; }
.player-info h4 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: 1rem; color: var(--fuchsia-soft); }
.player-info p { margin: 3px 0 0; font-size: 0.82rem; color: var(--muted); }
.audio-player { width: 220px; height: 34px; flex-shrink: 0; }
.player-cta {
  flex-shrink: 0; text-decoration: none; white-space: nowrap;
  padding: 9px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  color: #fff; background: linear-gradient(135deg, var(--fuchsia), var(--violet));
}
.close-player {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 999px;
  background: rgba(124,196,255,0.12); border: 1px solid rgba(14,126,232,0.30);
  color: var(--fuchsia-soft); cursor: pointer; transition: all 0.2s;
}
.close-player:hover { background: rgba(124,196,255,0.25); }
@media (max-width: 720px) {
  .player-box { flex-wrap: wrap; gap: 12px; }
  .player-info { order: -1; width: 100%; }
  .audio-player { width: 100%; order: 1; }
  .player-cta { flex: 1; text-align: center; }
}
.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.sample-empty {
  grid-column: 1/-1;
  padding: 48px 24px;
  border-radius: var(--radius);
  border: 2px dashed rgba(13,80,160,0.16);
  text-align: center; color: var(--muted);
}
.sample-empty-icon { font-size: 3rem; margin-bottom: 12px; }
.sample-empty p { margin: 0; line-height: 1.7; }
.sample-empty code {
  font-family: monospace; font-size: 0.88em;
  background: rgba(13,80,160,0.10); padding: 2px 6px; border-radius: 6px;
}
.sample-card {
  padding: 20px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: border-color 0.2s;
}
.sample-card.is-playing { border-color: var(--fuchsia); }
.sc-top { display: flex; align-items: center; gap: 14px; }
.sc-icon { font-size: 2rem; flex: 0 0 auto; }
.sc-meta { flex: 1; min-width: 0; }
.sc-title { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-genre { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 3px; }
.sc-play-btn {
  width: 48px; height: 48px; flex: 0 0 auto;
  border: 0; border-radius: 999px;
  background: linear-gradient(135deg, var(--fuchsia), var(--violet-soft));
  color: white; font-size: 1rem; cursor: pointer;
  transition: transform 0.15s;
}
.sc-play-btn:hover { transform: scale(1.08); }
.sc-progress-wrap { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.sc-progress-bar {
  flex: 1; height: 6px; border-radius: 999px;
  background: rgba(13,80,160,0.14); cursor: pointer; overflow: hidden;
}
.sc-progress-fill {
  width: 0; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--fuchsia), var(--violet-soft));
  transition: width 0.2s linear;
}
.sc-time { font-size: 0.8rem; color: var(--muted); min-width: 32px; text-align: right; }
.samples-hint { margin-top: 28px; color: var(--muted); font-size: 0.95rem; }
.samples-hint a { color: var(--fuchsia-soft); text-decoration: none; }
.samples-hint a:hover { text-decoration: underline; }

/* ── CTA de sección ── */
.section-cta { text-align: center; margin-top: 40px; }
.section-cta .button { min-height: 56px; padding: 0 34px; font-size: 1.05rem; }
.cta-microcopy { margin: 12px 0 0; font-size: 0.88rem; color: var(--muted); }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.steps article {
  padding: 28px 24px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); backdrop-filter: blur(16px);
}
.steps span { color: var(--violet-soft); font-family: "Space Grotesk", sans-serif; font-size: 0.88rem; }
.steps h3 { margin: 10px 0 8px; font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; }
.steps p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 0.95rem; }

/* ── Order section ── */
/* Una sola columna: intro arriba + chat a lo ancho debajo (se lee mejor) */
.order-section {
  display: block;
  margin-bottom: 96px;
}
.order-intro { position: static; max-width: 760px; margin: 0 auto 28px; text-align: center; }
.order-intro h2 { margin: 10px 0 16px; }
.order-intro .order-bullets { display: inline-grid; text-align: left; }
/* ── Vista pública (link del correo) ── */
.return-view { padding-top: 40px; padding-bottom: 20px; }
.return-view-card {
  max-width: 680px; margin: 0 auto; padding: 32px clamp(20px, 4vw, 40px);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); text-align: center;
}
.return-view-card h2 { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 8px 0 10px; }
.return-view-card .eyebrow { justify-content: center; }
.rv-sub { color: var(--muted); margin: 0 0 20px; line-height: 1.6; }
.rv-track {
  margin: 14px 0; padding: 16px; border-radius: 16px; text-align: left;
  background: linear-gradient(150deg, rgba(255,71,191,0.08), rgba(123,45,255,0.06));
  border: 1px solid rgba(255,143,224,0.28);
}
.rv-track.rv-final { background: linear-gradient(150deg, rgba(52,211,153,0.12), rgba(16,185,129,0.06)); border-color: rgba(16,185,129,0.35); }
.rv-track-label { margin: 0 0 8px; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 0.95rem; }
.rv-track audio { width: 100%; height: 42px; }
.rv-foot { margin: 18px 0 0; font-size: 0.85rem; color: var(--muted); }
.rv-foot a { color: var(--fuchsia); font-weight: 700; }
.rv-msg { color: var(--muted); }
.rv-generating { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 24px; color: var(--muted); }

/* ── Barra de medios de pago ── */
.paybar {
  max-width: var(--maxw); margin: 8px auto 40px; padding: 0 var(--pad);
  text-align: center;
}
/* Barra debajo del chat: bloque centrado normal (fuera del grid del order-section) */
.paybar-under-chat { margin: -60px auto 80px; }
.paybar-title {
  margin: 0 0 14px; font-size: 0.92rem; font-weight: 600; color: var(--muted);
}
.paybar-items {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.paybar-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line);
  font-weight: 700; font-size: 0.9rem; color: var(--text);
  box-shadow: 0 4px 14px rgba(15,60,110,0.06);
  white-space: nowrap;
}
/* Colores de marca reconocibles */
.pm-visa   { color: #1a1f71; font-style: italic; letter-spacing: 0.02em; }
.pm-mc     { color: #eb001b; }
.pm-paypal { color: #003087; }
.pm-nequi  { color: #200050; background: #fff; border-color: rgba(218,0,125,0.35); }
.pm-breb   { color: #0a0a0a; background: #fff; border-color: rgba(10,10,10,0.28); font-weight: 800; }
.pm-mp     { color: #009ee3; }
.pm-bank   { color: #0b5ed7; }
.pm-card   { color: var(--text); }

/* ── Tarjeta de precio con conversor ── */
.price-card {
  margin: 20px 0 8px; padding: 22px 24px; border-radius: 22px;
  background: linear-gradient(150deg, rgba(30,155,255,0.10), rgba(11,94,215,0.06));
  border: 1px solid rgba(14,126,232,0.28);
  box-shadow: 0 12px 34px rgba(15,60,110,0.08);
}
.price-card-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fuchsia-soft); margin-bottom: 6px;
}
.price-card-main {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.4rem); line-height: 1; letter-spacing: -0.03em;
  color: var(--text);
}
.price-card-main .price-card-cur { font-size: 0.42em; color: var(--muted); font-weight: 600; margin-left: 4px; }
.price-card-alt { margin-top: 6px; font-size: 1.15rem; font-weight: 600; color: var(--muted); }
.price-card-convert {
  margin-top: 16px; padding-top: 16px; border-top: 1px dashed rgba(14,126,232,0.25);
  display: flex; flex-direction: column; gap: 8px;
}
.price-card-convert label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
#fxSelect {
  width: 100%; padding: 12px 14px; border-radius: 12px; cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--text);
  font: inherit; font-size: 1rem;
}
#fxSelect:focus { outline: none; border-color: var(--fuchsia); }

.order-bullets { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.order-bullets li { color: var(--muted); font-size: 0.95rem; }

/* ── Wizard ── */
.wizard-card.is-storage { display: none; }  /* form oculto: solo almacena datos del chat */
.wizard-card {
  padding: 28px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); backdrop-filter: blur(18px);
}

/* ── Chat conversacional (a lo ancho, la conversación fluye en la página) ── */
.chat-card {
  display: flex; flex-direction: column;
  max-width: 900px; margin: 0 auto;   /* ancho cómodo para leer, centrado */
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  /* sin altura fija ni scroll interno: crece con la conversación */
}
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  background: rgba(13,80,160,0.03);
  border-radius: var(--radius) var(--radius) 0 0;
}
.chat-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 1.3rem;
  background: linear-gradient(135deg, var(--fuchsia), var(--violet));
}
.chat-header-copy { display: grid; line-height: 1.3; flex: 1; }
.chat-header-copy strong { font-family: "Space Grotesk", sans-serif; font-size: 1rem; }
.chat-header-copy span { font-size: 0.78rem; color: #16a34a; }
.chat-restart-btn {
  margin-left: auto; flex-shrink: 0;
  font-size: 0.75rem; font-weight: 600; color: var(--muted);
  background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 10px; cursor: pointer; transition: all 0.18s;
  white-space: nowrap;
}
.chat-restart-btn:hover { color: var(--fuchsia); border-color: var(--fuchsia); background: rgba(14,126,232,0.06); }

.chat-messages {
  padding: 22px clamp(16px, 3vw, 28px);
  display: flex; flex-direction: column; gap: 14px;
  /* sin overflow: la conversación se lee en la página */
}
.chat-msg { display: flex; max-width: 90%; scroll-margin-bottom: 96px; }
.chat-msg-bubble {
  padding: 11px 15px; border-radius: 18px; line-height: 1.55; font-size: 0.96rem;
  white-space: pre-wrap; word-break: break-word;
}
.chat-msg.bot { align-self: flex-start; }
.chat-msg.bot .chat-msg-bubble {
  background: rgba(13,80,160,0.06); color: var(--text);
  border-bottom-left-radius: 5px;
}
.chat-msg.user { align-self: flex-end; }
.chat-msg.user .chat-msg-bubble {
  background: linear-gradient(135deg, var(--fuchsia), var(--violet));
  color: #fff; border-bottom-right-radius: 5px;
}
/* animación de entrada */
.chat-msg { animation: chatIn 0.28s ease both; }
@keyframes chatIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* indicador "escribiendo…" */
.chat-typing { display: inline-flex; gap: 4px; padding: 14px 16px; }
.chat-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(11,28,46,0.4);
  animation: chatDot 1.2s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes chatDot { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-5px); opacity: 1; } }

/* Indicador "componiendo" dentro del chat */
.chat-composing { display: flex; align-items: center; gap: 10px; }
.chat-composing small { color: var(--muted); font-size: 0.78rem; }
.chat-composing-eq { display: inline-flex; gap: 3px; align-items: flex-end; height: 20px; flex-shrink: 0; }
.chat-composing-eq span {
  width: 4px; height: 6px; border-radius: 2px;
  background: linear-gradient(180deg, var(--fuchsia), var(--violet));
  animation: chatEq 0.8s ease-in-out infinite;
}
.chat-composing-eq span:nth-child(2){animation-delay:.15s}
.chat-composing-eq span:nth-child(3){animation-delay:.30s}
.chat-composing-eq span:nth-child(4){animation-delay:.10s}
@keyframes chatEq { 0%,100%{height:6px} 50%{height:20px} }

/* Mensajes "ricos" (audio, letra, botones): ocupan ancho cómodo, no se encogen */
.chat-msg.rich { max-width: 100%; width: 100%; align-self: stretch; }
.chat-msg.rich > .chat-msg-bubble { width: 100%; max-width: 560px; background: transparent; padding: 0; }

/* Tarjetas de canción dentro del chat (adelanto y final) */
.chat-song-card {
  margin: 0 0 12px; padding: 16px 18px; border-radius: 16px;
  background: linear-gradient(150deg, rgba(255,71,191,0.10), rgba(123,45,255,0.06));
  border: 1px solid rgba(255,143,224,0.30);
  box-shadow: 0 6px 20px rgba(15,60,110,0.06);
}
.chat-song-final {
  background: linear-gradient(150deg, rgba(52,211,153,0.14), rgba(16,185,129,0.06));
  border-color: rgba(16,185,129,0.40);
}
.chat-song-label {
  margin: 0 0 10px; font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--text); display: flex; align-items: center; gap: 8px;
}
.chat-song-tag {
  font-family: "DM Sans", sans-serif; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--fuchsia-soft);
  background: rgba(255,71,191,0.14); padding: 2px 8px; border-radius: 999px;
}
.chat-song-card audio { width: 100%; height: 44px; display: block; }
.chat-song-foot { font-size: 0.85rem; color: var(--muted); margin: 4px 0 0; }
.chat-dl-btn {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  padding: 10px 20px; border-radius: 999px; text-decoration: none;
  background: linear-gradient(135deg, #10b981, #059669); color: #fff;
  font-weight: 700; font-size: 0.92rem; transition: transform 0.15s;
}
.chat-dl-btn:hover { transform: translateY(-2px); }

/* letra dentro del chat */
.chat-lyrics {
  margin-top: 8px; width: 100%;
  background: rgba(0,0,0,0.03); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px; font-family: "DM Sans", sans-serif; font-size: 0.9rem; line-height: 1.7;
  resize: vertical; min-height: 180px; color: var(--text);
}

/* zona de input: pegada abajo (sticky) mientras la conversación se lee arriba */
.chat-input-zone {
  position: sticky; bottom: 0; z-index: 3;
  border-top: 1px solid var(--line); padding: 12px clamp(14px, 3vw, 28px);
  background: var(--surface); border-radius: 0 0 var(--radius) var(--radius);
}
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.chat-chips:empty { display: none; }
.chat-chip {
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  border: 1px solid rgba(13,80,160,0.28); background: rgba(13,80,160,0.04);
  color: var(--text); font: inherit; font-size: 0.9rem; transition: all 0.15s;
}
.chat-chip:hover { background: var(--fuchsia); border-color: var(--fuchsia); color: #fff; transform: translateY(-1px); }
.chat-input-row { display: flex; align-items: flex-end; gap: 8px; }
.chat-input-row textarea {
  flex: 1; resize: none; max-height: 120px; min-height: 44px;
  padding: 11px 14px; border-radius: 22px; border: 1px solid var(--line);
  font: inherit; font-size: 0.96rem; line-height: 1.4; background: #fff; color: var(--text);
}
.chat-input-row textarea:focus { outline: none; border-color: var(--fuchsia); }
.chat-input-row textarea:disabled { background: rgba(0,0,0,0.03); cursor: not-allowed; }
.chat-send {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--fuchsia), var(--violet)); color: #fff; font-size: 1.1rem;
  display: grid; place-items: center; transition: transform 0.15s, opacity 0.15s;
}
.chat-send:hover { transform: scale(1.06); }
.chat-send:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
/* botón de acción dentro del chat (aprobar letra, etc.) */
.chat-action-btn {
  margin-top: 6px; padding: 11px 22px; border-radius: 999px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--fuchsia), var(--violet)); color: #fff;
  font: inherit; font-weight: 700; font-size: 0.95rem; transition: transform 0.15s;
}
.chat-action-btn:hover { transform: translateY(-2px); }
.wizard-top { margin-bottom: 20px; }
.wizard-progress { width: 100%; height: 8px; background: rgba(13,80,160,0.06); border-radius: 999px; overflow: hidden; }
.wizard-progress-bar { width: 0; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--fuchsia), var(--violet-soft)); }
.wizard-step-label { margin: 10px 0 0; color: var(--muted); font-size: 0.88rem; }
.wizard-screen { display: none; }
.wizard-screen.is-active { display: block; }
.wizard-screen h3 {
  margin: 10px 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem,3.5vw,2.5rem); letter-spacing: -0.04em; line-height: 1.1;
}
.wizard-screen p { color: var(--muted); line-height: 1.6; margin: 0 0 10px; }

/* Intro highlights */
.intro-highlights { display: grid; gap: 12px; margin-top: 22px; }
.ih-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 16px;
  background: rgba(13,80,160,0.05); border: 1px solid rgba(13,80,160,0.10);
}
.ih-icon { font-size: 1.6rem; flex: 0 0 auto; }
.ih-item strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 0.98rem; }
.ih-item span { display: block; font-size: 0.83rem; color: var(--muted); margin-top: 2px; }

/* Fields */
.field { display: grid; gap: 8px; margin-top: 18px; }
.field.full { width: 100%; }
.field > span { color: var(--fuchsia-soft); font-size: 0.92rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid rgba(13,80,160,0.14); border-radius: 16px;
  background: rgba(13,80,160,0.04); color: var(--text);
  font: inherit; font-size: 1rem;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: rgba(30,155,255,0.5);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(11,28,46,0.45); }
.field textarea { resize: vertical; }
.phone-row { display: grid; grid-template-columns: minmax(150px,200px) 1fr; gap: 10px; }

/* Plan picker */
.plan-picker-label {
  margin: 18px 0 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.plan-picker {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}
.plan-card {
  position: relative;
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 16px 18px;
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(13,80,160,0.14);
  background: rgba(255,255,255,0.72);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.plan-card:hover { transform: translateY(-1px); }
.plan-card.is-active {
  border-color: rgba(14,126,232,0.55);
  box-shadow: 0 0 0 3px rgba(14,126,232,0.12);
  background: linear-gradient(135deg, rgba(30,155,255,0.08), rgba(11,94,215,0.06));
}
.plan-card.is-test {
  border-style: dashed;
}
.plan-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: var(--text);
}
.plan-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
}
.plan-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}
.plan-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,71,191,0.12);
  color: #c2187a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.field-hint {
  margin: -4px 0 0;
  font-size: 0.82rem;
  color: #0c8a4a;
}

/* Final review */
.final-review {
  margin-top: 20px; padding: 18px; border-radius: 18px;
  background: rgba(13,80,160,0.05); border: 1px solid rgba(13,80,160,0.10);
}
.final-review h4 { margin: 0 0 12px; font-family: "Space Grotesk", sans-serif; }
.final-review ul { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 6px; }
.final-review li { font-size: 0.9rem; color: var(--muted); }
.final-review li strong { color: var(--text); }
.checkout-hint {
  margin-top: 16px; padding: 18px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(30,155,255,0.1), rgba(11,94,215,0.12));
  border: 1px solid rgba(13,80,160,0.14);
}
.checkout-hint-eyebrow { margin: 0 0 8px; font-size: 0.8rem; color: var(--fuchsia-soft); }
.checkout-hint h4 { margin: 0 0 6px; font-family: "Space Grotesk", sans-serif; }
.checkout-hint p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Wizard actions */
.wizard-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 20px; }
.form-status { min-height: 20px; margin-top: 12px; font-size: 0.92rem; }
.form-status.is-error { color: #c81e3c; }
.form-status.is-success { color: #0c8a4a; }

/* ── Preview panel (escuchar antes de pagar) ── */
.preview-panel {
  margin-top: 24px; padding: 28px;
  background: linear-gradient(160deg, rgba(30,155,255,0.10), rgba(11,94,215,0.08));
  border: 1px solid rgba(14,126,232,0.28);
  border-radius: var(--radius);
}
.preview-head { margin-bottom: 20px; }
.preview-head h3 { margin: 4px 0 8px; font-size: 1.3rem; }
.preview-head p { color: var(--text-muted); font-size: 0.95rem; }

.preview-spinner {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding: 28px 0; color: var(--text-muted);
}
.preview-spinner-ring {
  width: 48px; height: 48px; border-radius: 50%;
  border: 4px solid rgba(14,126,232,0.2);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.preview-player { margin: 16px 0; display: flex; flex-direction: column; gap: 14px; }
.preview-track {
  padding: 14px 16px; border-radius: 16px;
  background: linear-gradient(150deg, rgba(255,71,191,0.10), rgba(123,45,255,0.08));
  border: 1px solid rgba(255,143,224,0.28);
}
.preview-track-label {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 0.95rem;
  margin: 0 0 10px; color: var(--fuchsia-soft, #c026d3);
}
.preview-player audio { width: 100%; height: 40px; border-radius: 999px; }

.preview-pay-cta {
  margin-top: 20px; padding: 20px;
  background: rgba(255,255,255,0.6); border-radius: 12px;
  text-align: center;
}
.preview-pay-note { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.preview-pay-price { font-size: 0.85rem; color: var(--text-muted); margin-top: 10px; }

/* ── Delivery panel (sala de espera, solo sesión) ── */
.delivery-panel {
  margin-top: 24px; padding: 28px;
  background: linear-gradient(160deg, rgba(30,155,255,0.10), rgba(11,94,215,0.08));
  border: 1px solid rgba(14,126,232,0.28);
  border-radius: var(--radius);
}
.delivery-head h3 {
  margin: 8px 0 8px; font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.03em;
}
.delivery-head p { margin: 0 0 8px; color: var(--muted); line-height: 1.6; }
.delivery-pay-cta {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(14,126,232,0.22);
}
.delivery-pay-cta p { margin: 0 0 14px; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.delivery-session-note {
  font-size: 0.82rem !important; color: var(--violet-soft) !important;
  padding: 10px 12px; border-radius: 10px;
  background: rgba(13,80,160,0.08); margin-top: 10px !important;
}
.delivery-progress {
  height: 8px; border-radius: 999px; background: rgba(13,80,160,0.12);
  margin: 20px 0 16px; overflow: hidden;
}
.delivery-progress-bar {
  height: 100%; width: 12%; border-radius: 999px;
  background: linear-gradient(90deg, var(--fuchsia), var(--fuchsia-soft));
  transition: width 0.6s ease;
}
.delivery-steps {
  list-style: none; margin: 0 0 18px; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.delivery-step {
  font-size: 0.78rem; text-align: center; padding: 8px 6px; border-radius: 10px;
  color: var(--muted); background: rgba(13,80,160,0.05); border: 1px solid transparent;
}
.delivery-step.is-active {
  color: var(--text); border-color: rgba(30,155,255,0.35);
  background: rgba(30,155,255,0.12); font-weight: 600;
}
.delivery-step.is-done { color: #0c8a4a; background: rgba(12,138,74,0.10); }
.delivery-status-card {
  padding: 20px; border-radius: 16px; background: rgba(255,255,255,0.65);
  border: 1px solid var(--line); text-align: center;
}
.delivery-pulse {
  width: 14px; height: 14px; border-radius: 50%; margin: 0 auto 12px;
  background: var(--fuchsia); animation: deliveryPulse 1.4s ease-in-out infinite;
}
.delivery-pulse.is-hidden { display: none; }
.delivery-pulse.is-done { animation: none; background: #0c8a4a; }
@keyframes deliveryPulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(30,155,255,0.5); }
  50% { transform: scale(1.15); opacity: 0.85; box-shadow: 0 0 0 10px rgba(30,155,255,0); }
}
#deliveryStatusText { margin: 0; font-size: 1rem; line-height: 1.5; }
.delivery-ref { margin: 10px 0 0; font-size: 0.82rem; color: var(--muted); }
.delivery-downloads { margin-top: 18px; }
.delivery-downloads .result-track { margin-bottom: 12px; }
.delivery-email-note {
  margin-top: 14px; font-size: 0.88rem; color: var(--muted);
  padding: 12px 14px; border-radius: 12px; background: rgba(13,80,160,0.06);
}
@media (max-width: 640px) {
  .delivery-steps { grid-template-columns: repeat(2, 1fr); }
}

/* ── Payment panel ── */
.payment-panel {
  margin-top: 24px; padding: 28px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); backdrop-filter: blur(18px);
}
.pp-head { margin-bottom: 22px; }
.pp-head h3 { margin: 8px 0 8px; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.5rem,3vw,2.2rem); letter-spacing: -0.04em; }
.pp-head p { margin: 0; color: var(--muted); line-height: 1.6; }
.pp-head strong { color: var(--fuchsia-soft); }

.pp-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 12px; margin-bottom: 24px; }
.pp-method {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px; text-align: left;
  border-radius: 18px; border: 2px solid var(--line);
  background: rgba(13,80,160,0.04); color: var(--text);
  font: inherit; cursor: pointer; transition: all 0.2s;
}
.pp-method:hover { border-color: rgba(30,155,255,0.4); }
.pp-method.is-active { border-color: var(--fuchsia); background: rgba(30,155,255,0.08); }
.pp-method-icon { font-size: 1.6rem; }
.pp-method strong { font-family: "Space Grotesk", sans-serif; font-size: 1rem; }
.pp-method-sub { font-size: 0.82rem; color: var(--muted); }

.pp-pane { display: none; }
.pp-pane.is-active { display: block; animation: fadeUp 0.3s ease; }
.pp-pane-intro { color: var(--muted); margin: 0 0 18px; line-height: 1.6; }
.pp-pane-note { margin-top: 14px; font-size: 0.92rem; min-height: 18px; }
.pp-pane-note.is-success { color: #0c8a4a; }
.pp-pane-note.is-error { color: #c81e3c; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Nequi box */
.nequi-box {
  padding: 20px; margin-bottom: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(30,155,255,0.1), rgba(11,94,215,0.12));
  border: 1px solid rgba(13,80,160,0.14);
}
.nequi-step { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; color: var(--text); line-height: 1.5; }
.nequi-step:last-child { margin-bottom: 0; }
.nequi-step span {
  flex: 0 0 auto; width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--fuchsia); color: white;
  font-weight: 700; font-size: 0.85rem;
}
/* Logos de métodos de pago manual (Nequi + Bre-B), alineados a la misma altura */
.pay-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin: 4px 0 12px;
  padding: 14px 16px; border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(13,80,160,0.12);
}
.pay-logo {
  height: 34px; width: auto; display: block;
  object-fit: contain;
}
.pay-logo-sep {
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.nequi-number {
  text-align: center; margin: 16px 0;
  padding: 16px; border-radius: 14px;
  background: rgba(13,80,160,0.08);
}
.nequi-number span {
  display: block; font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem; font-weight: 700; letter-spacing: 0.05em;
}
.nequi-number small { display: block; color: var(--muted); margin-top: 4px; }

/* Manual form */
.manual-form .button { width: 100%; margin-top: 20px; }
.file-drop {
  position: relative; margin-top: 4px;
  border: 2px dashed rgba(13,80,160,0.24); border-radius: 16px;
  background: rgba(13,80,160,0.04); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.file-drop:hover { border-color: rgba(30,155,255,0.5); }
.file-drop.has-file { border-color: var(--fuchsia); border-style: solid; background: rgba(30,155,255,0.08); }
.file-drop input[type="file"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer;
}
.file-drop-inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 22px 16px; pointer-events: none;
}
.file-drop-icon { font-size: 1.4rem; }
.file-drop-text { color: var(--muted); font-size: 0.95rem; }

.paypal-buttons { min-height: 50px; }

/* ── Selección de voz (pills visuales) ── */
.field-label { display: block; font-size: 0.9rem; color: var(--muted); margin-bottom: 10px; }
/* Selector de voz — 2 col móvil, 3 tablet, 5 desktop */
.voice-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 480px) { .voice-options { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .voice-options { grid-template-columns: repeat(5, 1fr); } }

.voice-opt {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 18px 10px 14px; border-radius: 18px; cursor: pointer; text-align: center;
  background: rgba(13,80,160,0.04); border: 2px solid var(--line);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.voice-opt:hover { border-color: rgba(30,155,255,0.5); transform: translateY(-2px); }
.voice-opt input { position: absolute; opacity: 0; pointer-events: none; }
.voice-icon { font-size: 2rem; line-height: 1; }
.voice-name { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--text); }
.voice-sub { font-size: 0.72rem; color: var(--muted); line-height: 1.3; }
.voice-opt:has(input:checked) {
  border-color: var(--fuchsia);
  background: linear-gradient(150deg, rgba(30,155,255,0.18), rgba(11,94,215,0.13));
  box-shadow: 0 8px 24px rgba(30,155,255,0.25);
  transform: translateY(-2px);
}
/* Opción "Libre" ocupa la fila completa en móvil para no quedar sola */
.voice-opt:first-child { grid-column: span 2; }
@media (min-width: 480px) { .voice-opt:first-child { grid-column: span 1; } }

/* ── Casos de uso con imágenes ── */
.use-cases-section { padding: 60px clamp(18px, 4vw, 48px); }
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.use-case-card {
  display: block; text-decoration: none; color: inherit;
  border-radius: 16px; overflow: hidden; cursor: pointer;
  background: rgba(13,80,160,0.04); border: 1px solid rgba(13,80,160,0.10);
  transition: all 0.3s ease; position: relative;
}
.use-case-cta {
  display: block; margin: 0 16px 18px; font-size: 0.88rem; font-weight: 700;
  color: var(--fuchsia-soft); transition: color 0.2s;
}
.use-case-card:hover .use-case-cta { color: #064a96; }
.use-case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30,155,255,0.3);
  box-shadow: 0 16px 40px rgba(30,155,255,0.2);
}
.use-case-card img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.use-case-card:hover img { transform: scale(1.08); }
.use-case-card h3 {
  font-family: "Space Grotesk", sans-serif; font-size: 1.1rem; font-weight: 700;
  margin: 18px 16px 8px; color: var(--text);
}
.use-case-card p {
  font-size: 0.9rem; color: var(--muted); margin: 0 16px 18px; line-height: 1.5;
}

/* ── Marquesina de derechos de autor ── */
.copyright-ticker {
  margin-top: 48px;
  padding: 20px 0;
  background: linear-gradient(90deg, rgba(30,155,255,0.15), rgba(11,94,215,0.15));
  border-top: 1px solid rgba(30,155,255,0.25);
  border-bottom: 1px solid rgba(30,155,255,0.25);
  overflow: hidden;
  position: relative;
}
.ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fuchsia-soft);
  letter-spacing: 0.05em;
  padding: 0 20px;
  will-change: transform;
}
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.copyright-ticker:hover .ticker-content {
  animation-play-state: paused;
}

/* ── Caja de letra con IA ── */
.lyrics-box {
  margin: 22px 0; padding: 20px; border-radius: 20px;
  background: linear-gradient(150deg, rgba(11,94,215,0.12), rgba(30,155,255,0.08));
  border: 1px solid rgba(102,184,255,0.28);
}
.lyrics-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.lyrics-eyebrow { margin: 0; font-size: 0.8rem; color: var(--violet-soft); font-weight: 600; letter-spacing: 0.04em; }
.lyrics-head h4 { margin: 2px 0 0; font-family: "Space Grotesk", sans-serif; font-size: 1.15rem; }
.lyrics-gen-btn { min-height: 40px; padding-inline: 18px; font-size: 0.88rem; white-space: nowrap; }
.lyrics-hint { font-size: 0.85rem; color: var(--muted); margin: 12px 0; line-height: 1.5; }
.lyrics-hint.is-loading { color: var(--violet-soft); }
.lyrics-hint.is-success { color: #0c8a4a; }
.lyrics-hint.is-error { color: #c81e3c; }
#lyricsArea {
  width: 100%; resize: vertical; border-radius: 14px; padding: 14px;
  background: #ffffff; border: 1px solid var(--line); color: var(--text);
  font-family: "DM Sans", sans-serif; font-size: 0.95rem; line-height: 1.7; white-space: pre-wrap;
  transition: border-color 0.2s, opacity 0.2s;
}
#lyricsArea:focus { outline: none; border-color: var(--fuchsia); }
#lyricsArea.is-loading { opacity: 0.5; }
.lyrics-link { background: none; border: none; color: var(--violet-soft); cursor: pointer; font: inherit; font-size: 0.85rem; padding: 4px 0; }
.lyrics-link:hover { color: var(--fuchsia-soft); text-decoration: underline; }

/* ── Tarjeta de resultado (canción lista en la web) ── */
.result-card {
  text-align: left; margin-top: 12px; padding: 22px; border-radius: 20px;
  background: linear-gradient(150deg, rgba(30,155,255,0.14), rgba(11,94,215,0.12));
  border: 1px solid rgba(14,126,232,0.30);
}
.result-card h3 { margin: 0 0 6px; font-family: "Space Grotesk", sans-serif; font-size: 1.3rem; }
.result-card > p { margin: 0 0 16px; color: var(--muted); }
.result-track { margin: 14px 0; padding: 14px; border-radius: 14px; background: rgba(13,80,160,0.06); }
.result-track-title { margin: 0 0 8px; font-weight: 600; font-size: 0.95rem; }
.result-dl { display: inline-block; margin-top: 10px; min-height: 42px; padding: 10px 20px; }
.result-ref { margin: 14px 0 0; font-size: 0.8rem; color: var(--muted); }

/* ── Lyrics editor ── */
#lyricsBox { margin-top: 16px; }
/* Botones de acción ARRIBA del textarea */
.lyrics-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 12px; }
.lyrics-hint {
  font-size: 0.9rem; padding: 12px 16px; border-radius: 12px; margin: 0 0 12px;
}
.lyrics-hint:empty { display: none; }
.lyrics-hint.is-error { background: rgba(200,30,60,0.10); color: #c81e3c; }
.lyrics-hint.is-loading { background: rgba(30,155,255,0.15); color: #0b5ed7; }
.lyrics-hint.is-success { background: rgba(12,138,74,0.12); color: #0c8a4a; }
.lyrics-editor {
  width: 100%; min-height: 280px; padding: 14px; resize: vertical;
  background: #ffffff; border: 1px solid var(--line); border-radius: 14px;
  color: var(--text); font-family: "DM Sans", sans-serif; font-size: 0.9rem; line-height: 1.75;
  margin-bottom: 0;
}
.lyrics-editor:focus { outline: none; border-color: var(--fuchsia); }
.lyrics-editor.is-loading { opacity: 0.6; }
.lyrics-btn {
  padding: 11px 22px; border-radius: 10px; background: rgba(30,155,255,0.12);
  border: 1px solid rgba(30,155,255,0.3); color: #0b5ed7;
  font: inherit; font-size: 0.92rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.lyrics-btn:hover { background: rgba(30,155,255,0.22); }
.lyrics-btn:disabled { opacity: 0.5; cursor: not-allowed; }
/* Botón primario: generar */
.lyrics-btn-primary {
  background: linear-gradient(135deg, var(--fuchsia), var(--violet));
  border-color: transparent; color: #fff;
}
.lyrics-btn-primary:hover { filter: brightness(1.08); background: linear-gradient(135deg, var(--fuchsia), var(--violet)); }

/* ── PayPal pane ── */
#paypalLinkBtn { display: inline-flex; text-decoration: none; }
.paypal-confirm { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); }
.paypal-confirm-text { font-size: 0.9rem; color: var(--muted); margin: 0 0 10px; }

/* ── Footer ── */
.site-footer { padding: 32px 18px 40px; border-top: 1px solid rgba(13,80,160,0.06); }
.site-footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; color: var(--muted); font-size: 0.88rem; line-height: 1.8; }
.site-footer-inner p { margin: 0; }
.site-footer-inner strong { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; padding-bottom: 56px; }
  .hero-photo-wrap { max-width: 360px; margin: 0 auto; }
  .order-section { grid-template-columns: 1fr; }
  .order-intro { position: static; }
  .proof-strip { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .hero-visual { max-width: 100%; }
}

@media (max-width: 640px) {
  /* Hamburger visible, nav oculto por defecto en móvil */
  .nav-toggle { display: flex; }
  .header-cta { min-height: 40px; padding-inline: 16px; font-size: 0.85rem; }
  .brand-logo { height: 42px; max-width: min(210px, 62vw); }

  /* El nav se convierte en un panel deslizable bajo el header */
  .site-nav {
    display: none;
    flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(23,58,107,0.12);
    box-shadow: 0 8px 24px rgba(15,60,110,0.10);
    padding: 12px 0 16px;
    z-index: 49;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a,
  .nav-distributor {
    display: block; width: 100%;
    padding: 13px 24px; font-size: 1rem;
    border-radius: 0; text-align: left;
    border-bottom: 1px solid rgba(23,58,107,0.06);
  }
  .site-nav a:last-child,
  .nav-distributor { border-bottom: 0; }
  .hero-copy h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .wizard-actions { flex-wrap: wrap; }
  .wizard-card { padding: 18px; }
  .phone-row { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: repeat(2,1fr); }
  .samples-grid { grid-template-columns: 1fr; }
  /* Medios de pago compactos en móvil */
  .paybar-item { padding: 8px 12px; font-size: 0.82rem; }
  .paybar-items { gap: 8px; }
  .paybar-title { font-size: 0.85rem; }
}
