/* ═══════════════════════════════════════════════════
   ELVIS BUNNETTA · PUNTO DE PARTIDA · v3.0
   VSL primero, split foto segundo, violet CTA
═══════════════════════════════════════════════════ */

/* ── 1. TOKENS ─────────────────────────────────── */
:root {
  --ink:         oklch(5%  0.008 285);
  --ink-raised:  oklch(9%  0.010 285);
  --ink-card:    oklch(14% 0.012 285);
  --ink-border:  oklch(28% 0.015 285);
  --paper:       oklch(96% 0.004 85);
  --muted:       oklch(65% 0.008 285);
  --muted-hi:    oklch(82% 0.006 285);
  --lime:        oklch(88% 0.26  128);
  --lime-deep:   oklch(78% 0.28  128);
  --lime-ink:    oklch(12% 0.04  128);
  --violet:      oklch(52% 0.25  285);
  --violet-hi:   oklch(68% 0.20  285);
  --violet-dim:  oklch(40% 0.18  285);
  --violet-glow: oklch(52% 0.25  285 / 0.25);
  /* CTA final — midnight violet, no lime */
  --cta-bg:      oklch(17% 0.18  280);
  --display: 'Space Grotesk', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;
  --fs-label:   clamp(0.65rem, 0.6rem + 0.2vw,  0.78rem);
  --fs-body:    clamp(0.97rem, 0.9rem + 0.25vw,  1.1rem);
  --fs-lead:    clamp(1.1rem,  1rem  + 0.4vw,    1.3rem);
  --fs-h3:      clamp(1.2rem,  1.1rem + 0.5vw,   1.6rem);
  --fs-h2:      clamp(2rem,    1.4rem + 2.8vw,   3.8rem);
  --fs-h1:      clamp(2.8rem,  1.8rem + 4vw,     6.5rem);
  --fs-display: clamp(3.5rem,  2rem   + 5.5vw,   9rem);
  --fs-stat:    clamp(2.8rem,  2rem   + 3.5vw,   6.5rem);
  --fs-num:     clamp(7rem,    4rem   + 10vw,    17rem);
  --gap: clamp(1.25rem, 5vw, 3rem);
  --sec: clamp(4.5rem, 10vw, 9rem);
  --r-sm: 6px; --r-md: 12px;
  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── 2. RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-color: var(--lime) var(--ink-raised); scrollbar-width: thin; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ink-raised); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 2px; }
body { font-family: var(--body); font-size: var(--fs-body); line-height: 1.65; color: var(--paper); background: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--body); border: none; background: none; }

/* ── 3. UTILITIES ───────────────────────────────── */
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--gap); }
.label { font-family: var(--display); font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.label--lime   { color: var(--lime); }
.label--violet { color: var(--violet-hi); }
.label--paper  { color: oklch(96% 0.004 85 / .7); }

[data-reveal] { opacity: 0; clip-path: inset(0 0 100% 0); transition: opacity 0.65s var(--ease-expo), clip-path 0.65s var(--ease-expo); }
[data-reveal].is-visible { opacity: 1; clip-path: inset(0 0 0% 0); }
[data-reveal="fade"] { clip-path: none; transform: translateY(22px); transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo); }
[data-reveal="fade"].is-visible { opacity: 1; transform: none; }

/* ── 4. BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.95em 2.1em; border-radius: 0;
  font-family: var(--display); font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; overflow: hidden; white-space: nowrap;
  transition: transform 150ms var(--ease-expo), box-shadow 200ms var(--ease-expo), background 200ms;
}
.btn:active { transform: scale(0.97) !important; }

/* Lima — principal */
.btn--lime { background: var(--lime); color: var(--lime-ink); }
.btn--lime::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.38) 50%, transparent 65%);
  background-size: 200% 100%; background-position: -100% 0;
  animation: sheen 3s ease-in-out infinite;
}
@media (hover: hover) and (pointer: fine) { .btn--lime:hover { background: var(--lime-deep); transform: translateY(-2px); } }

/* Outline sobre fondo oscuro */
.btn--outline { background: transparent; color: var(--paper); border: 1.5px solid var(--ink-border); }
@media (hover: hover) and (pointer: fine) { .btn--outline:hover { border-color: var(--lime); color: var(--lime); } }

/* Lime outline sobre fondo violet */
.btn--lime-outline { background: transparent; color: var(--lime); border: 2px solid var(--lime); }
.btn--lime-outline::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, oklch(88% .26 128 / .15) 50%, transparent 65%);
  background-size: 200% 100%; background-position: -100% 0;
  animation: sheen 3.5s ease-in-out infinite 1s;
}
@media (hover: hover) and (pointer: fine) { .btn--lime-outline:hover { background: var(--lime); color: var(--lime-ink); } }

.btn--pulse { animation: pulse-btn 2.8s ease-in-out infinite; }

@keyframes sheen { 0%{background-position:-100% 0} 60%,100%{background-position:220% 0} }
@keyframes pulse-btn { 0%,100%{box-shadow:0 0 0 0 oklch(88% .26 128 / 0)} 50%{box-shadow:0 0 0 8px oklch(88% .26 128 / .18), 0 0 30px 4px oklch(88% .26 128 / .12)} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.1} }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes float-up { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── 5. NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem var(--gap);
  background: oklch(5% .008 285 / 0);
  transition: background 400ms var(--ease-quart), padding 400ms var(--ease-quart);
}
.nav.scrolled {
  background: oklch(5% .008 285 / .95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem var(--gap); border-bottom: 1px solid var(--ink-border);
}

/* Logo cuadrado — contenedor ancho con object-fit para mostrar más del canvas */
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img {
  width: 120px; height: 120px;
  object-fit: contain; object-position: center;
  max-width: none;
  transition: width 400ms var(--ease-quart), height 400ms var(--ease-quart);
}
.nav.scrolled .nav__logo img { width: 80px; height: 80px; }

.nav__cta { font-size: 0.7rem; padding: 0.7em 1.6em; }

/* ── 6. VSL HERO — PRIMERA SECCIÓN ──────────────── */
.vsl-hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(5.5rem,12vw,9rem) var(--gap) clamp(3rem,6vw,5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Fondo con glow violet suave */
.vsl-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, oklch(52% .25 285 / .08) 0%, transparent 70%);
  pointer-events: none;
}

.vsl-hero__eyebrow { margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; }

.vsl-notice { display: flex; align-items: center; gap: .6em; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.vsl-notice__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: blink 1.8s ease-in-out infinite; flex-shrink: 0; }

.vsl-hero__title {
  font-family: var(--display);
  font-size: clamp(2rem, 1.5rem + 4vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 1.25rem;
  max-width: 16ch;
  margin-left: auto; margin-right: auto;
}
.vsl-hero__title .lime { color: var(--lime); }

.vsl-hero__sub {
  font-size: var(--fs-lead);
  color: var(--muted-hi);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.vsl-frame {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px var(--ink-border), 0 40px 100px -25px oklch(0% 0 0 / .75), 0 0 80px -20px oklch(52% .25 285 / .15);
}
.vsl-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.vsl-hero__ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ── 7. SPLIT HERO — SEGUNDA SECCIÓN ────────────── */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}
.hero__photo { position: relative; overflow: hidden; }
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  filter: grayscale(1) contrast(1.15);
  transition: filter 1.4s var(--ease-quart);
}
.hero__photo img.color-in { filter: grayscale(0.1) contrast(1.05); }
.hero__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 40%, var(--ink) 100%); pointer-events: none; }
.hero__location { position: absolute; bottom: 3rem; left: 1.5rem; writing-mode: vertical-rl; transform: rotate(180deg); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); z-index: 2; }

.hero__content { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(5rem,10vw,9rem) var(--gap) clamp(3.5rem,7vw,6rem) 2rem; position: relative; z-index: 1; }
.hero__label { margin-bottom: 1.5rem; }
.hero__name { font-family: var(--display); font-size: var(--fs-display); font-weight: 800; line-height: .88; letter-spacing: -.04em; color: var(--paper); margin-bottom: 1.5rem; text-transform: uppercase; }
.hero__name span { display: block; }
.hero__name .accent { color: var(--lime); }
.hero__headline { font-size: var(--fs-lead); color: var(--muted-hi); max-width: 36ch; margin-bottom: 2.5rem; line-height: 1.55; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.hero__mini-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--ink-border); }
.hero__stat-num { font-family: var(--display); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 800; color: var(--paper); letter-spacing: -.03em; }
.hero__stat-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-top: .2rem; }

/* Captación: sin CTAs/stats en esta sección, el texto se centra en vez de anclarse abajo */
body.capta-page .hero__content { justify-content: center; padding-top: 0; padding-bottom: 0; }

/* ── 8. STATS ───────────────────────────────────── */
.stats { background: var(--ink); padding: var(--sec) var(--gap); border-top: 1px solid var(--ink-border); border-bottom: 1px solid var(--ink-border); }
.stats__eyebrow { text-align: center; margin-bottom: clamp(2.5rem,6vw,4.5rem); }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stats__item { padding: 2rem var(--gap); border-right: 1px solid var(--ink-border); text-align: center; }
.stats__item:last-child { border-right: none; }
.stats__number { font-family: var(--display); font-size: var(--fs-stat); font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--lime); display: block; margin-bottom: .5rem; }
.stats__desc { font-size: var(--fs-label); text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }
.stats__source { display: block; width: 100%; text-align: center; font-size: .65rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 3rem; }
.stats__source strong { color: var(--lime); }

/* ── 9. TICKER ──────────────────────────────────── */
.ticker { background: var(--lime); overflow: hidden; padding: 1.1rem 0; user-select: none; }
.ticker__track { display: flex; width: max-content; animation: ticker 22s linear infinite; }
.ticker__item { white-space: nowrap; font-family: var(--display); font-size: clamp(.75rem,1.5vw,.95rem); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--lime-ink); padding: 0 2.5rem; display: flex; align-items: center; gap: 1.5rem; }
.ticker__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--lime-ink); opacity: .4; flex-shrink: 0; }

/* ── 10. BIO ────────────────────────────────────── */
.bio { padding: var(--sec) var(--gap); position: relative; overflow: hidden; }
.bio::before { content: ''; position: absolute; left: var(--gap); top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom,transparent,var(--violet) 30%,var(--violet) 70%,transparent); opacity: .2; }
.bio__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: clamp(3rem,7vw,7rem); align-items: start; }
.bio__left { position: sticky; top: 7rem; }
.bio__eyebrow { margin-bottom: 1.25rem; }
.bio__photo-block { aspect-ratio: 3/4; overflow: hidden; border-radius: var(--r-sm); position: relative; background: var(--ink-card); max-width: 340px; }
.bio__photo-block img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.bio__photo-block::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--ink-border); border-radius: var(--r-sm); pointer-events: none; }
.bio__cred { margin-top: .75rem; padding: .75rem 0; border-top: 1px solid var(--ink-border); display: flex; justify-content: space-between; align-items: center; }
.bio__cred-label { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.bio__cred-val { font-family: var(--display); font-size: .78rem; font-weight: 700; color: var(--lime); }
.bio__pull-quote { font-family: var(--display); font-size: clamp(1.8rem,2.5vw + .5rem,3.75rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; color: var(--paper); margin-bottom: 2rem; }
.bio__pull-quote::before { content: '"'; color: var(--lime); font-size: 5rem; line-height: .6; display: block; margin-bottom: .4rem; font-family: Georgia,serif; }
.bio__body { color: var(--muted-hi); line-height: 1.7; margin-bottom: 2rem; max-width: 50ch; font-size: var(--fs-lead); }
.bio__skills { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.bio__skill { font-family: var(--display); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .4em 1em; border: 1px solid var(--ink-border); color: var(--muted-hi); border-radius: 100px; transition: border-color 200ms, color 200ms; }
@media (hover: hover) and (pointer: fine) { .bio__skill:hover { border-color: var(--lime); color: var(--lime); } }

/* ── 11. BENTO ARTISTAS ─────────────────────────── */
.artists { padding: var(--sec) var(--gap); background: var(--ink-raised); }
/* Header izquierda — NO flex-between */
.artists__header { margin-bottom: clamp(2rem,5vw,4rem); }
.artists__title { font-family: var(--display); font-size: var(--fs-h2); font-weight: 800; letter-spacing: -.03em; margin-bottom: 1rem; }
.artists__sub { color: var(--muted-hi); max-width: 48ch; font-size: var(--fs-body); }

.bento { display: grid; grid-template-columns: repeat(12,1fr); gap: .5rem; }
.bento__item {
  display: flex; align-items: center; justify-content: center;
  background: var(--ink-card); border: 1px solid var(--ink-border); border-radius: var(--r-sm);
  padding: 1.75rem 1rem; text-align: center; position: relative; overflow: hidden;
  transition: background 220ms var(--ease-expo), border-color 220ms var(--ease-expo), transform 220ms var(--ease-expo);
}
@media (hover: hover) and (pointer: fine) {
  .bento__item:hover { background: oklch(18% .025 285); border-color: var(--violet); transform: translateY(-3px); }
  .bento__item:hover .bento__name { color: var(--lime); }
  .bento__item:hover .bento__dot { opacity: 1; }
}
.bento__item:active { transform: scale(.97); }
.bento__item--xl { grid-column: span 4; }
.bento__item--lg { grid-column: span 3; }
.bento__item--md { grid-column: span 3; }
.bento__item--sm { grid-column: span 2; }
.bento__name { font-family: var(--display); font-size: clamp(.95rem,1.5vw,1.6rem); font-weight: 800; letter-spacing: -.02em; text-transform: uppercase; color: var(--paper); transition: color 200ms; }
.bento__item--xl .bento__name { font-size: clamp(1.2rem,2vw,2.1rem); }
.bento__item--lg .bento__name { font-size: clamp(1.05rem,1.7vw,1.8rem); }
.bento__dot { position: absolute; top: .75rem; right: .75rem; width: 5px; height: 5px; border-radius: 50%; background: var(--lime); opacity: 0; transition: opacity 200ms; }

/* ── 12. PROCESO — STACKING STICKY ──────────────── */
.process { padding-top: var(--sec); padding-bottom: 0; }
.process__header { padding: 0 var(--gap); margin-bottom: clamp(3rem,8vw,7rem); }
.process__title { font-family: var(--display); font-size: var(--fs-h2); font-weight: 800; letter-spacing: -.03em; margin-bottom: 1rem; }
.process__sub { color: var(--muted-hi); font-size: var(--fs-lead); max-width: 48ch; }

/* Stacking: cada step es sticky con fondo propio */
.process__step {
  display: grid; grid-template-columns: auto 1fr;
  border-top: 1px solid var(--ink-border);
  padding: clamp(2.5rem,5vw,4.5rem) var(--gap);
  gap: clamp(2rem,5vw,5rem); align-items: start;
  background: var(--ink);
  position: sticky;
  top: 70px;
  transition: background 300ms var(--ease-quart);
  overflow: hidden;
  /* Cada step apila visualmente sobre el anterior */
}
.process__step:last-child { border-bottom: 1px solid var(--ink-border); margin-bottom: var(--sec); }

/* Iluminación al entrar en viewport (scroll), no hover */
.process__step.is-active { background: oklch(8% .012 285); }
.process__step.is-active .process__num {
  color: var(--lime);
  text-shadow: 0 0 80px oklch(88% .26 128 / .35), 0 0 120px oklch(88% .26 128 / .15);
  opacity: 1;
}

.process__num {
  font-family: var(--display); font-size: var(--fs-num); font-weight: 800;
  line-height: .85; letter-spacing: -.05em;
  color: oklch(30% .015 285);
  opacity: .9; user-select: none;
  width: clamp(7rem,14vw,17rem); text-align: right;
  transition: color 400ms var(--ease-quart), text-shadow 400ms var(--ease-quart), opacity 400ms;
}

.process__tag { margin-bottom: .75rem; }
.process__h3 { font-family: var(--display); font-size: var(--fs-h3); font-weight: 800; letter-spacing: -.02em; margin-bottom: .85rem; color: var(--paper); }
.process__desc { color: var(--muted-hi); max-width: 50ch; line-height: 1.7; margin-bottom: 1.5rem; font-size: var(--fs-body); }

/* Chips violet — diferente a negro plano */
.process__pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.process__pill {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35em .9em; border-radius: 100px;
  background: oklch(20% .06 280);
  border: 1px solid var(--violet-dim);
  color: var(--violet-hi);
  transition: background 200ms, border-color 200ms, color 200ms;
}
.process__pill:nth-child(odd)  { background: oklch(20% .08 285); border-color: var(--violet); color: oklch(75% .15 285); }
.process__pill:nth-child(even) { background: oklch(18% .05 128); border-color: oklch(40% .15 128); color: oklch(72% .18 128); }
@media (hover: hover) and (pointer: fine) {
  .process__pill:hover { background: var(--violet); color: var(--paper); border-color: var(--violet); }
}

/* ── 13. TESTIMONIOS ────────────────────────────── */
.testimonials { padding: var(--sec) var(--gap); background: var(--ink-raised); }
/* Header stacked, no flex-between */
.testimonials__header { margin-bottom: clamp(2rem,5vw,4rem); }
.testimonials__eyebrow { margin-bottom: 1rem; }
.testimonials__title { font-family: var(--display); font-size: var(--fs-h2); font-weight: 800; letter-spacing: -.03em; margin-bottom: 1rem; }
.testimonials__sub { color: var(--muted-hi); max-width: 48ch; }

.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: .65rem; }
.tcard { aspect-ratio: 9/16; border-radius: var(--r-md); overflow: hidden; background: var(--ink-card); border: 1px solid var(--ink-border); position: relative; transition: transform 240ms var(--ease-expo), box-shadow 240ms var(--ease-expo); }
@media (hover: hover) and (pointer: fine) { .tcard:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 60px -15px oklch(0% 0 0/.8); z-index: 2; } }
.tcard:active { transform: scale(.97); }
.tcard__poster { position: absolute; inset: 0; z-index: 2; transition: opacity 300ms var(--ease-expo); }
.tcard__poster.is-hidden { opacity: 0; pointer-events: none; }
.tcard__poster img { width: 100%; height: 100%; object-fit: cover; }
.tcard__play { position: absolute; top: 50%; left: 50%; translate: -50% -50%; z-index: 3; width: 56px; height: 56px; border-radius: 50%; background: oklch(5% .008 285 / .8); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,.7); transition: background 180ms, transform 150ms var(--ease-expo); }
.tcard__play:hover { background: var(--violet); border-color: var(--violet-hi); }
.tcard__play:active { transform: translate(-50%,-50%) scale(.92); }
.tcard__play svg { fill: var(--paper); margin-left: 3px; }
.tcard__iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; z-index: 1; display: none; }
.tcard__iframe.is-active { display: block; }
.tcard__label { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem .85rem .85rem; background: linear-gradient(to top, oklch(5% .008 285/.95) 0%, transparent 100%); z-index: 4; pointer-events: none; }
.tcard__artist { font-family: var(--display); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.tcard__role { font-size: .62rem; color: var(--muted-hi); }

/* ── 14. SPOTIFY ────────────────────────────────── */
.works { padding: var(--sec) var(--gap); background: var(--ink); position: relative; overflow: hidden; }
.works::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 55%; background: repeating-linear-gradient(90deg,transparent,transparent 3px,oklch(12% .015 285) 3px,oklch(12% .015 285) 4px); opacity: .08; pointer-events: none; }
/* Header stacked — no grid que rompe sin título visible */
.works__header { margin-bottom: clamp(2.5rem,5vw,4rem); position: relative; z-index: 1; }
.works__header .label { margin-bottom: 1rem; display: block; }
.works__title { font-family: var(--display); font-size: var(--fs-h2); font-weight: 800; letter-spacing: -.03em; margin-bottom: 1rem; }
.works__sub { color: var(--muted-hi); font-size: var(--fs-body); max-width: 60ch; }
.works__fallback { display: flex; align-items: center; justify-content: center; gap: 1rem; height: 352px; background: var(--ink-card); border: 1px solid var(--ink-border); border-radius: var(--r-md); font-size: var(--fs-label); color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.works__embed { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--ink-border); position: relative; z-index: 1; }
.works__embed iframe { width: 100%; display: block; border: none; }

/* ── 15. CTA FINAL — MIDNIGHT VIOLET ────────────── */
/* NO más lima neon — violet profundo */
.cta-final { background: var(--cta-bg); padding: var(--sec) var(--gap); position: relative; overflow: hidden; }

/* Glow radial */
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 60% 50%, oklch(52% .25 285 / .15) 0%, transparent 70%);
  pointer-events: none;
}
/* EB watermark */
.cta-final::after {
  content: 'EB'; position: absolute; right: -5%; bottom: -15%;
  font-family: var(--display); font-size: clamp(18rem,35vw,50rem); font-weight: 800;
  color: oklch(22% .15 280); line-height: 1; pointer-events: none; user-select: none; letter-spacing: -.05em;
}

.cta-final__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.cta-final__label { margin-bottom: 1.25rem; }

.cta-final__h2 {
  font-family: var(--display); font-size: var(--fs-h1);
  font-weight: 800; letter-spacing: -.04em; line-height: .92;
  color: var(--paper); text-transform: uppercase; margin-bottom: 1.5rem; margin-top: 1rem;
}
.cta-final__h2 .lime { color: var(--lime); }

.cta-final__sub {
  font-size: var(--fs-lead); color: var(--muted-hi);
  max-width: 48ch; margin: 0 auto 3rem; line-height: 1.6;
}

.cta-final__ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 3rem; justify-content: center; }

/* Checkmarks mejorados — círculos lima rellenos */
.cta-final__checks { display: inline-flex; flex-direction: column; gap: .85rem; text-align: left; padding-top: 10px; }
.cta-final__check { display: flex; align-items: flex-start; gap: .9rem; font-size: var(--fs-body); color: var(--muted-hi); }

.check-icon {
  display: inline-flex; width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%; background: var(--lime);
  align-items: center; justify-content: center;
  color: var(--lime-ink); font-weight: 900; font-size: .72rem;
  margin-top: .15rem;
  animation: float-up 3s ease-in-out infinite;
}
.cta-final__check:nth-child(2) .check-icon { animation-delay: .4s; }
.cta-final__check:nth-child(3) .check-icon { animation-delay: .8s; }

/* ── 16. FOOTER ─────────────────────────────────── */
.footer { background: var(--ink); padding: 3.5rem var(--gap) 2rem; border-top: 1px solid var(--ink-border); }
/* Logo izq + tagline derecha en misma fila */
.footer__top {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer__logo { display: flex; align-items: center; flex-shrink: 0; }
.footer__logo img { width: 120px; height: 120px; object-fit: contain; object-position: left center; max-width: none; }
.footer__tagline { font-size: .85rem; color: var(--muted-hi); line-height: 1.8; }
.footer__legal-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--ink-border); }
.footer__copy { font-size: .65rem; color: var(--muted); opacity: .5; }
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__legal-links a { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); opacity: .6; transition: opacity 200ms, color 200ms; }
.footer__legal-links a:hover { color: var(--lime); opacity: 1; }

/* ── 17. COOKIE BANNER ──────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; translate: -50% 0;
  z-index: 200; width: min(520px, calc(100vw - 2rem));
  background: oklch(12% .015 285);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 20px 60px -10px oklch(0% 0 0 / .6);
  opacity: 0; pointer-events: none;
  transform: translateY(calc(100% + 3rem));
  transition: transform 500ms var(--ease-expo), opacity 400ms var(--ease-expo);
  backdrop-filter: blur(16px);
}
.cookie-banner[hidden] { display: flex; visibility: hidden; }
.cookie-banner.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
.cookie-banner__icon { width: 40px; height: 40px; flex-shrink: 0; }
.cookie-banner__text { flex: 1; font-size: .78rem; color: var(--muted-hi); line-height: 1.5; min-width: 200px; }
.cookie-banner__text a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-banner__btn { flex-shrink: 0; padding: .55em 1.4em; font-size: .7rem; font-family: var(--display); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--lime); color: var(--lime-ink); border: none; border-radius: 0; cursor: pointer; transition: background 200ms; }
.cookie-banner__btn:hover { background: var(--lime-deep); }
.cookie-banner__btn--ghost { background: transparent; color: var(--muted-hi); border: 1px solid var(--ink-border); }
.cookie-banner__btn--ghost:hover { background: var(--ink-raised); color: var(--paper); }
@media (max-width: 820px) {
  /* Deja espacio libre para el sticky-cta flotante ("Reservar sesión") que
     también vive fijo al fondo en mobile, para que no se solapen. */
  .cookie-banner { bottom: 5.5rem; }
}
@media (max-width: 560px) {
  .cookie-banner { padding: 1.1rem; flex-direction: column; align-items: flex-start; max-height: calc(100dvh - 7rem); overflow-y: auto; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .cookie-banner__btn { flex: 1; text-align: center; }
}

/* Cookie SVG: mordisco que "flota" y migas que titilan sutilmente */
.cookie-body { transform-origin: 32px 32px; animation: cookieSway 5s var(--ease-expo) infinite; }
.chip { animation: chipGlow 3.6s ease-in-out infinite; }
.chip:nth-child(2) { animation-delay: .3s; }
.chip:nth-child(3) { animation-delay: .6s; }
.chip:nth-child(4) { animation-delay: .9s; }
.chip:nth-child(5) { animation-delay: 1.2s; }
.chip:nth-child(6) { animation-delay: 1.5s; }
.chip:nth-child(7) { animation-delay: 1.8s; }
.chip:nth-child(8) { animation-delay: 2.1s; }
.cookie-crumb { transform-origin: center; animation: crumbFloat 2.8s ease-in-out infinite; }
.cookie-crumb:nth-child(2) { animation-delay: .4s; }
.cookie-crumb:nth-child(3) { animation-delay: .8s; }
@keyframes cookieSway { 0%, 100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
@keyframes chipGlow { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
@keyframes crumbFloat { 0%, 100% { transform: translateY(0); opacity: .55; } 50% { transform: translateY(-3px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .cookie-body, .chip, .cookie-crumb { animation: none; }
}

/* ── 18. STICKY MOBILE ───────────────────────────── */
.sticky-cta { position: fixed; bottom: 1.25rem; left: 50%; translate: -50% 0; z-index: 80; white-space: nowrap; transform: translateY(120px); transition: transform 400ms var(--ease-expo); display: none; border-radius: 0; padding: .95rem 2.25rem; }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta.is-gone    { transform: translateY(120px); }

/* Captación: el sticky vuelve al form, activo en todos los tamaños */
.capta-sticky { display: inline-flex; border: none; cursor: pointer; font: inherit; }

/* ── 19. RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto; min-height: auto; }
  .hero__photo { width: auto; height: 46vh; aspect-ratio: 3 / 4; margin: 0 auto; }
  .hero__photo img { object-position: center 12%; }
  .hero__photo::after { background: linear-gradient(to top, var(--ink) 0%, transparent 60%); }
  .hero__location { display: none; }
  .hero__content { padding: 2rem var(--gap) 3rem; justify-content: flex-start; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .stats__item:nth-child(2){ border-right:none; }
  .stats__item:nth-child(3){ border-top:1px solid var(--ink-border); }
  .stats__item:nth-child(4){ border-top:1px solid var(--ink-border); border-right:none; }
  .bio__inner { grid-template-columns: 1fr; }
  .bio__left { position: static; }
  .bio__photo-block { max-width: 100%; aspect-ratio: 3/4; }
  .process__header { grid-template-columns: 1fr; }
  .process__step { grid-template-columns: 1fr; gap: .5rem; position: relative; top: auto; }
  .process__num { font-size: clamp(4rem,12vw,8rem); text-align: left; width: auto; }
  .tgrid { grid-template-columns: repeat(2,1fr); }
  .works__header { grid-template-columns: 1fr; }
  .bento__item--xl { grid-column: span 6; }
  .bento__item--lg { grid-column: span 4; }
  .bento__item--md { grid-column: span 3; }
  .bento__item--sm { grid-column: span 3; }
  .sticky-cta { display: inline-flex; }
}
@media (max-width: 600px) {
  /* Nav compacto — logo escalado visualmente sin aumentar altura del nav */
  .nav { padding: 0.5rem var(--gap); overflow: visible; }
  .nav.scrolled { padding: 0.4rem var(--gap); }
  .nav__logo { overflow: visible; }
  .nav__logo img { width: 60px; height: 60px; transform: scale(1.45); transform-origin: left center; }
  .nav.scrolled .nav__logo img { width: 50px; height: 50px; transform: scale(1.3); }

  .hero__photo { width: auto; height: 50vh; aspect-ratio: 3 / 4; margin: 0 auto; }
  .hero__name { font-size: clamp(2.5rem,9vw,4.5rem); }
  .hero__mini-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }

  /* Stats centrados */
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__item { text-align: center; }
  .stats__number { text-align: center; }

  /* Bio — la foto es retrato 3:4, restaurar aspect-ratio y quitar overflow hidden */
  .bio { overflow: visible; }
  .bio__photo-block { overflow: visible; aspect-ratio: 3/4; max-width: min(340px, 85vw); margin: 0 auto; }
  .bio__left { overflow: visible; }

  /* Bento sin huecos — 2 cols + dense */
  .bento { grid-template-columns: repeat(2,1fr); grid-auto-flow: dense; }
  .bento__item--xl { grid-column: span 2; }
  .bento__item--lg,.bento__item--md,.bento__item--sm { grid-column: span 1; }

  .tgrid { grid-template-columns: 1fr 1fr; }
  .vsl-hero__title { font-size: clamp(1.8rem,7vw,3rem); }
  .cta-final__ctas { flex-direction: column; }
  .cta-final__ctas .btn { width: 100%; justify-content: center; }

  /* Footer centrado y compacto */
  .footer { padding: 2rem var(--gap) 1.5rem; }
  .footer__top { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
  .footer__tagline { text-align: center; }
  .footer__legal-row { flex-direction: column; align-items: center; gap: .75rem; }
  .footer__legal-links { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .ticker__track { animation: none; }
  [data-reveal],[data-reveal="fade"] { opacity:1 !important; clip-path:none !important; transform:none !important; transition:none !important; }
}

/* ═══════════════════════════════════════════════════
   CAPTACIÓN PREVIA (index.html) — form antes de la VSL
═══════════════════════════════════════════════════ */
body.capta-page { min-height: 100vh; display: flex; flex-direction: column; }
body.capta-page .nav { position: static; background: transparent; border-bottom: none; justify-content: center; }

.capta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem) var(--gap) 3rem;
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, var(--violet-glow), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, oklch(88% 0.26 128 / 0.08), transparent 60%),
    var(--ink);
}

.capta__grid { width: min(100%, 620px); margin: 0 auto; }
.capta__inner { width: min(100%, 620px); text-align: center; }

@media (min-width: 1025px) {
  /* Nav compacto: en la captación no necesita el logo grande de la VSL */
  body.capta-page .nav { padding: .5rem var(--gap); }
  body.capta-page .nav__logo img { width: 52px; height: 52px; }

  /* Ajuste fino para que el form quepa en el primer viewport */
  .capta { padding: .75rem var(--gap) 1rem; }
  .capta__h1 { font-size: clamp(1.5rem, .8rem + 1.5vw, 2rem); margin-bottom: .4rem; }
  .capta__sub { font-size: .88rem; max-width: 42ch; margin-bottom: .6rem; }
  .capta__trust-line { margin-bottom: .6rem; padding-bottom: .5rem; }
  .capta-form { gap: .45rem; }
  .field { gap: .25rem; }
  .field > label { font-size: .6rem; }
  .field input[type="text"],
  .field input[type="tel"],
  .field select { padding: .52rem 1.1rem; font-size: .9rem; }
  .field select { padding-right: 2.75rem; }
  .rgpd { font-size: .72rem; }
  .capta-submit { margin-top: .1rem; padding: .75em 2.1em; }
}

.eyebrow-row { display: block; margin-bottom: 1.25rem; }

.capta__h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.capta__h1 .lime { color: var(--lime); }

.capta__sub {
  font-size: var(--fs-lead);
  color: var(--muted-hi);
  max-width: 46ch;
  margin-inline: auto;
  margin-bottom: 2.25rem;
}

.capta__trust-line {
  font-size: .8rem;
  color: var(--muted-hi);
  letter-spacing: .01em;
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--ink-border);
}
.capta__trust-line strong { color: var(--lime); font-weight: 700; }

.capta-form { display: flex; flex-direction: column; gap: 1.1rem; }

.field { display: flex; flex-direction: column; gap: .5rem; }
.field > label {
  font-size: var(--fs-label);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted-hi);
}

/* Base compartida por todos los campos (text, tel, select) */
.field input[type="text"],
.field input[type="tel"],
.field select {
  width: 100%;
  padding: .95rem 1.1rem;
  background: var(--ink-card);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  text-align: left;
  transition: border-color .2s var(--ease-quart), box-shadow .2s var(--ease-quart);
}

/* Select: flecha custom + espacio para ella */
.field select {
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23a8a8ac' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 12px 8px;
  cursor: pointer;
}

/* Placeholder / opción por defecto — color muted */
.field input[type="text"]::placeholder,
.field input[type="tel"]::placeholder { color: var(--muted); }
.field select:invalid { color: var(--muted); }

/* Focus — compartido */
.field input[type="text"]:focus,
.field input[type="tel"]:focus,
.field select:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px oklch(88% 0.26 128 / 0.18);
}

.field--radio {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.field--radio legend {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--paper);
  margin-bottom: .3rem;
  padding: 0;
}

.radio-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.1rem;
  background: var(--ink-card);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .2s var(--ease-quart), background .2s var(--ease-quart);
}
.radio-card input {
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--ink-border);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: border-color .2s var(--ease-quart);
}
.radio-card input::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lime);
  transform: scale(0);
  transition: transform .15s var(--ease-quart);
}
.radio-card input:checked::before { transform: scale(1); }
.radio-card input:checked { border-color: var(--lime); }
.radio-card:has(input:checked) { border-color: var(--lime); background: oklch(88% 0.26 128 / 0.06); }
.radio-card span { font-size: .95rem; color: var(--paper); }

.rgpd {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .82rem;
  color: var(--muted-hi);
  cursor: pointer;
}
.rgpd input {
  width: 17px; height: 17px;
  margin-top: 2px;
  accent-color: var(--lime);
  flex-shrink: 0;
}
.rgpd a { color: var(--lime); text-decoration: underline; }

.form-error {
  display: none;
  font-size: .85rem;
  color: oklch(70% 0.19 25);
  background: oklch(70% 0.19 25 / 0.1);
  border: 1px solid oklch(70% 0.19 25 / 0.3);
  border-radius: var(--r-md);
  padding: .7rem 1rem;
}
.form-error.is-visible { display: block; }

.capta-submit { width: 100%; justify-content: center; margin-top: .5rem; }
.capta-submit:disabled { opacity: .6; cursor: wait; }

@media (max-width: 640px) {
  .capta { padding-top: 2.5rem; }
  .capta__h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
}
