/* =============================================================
   PASSO RUNNERS V2 — Editorial Sport Premium
   ============================================================= */

/* 1. TOKENS */
:root {
  --bg-black:      #0A0A0A;
  --bg-elevated:   #141414;
  --bg-card:       #181818;
  --orange:        #FF6B1A;
  --orange-glow:   #FF8533;
  --orange-deep:   #E55400;
  --text:          #FFFFFF;
  --text-muted:    #A1A1A1;
  --text-dim:      #6F6F6F;
  --border:        #262626;
  --border-strong: #3A3A3A;
  --wa-green:      #25D366;

  --display: "Anton", "Bebas Neue", Impact, sans-serif;
  --body:    "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  --mono:    "JetBrains Mono", "Courier New", monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.4, 0.64, 1);

  --gutter: clamp(1.2rem, 4vw, 3rem);
  --section: clamp(5rem, 11vw, 9rem);
  --maxw: 1440px;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--bg-black);
}
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-black);
  overflow-x: clip;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p  { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: .95; letter-spacing: -.02em; font-weight: 400; }
ul { list-style: none; padding: 0; }
::selection { background: var(--orange); color: var(--bg-black); }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: var(--orange); color: var(--bg-black); z-index: 9999; border-radius: 8px; font-weight: 600; }
.skip-link:focus { top: 1rem; }

/* 3. UTILITIES */
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.display {
  font-family: var(--display);
  font-size: clamp(2.8rem, 9vw, 7.6rem);
  line-height: .92;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.display em {
  font-style: italic;
  color: var(--orange);
  font-family: var(--display);
}
.lead {
  color: var(--text-muted);
  max-width: 48ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin-top: 1.4rem;
}
.section-head {
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto var(--gutter);
}

/* 4. REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-split] { opacity: 1; transform: none; }

/* 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.8rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), background .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform .4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--orange);
  color: var(--bg-black);
  box-shadow: 0 10px 30px -8px rgba(255,107,26,.5), 0 0 0 0 rgba(255,107,26,.6);
}
.btn-primary:hover {
  background: var(--orange-glow);
  box-shadow: 0 14px 40px -6px rgba(255,107,26,.7), 0 0 0 8px rgba(255,107,26,.08);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,.02);
}
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn-big { padding: 1.4rem 2.6rem; font-size: .95rem; }

/* 6. CURSOR */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0;
  transition: opacity .3s var(--ease-out);
  mix-blend-mode: difference;
}
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out);
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), border-color .3s var(--ease-out);
}
.cursor.is-hover .cursor-dot  { width: 0; height: 0; }
.cursor.is-hover .cursor-ring { width: 64px; height: 64px; border-color: var(--orange); }

@media (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
}

/* 7. SPLASH */
.splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-black);
  display: grid; place-items: center;
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out {
  animation: splashOut .8s var(--ease-out) forwards;
}
.splash-inner { text-align: center; }
.splash-logo {
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 4rem);
  letter-spacing: .04em;
  color: var(--text);
}
.splash-logo span { color: var(--orange); margin: 0 .3em; }
.splash-bar {
  margin-top: 2rem;
  width: 200px; height: 2px;
  background: var(--border);
  position: relative; overflow: hidden;
}
.splash-bar span {
  display: block; height: 100%;
  background: var(--orange);
  animation: splashBar 1.6s var(--ease-out) infinite;
  width: 30%;
}
@keyframes splashBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(666%); }
}
@keyframes splashOut {
  to { opacity: 0; clip-path: inset(0 0 100% 0); pointer-events: none; }
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; }
}

/* 8. NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem var(--gutter);
  transition: background .5s var(--ease-out), padding .4s var(--ease-out), border-color .5s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: .6rem var(--gutter);
  border-color: var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: .05em;
}
.nav-brand img {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-strong);
}
.nav-brand em {
  font-style: normal;
  color: var(--orange);
  margin-left: .15em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.nav-links a {
  position: relative;
  color: var(--text-muted);
  transition: color .3s var(--ease-out);
  padding: .3rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width .35s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.3rem;
  background: var(--orange);
  color: var(--bg-black);
  border-radius: 999px;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -4px rgba(255,107,26,.55);
}
.nav-cta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bg-black);
  animation: navPulse 1.8s var(--ease-out) infinite;
}
@keyframes navPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .6; }
}
.nav-toggle { display: none; }

/* 9. HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0A0A0A;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.65) contrast(1.05) brightness(.55);
  background: #0A0A0A;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.5) 0%, rgba(10,10,10,.4) 40%, rgba(10,10,10,.85) 80%, var(--bg-black) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(255,107,26,.18) 0%, transparent 60%);
}
.hero-noise {
  position: absolute; inset: 0;
  background-image:
    repeating-conic-gradient(rgba(255,255,255,.012) 0deg 1deg, transparent 1deg 3deg);
  mix-blend-mode: overlay;
  opacity: .6;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(3.4rem, 11vw, 11rem);
  line-height: .9;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  max-width: 14ch;
}
.hero-title em {
  font-style: italic;
  color: var(--orange);
  font-family: var(--display);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: .04em;
  height: .12em;
  background: var(--orange);
  opacity: .25;
  border-radius: 2px;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--text-muted);
  max-width: 38ch;
  margin-bottom: 2.6rem;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-proof {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-proof li { display: flex; gap: .5em; align-items: center; }
.hero-proof strong { color: var(--orange); font-weight: 500; }

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .25em;
  color: var(--text-muted);
}
.hero-scroll .line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 50%;
  background: var(--text);
  animation: scrollLine 2s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* 10. MONTH (Desafío del mes) */
.month {
  padding: var(--section) var(--gutter);
  position: relative;
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-elevated) 100%);
  border-bottom: 1px solid var(--border);
}
.month-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.month-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.month-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.month-ring {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: conic-gradient(from 0deg, transparent 0%, var(--orange) 25%, transparent 50%, var(--orange-glow) 75%, transparent 100%);
  filter: blur(40px);
  opacity: .35;
  z-index: -1;
  animation: ringSpin 10s linear infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.badge {
  display: inline-block;
  padding: .45rem .9rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 1.6rem;
}
.badge-new      { background: var(--orange); color: var(--bg-black); }
.badge-pop      { background: rgba(255,255,255,.95); color: var(--bg-black); }
.badge-active   { background: var(--bg-card); color: var(--orange); border: 1px solid var(--orange); }
.badge-special  { background: linear-gradient(135deg, #f4c659, #d49a2a); color: var(--bg-black); }

.month-info h2 {
  margin-bottom: 1.5rem;
}
.month-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 38ch;
  margin-bottom: 2rem;
}
.month-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.month-meta > div { display: flex; flex-direction: column; gap: .25rem; min-width: 90px; }
.meta-label {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.meta-value {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: .02em;
}
.meta-note {
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--orange);
}
.month-kit {
  margin-bottom: 2rem;
  display: grid;
  gap: .55rem;
}
.month-kit li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-muted);
  font-size: .98rem;
}
.month-kit li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 8px; height: 1px;
  background: var(--orange);
}

/* 11. HOW */
.how { padding: var(--section) var(--gutter); }
.how-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step {
  position: relative;
  padding: 2.4rem 1.8rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .4s var(--ease-out), transform .4s var(--ease-out);
}
.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,107,26,.12), transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}
.step:hover { border-color: var(--orange); transform: translateY(-4px); }
.step:hover::before { opacity: 1; }
.step-num {
  display: block;
  font-family: var(--mono);
  font-size: .85rem;
  color: var(--orange);
  letter-spacing: .2em;
  margin-bottom: 2rem;
  position: relative;
}
.step h3 {
  font-family: var(--display);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.step p {
  color: var(--text-muted);
  font-size: .98rem;
  position: relative;
  margin-bottom: 2rem;
}
.step-icon {
  width: 48px; height: 48px;
  color: var(--orange);
  position: relative;
}

/* 12. STATS */
.stats {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat {
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: var(--orange);
  letter-spacing: -.01em;
  line-height: 1;
  margin-bottom: .6rem;
}
.stat-lab {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* 13. CHALLENGES */
.challenges {
  padding: var(--section) var(--gutter);
}
.challenges-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.challenge-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .4s var(--ease-out), transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  position: relative;
}
.challenge-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(255,107,26,.25);
}
.challenge-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-card);
}
.challenge-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.challenge-card:hover .challenge-media video { transform: scale(1.08); }
.challenge-media .badge {
  position: absolute;
  top: 1rem; left: 1rem;
  margin: 0;
  z-index: 2;
}
.challenge-body {
  padding: 2rem 1.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
}
.challenge-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.challenge-head h3 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.distance {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--orange);
  padding: .4rem .8rem;
  border: 1px solid var(--orange);
  border-radius: 999px;
}
.price {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--text);
  letter-spacing: -.01em;
  line-height: 1;
}
.price small {
  display: block;
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--orange);
  letter-spacing: .15em;
  margin-top: .4rem;
  text-transform: uppercase;
  font-weight: 400;
}
.challenge-body ul {
  display: grid;
  gap: .4rem;
  color: var(--text-muted);
  font-size: .92rem;
  flex: 1;
}
.challenge-body ul li {
  position: relative;
  padding-left: 1.3rem;
}
.challenge-body ul li::before {
  content: "+";
  position: absolute;
  left: 0; top: 0;
  color: var(--orange);
  font-weight: 600;
}
.challenge-body .btn { margin-top: 1rem; align-self: flex-start; }

/* 14. GALLERY */
.gallery { padding: var(--section) var(--gutter); }
.gallery-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.g-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.g-item:nth-child(4n+1) { aspect-ratio: 3/4; grid-row: span 2; }
.g-item:nth-child(7n+3) { aspect-ratio: 1; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter .5s var(--ease-out);
  filter: saturate(.85) brightness(.9);
}
.g-item:hover img {
  transform: scale(1.08);
  filter: saturate(1) brightness(1);
}
.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,.5) 100%);
  pointer-events: none;
}

/* 15. UNBOX */
.unbox { padding: var(--section) var(--gutter); background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.unbox-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.unbox-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .unbox-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
.unbox-item {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color .4s var(--ease-out);
}
.unbox-item:hover { border-color: var(--orange); }
.unbox-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.unbox-item:hover img { transform: scale(1.06); }
.unbox-item figcaption {
  position: absolute;
  left: 1.2rem; bottom: 1.2rem;
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: .03em;
  z-index: 2;
}
.unbox-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,.8) 100%);
  pointer-events: none;
}

/* 16. COMMUNITY */
.community {
  padding: var(--section) var(--gutter);
  position: relative;
  overflow: hidden;
}
.community::before {
  content: "";
  position: absolute;
  inset: -50% -10% -50% -10%;
  background: radial-gradient(45% 35% at 70% 50%, rgba(255,107,26,.18), transparent 75%);
  filter: blur(80px);
  pointer-events: none;
}
.community-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}
.community .display { margin-bottom: 3rem; }
.community-list {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
}
.community-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.4rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 1.05rem;
  transition: border-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.community-list li:hover { border-color: var(--orange); transform: translateX(6px); }
.community-list li span {
  font-family: var(--mono);
  color: var(--orange);
  font-size: .85rem;
  letter-spacing: .15em;
}
.community-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.community-note {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--text-dim);
  letter-spacing: .08em;
  text-transform: uppercase;
  max-width: 56ch;
}

/* 17. SOCIAL */
.social { padding: var(--section) var(--gutter); border-top: 1px solid var(--border); }
.social-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: border-color .4s var(--ease-out), transform .4s var(--ease-out), background .4s var(--ease-out);
}
.social-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--bg-elevated), rgba(255,107,26,.05));
}
.social-icon {
  width: 56px; height: 56px;
  color: var(--orange);
  flex-shrink: 0;
}
.social-card h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.social-card p { color: var(--text-muted); margin-bottom: .6rem; font-size: .95rem; }
.social-handle {
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--orange);
  letter-spacing: .12em;
}

/* 18. CTA FINAL */
.cta-final {
  position: relative;
  padding: var(--section) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.cta-halo {
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,107,26,.35) 0%, rgba(255,107,26,.08) 30%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.cta-inner .display { margin-bottom: 1.6rem; }
.cta-inner > p {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  margin-bottom: 2.6rem;
}
.cta-sub {
  margin-top: 1.6rem;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* 19. FOOTER */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 4rem var(--gutter) 1.6rem;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand img {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}
.footer-brand p {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: .02em;
  line-height: 1.1;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a, .footer-col li {
  color: var(--text-muted);
  font-size: .9rem;
  transition: color .25s var(--ease-out);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--text-dim);
  letter-spacing: .1em;
}
.footer-bottom a { color: var(--orange); }
.footer-bottom a:hover { text-decoration: underline; }

/* 20. FLOATING WHATSAPP */
.float-wa {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 200;
  width: 60px; height: 60px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.5);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  animation: waPulse 2.4s var(--ease-out) infinite;
}
.float-wa:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 40px -8px rgba(37,211,102,.8), 0 0 0 12px rgba(37,211,102,.12);
}
.float-wa svg { width: 30px; height: 30px; }
.float-tip {
  position: absolute;
  right: 76px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--bg-black);
  color: var(--text);
  padding: .6rem 1rem;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--border-strong);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.float-wa:hover .float-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.4); }
  50%      { box-shadow: 0 10px 30px -8px rgba(37,211,102,.6), 0 0 0 14px rgba(37,211,102,0); }
}

/* 21. STICKY MOBILE CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 1rem; right: 1rem;
  bottom: 1rem;
  z-index: 150;
  padding: 1.1rem;
  background: var(--orange);
  color: var(--bg-black);
  text-align: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 14px 40px -8px rgba(255,107,26,.55);
  transform: translateY(120%);
  transition: transform .5s var(--ease-out);
}
.sticky-mobile-cta.is-visible { transform: translateY(0); }

/* 22. RESPONSIVE */
@media (max-width: 960px) {
  .month-grid { grid-template-columns: 1fr; }
  .challenges-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(odd)::after {
    content: "";
    position: absolute;
    right: -8px; top: 20%; bottom: 20%;
    width: 1px; background: var(--border);
  }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .g-item:nth-child(4n+1) { aspect-ratio: 1; grid-row: span 1; }
  .unbox-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  /* Ocultar el CTA WhatsApp del navbar en móvil — el botón flotante verde lo cubre */
  .nav-cta { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 36px; height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
  }
  .nav-toggle span {
    width: 18px; height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
  }
  .nav.is-open .nav-links {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    padding: 2rem var(--gutter);
    background: var(--bg-black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 1.4rem;
    font-family: var(--display);
    text-transform: uppercase;
  }
  .nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding-top: 7rem; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); max-width: none; }
  .hero-proof { gap: 1.4rem; font-size: .7rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sticky-mobile-cta { display: block; }
  .float-wa { right: 1rem; bottom: 5.5rem; width: 52px; height: 52px; }
  .float-wa svg { width: 26px; height: 26px; }
  .float-tip { display: none; }

  .month-meta > div { min-width: calc(50% - 1rem); }
  .meta-value { font-size: 1.3rem; }

  .stats-grid { gap: 2.5rem 1rem; }
  .stat-num { font-size: 2.4rem; }
}

/* 22.5 MOBILE DEFENSIVE FIXES */
@media (max-width: 720px) {
  /* Prevent any horizontal scroll */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* Padding-bottom so sticky CTA naranja no tape footer */
  body { padding-bottom: 5.5rem; }

  /* Hero title cut-prevention */
  .hero-title {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
    letter-spacing: -.02em;
    word-break: break-word;
    hyphens: none;
  }
  .hero-sub { font-size: 1rem; }
  .hero-inner { width: 100%; }
  .hero { padding-left: 1.2rem; padding-right: 1.2rem; }

  /* Indicador scroll del hero — esconder en móvil que no aporta */
  .hero-scroll { display: none; }

  /* iOS Safari: el noise con mix-blend-mode causa flicker sobre video. Off en móvil. */
  .hero-noise { display: none; }

  /* Stats: divider line entre celdas hace cosas raras en grid, off */
  .stat::before, .stat::after { display: none !important; }

  /* Logo del navbar respira más sin el CTA al lado */
  .nav-brand { font-size: 1.15rem; }
  .nav-brand img { width: 30px; height: 30px; }

  /* Section heads + paddings menores */
  .section-head { margin-bottom: 1.6rem; }

  /* Footer ya no fluctúa con el sticky CTA */
  .footer { padding-bottom: 2.2rem; }

  /* Comunidad: CTAs en columna, no choque */
  .community-ctas { flex-direction: column; align-items: stretch; }
  .community-ctas .btn { justify-content: center; width: 100%; }

  /* Challenge cards: head respira */
  .challenge-head { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .price { font-size: 1.9rem; }

  /* Month grid */
  .month-meta { gap: 1rem; }
  .month-meta > div { min-width: 0; flex: 1 1 calc(50% - .5rem); }

  /* Galería: mantener 2 columnas y aspect 1:1 limpio */
  .g-item:nth-child(4n+1) { aspect-ratio: 1; grid-row: span 1; }

  /* CTA final padding más ajustado */
  .cta-final { padding: 5rem 1.2rem; }

  /* Float WhatsApp arriba del sticky CTA */
  .float-wa { bottom: 5.2rem; }
}

@media (max-width: 420px) {
  /* Pantallas muy chicas: stats apilados, hero proof en columna */
  .hero-proof {
    flex-direction: column;
    gap: .5rem;
    align-items: flex-start;
  }
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.6rem); }
  .month-meta > div { flex: 1 1 100%; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .meta-value { font-size: 1.5rem; }

  /* Display titles más manejables */
  .display { font-size: clamp(2.2rem, 11vw, 3.4rem); }

  /* Nav CTA en pantallas micro: solo el punto + WA acortado */
  .nav-brand span { display: none; }
}

/* Defensiva: cursor jamás en touch */
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot, .cursor-ring { display: none !important; }
}

/* 23. REDUCED MOTION (only intrusive effects) */
@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; }
  .month-ring { animation: none; }
  .float-wa { animation: none; }
  .nav-cta .dot { animation: none; }
  .splash-bar span { animation: none; }
  .hero-scroll .line::after { animation: none; }
}
