/* ═══════════════════════════════════════════════════════════
   MisPronosticos Landing — Motion System
   Easing: cubic-bezier(0.22, 1, 0.36, 1)
   Duration: 0.4s – 0.9s
   ═══════════════════════════════════════════════════════════ */

:root {
  --mp-bg: #0B1120;
  --mp-surface: #111827;
  --mp-surface-elevated: #1a2332;
  --mp-border: rgba(255, 255, 255, 0.08);
  --mp-primary: #00A878;
  --mp-primary-glow: rgba(0, 168, 120, 0.35);
  --mp-cyan: #00F0FF;
  --mp-violet: #A78BFA;
  --mp-amber: #FCD34D;
  --mp-text: #F9FAFB;
  --mp-text-muted: #94A3B8;

  /* Motion tokens */
  --mp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mp-duration-fast: 0.4s;
  --mp-duration: 0.65s;
  --mp-duration-slow: 0.85s;
}

/* ── Base layout ───────────────────────────────────────── */
body.landing-body *,
body.landing-body *::before,
body.landing-body *::after {
  box-sizing: border-box;
}

body.landing-body {
  margin: 0;
  padding: 0;
  background: var(--mp-bg);
  color: var(--mp-text);
  overflow-x: hidden;
}

/* Contenedores centrados */
body.landing-body .max-w-7xl { max-width: 80rem; }
body.landing-body .max-w-5xl { max-width: 64rem; }
body.landing-body .max-w-4xl { max-width: 56rem; }
body.landing-body .max-w-3xl { max-width: 48rem; }
body.landing-body .max-w-2xl { max-width: 42rem; }

body.landing-body .max-w-7xl,
body.landing-body .max-w-5xl,
body.landing-body .max-w-4xl,
body.landing-body .max-w-3xl,
body.landing-body .max-w-2xl {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

body.landing-body .landing-main {
  width: 100%;
}

/* Logo principal en navbar */
.nav-logo {
  display: block;
  width: auto;
  height: 3.75rem; /* 60px */
  max-width: min(72vw, 320px);
}

@media (min-width: 640px) {
  .nav-logo {
    height: 4.5rem; /* 72px */
    max-width: 380px;
  }
}

@media (min-width: 768px) {
  .nav-logo {
    height: 5.25rem; /* 84px */
    max-width: 440px;
  }
}

@media (min-width: 1024px) {
  .nav-logo {
    height: 5.75rem; /* 92px */
    max-width: 480px;
  }
}

/* Páginas legales que usan layout + .container */
body.landing-body .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ── Ambient background glow ───────────────────────────── */
.landing-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}

.landing-mesh::before,
.landing-mesh::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  animation: mesh-drift 22s var(--mp-ease) infinite alternate;
}

.landing-mesh::before {
  width: 50vw;
  height: 50vw;
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, var(--mp-primary-glow) 0%, transparent 68%);
}

.landing-mesh::after {
  width: 40vw;
  height: 40vw;
  bottom: -18%;
  left: -12%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 68%);
  animation-delay: -8s;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orb-pulse 8s var(--mp-ease) infinite alternate;
}

.hero-ambient__orb--primary {
  width: 320px;
  height: 320px;
  top: 20%;
  right: 10%;
  background: rgba(0, 168, 120, 0.12);
}

.hero-ambient__orb--cyan {
  width: 240px;
  height: 240px;
  bottom: 10%;
  left: 5%;
  background: rgba(0, 240, 255, 0.06);
  animation-delay: -3s;
}

@keyframes mesh-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(2%, 3%, 0) scale(1.06); }
}

@keyframes orb-pulse {
  from { opacity: 0.35; transform: scale(1); }
  to   { opacity: 0.55; transform: scale(1.08); }
}

/* ── Hero stagger reveal ───────────────────────────────── */
.hero-stagger {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hero-stagger {
    gap: 1.75rem;
  }
}

.hero-stagger > * {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  animation: hero-in var(--mp-duration-slow) var(--mp-ease) forwards;
}

.hero-stagger > *:nth-child(1) { animation-delay: 0.05s; }
.hero-stagger > *:nth-child(2) { animation-delay: 0.14s; }
.hero-stagger > *:nth-child(3) { animation-delay: 0.23s; }
.hero-stagger > *:nth-child(4) { animation-delay: 0.32s; }
.hero-stagger > *:nth-child(5) { animation-delay: 0.41s; }
.hero-stagger > *:nth-child(6) { animation-delay: 0.50s; }

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Legacy hero-enter (compat) */
.hero-enter {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  animation: hero-in var(--mp-duration-slow) var(--mp-ease) forwards;
}
.hero-enter-d1 { animation-delay: 0.14s; }
.hero-enter-d2 { animation-delay: 0.23s; }
.hero-enter-d3 { animation-delay: 0.32s; }
.hero-enter-d4 { animation-delay: 0.41s; }
.hero-enter-d5 { animation-delay: 0.50s; }

/* ═══════════════════════════════════════════════════════════
   HERO PREMIUM — sports-tech composition
   ═══════════════════════════════════════════════════════════ */

.hero-premium {
  position: relative;
  min-height: calc(100vh - 4rem);
  min-height: calc(100dvh - 4rem);
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-premium {
    padding: 3rem 0 5rem;
    min-height: calc(100vh - 4.5rem);
    min-height: calc(100dvh - 4.5rem);
  }
}

/* Depth background */
.hero-premium__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-premium__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 65% 45%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 65% 45%, #000 20%, transparent 75%);
  opacity: 0.55;
}

.hero-premium__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: hero-glow-drift 14s var(--mp-ease) infinite alternate;
}

.hero-premium__glow--green {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  top: -5%;
  right: -5%;
  background: radial-gradient(circle, rgba(0, 168, 120, 0.18) 0%, transparent 68%);
}

.hero-premium__glow--cyan {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  bottom: 0;
  left: -8%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 68%);
  animation-delay: -5s;
}

.hero-premium__glow--violet {
  width: 280px;
  height: 280px;
  top: 40%;
  right: 25%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
  animation-delay: -9s;
}

@keyframes hero-glow-drift {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
  to   { transform: translate3d(2%, 3%, 0) scale(1.1); opacity: 1; }
}

/* Eyebrow + gradient headline */
.hero-premium__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mp-text-muted);
  margin-bottom: 0.85rem;
}

.hero-premium__headline {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-premium__gradient {
  background: linear-gradient(135deg, #00A878 0%, #00F0FF 55%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animated chips / badges */
.hero-premium__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-chip--live {
  background: rgba(0, 168, 120, 0.12);
  border-color: rgba(0, 168, 120, 0.35);
  color: var(--mp-primary);
  animation: chip-glow 3s ease-in-out infinite;
}

.hero-chip--ai {
  background: rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.25);
  color: var(--mp-violet);
}

@keyframes chip-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 168, 120, 0); }
  50%      { box-shadow: 0 0 16px rgba(0, 168, 120, 0.2); }
}

/* Feature pills */
.hero-premium__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mp-text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--mp-duration-fast) var(--mp-ease),
              color var(--mp-duration-fast) var(--mp-ease);
}

.hero-pill:hover {
  border-color: rgba(0, 168, 120, 0.25);
  color: #fff;
}

.hero-pill .material-symbols-outlined {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Metrics glass bar */
.hero-premium__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
}

.hero-premium__metric {
  text-align: center;
  padding: 0 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-premium__metric:last-child { border-right: none; }

.hero-premium__metric-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  background: linear-gradient(180deg, #fff 20%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-premium__metric-label {
  margin-top: 0.35rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mp-text-muted);
}

/* ── Visual stack (right column) ───────────────────────── */
.hero-premium__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  opacity: 0;
  transform: translate3d(32px, 0, 0) scale(0.94);
  filter: blur(8px);
  animation: hero-visual-in 0.9s var(--mp-ease) 0.18s forwards;
}

@keyframes hero-visual-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

/* Dashboard panel behind phone */
.hero-dash {
  position: absolute;
  width: min(100%, 340px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(11, 17, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.hero-dash__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-dash__title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mp-text-muted);
}

.hero-dash__live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--mp-primary);
  letter-spacing: 0.1em;
}

.hero-dash__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
}

.hero-dash__row:last-child { border-bottom: none; }

.hero-dash__teams {
  color: #fff;
  font-weight: 600;
}

.hero-dash__score {
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.hero-dash__meta {
  font-size: 0.6rem;
  color: var(--mp-text-muted);
  margin-top: 0.15rem;
}

/* Phone mockup */
.hero-phone {
  position: relative;
  z-index: 2;
  animation: float-y 6s ease-in-out infinite;
}

.hero-phone__frame {
  position: relative;
  padding: 0.5rem;
  border-radius: 2.5rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(0, 168, 120, 0.08),
    0 32px 64px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(0, 168, 120, 0.12);
}

.hero-phone__frame::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 5px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.hero-phone__screen {
  display: block;
  width: min(72vw, 260px);
  border-radius: 2rem;
  aspect-ratio: 9/19;
  object-fit: cover;
  object-position: top;
  background: var(--mp-surface);
}

@media (min-width: 640px) {
  .hero-phone__screen { width: 280px; }
}
@media (min-width: 1024px) {
  .hero-phone__screen { width: 300px; }
}

/* Hero Fase 1 — visual limpio */
.hero-premium__metrics--duo {
  grid-template-columns: repeat(2, 1fr);
}

.hero-premium__scroll {
  margin-top: 0.25rem;
}

.hero-premium__visual--clean {
  min-height: 400px;
}

.hero-phone--large .hero-phone__screen,
.hero-phone__screen--large {
  width: min(78vw, 300px);
}

@media (min-width: 640px) {
  .hero-phone--large .hero-phone__screen,
  .hero-phone__screen--large { width: 320px; }
}

@media (min-width: 1024px) {
  .hero-premium__visual--clean { min-height: 460px; }
  .hero-phone--large .hero-phone__screen,
  .hero-phone__screen--large { width: 340px; }
}

/* Live proof steps (producto) */
.live-proof-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .live-proof-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.live-proof-step {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.live-proof-step__num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(0, 168, 120, 0.12);
  border: 1px solid rgba(0, 168, 120, 0.25);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--mp-primary);
}

/* Planes 2 columnas */
.plan-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.plan-price--store {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  background: linear-gradient(90deg, var(--mp-primary), var(--mp-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Picks disclaimer */
.picks-disclaimer {
  padding: 0 0.5rem;
}

/* Footer logo */
.footer-logo {
  height: 2.25rem;
  width: auto;
  max-width: 200px;
}

@media (min-width: 768px) {
  .footer-logo { height: 2.5rem; }
}

/* ── Fase 2: Live proof showcase ───────────────────────── */
.live-proof-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .live-proof-showcase {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

.live-proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 639px) {
  .live-proof-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    max-width: none;
    margin: 0 -0.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .live-proof-frame {
    flex: 0 0 min(72vw, 220px);
    scroll-snap-align: start;
  }
}

.live-proof-frame {
  margin: 0;
  text-align: center;
}

.live-proof-frame--hero .live-proof-frame__device {
  border-color: rgba(0, 168, 120, 0.35);
  box-shadow: 0 0 40px rgba(0, 168, 120, 0.12);
}

.live-proof-frame__device {
  position: relative;
  border-radius: 1.25rem;
  padding: 0.45rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 200px;
  display: flex;
  align-items: stretch;
}

.live-proof-frame__device--img {
  padding: 0.35rem;
  overflow: hidden;
}

.live-proof-frame__screen {
  width: 100%;
  border-radius: 1rem;
  aspect-ratio: 9/19;
  object-fit: cover;
  object-position: top;
  display: block;
}

.live-proof-frame__caption {
  margin-top: 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mp-text-muted);
}

.live-proof-showcase__steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.live-proof-showcase__cta {
  margin-top: 0.5rem;
  width: fit-content;
}

/* Screen annotation pins */
.screen-pin {
  position: absolute;
  left: var(--pin-x, 50%);
  top: var(--pin-y, 50%);
  transform: translate(-50%, -50%);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 168, 120, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

.screen-pin::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mp-primary);
  border: 2px solid #fff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* App UI mocks (screenshots fallback) */
.app-mock {
  flex: 1;
  width: 100%;
  padding: 0.85rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #111827 0%, #0b1120 100%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.app-mock__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.65rem;
}

.app-mock__league {
  color: var(--mp-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-mock__live {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--mp-primary);
  font-weight: 700;
}

.app-mock__teams {
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}

.app-mock__score {
  color: var(--mp-primary);
  font-variant-numeric: tabular-nums;
}

.app-mock__meta {
  font-size: 0.6rem;
  color: var(--mp-text-muted);
}

.app-mock__pick {
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.app-mock__conf {
  font-size: 0.7rem;
  color: var(--mp-amber, #FCD34D);
  font-weight: 700;
}

.app-mock__bar-track {
  height: 4px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.app-mock__bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mp-primary), var(--mp-cyan, #00F0FF));
}

.app-mock__validated {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6rem;
  color: var(--mp-accent);
  font-weight: 700;
}

.app-mock__badge {
  padding: 0.2rem 0.45rem;
  border-radius: 9999px;
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(0, 168, 120, 0.15);
  color: var(--mp-primary);
}

.app-mock__badge--violet {
  background: rgba(167, 139, 250, 0.15);
  color: #A78BFA;
}

.app-mock__badge--amber {
  background: rgba(252, 211, 77, 0.15);
  color: #FCD34D;
}

.app-mock__stars {
  color: #FCD34D;
  font-size: 0.65rem;
}

.app-mock__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.app-mock__note {
  margin: 0;
  font-size: 0.6rem;
  color: var(--mp-text-muted);
}

.app-mock__push {
  display: flex;
  gap: 0.6rem;
  padding: 0.65rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-mock__push--muted { opacity: 0.65; }

.app-mock__push-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(0, 168, 120, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-mock__push-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}

.app-mock__push-body {
  font-size: 0.6rem;
  color: var(--mp-text-muted);
  margin-top: 0.15rem;
}

.app-mock__push-time {
  font-size: 0.55rem;
  color: var(--mp-text-muted);
  margin-top: 0.2rem;
}

/* Module showcase (tabs Fase 2) */
.pill-tabs__list--wrap {
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.pill-panels--modules {
  min-height: 480px;
}

@media (min-width: 768px) {
  .pill-panels--modules { min-height: 400px; }
}

.module-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .module-showcase {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    padding: 1.75rem 2rem;
  }
}

.module-showcase__screen {
  display: flex;
  justify-content: center;
}

.module-phone {
  width: min(100%, 240px);
  padding: 0.45rem;
  border-radius: 1.75rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.module-phone__img {
  width: 100%;
  border-radius: 1.35rem;
  aspect-ratio: 9/19;
  object-fit: cover;
  object-position: top;
  display: block;
}

.module-phone__fallback {
  display: none;
  min-height: 320px;
}

.module-phone__fallback.is-fallback,
.module-phone:has(.module-phone__img[style*="display: none"]) .module-phone__fallback {
  display: flex;
}

.module-showcase__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.module-showcase__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.module-showcase__bullets .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 1.15rem;
}

/* Human validation block */
.human-proof {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.04), rgba(0, 168, 120, 0.06));
  border: 1px solid rgba(0, 240, 255, 0.12);
}

@media (min-width: 768px) {
  .human-proof {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 2.25rem;
  }
}

.human-proof__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mp-accent);
}

.human-proof__avatar .material-symbols-outlined {
  font-size: 1.75rem;
}

.human-proof__criteria {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.human-proof__criteria li {
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Social proof strip (picks) */
.social-proof-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-proof-strip__item {
  flex: 1 1 200px;
  text-align: center;
}

@media (min-width: 768px) {
  .social-proof-strip__item { text-align: left; }
}

.social-proof-strip__stars {
  color: #FCD34D;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.social-proof-strip__text {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--mp-text-muted);
  line-height: 1.4;
}

.social-proof-strip__divider {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.08);
  display: none;
}

@media (min-width: 640px) {
  .social-proof-strip__divider { display: block; }
}

.social-proof-strip__stat {
  text-align: center;
}

.social-proof-strip__value {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.social-proof-strip__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mp-text-muted);
}

/* Sticky CTA mobile */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translate3d(0, 100%, 0);
  transition: transform var(--mp-duration) var(--mp-ease);
}

.sticky-cta.is-visible {
  transform: translate3d(0, 0, 0);
}

.sticky-cta__inner {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
}

.sticky-cta__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  background: var(--mp-primary);
  color: #000;
  transition: transform var(--mp-duration-fast) var(--mp-ease);
}

.sticky-cta__btn:active {
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .sticky-cta { display: none !important; }
}

.landing-body.has-sticky-cta {
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  .landing-body.has-sticky-cta { padding-bottom: 0; }
}

/* ── Fase 3: Store reviews ─────────────────────────────── */
.store-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .store-reviews__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.store-review {
  margin: 0;
  padding: 1.25rem 1.35rem;
  border-radius: 1.25rem;
  background: rgba(17, 24, 39, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.store-review__stars {
  color: #FCD34D;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.store-review__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #cbd5e1;
  flex: 1;
}

.store-review__meta {
  margin: 0;
}

.store-review__source {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--mp-text-muted);
}

.store-review__source--play { color: #86efac; }
.store-review__source--apple { color: #93c5fd; }

/* ── FAQ accordion ───────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border-radius: 1rem;
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(0, 168, 120, 0.25);
  background: rgba(17, 24, 39, 0.7);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__icon {
  flex-shrink: 0;
  color: var(--mp-text-muted);
  transition: transform var(--mp-duration-fast) var(--mp-ease);
}

.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
  color: var(--mp-primary);
}

.faq-item__answer {
  padding: 0 1.25rem 1.15rem;
}

.faq-item__answer p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
}

/* Floating insight cards */
.hero-float {
  position: absolute;
  z-index: 4;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: rgba(17, 24, 39, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  min-width: 140px;
}

.hero-float--tl {
  top: 4%;
  left: -2%;
  animation: float-y-alt 4.5s ease-in-out infinite;
  animation-delay: -0.8s;
}

.hero-float--tr {
  top: 8%;
  right: -4%;
  animation: float-y 5.2s ease-in-out infinite;
  animation-delay: -2s;
}

.hero-float--bl {
  bottom: 18%;
  left: -6%;
  animation: float-y-alt 5.8s ease-in-out infinite;
  animation-delay: -3.5s;
}

.hero-float--br {
  bottom: 8%;
  right: -2%;
  animation: float-y 4.8s ease-in-out infinite;
  animation-delay: -1.5s;
}

@media (max-width: 639px) {
  .hero-float--tl { left: 0; top: 0; }
  .hero-float--tr { right: 0; top: 2%; }
  .hero-float--bl { left: 0; bottom: 12%; }
  .hero-float--br { right: 0; bottom: 2%; }
  .hero-float { min-width: 120px; padding: 0.6rem 0.75rem; font-size: 0.85rem; }
  .hero-dash { display: none; }
}

.hero-float__label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mp-text-muted);
  margin-bottom: 0.2rem;
}

.hero-float__value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.hero-float__value--ai { color: var(--mp-violet); }
.hero-float__value--live { color: var(--mp-primary); }

/* Probability ring */
.hero-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: conic-gradient(var(--mp-violet) 0% 87%, rgba(255,255,255,0.08) 87% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-ring::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.95);
}

.hero-ring span {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
}

.hero-float--tr {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Odds tag */
.hero-odds {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.15rem 0.45rem;
  border-radius: 0.35rem;
  background: rgba(252, 211, 77, 0.15);
  border: 1px solid rgba(252, 211, 77, 0.3);
  color: var(--mp-amber);
  font-size: 0.7rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* Stagger extension for 7th child */
.hero-stagger > *:nth-child(7) { animation-delay: 0.59s; }

@media (prefers-reduced-motion: reduce) {
  .hero-premium__visual,
  .hero-chip--live,
  .hero-premium__glow,
  .hero-phone,
  .hero-float {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  filter: blur(6px);
  transition:
    opacity var(--mp-duration) var(--mp-ease),
    transform var(--mp-duration) var(--mp-ease),
    filter var(--mp-duration) var(--mp-ease);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  will-change: auto;
}

/* Variants */
.reveal--fade {
  transform: none;
  filter: none;
}
.reveal--fade.is-visible { transform: none; }

.reveal--left {
  transform: translate3d(-24px, 0, 0);
}
.reveal--right {
  transform: translate3d(24px, 0, 0);
}

.reveal--scale {
  transform: scale(0.96);
  filter: blur(4px);
}
.reveal--scale.is-visible {
  transform: scale(1);
  filter: blur(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* Stagger group — children animate when parent is visible */
.stagger-group .stagger-item {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  filter: blur(4px);
  transition:
    opacity var(--mp-duration) var(--mp-ease),
    transform var(--mp-duration) var(--mp-ease),
    filter var(--mp-duration) var(--mp-ease);
  transition-delay: calc(var(--i, 0) * 0.08s);
}

.stagger-group.is-visible .stagger-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* ── Floating mockup ───────────────────────────────────── */
@keyframes float-y {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -10px, 0); }
}

@keyframes float-y-alt {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -8px, 0); }
}

.mockup-float {
  animation: float-y 5.5s ease-in-out infinite;
  will-change: transform;
}

.float-card {
  animation: float-y-alt 4.2s ease-in-out infinite;
  will-change: transform;
}
.float-card--delay-1 { animation-delay: -1.2s; }
.float-card--delay-2 { animation-delay: -2.8s; }

/* Parallax layers — JS sets transform */
[data-parallax] {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ── Cards: hover lift + glow + shadow ─────────────────── */
.glass-card {
  background: rgba(17, 24, 39, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--mp-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform var(--mp-duration-fast) var(--mp-ease),
    border-color var(--mp-duration-fast) var(--mp-ease),
    box-shadow var(--mp-duration-fast) var(--mp-ease);
}

.card-lift {
  transition:
    transform var(--mp-duration-fast) var(--mp-ease),
    border-color var(--mp-duration-fast) var(--mp-ease),
    box-shadow var(--mp-duration-fast) var(--mp-ease);
}

.card-lift:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(0, 168, 120, 0.22);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(0, 168, 120, 0.1),
    0 0 24px rgba(0, 168, 120, 0.08);
}

/* Feature accent top border */
.accent-ai    { --accent: var(--mp-primary); }
.accent-top   { --accent: var(--mp-violet); }
.accent-spec  { --accent: var(--mp-amber); }
.accent-human { --accent: var(--mp-cyan); }

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent, var(--mp-primary)), transparent);
  opacity: 0;
  transition: opacity var(--mp-duration-fast) var(--mp-ease);
}

.feature-card:hover::before { opacity: 1; }

.feature-card .icon-wrap {
  transition: transform var(--mp-duration-fast) var(--mp-ease);
}
.feature-card:hover .icon-wrap {
  transform: scale(1.08);
}

/* ── Premium buttons ───────────────────────────────────── */
.btn-premium {
  position: relative;
  overflow: hidden;
  transition:
    transform var(--mp-duration-fast) var(--mp-ease),
    box-shadow var(--mp-duration-fast) var(--mp-ease),
    background-color var(--mp-duration-fast) var(--mp-ease),
    border-color var(--mp-duration-fast) var(--mp-ease);
}

.btn-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--mp-ease);
}

.btn-premium:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 8px 28px rgba(0, 168, 120, 0.25);
}

.btn-premium:hover::after {
  transform: translateX(120%);
}

.btn-premium:active {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.1s;
}

.btn-ghost-premium {
  transition:
    transform var(--mp-duration-fast) var(--mp-ease),
    background-color var(--mp-duration-fast) var(--mp-ease),
    border-color var(--mp-duration-fast) var(--mp-ease),
    box-shadow var(--mp-duration-fast) var(--mp-ease);
}

.btn-ghost-premium:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* CTA pulse ring */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(0, 168, 120, 0.4); }
  70%  { box-shadow: 0 0 0 12px rgba(0, 168, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 168, 120, 0); }
}

.btn-primary-glow {
  animation: pulse-ring 3s ease-out infinite;
}

/* ── Stat counters ─────────────────────────────────────── */
.stat-value {
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.72) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-value.is-counting {
  animation: stat-pop 0.5s var(--mp-ease);
}

@keyframes stat-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* ── Live ticker (infinite horizontal) ─────────────────── */
.ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-track--fast {
  animation-duration: 28s;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mp-text-muted);
}

.ticker-item__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mp-primary);
  animation: live-blink 2s ease-in-out infinite;
}

.ticker-item--live { color: var(--mp-primary); }

@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* Legacy marquee compat */
.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

/* ── Pill tabs ─────────────────────────────────────────── */
.pill-tabs {
  position: relative;
}

.pill-tabs__list {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.3rem;
  border-radius: 9999px;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid var(--mp-border);
  position: relative;
}

.pill-tab {
  position: relative;
  z-index: 1;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mp-text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--mp-duration-fast) var(--mp-ease);
  white-space: nowrap;
}

.pill-tab:hover { color: var(--mp-text); }

.pill-tab.is-active {
  color: #000;
}

.pill-tabs__indicator {
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  height: calc(100% - 0.6rem);
  border-radius: 9999px;
  background: var(--mp-primary);
  transition:
    transform var(--mp-duration) var(--mp-ease),
    width var(--mp-duration) var(--mp-ease);
  z-index: 0;
  pointer-events: none;
}

/* Tab panels */
.pill-panels {
  position: relative;
  min-height: 280px;
}

.pill-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  filter: blur(4px);
  pointer-events: none;
  transition:
    opacity var(--mp-duration) var(--mp-ease),
    transform var(--mp-duration) var(--mp-ease),
    filter var(--mp-duration) var(--mp-ease);
}

.pill-panel.is-active {
  position: relative;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  pointer-events: auto;
}

/* ── Pricing popular glow ──────────────────────────────── */
.plan-popular { position: relative; }

.plan-popular::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--mp-primary), var(--mp-cyan));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Mobile nav ────────────────────────────────────────── */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--mp-duration) var(--mp-ease);
}

#mobile-menu.is-open {
  max-height: 360px;
}

/* ── UI chips ──────────────────────────────────────────── */
.ui-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Live badge pulse ──────────────────────────────────── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.live-badge__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mp-primary);
}

.live-badge__dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--mp-primary);
  animation: live-blink 2s ease-in-out infinite;
}

/* ── Progress bar animate on reveal ───────────────────── */
.progress-bar {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s var(--mp-ease) 0.3s;
}

.reveal.is-visible .progress-bar,
.pill-panel.is-active .progress-bar {
  transform: scaleX(1);
}

/* ── Store badges (App Store / Google Play) ──────────────── */
.store-badge {
  display: inline-block;
  line-height: 0;
  transition: transform var(--mp-duration-fast) var(--mp-ease), opacity var(--mp-duration-fast) var(--mp-ease);
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-badge__img {
  display: block;
  height: 3rem;
  width: auto;
}

@media (min-width: 640px) {
  .store-badge__img {
    height: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .store-badge__img {
    height: 3.75rem;
  }
}

/* ── Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .stagger-group .stagger-item,
  .hero-stagger > *,
  .hero-enter,
  .pill-panel {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  .mockup-float,
  .float-card,
  .ticker-track,
  .marquee-track,
  .btn-primary-glow,
  .landing-mesh::before,
  .landing-mesh::after,
  .hero-ambient__orb,
  .ticker-item__dot,
  .live-badge__dot::before {
    animation: none !important;
  }

  [data-parallax] {
    transform: none !important;
  }

  .progress-bar {
    transform: scaleX(1) !important;
  }
}

/* Class added by JS when reduced motion preferred */
html.mp-reduced-motion .reveal,
html.mp-reduced-motion .stagger-group .stagger-item,
html.mp-reduced-motion .hero-stagger > *,
html.mp-reduced-motion .hero-enter {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
}

html.mp-reduced-motion .mockup-float,
html.mp-reduced-motion .float-card,
html.mp-reduced-motion .ticker-track,
html.mp-reduced-motion .marquee-track {
  animation: none !important;
}

/* ═══════════════════════════════════════════════════════════
   PICKS CAROUSEL — live sports cards
   ═══════════════════════════════════════════════════════════ */

.picks-carousel {
  position: relative;
  width: 100%;
}

.picks-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding: 0.5rem 0 1.5rem;
}

.picks-carousel__viewport::-webkit-scrollbar { display: none; }
.picks-carousel__viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.picks-carousel__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-left: max(1.25rem, calc((100vw - 80rem) / 2 + 1.25rem));
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .picks-carousel__track {
    gap: 1.25rem;
    padding-left: max(1.5rem, calc((100vw - 80rem) / 2 + 1.5rem));
    padding-right: 1.5rem;
  }
}

.picks-carousel__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid var(--mp-border);
  color: var(--mp-text-muted);
  cursor: pointer;
  transition:
    color var(--mp-duration-fast) var(--mp-ease),
    border-color var(--mp-duration-fast) var(--mp-ease),
    background-color var(--mp-duration-fast) var(--mp-ease),
    transform var(--mp-duration-fast) var(--mp-ease);
}

.picks-carousel__nav:hover {
  color: #fff;
  border-color: rgba(0, 168, 120, 0.35);
  background: rgba(0, 168, 120, 0.08);
  transform: translateY(-1px);
}

.picks-carousel__nav:active { transform: translateY(0); }

.picks-carousel__fade {
  position: absolute;
  top: 0;
  bottom: 1.5rem;
  width: min(8vw, 80px);
  pointer-events: none;
  z-index: 2;
}

.picks-carousel__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--mp-bg) 0%, transparent 100%);
}

.picks-carousel__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--mp-bg) 0%, transparent 100%);
}

/* Pick card */
.pick-card {
  flex: 0 0 auto;
  width: min(82vw, 300px);
  scroll-snap-align: start;
  padding: 1.25rem;
  border-radius: 1.35rem;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--mp-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  transition:
    transform var(--mp-duration-fast) var(--mp-ease),
    border-color var(--mp-duration-fast) var(--mp-ease),
    box-shadow var(--mp-duration-fast) var(--mp-ease);
}

@media (min-width: 640px) {
  .pick-card { width: 300px; }
}

.pick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 120, 0.25);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(0, 168, 120, 0.06);
}

.pick-card--live {
  border-color: rgba(0, 168, 120, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(0, 168, 120, 0.06);
}

.pick-card--special {
  border-color: rgba(252, 211, 77, 0.2);
}

.pick-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.pick-card__league {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mp-text-muted);
}

.pick-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pick-card__badge--live {
  background: rgba(0, 168, 120, 0.12);
  color: var(--mp-primary);
  border: 1px solid rgba(0, 168, 120, 0.25);
}

.pick-card__badge--top {
  background: rgba(167, 139, 250, 0.12);
  color: var(--mp-violet);
  border: 1px solid rgba(167, 139, 250, 0.25);
}

.pick-card__badge--special {
  background: rgba(252, 211, 77, 0.12);
  color: var(--mp-amber);
  border: 1px solid rgba(252, 211, 77, 0.25);
}

.pick-card__match {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.pick-card__vs {
  font-weight: 500;
  color: var(--mp-text-muted);
  font-size: 0.85em;
}

.pick-card__pick {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
}

.pick-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.pick-card__stars {
  color: var(--mp-amber);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.pick-card__conf {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--mp-primary);
  font-variant-numeric: tabular-nums;
}

.pick-card__bar {
  height: 4px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.pick-card__bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mp-primary), var(--mp-cyan));
  transform-origin: left;
  animation: pick-bar-in 1s var(--mp-ease) 0.2s both;
}

.pick-card__bar-fill--violet {
  background: linear-gradient(90deg, var(--mp-violet), var(--mp-primary));
}

.pick-card__bar-fill--amber {
  background: linear-gradient(90deg, var(--mp-amber), #f59e0b);
}

.pick-card__bar-fill--cyan {
  background: linear-gradient(90deg, var(--mp-cyan), var(--mp-primary));
}

@keyframes pick-bar-in {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.pick-card__hint {
  font-size: 0.68rem;
  color: var(--mp-text-muted);
  line-height: 1.4;
  margin: 0;
}

/* IA pipeline nodes (cómo funciona) */
.ia-pipeline__node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 168, 120, 0.35);
  border: 2px solid rgba(0, 168, 120, 0.5);
  flex-shrink: 0;
}

.ia-pipeline__node--active {
  background: var(--mp-primary);
  box-shadow: 0 0 12px rgba(0, 168, 120, 0.4);
}

.ia-pipeline__node--pulse {
  background: var(--mp-cyan);
  border-color: var(--mp-cyan);
  animation: pipeline-pulse 2.5s ease-in-out infinite;
}

@keyframes pipeline-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(0, 240, 255, 0); }
}

.ia-pipeline__line {
  flex: 1;
  height: 2px;
  margin-top: 4px;
  background: linear-gradient(90deg, var(--mp-primary), var(--mp-violet), var(--mp-cyan));
  opacity: 0.45;
  border-radius: 1px;
}

@media (prefers-reduced-motion: reduce) {
  .pick-card__bar-fill { animation: none; transform: scaleX(1); }
  .ia-pipeline__node--pulse { animation: none; }
}
