:root {
  --bg: #080808;
  --neon: #ccff00;
  --white: #ffffff;
  --muted: #8a8a8a;
  --muted-light: #b3b3b3;
  --card: #111111;
  --card-border: #1f1f1f;
  --header-h: 96px;
  --font: "Readex Pro", system-ui, -apple-system, sans-serif;
  --display: "Barlow Condensed", sans-serif;
  --body: "Plus Jakarta Sans", sans-serif;
  --radius-pill: 999px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ── Grain overlay global ── */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(10) infinite;
}

@keyframes grainShift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-2%, -3%);
  }
  30% {
    transform: translate(1%, 2%);
  }
  50% {
    transform: translate(-1%, 1%);
  }
  70% {
    transform: translate(3%, -1%);
  }
  90% {
    transform: translate(-2%, 2%);
  }
}

/* ── Header (Figma pills) ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem) 0;
  background: transparent;
  border: none;
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.45s var(--ease-out);
}

.site-header.is-collapsed {
  opacity: 0;
}

.site-header.is-hidden {
  opacity: 0;
  transform: translateY(-120%);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  pointer-events: auto;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-pill {
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.15rem 0.45rem 0.25rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: -0.02em;
  transition: transform 0.3s var(--ease-out);
}

.brand-pill:hover {
  transform: scale(1.02);
}

.brand-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}

.site-header .brand-icon {
  width: 4rem;
  height: 4rem;
  margin: -0.65rem 0;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-pill);
}

.site-nav a {
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  transition:
    color 0.2s,
    background 0.2s;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  background: var(--neon);
  color: var(--bg);
}

.btn-beta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s var(--ease-out),
    background 0.25s;
}

.btn-beta:hover {
  transform: translateY(-1px) scale(1.02);
  background: #f0f0f0;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn-beta svg {
  transition: transform 0.3s var(--ease-out);
}

.btn-beta:hover svg {
  transform: translateX(3px);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}

.menu-toggle:hover {
  border-color: rgba(204, 255, 0, 0.35);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.35s var(--ease-out),
    opacity 0.25s;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  pointer-events: none;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .site-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  top: calc(var(--header-h) - 0.5rem);
  left: clamp(1rem, 4vw, 2.5rem);
  right: clamp(1rem, 4vw, 2.5rem);
  z-index: 180;
  padding: 1rem 1.25rem;
  gap: 0.35rem;
  animation: navDrop 0.35s var(--ease-out);
}

body.nav-open .site-nav a {
  text-align: left;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.nav-open .header-beta {
  display: none !important;
}

@media (max-width: 767px) {
  .header-beta {
    display: none;
  }
}

/* ── Reveal system ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero [data-reveal] {
  transform: translateY(40px);
}

.word[data-reveal].is-visible {
  animation: wordPop 0.9s var(--ease-out) both;
  animation-delay: var(--delay, 0ms);
}

@keyframes wordPop {
  0% {
    opacity: 0;
    transform: translateY(48px) scale(0.96);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(calc(var(--hero-scroll, 0) * -80px * var(--parallax, 0.06)))
      scale(1);
    filter: blur(0);
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  --hero-scroll: 0;
  background-color: #080808;
  background-image: url("https://images.unsplash.com/photo-1554068865-24cecd4e34b8?w=1920&h=1080&fit=crop&auto=format");
  background-size: cover;
  background-position: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  will-change: transform, opacity;
  transform: scale(1.08);
  transition:
    opacity 0.5s ease,
    transform 0.1s linear;
}

.hero-video.is-playing {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.4) 0%,
    rgba(8, 8, 8, 0.15) 42%,
    rgba(8, 8, 8, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100svh;
}

.hero-title {
  margin: 0;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-title .word {
  position: absolute;
  display: block;
  font-size: clamp(2.75rem, 12vw, 6.5rem);
  text-transform: lowercase;
}

.word-domina {
  top: 18%;
  left: clamp(1rem, 2.5vw, 2.5rem);
  --parallax: 0.04;
}

.word-tu {
  top: 38%;
  right: clamp(1rem, 2.5vw, 2.5rem);
  left: auto;
  --parallax: 0.08;
}

.word-juego {
  top: 58%;
  left: 18%;
  --parallax: 0.12;
}

.hero-title .word.is-visible {
  transform: translateY(calc(var(--hero-scroll, 0) * -80px * var(--parallax, 0.06)));
  transition: transform 0.12s linear;
}

.hero-desc {
  position: absolute;
  top: 46%;
  left: 1.5rem;
  max-width: 15rem;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

.hero-stat {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stat strong {
  font-family: var(--body);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.stat-top {
  top: 14%;
  right: clamp(1.5rem, 5vw, 6rem);
  text-align: right;
}

.stat-bottom-left {
  bottom: clamp(4rem, 10vh, 6rem);
  left: clamp(1.5rem, 5vw, 5rem);
}

.stat-bottom-right {
  bottom: clamp(3.5rem, 9vh, 5rem);
  right: clamp(1.5rem, 5vw, 5rem);
  text-align: right;
}

/* ── Panels (sticky scroll stack) ── */
.feature-panels {
  position: relative;
  height: 400lvh;
}

.panels-sticky {
  position: sticky;
  top: 0;
  height: 100lvh;
  overflow: hidden;
}

.panels-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  will-change: opacity, transform;
}

.panel:first-child {
  opacity: 1;
  visibility: visible;
}

.panel:first-child .panel-inner {
  opacity: 1;
  transform: none;
}

.panel-bg {
  position: absolute;
  inset: -12% 0;
  will-change: transform;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.1);
}

.panel-video {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.1);
}

.panel-01 .panel-bg {
  background-image: url("https://images.unsplash.com/photo-1554068865-24cecd4e34b8?w=1920&h=1080&fit=crop&auto=format");
}

.panel-02 .panel-bg {
  background-image: url("https://images.unsplash.com/photo-1761156896762-2ef13f932004?w=1920&h=1080&fit=crop&auto=format");
}

.panel-03 .panel-bg {
  background-image: url("https://images.unsplash.com/photo-1761774957927-f133e8daff25?w=1920&h=1080&fit=crop&auto=format");
}

.panel-04 .panel-bg {
  background-image: url("https://images.unsplash.com/photo-1558365849-6ebd8b0454b2?w=1920&h=1080&fit=crop&auto=format");
}

.panel-overlay {
  position: absolute;
  inset: 0;
}

.panel-overlay-blur {
  backdrop-filter: blur(2px);
}

.panel-01 .panel-overlay {
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.55) 0%,
    rgba(8, 8, 8, 0.2) 45%,
    rgba(8, 8, 8, 0.75) 100%
  );
}

.panel-02 .panel-overlay {
  background: linear-gradient(
    135deg,
    rgba(8, 40, 75, 0.82) 0%,
    rgba(8, 8, 8, 0.35) 55%,
    rgba(8, 8, 8, 0.7) 100%
  );
}

.panel-03 .panel-overlay {
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.6) 0%,
    rgba(8, 8, 8, 0.3) 50%,
    rgba(8, 8, 8, 0.8) 100%
  );
}

.panel-04 .panel-overlay {
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.75) 0%,
    rgba(12, 32, 36, 0.65) 50%,
    rgba(8, 8, 8, 0.9) 100%
  );
}

.panel-grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.panel-grain-heavy {
  opacity: 0.22;
}

.panel-progress {
  position: absolute;
  top: calc(var(--header-h) + 0.5rem);
  right: clamp(1.25rem, 5vw, 3rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.panel-progress span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition:
    width 0.45s var(--ease-out),
    height 0.45s var(--ease-out),
    border-radius 0.45s var(--ease-out),
    background 0.35s;
}

.panel-progress span.active {
  width: 22px;
  height: 4px;
  border-radius: 4px;
  background: var(--neon);
}

.panel-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem clamp(1.25rem, 5vw, 3rem) 3.5rem;
  max-width: 36rem;
  will-change: opacity, transform;
}

.panel-tag {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--neon);
}

.panel-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 12vw, 4rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.panel-sub {
  margin: 0.75rem 0 0;
  font-family: var(--body);
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  font-weight: 700;
  color: var(--neon);
  line-height: 1.25;
}

.panel-desc {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--muted-light);
  line-height: 1.6;
}

.panel-watermark {
  position: absolute;
  right: -0.05em;
  bottom: -0.12em;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(8rem, 35vw, 16rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(204, 255, 0, 0.14);
  pointer-events: none;
  user-select: none;
  will-change: transform;
  transition: transform 0.1s linear;
}

.panel-02 .panel-watermark {
  -webkit-text-stroke-color: rgba(204, 255, 0, 0.2);
  color: rgba(204, 255, 0, 0.07);
}

.panel-03 .panel-watermark {
  -webkit-text-stroke-color: rgba(80, 190, 170, 0.22);
  color: rgba(80, 190, 170, 0.09);
}

.panel-accent-line {
  position: absolute;
  left: clamp(1.25rem, 5vw, 3rem);
  bottom: 0;
  z-index: 3;
  width: 0;
  height: 3px;
  background: var(--neon);
  transition: width 0.6s var(--ease-out);
}

/* ── Features ── */
.features-section {
  padding: 5rem clamp(1.25rem, 5vw, 3rem);
  background: var(--bg);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon);
}

.split-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 8vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.split-title span {
  display: block;
}

.split-title .accent {
  color: var(--neon);
}

.features-lead,
.coach-lead,
.ace-lead {
  margin: 1.25rem 0 0;
  max-width: 32rem;
  font-family: var(--body);
  color: var(--muted-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

.features-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--card-border);
  transition:
    transform 0.4s var(--ease-out),
    border-color 0.35s,
    box-shadow 0.35s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 255, 0, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.feature-num {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon);
}

.feature-card h3 {
  margin: 0 0 0.6rem;
  font-family: var(--body);
  font-size: 1.15rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.feature-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.feature-title-row h3 {
  margin: 0;
}

.badge-nuevo {
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  background: var(--neon);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(204, 255, 0, 0);
  }
}

/* ── Coach ── */
.coach-section {
  padding: 5rem clamp(1.25rem, 5vw, 3rem);
  background: var(--bg);
  border-top: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

.coach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(204, 255, 0, 0.03) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.015) 40px,
      rgba(255, 255, 255, 0.015) 41px
    );
  pointer-events: none;
}

.coach-head,
.coach-grid {
  position: relative;
  z-index: 1;
}

.coach-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(204, 255, 0, 0.35);
  color: var(--neon);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coach-cta {
  margin-top: 1.75rem;
  background: var(--neon);
  color: var(--bg);
}

.coach-cta:hover {
  box-shadow: 0 10px 32px rgba(204, 255, 0, 0.32);
}

.coach-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.coach-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--card-border);
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.3s;
}

.coach-card:hover {
  transform: translateY(-3px);
  border-color: rgba(204, 255, 0, 0.22);
}

.coach-card h4 {
  margin: 0 0 0.5rem;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
}

.coach-card p {
  margin: 0;
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Stats ── */
.stats-section {
  padding: 4rem clamp(1.25rem, 5vw, 3rem);
  background: var(--bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

.stat-item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--neon);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--muted);
  white-space: pre-line;
}

/* ── Bottom CTA (ACE + Download duo) ── */
.bottom-cta {
  padding: 3rem clamp(0.75rem, 3vw, 1.5rem) 2rem;
}

.bottom-cta-card {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bottom-cta-left {
  position: relative;
  padding: 2.25rem clamp(1.5rem, 4vw, 2.75rem) 2.5rem;
  background: #0a0a0a;
  overflow: hidden;
}

.bottom-cta-watermark {
  position: absolute;
  left: -0.02em;
  bottom: -0.18em;
  font-family: var(--display);
  font-size: clamp(5.5rem, 24vw, 10.5rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.bottom-cta-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 3.25rem);
}

.bottom-cta-title .accent {
  color: var(--neon);
}

.bottom-cta-lead {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  max-width: 26rem;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--muted-light);
  line-height: 1.65;
}

.bottom-cta-left .avatar-row {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.avatar-row {
  display: flex;
  align-items: center;
}

.av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  margin-left: -10px;
}

.av:first-child {
  margin-left: 0;
}

.av-1 {
  background: linear-gradient(135deg, #42a5f5, #1565c0);
}
.av-2 {
  background: linear-gradient(135deg, #ab47bc, #6a1b9a);
}
.av-3 {
  background: linear-gradient(135deg, #ec407a, #ad1457);
}
.av-4 {
  background: linear-gradient(135deg, #ffa726, #ef6c00);
}

.bottom-cta-left .av-count {
  margin-left: 0.85rem;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.bottom-cta-right {
  position: relative;
  padding: 2.25rem clamp(1.5rem, 4vw, 2.75rem) 2.5rem;
  background: var(--neon);
  color: var(--bg);
  overflow: hidden;
}

.download-app-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.1);
}

.download-app-badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.bottom-cta-right .download-orb-1 {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -50px;
  background: rgba(0, 0, 0, 0.07);
}

.bottom-cta-right .download-eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bottom-cta-right .download-title {
  position: relative;
  z-index: 1;
  margin: 0.65rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 9vw, 4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--bg);
}

.bottom-cta-right .download-title span {
  display: block;
}

.bottom-cta-right .btn-download {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1rem 1.85rem;
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--neon);
  font-weight: 700;
  font-size: 1rem;
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s;
}

.bottom-cta-right .btn-download:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.bottom-cta-right .btn-download svg {
  transition: transform 0.3s var(--ease-out);
}

.bottom-cta-right .btn-download:hover svg {
  transform: translateX(4px);
}

.download-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

@keyframes orbDrift1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 15px) scale(1.05);
  }
}

.bottom-cta-right .download-orb-1 {
  animation: orbDrift1 12s ease-in-out infinite;
}

/* Legacy aliases kept for subpages if needed */
.ace-section,
.download-section {
  display: none;
}

/* ── Footer ── */
.site-footer {
  padding: 2.5rem clamp(1.25rem, 5vw, 3rem) 2rem;
  background: var(--bg);
}

.footer-top {
  margin-bottom: 2rem;
}

.brand-pill-footer {
  background: transparent;
  border: none;
  padding-left: 0;
  color: var(--neon);
}

.footer-brand p {
  margin: 1rem 0 0;
  max-width: 22rem;
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.social-row {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.social-row a {
  color: var(--muted);
  transition:
    color 0.25s,
    transform 0.25s var(--ease-spring);
}

.social-row a:hover {
  color: var(--neon);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--card-border);
}

.footer-links h5 {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.25s, transform 0.25s;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.beta-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem !important;
  color: var(--neon) !important;
  font-weight: 500;
}

.beta-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ── Desktop ── */
@media (min-width: 768px) {
  .hero-title .word {
    font-size: 11.5vw;
  }

  .word-domina {
    left: 2.5rem;
  }

  .word-tu {
    right: 2.5rem;
  }

  .word-juego {
    left: 28%;
  }

  .hero-desc {
    left: 1.5rem;
    max-width: 15rem;
    font-size: 0.9375rem;
  }

  .stat-top {
    top: 14%;
    right: 6rem;
  }

  .stat-bottom-left {
    bottom: 6rem;
    left: 5rem;
  }

  .stat-bottom-right {
    bottom: 5rem;
    right: 5rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
  }

  body.nav-open .site-nav {
    position: fixed;
    top: calc(var(--header-h) - 0.5rem);
    left: 50%;
    right: auto;
    width: min(520px, calc(100% - 2rem));
    transform: translateX(-50%);
    flex-direction: column;
  }

  .panel-inner {
    padding-bottom: 5rem;
    max-width: 42rem;
  }

  .panel-title {
    font-size: 4rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .coach-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .coach-grid {
    margin-top: 0;
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .bottom-cta-card {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 340px;
  }

  .bottom-cta-left,
  .bottom-cta-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .social-row {
    margin-top: 0;
  }
}

@media (min-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Mobile fixes ── */
@media (max-width: 767px) {
  :root {
    --header-h: 72px;
  }

  html {
    -webkit-text-size-adjust: 100%;
  }

  .site-header {
    padding: max(0.75rem, env(safe-area-inset-top)) 1rem 0;
  }

  .site-header .brand-icon {
    width: 2.35rem;
    height: 2.35rem;
    margin: -0.25rem 0;
  }

  .brand-pill {
    padding: 0.35rem 0.85rem 0.35rem 0.2rem;
    font-size: 0.8rem;
    max-width: calc(100vw - 4.5rem);
  }

  .header-bar {
    gap: 0.5rem;
  }

  /* Hero: sin solapamientos en pantallas pequeñas */
  .hero-content {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-h) + 0.35rem) 1rem 5.5rem;
  }

  .hero-title {
    position: relative;
    height: clamp(10.5rem, 34vh, 13.5rem);
    margin: 0;
  }

  .hero-title .word {
    font-size: clamp(2.1rem, 10.5vw, 3rem);
    transform: none !important;
  }

  .hero-title .word.is-visible {
    transform: none !important;
  }

  .word-domina {
    top: 0;
    left: 0;
  }

  .word-tu {
    top: 34%;
    right: 0;
    left: auto;
  }

  .word-juego {
    top: 68%;
    left: 8%;
  }

  .hero-desc {
    position: static;
    max-width: 14rem;
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .hero-stat {
    position: absolute;
  }

  .hero-stat strong {
    font-size: 1.35rem;
  }

  .hero-stat span {
    font-size: 0.65rem;
  }

  .stat-top {
    top: calc(var(--header-h) + 0.15rem);
    right: 1rem;
    text-align: right;
  }

  .stat-bottom-left {
    bottom: 1.25rem;
    left: 1rem;
  }

  .stat-bottom-right {
    bottom: 1.25rem;
    right: 1rem;
    text-align: right;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }

  /* Paneles sticky */
  .feature-panels {
    height: 320lvh;
  }

  .panel {
    align-items: flex-end;
  }

  .panel-inner {
    padding: 1.5rem 1.25rem 2.75rem;
  }

  .panel-title {
    font-size: clamp(2.5rem, 11vw, 3.25rem);
  }

  .panel-sub {
    font-size: 1.05rem;
  }

  .panel-desc {
    font-size: 0.875rem;
  }

  .panel-watermark {
    font-size: clamp(5rem, 28vw, 7rem);
    opacity: 0.85;
  }

  .panel-progress {
    top: calc(var(--header-h) + 0.25rem);
    right: 1rem;
  }

  /* Secciones */
  .features-section,
  .coach-section,
  .stats-section {
    padding: 3.5rem 1.25rem;
  }

  .split-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .feature-card {
    padding: 1.15rem;
  }

  .bottom-cta {
    padding: 2rem 0.75rem 1.5rem;
  }

  .bottom-cta-left,
  .bottom-cta-right {
    padding: 1.75rem 1.25rem;
  }

  .bottom-cta-title {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .bottom-cta-watermark {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .site-footer {
    padding: 2.5rem 1.25rem 2rem;
  }
}
