/* ============================================================
   Valencia Real Estate Summit 2026 — Landing (PROPHERO V2)
   Clon fiel del Figma (node 63-1103). Paleta oscura + naranja.
   Tipografías: Bebas Neue (display) + Roboto (texto).
   ============================================================ */

:root {
  /* Marca */
  --orange:      #f37801;   /* acento principal */
  --orange-chip: #422b0f;   /* chip de icono (naranja oscuro) */
  --blue:        #0050d5;   /* cuadrado decorativo */

  /* Superficies oscuras */
  --bg:        #000000;
  --bg-1:      #0a0a0a;
  --bg-2:      #0b0b0b;
  --bg-card:   #121212;     /* tarjeta speaker */
  --bg-count:  #171717;     /* countdown / cajas */
  --bg-tier:   #0e0e0e;     /* tier destacado */
  --venue:     #f37801;     /* panel lugar */

  /* Texto */
  --white:     #ffffff;
  --body:      #b2b2b8;     /* texto cuerpo */
  --muted:     #737373;
  --muted-2:   #b3b3b3;

  /* Bordes */
  --bd:        #2e2e2e;
  --bd-2:      #404040;

  --radius-sm: 4px;
  --radius-md: 8px;

  --maxw: 1440px;
  --gutter: 80px;

  --disp: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --sans: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
p { margin: 0; }

.disp { font-family: var(--disp); font-weight: 400; letter-spacing: .5px; }

.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Bloques decorativos (cuadros) */
.accent-block { position: absolute; z-index: 1; pointer-events: none; }
.accent-block.orange { background: var(--orange); }
.accent-block.blue   { background: var(--blue); }

/* Iconos recoloreables a naranja vía máscara (reusan el set SVG) */
.ico-mask {
  display: inline-block;
  background: var(--orange);
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}

/* ============================================================
   BARRA PROMO (arriba del todo)
   ============================================================ */
/* Bloque superior: barra promo + navbar. Sticky conjunto si promo_sticky. */
.site-top.sticky-all { position: sticky; top: 0; z-index: 101; }
.promo-bar { background: var(--orange); }
.promo-bar__inner { min-height: 93px; display: flex; align-items: center; justify-content: center; padding-block: 16px; }
.promo-bar__pill { display: inline-block; background: #1a1a1a; color: #fff; border-radius: 8px; padding: 9px 28px; font-size: 16px; font-weight: 600; letter-spacing: .5px; line-height: 1.3; text-align: center; transition: background-color .2s var(--ease), transform .2s var(--ease); }
a.promo-bar__pill:hover { background: #000; transform: translateY(-1px); }
@media (max-width: 640px) { .promo-bar__inner { min-height: 72px; padding-block: 12px; } .promo-bar__pill { font-size: 13px; padding: 8px 18px; } }

/* Speakers — texto inferior (El Lineup sigue creciendo) */
.speakers__outro { text-align: center; margin-top: 64px; }
.speakers__outro-title { display: inline-flex; align-items: center; justify-content: center; gap: 34px; font-family: var(--disp); font-weight: 400; font-size: 40px; line-height: 1; letter-spacing: .5px; color: var(--orange); margin: 0; }
.speakers__outro-title::before, .speakers__outro-title::after { content: ""; flex: none; width: 34px; height: 34px; }
.speakers__outro-title::before { background: var(--orange); }
.speakers__outro-title::after { background: var(--blue); }
.speakers__outro-sub { font-family: var(--sans); font-weight: 400; font-size: 26px; line-height: 1.2; letter-spacing: .5px; color: var(--white); margin: 6px 0 0; }
@media (max-width: 640px) { .speakers__outro { margin-top: 44px; } .speakers__outro-title { font-size: 32px; gap: 18px; } .speakers__outro-title::before, .speakers__outro-title::after { width: 24px; height: 24px; } .speakers__outro-sub { font-size: 20px; } }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  z-index: 100; height: 72px;
  background: rgba(0,0,0,.92); backdrop-filter: saturate(160%) blur(8px);
  display: flex; align-items: center; border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
/* Sin barra promo sticky: el navbar se pega solo. */
.site-top:not(.sticky-all) .nav { position: sticky; top: 0; }
.nav.scrolled { border-color: var(--bd); box-shadow: 0 6px 24px rgba(0,0,0,.5); }
.nav__inner { display: flex; align-items: center; gap: 24px; }
.nav__logo img { width: 175px; height: 50px; object-fit: contain; }
.nav__links { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.nav__links a {
  font-size: 12px; font-weight: 600; letter-spacing: .5px; color: var(--white);
  position: relative; padding: 4px 0; transition: color .25s var(--ease);
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--orange); }
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }
.nav__toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; border: none; background: transparent;
  flex-direction: column; justify-content: center; gap: 5px; cursor: pointer;
}
.nav__toggle span { display: block; height: 2px; width: 24px; background: var(--white); transition: .3s var(--ease); }
.nav.open .nav__toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2){ opacity: 0; }
.nav.open .nav__toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 40px; padding: 0 22px; border-radius: var(--radius-sm); font-family: var(--sans);
  font-size: 12px; font-weight: 700; letter-spacing: .4px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              box-shadow .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn--primary { background: var(--orange); color: #0d0d0d; box-shadow: 0 6px 16px rgba(243,120,1,.22); }
.btn--primary:hover { background: #ff8a1a; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(243,120,1,.34); }
.btn--subtle { background: transparent; color: var(--white); border-color: rgba(255,255,255,.32); }
.btn--subtle:hover { border-color: var(--white); background: var(--white); color: #0d0d0d; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--orange); border-color: var(--orange); font-size: 11px; }
.btn--outline:hover { background: var(--orange); color: #0d0d0d; transform: translateY(-2px); }
.btn--block { width: 100%; }
.nav .btn--primary { width: 216px; padding: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--bg); }
.hero__shell { display: flex; height: 610px; padding-inline: 0; max-width: var(--maxw); margin-inline: auto; }
.hero__left { width: 50%; flex: 0 0 50%; padding: 72px 60px 56px 80px; display: flex; flex-direction: column; align-items: flex-start; }
.hero__title { font-family: var(--disp); font-weight: 400; font-size: 36px; line-height: 40px; letter-spacing: .5px; color: var(--white); max-width: 395px; margin: 0; }
.hero__brand { font-family: var(--disp); font-weight: 400; font-size: 40px; line-height: 44px; letter-spacing: .5px; color: var(--orange); margin-top: 6px; }
.hero__subtitle { margin-top: 24px; font-size: 15px; font-weight: 400; line-height: 22px; color: var(--body); }
.hero__info { margin-top: 32px; display: flex; gap: 24px; flex-wrap: wrap; }
.info-item { display: flex; align-items: center; gap: 8px; }
.info-item__chip { width: 32px; height: 32px; background: var(--orange-chip); border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item__chip .ico-mask { width: 18px; height: 18px; }
.info-item__txt { font-size: 11px; font-weight: 600; line-height: 14px; color: var(--white); }
.hero__cta { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__by { margin-top: 36px; display: flex; align-items: center; gap: 6px; }
.hero__by span { font-size: 11px; color: var(--white); }
.hero__by img { width: 106px; height: 24px; flex-shrink: 0; }
.hero__right { width: 50%; flex: 0 0 50%; position: relative; overflow: hidden; }
.hero__right .hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.hero__quote { position: absolute; left: 7%; top: 50%; transform: translateY(-50%); z-index: 2; font-family: var(--disp); font-size: clamp(20px, 2.4vw, 32px); line-height: 1.2; letter-spacing: .5px; max-width: 46%; }
.hero__quote .w { color: var(--white); }
.hero__quote .b { color: var(--orange); text-transform: uppercase; margin-top: 4px; }

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown { background: var(--bg-count); }
.countdown__inner { display: flex; align-items: center; justify-content: center; gap: 107px; padding-block: 48px; flex-wrap: wrap; }
.countdown__label { display: flex; flex-direction: column; gap: 4px; }
.countdown__eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .88px; color: var(--orange); }
.countdown__title { font-family: var(--disp); font-size: 32px; line-height: 1; color: var(--white); }
.countdown__boxes { display: flex; gap: 16px; }
.cd-unit { width: 90px; background: var(--bg-count); border: 1px solid var(--bd-2); border-radius: var(--radius-sm); padding: 16px 20px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cd-unit__num { font-family: var(--disp); font-size: 40px; line-height: 1; color: var(--orange); }
.cd-unit__lbl { font-size: 11px; font-weight: 600; letter-spacing: .66px; color: var(--muted-2); }

/* ============================================================
   QUOTE BAND
   ============================================================ */
.quote-band { position: relative; background: var(--bg-1); height: 262px; overflow: hidden; }
.quote-band__inner { position: relative; height: 100%; display: flex; align-items: center; gap: 80px; }
.quote-left { width: max-content; max-width: 240px; flex-shrink: 0; }
.quote-accent { width: 32px; height: 3px; background: var(--orange); border-radius: 2px; margin-bottom: 20px; }
.quote-left p { font-family: var(--disp); font-size: 24px; line-height: 28px; letter-spacing: .4px; color: var(--white); margin-bottom: 4px; }
.quote-divider { width: 1px; height: 80px; background: var(--bd); flex-shrink: 0; }
.quote-right { width: 348px; flex-shrink: 0; }
.quote-right .lead { font-size: 18px; font-weight: 400; line-height: 26px; color: var(--white); }
.quote-right .accent { margin-top: 12px; font-size: 18px; font-weight: 700; line-height: 26px; color: var(--orange); }
.quote-band__media { position: absolute; top: 0; right: 0; height: 100%; width: 548px; max-width: 42%; overflow: hidden; z-index: 1; }
.quote-band__img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ============================================================
   STATS
   ============================================================ */
.stats { position: relative; background: var(--bg); height: 178px; display: flex; align-items: center; }
.stats > .accent-block.orange { top: 0; left: 0; width: 95px; height: 89px; }
.stats__inner { position: relative; display: flex; align-items: center; justify-content: center; gap: 59px; height: 100%; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__row { display: flex; align-items: center; gap: 8px; }
.stat__row .ico-mask { width: 45px; height: 46px; flex-shrink: 0; }
.stat__num { font-family: var(--disp); font-size: 44px; font-weight: 400; color: var(--white); line-height: 1; }
.stat__label { font-size: 13px; font-weight: 600; color: var(--body); letter-spacing: .2px; }
.stat__desc { font-size: 13px; font-weight: 400; line-height: 18px; color: var(--muted); max-width: 150px; }
.stat-divider { width: 1px; height: 60px; background: var(--bd); flex-shrink: 0; }

/* ============================================================
   SPEAKERS
   ============================================================ */
.speakers { position: relative; background: var(--bg); padding-block: 64px 90px; }
.speakers__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.speakers__head-l { display: flex; gap: 63px; align-items: flex-start; flex-wrap: wrap; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 1px; color: var(--orange); text-transform: uppercase; }
.speakers__title { font-family: var(--disp); font-size: 40px; line-height: 1.05; letter-spacing: .5px; color: var(--white); margin-top: 12px; max-width: 365px; }
.speakers__title .accent { color: var(--orange); }
.speakers__lead { font-family: var(--disp); font-size: 26px; line-height: 32px; letter-spacing: .4px; color: var(--white); width: 320px; }
.speakers__mark { width: 122px; height: 157px; flex-shrink: 0; object-fit: contain; }
.speakers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.speaker-card { background: var(--bg-card); border-radius: var(--radius-sm); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.speaker-card__photo { aspect-ratio: 410 / 320; overflow: hidden; }
.speaker-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s var(--ease); }
.speaker-card__body { padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.speaker-card__role { font-size: 10px; font-weight: 600; letter-spacing: .6px; color: var(--orange); text-transform: uppercase; }
.speaker-card__name { font-size: 20px; font-weight: 700; line-height: 1.1; color: var(--white); }
.speaker-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.45); }
.speaker-card:hover .speaker-card__photo img { transform: scale(1.05); }

/* ============================================================
   TOPICS
   ============================================================ */
.topics { background: var(--bg-1); padding-block: 64px; }
.topics__head { margin-bottom: 40px; }
.topics__title { font-family: var(--disp); margin-top: 8px; font-size: 34px; letter-spacing: .5px; color: var(--white); }
.topics__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 30px; }
.topic-card { height: 96px; background: var(--bg-card); border: 1px solid var(--bd); border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; transition: translate .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.topic-card .ico-mask { width: 40px; height: 40px; }
.topic-card span { font-size: 13px; font-weight: 600; color: var(--white); }
.topic-card:hover { translate: 0 -4px; box-shadow: 0 12px 28px rgba(0,0,0,.4); border-color: var(--orange); }
.topic-card { opacity: 0; }
.topics__grid.in .topic-card { animation: topicDrop .55s cubic-bezier(.2,.7,.3,1.12) both; }
.topics__grid.in .topic-card:nth-child(1){animation-delay:.02s}
.topics__grid.in .topic-card:nth-child(2){animation-delay:.10s}
.topics__grid.in .topic-card:nth-child(3){animation-delay:.18s}
.topics__grid.in .topic-card:nth-child(4){animation-delay:.26s}
.topics__grid.in .topic-card:nth-child(5){animation-delay:.34s}
.topics__grid.in .topic-card:nth-child(6){animation-delay:.42s}
.topics__grid.in .topic-card:nth-child(7){animation-delay:.50s}
@keyframes topicDrop { 0%{opacity:0;transform:translateY(-34px)} 100%{opacity:1;transform:translateY(0)} }
@media (prefers-reduced-motion: reduce){ .topic-card{opacity:1} .topics__grid.in .topic-card{animation:none} }

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience { background: var(--bg); padding-block: 64px; }
.audience__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 40px; }
.audience__title { font-family: var(--disp); margin-top: 12px; font-size: 34px; letter-spacing: .5px; color: var(--white); }
.audience__head .btn { flex-shrink: 0; }
.audience__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.aud-item { display: flex; flex-direction: column; }
.aud-item .ico-mask { width: 34px; height: 34px; margin-bottom: 8px; }
.aud-item h4 { margin: 0 0 8px; font-size: 16px; font-weight: 700; color: var(--white); }
.aud-item p { font-size: 12px; font-weight: 400; line-height: 17px; color: var(--body); max-width: 150px; }

/* ============================================================
   VENUE
   ============================================================ */
.venue { background: var(--venue); position: relative; }
/* Mosaico azul: arriba a la derecha (sobresale por arriba) */
.venue__sq-blue { position: absolute; top: -60px; right: 0; width: 61px; height: 61px; background: var(--blue); z-index: 4; }
/* Mosaico naranja: abajo, borde imagen/panel, sobresale por abajo (cae al entrar) */
.venue__drop { position: absolute; bottom: -39px; left: 57.6%; width: 78px; height: 78px; background: var(--orange); z-index: 4; }
.venue__drop { transform: translateY(-40px); opacity: 0; transition: transform .8s cubic-bezier(.2,.75,.25,1.12), opacity .6s var(--ease); }
.venue__drop.in { transform: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) { .venue__drop { transform: none; opacity: 1; transition: none; } }
.venue__shell { display: flex; height: 400px; padding-inline: 0; }
.venue__img { width: 57.6%; height: 100%; background: var(--bg-card); flex-shrink: 0; overflow: hidden; position: relative; }
.venue__img img { width: 100%; height: 100%; object-fit: cover; }
.venue__right { flex: 1; padding: 0 80px; display: flex; flex-direction: column; justify-content: center; gap: 16px; position: relative; }
.venue__right .ico-mask { width: 45px; height: 45px; background: #fff; }
.venue__eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; color: #fff; text-transform: uppercase; }
.venue__title { font-family: var(--disp); font-size: 40px; line-height: 1.05; letter-spacing: .5px; color: var(--white); }
.venue__sub { font-size: 16px; font-weight: 400; line-height: 24px; color: #fff; max-width: 240px; }

/* ============================================================
   SPONSORSHIP (sustituye pricing)
   ============================================================ */
.pricing { background: var(--bg); padding-block: 72px; }
.pricing__shell { position: relative; }
.pricing__title { font-family: var(--disp); margin: 49px 0 0; font-size: 38px; letter-spacing: .5px; color: var(--white); }
.pricing__title .accent { color: var(--orange); }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; align-items: stretch; }
.tier { position: relative; background: var(--bg-2); border: 1px solid var(--bd); border-radius: var(--radius-md); padding: 64px 48px; display: flex; flex-direction: column; gap: 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tier:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.4); border-color: var(--orange); }
.tier--featured { background: var(--bg-tier); border: 2px solid var(--orange); }
.tier--featured .tier__cta { background: var(--orange); color: #0d0d0d; border-color: var(--orange); }
.tier__badge { position: absolute; top: 26px; left: 48px; background: var(--orange); color: #0d0d0d; font-size: 11px; font-weight: 700; letter-spacing: .66px; padding: 6px 12px; border-radius: var(--radius-sm); }
.tier__name { font-family: var(--disp); font-size: 36px; line-height: 1; letter-spacing: .5px; color: var(--white); }
.tier__priceblock { display: flex; flex-direction: column; gap: 3px; }
.tier__from { font-size: 11px; font-weight: 600; letter-spacing: .44px; color: var(--muted); }
.tier__price { display: flex; align-items: flex-start; gap: 2px; font-family: var(--disp); }
.tier__price b { font-weight: 400; font-size: 52px; line-height: 1; color: var(--white); }
.tier__price i { font-style: normal; font-size: 22px; color: var(--body); }
.tier__priceblock--old { margin-top: 10px; }
.tier__price--old { position: relative; align-self: flex-start; }
.tier__price--old b { font-size: 30px; color: var(--body); }
.tier__price--old i { font-size: 16px; color: var(--muted); }
.tier__price--old::after { content: ""; position: absolute; left: -4px; right: -2px; top: 52%; height: 2px; background: var(--orange); transform: rotate(-9deg); transform-origin: center; }
.tier__divider { height: 1px; background: var(--bd); }
.tier__items { display: flex; flex-direction: column; gap: 12px; }
.tier__group { font-size: 11px; font-weight: 700; letter-spacing: .5px; color: var(--orange); text-transform: uppercase; margin-top: 6px; }
.tier__group:first-child { margin-top: 0; }
.tier__item { display: flex; gap: 10px; align-items: flex-start; }
.tier__item .arrow { color: var(--orange); font-weight: 700; flex-shrink: 0; line-height: 1.5; }
.tier__item span { font-size: 13px; font-weight: 400; line-height: 1.5; color: var(--body); }
.tier__spacer { flex: 1 0 0; min-height: 8px; }
.tier__cta { width: 100%; padding: 16px; border-radius: var(--radius-sm); text-align: center; font-size: 13px; font-weight: 700; letter-spacing: .52px; border: 1px solid var(--orange); color: var(--orange); background: transparent; transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.tier__cta:hover { background: var(--orange); color: #0d0d0d; transform: translateY(-2px); }
.tier:hover .tier__cta { background: var(--orange); color: #0d0d0d; border-color: var(--orange); }

.progress-row { margin-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.progress-phase { font-size: 16px; font-weight: 700; line-height: 22px; color: var(--white); width: 182px; flex-shrink: 0; }
.progress-mid { width: 540px; max-width: 100%; }
.progress-mid__labels { display: flex; gap: 18px; font-size: 12px; line-height: 18px; margin-bottom: 5px; }
.progress-mid__labels .a { font-weight: 600; color: var(--white); }
.progress-mid__labels .b { font-weight: 400; color: var(--body); }
.progress-track { width: 100%; height: 8px; background: var(--bd); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; width: 0; background: var(--orange); border-radius: 4px; transition: width 1.4s var(--ease); }
.progress-note { font-size: 12px; font-weight: 400; line-height: 18px; color: var(--body); width: 193px; flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #171717; padding-block: 88px; }
.faq__title { font-family: var(--disp); margin: 8px 0 40px; font-size: 38px; letter-spacing: .5px; color: var(--white); }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid rgba(255,255,255,.10); transition: background-color .35s var(--ease), padding .35s var(--ease), margin .35s var(--ease); }
.faq__q { width: 100%; background: none; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; text-align: left; font-family: var(--sans); font-size: 22px; font-weight: 700; color: var(--white); transition: color .25s var(--ease); }
.faq__item:not(.open) .faq__q:hover { color: var(--orange); }
.faq__item:not(.open) .faq__q:hover .faq__icon { color: var(--orange); transform: translate(2px,-2px); }
.faq__icon { flex-shrink: 0; font-size: 22px; line-height: 1; transition: transform .35s var(--ease), color .25s var(--ease); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq__a > div { overflow: hidden; }
.faq__a p { font-size: 16px; line-height: 24px; color: var(--body); max-width: 1100px; }
.faq__item.open { background: #1c1c1c; border-radius: 16px; border-bottom-color: transparent; padding-inline: 32px; margin-bottom: 10px; }
.faq__item.open .faq__q { color: var(--white); }
.faq__item.open .faq__icon { transform: rotate(90deg); color: var(--orange); }
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__item.open .faq__a p { color: var(--body); padding-bottom: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); }
/* Tagline band */
.tagline-band { position: relative; height: 280px; overflow: hidden; display: flex; flex-direction: column; align-items: center; }
.tagline-band__bg { position: absolute; top: 0; right: 0; height: 100%; width: 55%; object-fit: cover; object-position: left center; z-index: 0; }
.tagline-band__line { position: relative; z-index: 2; margin-top: 62px; display: flex; flex-direction: column; gap: 6px; align-items: center; justify-content: center; font-family: var(--disp); font-size: 24px; line-height: 1.2; letter-spacing: .5px; text-align: center; max-width: 1050px; padding-inline: 24px; }
.tagline-band__line .blue { color: var(--orange); }
.tagline-band__line .black { color: var(--white); text-transform: uppercase; }
.tagline-band__logo { position: relative; z-index: 2; margin-top: 28px; width: 574px; height: 39px; max-width: 80%; object-fit: contain; }
.tagline-band__sq-blue { position: absolute; left: 53px; top: 1px; width: 37px; height: 38px; background: var(--blue); z-index: 1; }
.tagline-band__sq-orange { position: absolute; left: 0; top: 39px; width: 72px; height: 63px; background: var(--orange); z-index: 1; }

/* Footer body */
.footer__body { position: relative; border-top: 1px solid var(--bd); overflow: hidden; }
.footer__body-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 56px; }
.foot-logo { display: flex; flex-direction: column; align-items: flex-start; }
.foot-logo img.foot-logo__img { width: 209px; height: 59px; object-fit: contain; margin-bottom: 20px; }
.foot-event { display: flex; flex-direction: column; gap: 8px; }
.foot-event__row { display: flex; align-items: center; gap: 8px; line-height: 1; font-size: 13px; color: var(--body); }
.foot-event__row .ico-mask { width: 18px; height: 18px; flex-shrink: 0; }
.foot-by { margin-top: 20px; display: flex; align-items: center; gap: 6px; }
.foot-by span { font-size: 11px; color: var(--white); }
.foot-by img { width: 106px; height: 24px; flex-shrink: 0; }
.footer__cta { flex-shrink: 0; height: 68px; padding: 0 64px; font-size: 20px; font-weight: 700; letter-spacing: .5px; border-radius: 8px; }
.foot-rrss { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.foot-rrss h5 { margin: 0; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; color: var(--body); text-transform: uppercase; }
.foot-social { display: flex; gap: 10px; margin-bottom: 15px; }
.foot-social a { width: 40px; height: 40px; background: #24242e; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; transition: background-color .25s var(--ease), transform .25s var(--ease); }
.foot-social a .ico-mask { width: 20px; height: 20px; background: #fff; }
.foot-social a:hover { background: var(--orange); transform: translateY(-3px); }
.foot-social a:hover .ico-mask { background: #0d0d0d; }
.foot-contact { display: flex; flex-direction: column; gap: 10px; }
.foot-contact a { font-size: 14px; color: #bfbfc7; transition: color .25s var(--ease); }
.foot-contact a:hover { color: var(--orange); }

/* Bottom bar */
.footer__bottom { height: 56px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; border-top: 1px solid var(--bd); }
.footer__bottom .copy { color: var(--body); font-weight: 400; }
.footer__bottom .limit { color: var(--muted); font-weight: 600; }

/* ============================================================
   Scroll-reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.nav__drawer { display: none; }

/* ============================================================
   POPUP MODAL (al cargar) — foto izquierda + panel oscuro derecha
   ============================================================ */
.ph-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility 0s linear .35s; }
.ph-modal.is-open { opacity: 1; visibility: visible; transition: opacity .35s var(--ease); }
.ph-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.8); }
.ph-modal__box { position: relative; z-index: 1; width: 100%; max-width: 1034px; aspect-ratio: 1034 / 512; background: #0d0d0d; border-radius: 4px; overflow: hidden; transform: translateY(18px) scale(.98); transition: transform .4s var(--ease); box-shadow: 0 40px 100px rgba(0,0,0,.65); }
.ph-modal.is-open .ph-modal__box { transform: none; }
.ph-modal__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center; display: block; }
.ph-modal__box::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,13,13,0) 34%, rgba(13,13,13,.55) 48%, rgba(13,13,13,.82) 62%); pointer-events: none; }
.ph-modal__body { position: absolute; z-index: 2; top: 50%; right: 0; width: 56%; transform: translateY(-50%); padding: 0 6% 0 2%; text-align: center; }
.ph-modal__text { font-size: 16px; line-height: 26px; color: var(--white); margin: 0 0 26px; }
.ph-modal__cta { height: 40px; padding: 0 22px; }
.ph-modal__x { position: absolute; z-index: 3; top: 20px; right: 20px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--orange); cursor: pointer; padding: 0; transition: transform .2s var(--ease); }
.ph-modal__x:hover { transform: rotate(90deg); }
.ph-modal__x span { position: absolute; top: 50%; left: 50%; width: 16px; height: 2px; background: #0d0d0d; }
.ph-modal__x span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.ph-modal__x span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
@media (max-width: 720px) {
	.ph-modal__box { aspect-ratio: auto; max-width: 420px; display: flex; flex-direction: column; }
	.ph-modal__img { position: relative; height: 190px; }
	.ph-modal__box::after { display: none; }
	.ph-modal__body { position: static; width: auto; transform: none; padding: 26px 24px 30px; background: #0d0d0d; }
	.ph-modal__text { font-size: 15px; line-height: 24px; }
}
@media (prefers-reduced-motion: reduce) { .ph-modal, .ph-modal__box { transition: opacity .2s; } .ph-modal__box { transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  .progress-row { flex-wrap: wrap; }
  .progress-phase, .progress-note { width: 100%; }
  .progress-mid { width: 100%; order: 3; }
}
@media (max-width: 1100px) {
  .speakers__grid { grid-template-columns: repeat(2, 1fr); }
  .countdown__inner { gap: 48px; }
}
@media (max-width: 992px) {
  :root { --gutter: 48px; }
  .nav__links, .nav .btn--primary { display: none; }
  .nav__toggle { display: flex; }
  .nav__drawer {
    display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0;
    background: #0a0a0a; padding: 16px 48px 28px; gap: 6px; transform: translateY(-120%);
    visibility: hidden; transition: transform .4s var(--ease), visibility 0s linear .4s;
    box-shadow: 0 20px 40px rgba(0,0,0,.6); z-index: 99;
  }
  .nav.open .nav__drawer { transform: translateY(0); visibility: visible; transition-delay: 0s; }
  .nav__drawer a:not(.btn) { padding: 12px 0; font-size: 14px; font-weight: 600; letter-spacing: .5px; border-bottom: 1px solid var(--bd); color: #fff; }
  .nav__drawer .btn { margin-top: 14px; width: 100%; }

  .hero__shell { flex-direction: column; height: auto; }
  .hero__left { width: 100%; flex: none; padding: 56px 48px; }
  .hero__right { width: 100%; flex: none; height: 340px; }
  .hero__quote { max-width: 70%; }

  .countdown__inner { flex-direction: column; text-align: center; gap: 28px; }
  .countdown__label { align-items: center; }

  .quote-band { height: auto; }
  .quote-band__inner { flex-wrap: wrap; gap: 28px; padding-block: 48px; }
  .quote-divider { display: none; }
  .quote-left, .quote-right { width: 100%; max-width: 480px; }
  .quote-band__media { position: static; width: 100%; max-width: none; height: 220px; order: -1; }

  .stats { height: auto; padding-block: 48px; }
  .stats__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .stat-divider { display: none; }
  .stats .accent-block.orange { display: none; }

  .speakers__head { flex-direction: column; }
  .speakers__mark { display: none; }
  .speakers__grid { grid-template-columns: repeat(2, 1fr); }

  .topics__grid { grid-template-columns: repeat(4, 1fr); }
  .audience__head { flex-direction: column; }
  .audience__grid { grid-template-columns: repeat(3, 1fr); }
  .aud-item p { max-width: none; }

  .venue__shell { flex-direction: column; height: auto; }
  .venue__img { width: 100%; height: 320px; }
  .venue__right { padding: 56px 48px; }
  .venue__sub { max-width: none; }

  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tier { padding: 48px 32px; }
  .tier__badge { top: 20px; left: 32px; }

  .footer__body-inner { flex-direction: column; align-items: center; text-align: center; gap: 32px; }
  .foot-logo, .foot-rrss { align-items: center; }
  .foot-rrss { text-align: center; }
  .foot-social { justify-content: center; }
  .foot-contact { align-items: center; }
  .footer__bottom { height: auto; flex-direction: column; gap: 8px; align-items: flex-start; padding-block: 20px; }
  .tagline-band__line { font-size: 22px; }
  .tagline-band__bg { width: 100%; opacity: .55; }
}
@media (max-width: 640px) {
  :root { --gutter: 24px; }
  .hero__left { padding: 44px 24px; }
  .hero__title { font-size: 30px; line-height: 34px; }
  .hero__brand { font-size: 40px; line-height: 44px; }
  .hero__quote { left: 6%; font-size: 22px; line-height: 26px; max-width: 80%; }
  .countdown__boxes { gap: 10px; }
  .cd-unit { width: 72px; padding: 14px 10px; }
  .cd-unit__num { font-size: 32px; }
  .stat__row { flex-wrap: wrap; gap: 6px; }
  .stat__num { font-size: 36px; }
  .speakers__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .speakers__title { font-size: 32px; }
  .topics__grid { grid-template-columns: repeat(2, 1fr); }
  .topics__title, .audience__title, .pricing__title { font-size: 30px; }
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
  .venue__img { height: 240px; }
  .venue__right { padding: 44px 24px; }
  .venue__title { font-size: 34px; }
  .foot-logo img.foot-logo__img { margin: 0 auto 18px; width: 180px; height: auto; }
  .footer__cta { width: 100%; max-width: 320px; }
  .faq__title { font-size: 30px; }
  .faq__q { font-size: 16px; line-height: 21px; gap: 14px; padding: 19px 0; }
  .faq__item.open { padding-inline: 18px; }
  .tagline-band__line { font-size: 22px; }
}
@media (max-width: 380px) {
  .hero__brand { font-size: 34px; }
  .audience__grid, .topics__grid { grid-template-columns: 1fr 1fr; }
}
