/* ═══════════════════════════════════════════════════════════
   LuduSport — Landing Page Stylesheet (standalone)
   Concept 1 Tech Crest · Dark Glassmorphism
   Tokens extraídos de styles.css :root (consistencia de marca)
   ═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  /* Fondos dark */
  --bg-base: #060913;
  --bg-panel: #0c1020;
  --bg-card: rgba(12, 16, 32, 0.45);

  /* Bordes glass */
  --border-glass: rgba(255, 255, 255, 0.05);
  --border-glass-hover: rgba(255, 255, 255, 0.12);

  /* Texto */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Marca */
  --brand-cyan: #00f0ff;     /* Formativo / IA */
  --brand-violet: #b026ff;   /* Arena / Campeonatos */
  --brand-amber: #f59e0b;

  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #00f0ff 0%, #b026ff 100%);
  --gradient-accent: linear-gradient(135deg, #ec4899 0%, #b026ff 100%);

  /* Sombras */
  --shadow-soft: 0 8px 32px rgba(3, 7, 18, 0.5);
  --shadow-glow-cyan: 0 0 24px rgba(0, 240, 255, 0.25);
  --shadow-glow-violet: 0 0 24px rgba(176, 38, 255, 0.25);

  /* Transiciones */
  --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Tipografía */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
}

/* ── Reset minimal ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── Utilidades ──────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

.grad-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.glass {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  transition: border-color var(--t-smooth), transform var(--t-smooth), box-shadow var(--t-smooth);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brand-cyan); color: #060913; padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ── Botones ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; border-radius: var(--radius-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  white-space: nowrap; cursor: pointer;
}
.btn:focus-visible { outline: 2px solid var(--brand-cyan); outline-offset: 3px; }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--primary {
  background: var(--gradient-primary); color: #060913;
  box-shadow: var(--shadow-glow-cyan);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(0,240,255,0.45); }
.btn--ghost {
  background: rgba(255,255,255,0.04); color: var(--text-primary);
  border: 1px solid var(--border-glass-hover);
}
.btn--ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }

/* ── Portal de Fans: botón con live dot pulsante ─────────── */
.btn--fans {
  background: rgba(255, 59, 92, 0.08);
  color: var(--text-primary);
  border: 1px solid rgba(255, 59, 92, 0.35);
  position: relative;
}
.btn--fans:hover {
  background: rgba(255, 59, 92, 0.16);
  border-color: rgba(255, 59, 92, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(255, 59, 92, 0.28);
}
.btn--block { width: 100%; }

/* Live dot rojo — convención universal "EN VIVO" */
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff3b5c;
  box-shadow: 0 0 0 0 rgba(255, 59, 92, 0.7);
  animation: live-pulse 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  flex-shrink: 0;
}
.live-dot--lg { width: 10px; height: 10px; }
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 59, 92, 0.7); transform: scale(1); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 59, 92, 0);  transform: scale(1.12); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 92, 0);   transform: scale(1); }
}

/* CTA al pie del pillar "Arena de Campeonatos" */
.pillar__cta {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--border-glass);
}

/* ── Píldoras / Tags ─────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 500;
  color: var(--brand-cyan);
  background: rgba(0,240,255,0.08); border: 1px solid rgba(0,240,255,0.2);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.pill svg { width: 15px; height: 15px; }
.tag {
  font-size: 0.74rem; font-weight: 500; color: var(--text-secondary);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-glass);
  padding: 4px 10px; border-radius: 999px;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--t-smooth), border-color var(--t-smooth);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,9,19,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-glass);
}
.nav__inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__logo { display: flex; filter: drop-shadow(0 0 8px rgba(0,240,255,0.3)); }
.nav__name { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.01em; }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 0.92rem; color: var(--text-secondary); font-weight: 500;
  transition: color var(--t-fast);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; padding: 8px; color: var(--text-primary); }
.nav__toggle svg { width: 24px; height: 24px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 10%, rgba(0,240,255,0.13), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(176,38,255,0.13), transparent 60%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero__title {
  font-family: var(--font-heading); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 22px;
}
.hero__lead { font-size: 1.12rem; color: var(--text-secondary); max-width: 560px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; }
.hero__trust li { display: flex; align-items: center; gap: 7px; font-size: 0.86rem; color: var(--text-secondary); }
.hero__trust svg { width: 16px; height: 16px; color: var(--brand-cyan); }

/* Mockup card del hero */
.hero__visual { display: flex; justify-content: center; }
.hero__card { width: 100%; max-width: 380px; padding: 20px; box-shadow: var(--shadow-soft); }
.hero__card-head { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot--cyan { background: var(--brand-cyan); }
.dot--amber { background: var(--brand-amber); }
.dot--violet { background: var(--brand-violet); }
.hero__card-title { margin-left: 8px; font-family: var(--font-heading); font-size: 0.82rem; color: var(--text-secondary); font-weight: 500; }
.hero__pitch {
  background: linear-gradient(180deg, rgba(16,185,129,0.1), rgba(6,9,19,0.4));
  border-radius: var(--radius-sm); padding: 16px; border: 1px solid var(--border-glass);
}
.pitch-svg { width: 100%; height: auto; }
.player--cyan circle { fill: var(--brand-cyan); filter: drop-shadow(0 0 4px rgba(0,240,255,0.6)); }
.player--violet circle { fill: var(--brand-violet); filter: drop-shadow(0 0 4px rgba(176,38,255,0.6)); }
.ball-trail { animation: dash 3s linear infinite; }
.hero__card-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
@keyframes dash { to { stroke-dashoffset: -50; } }

/* ── SOCIAL PROOF ────────────────────────────────────────── */
.proof { padding: 48px 0; border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); }
.proof__label { text-align: center; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 22px; }
.proof__badges { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.proof__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 500; color: var(--text-secondary);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-glass);
  padding: 9px 18px; border-radius: 999px;
}
.proof__badge svg { width: 16px; height: 16px; color: var(--brand-cyan); }
.proof__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat__num {
  display: block; font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; line-height: 1;
}
.stat__label { display: block; font-size: 0.84rem; color: var(--text-muted); margin-top: 8px; }

/* ── Secciones genéricas ─────────────────────────────────── */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-panel); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow {
  display: block; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--brand-cyan); margin-bottom: 14px;
}
.section__head h2 {
  font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.section__lead { font-size: 1.05rem; color: var(--text-secondary); }

/* ── Pilares ─────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; }
.pillar { padding: 36px 32px; }
.pillar--cyan:hover { border-color: rgba(0,240,255,0.3); box-shadow: var(--shadow-glow-cyan); transform: translateY(-4px); }
.pillar--violet:hover { border-color: rgba(176,38,255,0.3); box-shadow: var(--shadow-glow-violet); transform: translateY(-4px); }
.pillar__icon {
  width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.pillar--cyan .pillar__icon { background: rgba(0,240,255,0.1); color: var(--brand-cyan); }
.pillar--violet .pillar__icon { background: rgba(176,38,255,0.1); color: var(--brand-violet); }
.pillar__icon svg { width: 28px; height: 28px; }
.pillar h3 { font-family: var(--font-heading); font-weight: 600; font-size: 1.4rem; margin-bottom: 18px; }
.pillar__list li { display: flex; gap: 10px; padding: 9px 0; color: var(--text-secondary); font-size: 0.96rem; }
.pillar__list svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; }
.pillar--cyan .pillar__list svg { color: var(--brand-cyan); }
.pillar--violet .pillar__list svg { color: var(--brand-violet); }

/* ── Grid de beneficios ──────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit { padding: 28px 24px; }
.benefit:hover { border-color: var(--border-glass-hover); transform: translateY(-3px); }
.benefit__icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); margin-bottom: 16px;
}
.benefit__icon svg { width: 24px; height: 24px; color: var(--brand-cyan); }
.benefit h4 { font-family: var(--font-heading); font-weight: 600; font-size: 1.08rem; margin-bottom: 8px; }
.benefit p { font-size: 0.92rem; color: var(--text-secondary); }

/* ── Pasos (cómo funciona) ───────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; }
.step:hover { border-color: var(--border-glass-hover); }
.step__num {
  position: absolute; top: -16px; left: 24px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient-primary); color: #060913;
  font-family: var(--font-heading); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow-cyan);
}
.step svg { width: 26px; height: 26px; color: var(--brand-cyan); margin-bottom: 14px; margin-top: 6px; }
.step h4 { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--text-secondary); }

/* ── Segmentos (para quién) ──────────────────────────────── */
.segments { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.segment { padding: 30px 24px; text-align: center; }
.segment:hover { border-color: var(--border-glass-hover); transform: translateY(-3px); }
.segment svg { width: 30px; height: 30px; color: var(--brand-violet); margin: 0 auto 14px; }
.segment h4 { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; margin-bottom: 6px; }
.segment p { font-size: 0.9rem; color: var(--text-secondary); }

/* ── Pago por uso ────────────────────────────────────────── */
.section--usage { background: var(--bg-base); }
.usage { text-align: center; max-width: 720px; margin: 0 auto; }
.usage__icon {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,240,255,0.08); border: 1px solid rgba(0,240,255,0.2);
  box-shadow: var(--shadow-glow-cyan);
}
.usage__icon svg { width: 34px; height: 34px; color: var(--brand-cyan); }
.usage h2 { font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 16px; }
.usage__lead { font-size: 1.08rem; color: var(--text-secondary); margin-bottom: 32px; }
.usage__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { padding: 4px 22px; overflow: hidden; }
.faq__item[open] { border-color: var(--border-glass-hover); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; font-family: var(--font-heading); font-weight: 500; font-size: 1.02rem;
  cursor: pointer; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg { width: 20px; height: 20px; color: var(--brand-cyan); flex-shrink: 0; transition: transform var(--t-smooth); }
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__item p { padding: 0 0 20px; color: var(--text-secondary); font-size: 0.96rem; }

/* ── CTA final ───────────────────────────────────────────── */
.section--cta { padding: 80px 0; }
.cta-card {
  padding: 56px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(0,240,255,0.06), rgba(176,38,255,0.06)), var(--bg-card);
}
.cta-card__content h2 { font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 10px; }
.cta-card__content p { color: var(--text-secondary); margin-bottom: 28px; }
.cta-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.cta-form input {
  flex: 1; min-width: 220px; padding: 15px 18px; font-family: var(--font-body); font-size: 0.98rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-sm); color: var(--text-primary); transition: border-color var(--t-fast);
}
.cta-form input::placeholder { color: var(--text-muted); }
.cta-form input:focus { outline: none; border-color: var(--brand-cyan); }
.cta-form__note { width: 100%; font-size: 0.86rem; margin-top: 8px; min-height: 1.2em; }
.cta-form__note.ok { color: var(--brand-cyan); }
.cta-form__note.err { color: #f87171; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { padding: 56px 0 40px; border-top: 1px solid var(--border-glass); background: var(--bg-panel); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer__brand p { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; max-width: 460px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 0.9rem; color: var(--text-secondary); transition: color var(--t-fast); }
.footer__links a:hover { color: var(--brand-cyan); }
.footer__copy { font-size: 0.82rem; color: var(--text-muted); }

/* ── Botón flotante de WhatsApp (FAB) ─────────────────────── */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wa-fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6); }
.wa-fab:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.wa-fab::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 680px) {
  .wa-fab { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab::after { animation: none; }
}

/* ── Video institucional showcase ────────────────────────── */
.section--showcase { padding: 64px 0; }
.showcase-frame {
  padding: 14px; margin: 0;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.showcase-video {
  /* Responsive canónico para <video>: width:100% + height:auto hereda el
     aspect-ratio NATIVO del video (16:9 de sus metadatos), sin forzarlo vía
     CSS. Quitar aspect-ratio + object-fit elimina el bug móvil donde el
     navegador calculaba altura ambigua → video desfasado/comprimido. */
  width: 100%; height: auto;
  display: block;
  border-radius: calc(var(--radius) - 4px);
  background: var(--bg-base);
}
.showcase-caption {
  text-align: center; font-size: 0.88rem;
  color: var(--text-muted); padding: 12px 8px 4px;
}

/* ── App móvil / descarga APK ────────────────────────────── */
.section--app { padding: 80px 0; }
.app-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem; align-items: center;
  padding: 40px;
}
.app-block__media { display: flex; justify-content: center; }
.app-block__media img {
  max-width: 280px; width: 100%; height: auto;
  filter: drop-shadow(0 12px 32px rgba(0,240,255,0.15));
}
.app-block__content h2 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  letter-spacing: -0.02em; margin: 6px 0 14px;
}
.app-block__content p { color: var(--text-secondary); margin-bottom: 18px; }
.app-block__list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 8px; }
.app-block__list li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.app-block__list i { color: var(--brand-cyan); width: 18px; height: 18px; }
.app-block__note {
  font-size: 0.82rem; color: var(--text-muted);
  margin-top: 10px;
}

@media (max-width: 768px) {
  .app-block { grid-template-columns: 1fr; padding: 28px 20px; gap: 1.8rem; text-align: center; }
  .app-block__list { justify-items: start; }
  .app-block__list li { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-video { /* el navegador gestiona autoplay según la preferencia */ }
}

/* ═══ Responsive ═══════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; max-width: 420px; margin: 0 auto; }
  .pillars { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .segments { grid-template-columns: repeat(2, 1fr); }
  .proof__stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(6,9,19,0.97); backdrop-filter: blur(16px);
    padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--border-glass);
  }
  /* El botón Portal de Fans del navbar cede paso al CTA primario en móvil */
  .nav__cta .btn--fans { display: none; }
  .section { padding: 72px 0; }
  .benefits-grid, .steps, .segments { grid-template-columns: 1fr; }
  .cta-card { padding: 36px 24px; }
  .cta-form { flex-direction: column; }
  .cta-form .btn { width: 100%; }
  .hero { padding: 120px 0 70px; }
}

/* ── Accesibilidad: movimiento reducido ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .ball-trail { animation: none; }
  .live-dot { animation: none; box-shadow: 0 0 8px rgba(255, 59, 92, 0.6); }
}
