/* ── HERO WRAP — contiene el slider en mobile ── */
.hero-wrap {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
}

.hero {
  display: flex;
  flex-direction: row;
  width: 200%; /* JS lo sobreescribe a 300% en mobile para el clon */
  min-height: calc(100vh - 56px);
  padding-top: 0;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.hero.show-right { transform: translateX(-50%); }

.hero-left {
  width: 50%;
  flex-shrink: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 6vw 3rem;
  background: var(--white);
  min-height: calc(100vh - 56px);
}

.hero-sub {
  font-size: 1rem; line-height: 1.7;
  color: var(--ink-mid); font-weight: 300;
  margin: 1.4rem 0 1rem;
}

.hero-hint {
  font-size: 0.85rem; color: var(--cyan-dark);
  font-weight: 500; margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Panel nav dots (mobile only) */
.hero-panel-nav {
  display: flex; justify-content: center; gap: 10px;
  padding: 0.8rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 56px;
  z-index: 10;
}
.hpanel-dot {
  width: 28px; height: 2.5px;
  background: var(--border-md);
  border-radius: 2px; cursor: pointer;
  transition: background .25s, width .25s;
  border: none;
  padding: 0;
}
.hpanel-dot.active { background: var(--fuchsia); width: 44px; }

/* ── HERO RIGHT ── */
.hero-right {
  width: 50%;
  flex-shrink: 0;
  background: var(--ink);
  background-image: url('');
  background-size: cover;
  background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 4rem 6vw 3rem;
  position: relative; overflow: hidden;
  min-height: calc(100vh - 56px);
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.95) 40%, rgba(13,13,13,0.5) 100%);
  pointer-events: none;
}
.hero-manifesto { position: relative; z-index: 1; }

/* ── SLIDES ── */
.slides-wrap {
  position: relative; min-height: 240px;
  animation: up .7s .15s ease both;
}
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .8s ease; pointer-events: none;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide blockquote {
  font-family: var(--font-d);
  font-size: clamp(1.25rem, 5vw, 2rem);
  line-height: 1.2; font-style: normal; font-weight: 600;
  letter-spacing: -0.03em; color: var(--white); margin-bottom: 1.5rem;
}
.slide blockquote em { color: var(--fuchsia); font-style: normal; font-weight: 700; }
.slide-metric { display: flex; align-items: baseline; gap: 12px; margin-bottom: 1.5rem; }
.slide-num {
  font-family: var(--font-b); font-size: 2.6rem; font-weight: 700;
  letter-spacing: -0.04em; color: var(--fuchsia); line-height: 1;
}
.slide-label {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-weight: 500;
}
.slide-dots { display: flex; gap: 8px; }
.dot {
  width: 20px; height: 2px; background: rgba(255,255,255,0.2);
  border-radius: 2px; cursor: pointer;
  transition: background .3s, width .3s;
  border: none; padding: 0;
}
.dot.active { background: var(--fuchsia); width: 34px; }

/* Animations */
.eyebrow       { animation: up .55s ease both; }
h1             { animation: up .55s .08s ease both; }
.hero-sub      { animation: up .55s .16s ease both; }
.hero-actions  { animation: up .55s .24s ease both; }
