@font-face {
  font-family: "Zalando Expanded";
  src: url("../assets/fonts/zalando-sans-expanded-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #0b0912;
  --ink-soft: #12101c;
  --white: #f7f5fa;
  --muted: #aaa4b7;
  --violet: #9171ed;
  --violet-deep: #593aad;
  --orange: #ff5900;
  --line: rgba(255, 255, 255, 0.17);
  --page: min(92vw, 1480px);
  --pad: clamp(1.25rem, 4vw, 5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(5, 4, 10, 0.92), rgba(5, 4, 10, 0));
  transition: background 300ms ease, height 300ms ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(8, 6, 14, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 0.8rem; text-transform: uppercase; }
.brand-a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
}
.brand-copy { font-family: "Zalando Expanded", sans-serif; font-size: 0.65rem; line-height: 1.1; letter-spacing: 0.08em; }
.brand-copy b { color: var(--orange); }
.main-nav { font-family: "Zalando Expanded", sans-serif; text-transform: uppercase; font-weight: 650; display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 3rem); font-size: 0.86rem; }
.main-nav > a:not(.button) { color: #fff; transition: color 180ms ease; }
.main-nav > a:not(.button):hover { color: #fff; text-decoration: underline; text-underline-offset: 0.4em; }
.main-nav .button { color: #fff; }
.menu-toggle { display: none; font-family: "Zalando Expanded", sans-serif; color: #fff; text-transform: uppercase; }

.button {
  display: inline-flex;
  width: fit-content;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 0 1.4rem;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #09070d;
  font-family: "Zalando Expanded", sans-serif;
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}
.button:hover { color: var(--white); background: transparent; transform: translateY(-2px); }
.button-small { min-height: 46px; gap: 1.7rem; padding-inline: 1.15rem; font-size: 0.7rem; }

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  display: grid;
  align-items: center;
  padding: 120px var(--pad) 70px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 46% 46%, rgba(89, 58, 173, 0.55), transparent 30%),
    radial-gradient(circle at 75% 35%, rgba(89, 58, 173, 0.3), transparent 25%),
    #07060d;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}
.hero-media { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; background: #07060d url("../assets/images/hero-poster.jpg") center / cover no-repeat; }
.hero-content { width: 100%; margin: auto; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.brand-logo { display: block; width: clamp(210px, 28vw, 380px); height: auto; }
.hero-logo { display: block; width: 100%; height: auto; max-height: max(0px, calc(100vh - 272px)); max-height: max(0px, calc(100dvh - 272px)); object-fit: contain; transition: transform 450ms cubic-bezier(.2,.7,.2,1), filter 450ms ease; will-change: transform; }
.hero-logo:hover { transform: scale(1.03); filter: drop-shadow(0 6px 34px rgba(145, 113, 237, 0.55)); }
.eyebrow, .section-label {
  font-family: "Zalando Expanded", sans-serif;
  color: var(--violet);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero h1 { margin: 0; width: min(100%, 760px); line-height: 0; }
.hero .button:hover { background: rgba(11, 9, 18, 0.85); }
.hero-scroll { position: absolute; right: var(--pad); bottom: 2rem; display: flex; align-items: center; gap: 0.75rem; color: var(--muted); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.18em; transform: rotate(90deg); transform-origin: bottom right; }
.hero-scroll i { width: 55px; height: 1px; background: var(--muted); }

.section { padding: clamp(6rem, 11vw, 11rem) var(--pad); }
.section > * { width: var(--page); margin-inline: auto; }
.section-label { display: flex; gap: 1rem; align-items: center; }
.section-label span { color: var(--orange); }
.section-label::after { content: ""; width: 70px; height: 1px; background: currentColor; opacity: 0.5; }

.intro { background: #f2f0f5; color: var(--ink); }
.intro .section-label { color: var(--violet-deep); }
.intro-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(3rem, 9vw, 10rem); margin-top: 5rem; }
.intro-title { min-width: 0; }
.intro-title h2, .intro-title p {
  margin: 0;
  font-family: "Zalando Expanded", sans-serif;
  font-size: clamp(3.4rem, 6.8vw, 7.3rem);
  font-weight: 650;
  line-height: 0.93;
  letter-spacing: 0.015em;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.intro-title p { color: var(--orange); }
.intro-title em { font-style: normal; }
.intro-copy { padding-top: 0.5rem; }
.intro-copy p { max-width: 600px; margin: 0 0 1.5rem; color: #625d69; font-size: 1rem; line-height: 1.7; }
.intro-copy .lead { font-size: 1rem; line-height: 1.7; font-weight: 700; }
.stats { margin-top: 7rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #c9c4ce; border-bottom: 1px solid #c9c4ce; }
.stats div { padding: 2.2rem 1.5rem 2.2rem 0; border-right: 1px solid #c9c4ce; }
.stats div:not(:first-child) { padding-left: 1.5rem; }
.stats div:last-child { border-right: 0; }
.stats strong { display: block; color: var(--violet-deep); font-family: "Zalando Expanded", sans-serif; font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 800; letter-spacing: -0.025em; }
.stats span { color: var(--violet-deep); font-family: "Zalando Expanded", sans-serif; font-size: 1rem; font-weight: 700; line-height: 1.5; letter-spacing: 0.06em; text-transform: uppercase; }

.themes { position: relative; min-height: 980px; background: #090710; overflow: hidden; }
.themes::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 35% 60%, rgba(89, 58, 173, 0.35), transparent 30%); }
.themes > * { position: relative; z-index: 1; }
.theme-art {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: url("../assets/images/fondo4.jpg") 25% center / cover no-repeat;
  mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
  opacity: 0.84;
  margin: 0;
}
.themes-content { display: grid; grid-template-columns: 0.9fr 1.1fr; }
.themes-content .section-label { align-self: start; color: #fff; }
.theme-list { grid-column: 2; margin: 4rem 0 0; padding: 0; list-style: none; }
.theme-list li { display: grid; grid-template-columns: 70px 1fr; align-items: center; min-height: 87px; border-top: 1px solid rgba(145, 113, 237, 0.5); }
.theme-list li:last-child { border-bottom: 1px solid rgba(145, 113, 237, 0.5); }
.theme-list span { color: var(--violet); font-family: "Zalando Expanded", sans-serif; font-size: 0.75rem; }
.theme-list strong { font-family: "Zalando Expanded", sans-serif; font-size: clamp(1.35rem, 2.5vw, 2.65rem); font-weight: 570; text-transform: uppercase; transition: color 180ms ease, transform 180ms ease; }
.theme-list li:hover strong { color: var(--orange); transform: translateX(10px); }

.agenda { position: relative; isolation: isolate; overflow: hidden; background: #090710; }
.agenda::after { content: ""; position: absolute; z-index: -1; top: 4rem; right: -6vw; width: 95vw; aspect-ratio: 6350 / 1138; background: url("../assets/images/ABS-AGENDA.png") center / contain no-repeat; opacity: 0.08; pointer-events: none; }
.agenda-heading { display: grid; grid-template-columns: minmax(0, 2fr) minmax(220px, 0.8fr); gap: 3rem; align-items: end; position: relative; z-index: 1; }
.agenda-heading .section-label { grid-column: 1 / -1; }
.agenda-heading h2 { margin: 0; font-family: "Zalando Expanded", sans-serif; font-size: clamp(4.8rem, 10vw, 10rem); line-height: 0.75; letter-spacing: -0.065em; text-transform: uppercase; }
.agenda-logo { display: block; width: 100%; max-width: 1000px; height: auto; }
.agenda-heading p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.agenda-tabs { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 6rem; border-bottom: 1px solid var(--line); }
.agenda-tabs button { position: relative; appearance: none; border: 0; background: transparent; padding: 1.3rem; color: #827c8e; font-family: "Zalando Expanded", sans-serif; font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 680; cursor: pointer; transition: color 180ms ease; }
.agenda-tabs button span { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; }
.agenda-tabs button::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform 260ms ease; }
.agenda-tabs button[aria-selected="true"] { color: var(--white); }
.agenda-tabs button[aria-selected="true"]::after { transform: scaleX(1); }
.stage-filter { display: flex; flex-wrap: wrap; gap: 0.7rem; padding: 2rem 0 0; }
.stage-filter button { appearance: none; border: 1px solid var(--line); background: transparent; padding: 0.65rem 0.85rem; color: var(--muted); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 180ms ease; }
.stage-filter button:hover, .stage-filter button.active { border-color: var(--violet); color: var(--white); background: rgba(145, 113, 237, 0.12); }
.schedule { margin-top: 2rem; border-top: 1px solid var(--line); }
.schedule-item { display: grid; grid-template-columns: minmax(150px, 0.8fr) 2.3fr 1fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); animation: itemIn 450ms both; }
.schedule-time { color: var(--violet); font-family: "Zalando Expanded", sans-serif; font-size: clamp(2rem, 4vw, 4rem); font-weight: 650; letter-spacing: -0.04em; }
.schedule-type { display: block; margin-bottom: 0.45rem; color: var(--orange); font-size: 0.63rem; letter-spacing: 0.16em; text-transform: uppercase; }
.schedule-main h3 { margin: 0 0 0.45rem; font-family: "Zalando Expanded", sans-serif; font-size: clamp(1.1rem, 2vw, 1.75rem); font-weight: 800; line-height: 1.2; }
.schedule-main p { margin: 0.35rem 0 0; color: var(--muted); line-height: 1.45; white-space: pre-line; }
.schedule-main .schedule-speaker { font-family: "Roboto", Arial, sans-serif; font-size: 1rem; font-weight: 500; color: #d7d3dc; }
.schedule-place { align-self: center; color: var(--violet); font-size: 0.67rem; line-height: 1.5; letter-spacing: 0.14em; text-transform: uppercase; text-align: right; }
.schedule-stage { display: block; margin-top: 0.45rem; color: #6f6979; }
.empty-state { padding: 5rem 0; color: var(--muted); text-align: center; }
@keyframes itemIn { from { opacity: 0; transform: translateY(15px); } }

.countdown { background: var(--violet); color: var(--ink); }
.countdown .section-label { color: var(--ink); }
.countdown .section-label span { color: var(--white); }
.countdown-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: end; margin-top: 4rem; }
.countdown h2 { margin: 0; font-family: "Zalando Expanded", sans-serif; font-size: clamp(3.4rem, 7vw, 7rem); font-weight: 700; line-height: 0.92; letter-spacing: -0.06em; text-transform: uppercase; }
.timer { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(11, 9, 18, 0.35); }
.timer div { padding: 2rem 1rem; border-right: 1px solid rgba(11, 9, 18, 0.35); }
.timer div:last-child { border-right: 0; }
.timer strong { display: block; font-family: "Zalando Expanded", sans-serif; font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 550; letter-spacing: -0.06em; }
.timer span { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; }

.tickets { position: relative; min-height: 870px; display: grid; align-items: center; overflow: hidden; background: #f2f0f5; color: var(--ink); }
.tickets-art { position: absolute; inset: 0; width: 100%; max-width: none; margin: 0; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.84) 45%, rgba(255,255,255,.08)), url("../assets/images/fondo5.jpg") center / cover no-repeat; }
.tickets .section-label { color: var(--violet-deep); }
.tickets .pricing { --line: rgba(11,9,18,.2); }
.tickets .pricing small { color: #514b59; }
.tickets .button:hover { color: var(--ink); background: #fff; }
.tickets-content { position: relative; z-index: 2; }
.tickets h2 { margin: 2.5rem 0 3rem; font-family: "Zalando Expanded", sans-serif; font-size: clamp(4.1rem, 8vw, 8.5rem); font-weight: 650; line-height: 1; letter-spacing: 0.015em; }
.tickets h2 em { color: var(--orange); font-style: normal; }
.pricing { display: grid; grid-template-columns: repeat(2, minmax(220px, 330px)); margin-bottom: 2rem; }
.pricing div { padding: 0 2rem 0 0; border-right: 1px solid var(--line); }
.pricing div + div { padding-left: 2rem; border-right: 0; }
.pricing strong { display: block; font-family: "Zalando Expanded", sans-serif; font-size: clamp(3rem, 5vw, 5rem); font-weight: 600; letter-spacing: -0.05em; }
.pricing span { display: block; color: var(--orange); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; }
.pricing small { display: block; margin-top: 0.6rem; color: var(--muted); }
.button-wide { width: min(100%, 690px); }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 4rem; padding: 4rem var(--pad); background: #06050a; }
.footer-logo { display: block; width: min(100%, 400px); height: auto; }
.footer-brand { min-width: 0; }
.site-footer > div { display: grid; gap: 0.5rem; }
.site-footer > div span { color: var(--orange); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.site-footer > div a { font-size: 0.9rem; }
.site-footer p { justify-self: end; color: #77717f; font-size: 0.7rem; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.cursor-glow { position: fixed; z-index: 50; width: 440px; height: 440px; border-radius: 50%; background: radial-gradient(circle, rgba(145, 113, 237, 0.48) 0%, rgba(145, 113, 237, 0.22) 28%, transparent 70%); pointer-events: none; transform: translate(-50%, -50%); opacity: 0; transition: opacity 300ms ease; mix-blend-mode: normal; }

@media (max-width: 900px) {
  .menu-toggle { display: flex; align-items: center; gap: 0.45rem; appearance: none; border: 0; background: transparent; cursor: pointer; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.1em; }
  .menu-toggle i { display: block; width: 18px; height: 1px; background: currentColor; }
  .main-nav { position: fixed; inset: 0; z-index: -1; padding: 9rem var(--pad) 4rem; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: rgba(8, 6, 14, 0.98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: all 250ms ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a:not(.button) { font-family: "Zalando Expanded", sans-serif; font-size: clamp(1.2rem, 4.8vw, 2.7rem); }
  .intro-grid, .themes-content, .agenda-heading, .countdown-grid { grid-template-columns: minmax(0, 1fr); }
  .intro-copy { max-width: 650px; }
  .themes { min-height: auto; }
  .theme-art { width: 100%; opacity: 0.3; mask-image: linear-gradient(180deg, #000, transparent 75%); }
  .theme-list { grid-column: 1; }
  .agenda-heading { align-items: start; }
  .schedule-item { grid-template-columns: 120px 1fr; }
  .schedule-place { grid-column: 2; text-align: left; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer p { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 600px) {
  :root { --pad: 1.25rem; }
  .site-header { height: 72px; }
  .brand-a { width: 34px; height: 34px; font-size: 1.4rem; }
  .brand-copy { font-size: 0.55rem; }
  .hero { padding-top: 105px; align-items: center; }
  .hero h1 { font-size: clamp(3.7rem, 17.5vw, 5rem); letter-spacing: -0.075em; }
  .hero-details { grid-template-columns: 1fr; gap: 1rem; }
  .hero-details p:last-child { max-width: 320px; }
  .hero-scroll { display: none; }
  .section { padding-top: 6rem; padding-bottom: 6rem; }
  .intro-grid { margin-top: 3rem; gap: 2.5rem; }
  .intro-title h2, .intro-title p { font-size: clamp(2.35rem, 11.5vw, 5rem); }
  .stats { grid-template-columns: repeat(2, 1fr); margin-top: 4rem; }
  .stats div:nth-child(2) { border-right: 0; }
  .stats div:nth-child(-n+2) { border-bottom: 1px solid #c9c4ce; }
  .stats div:nth-child(3) { grid-column: 1 / -1; padding-left: 0; }
  .theme-list li { grid-template-columns: 44px 1fr; min-height: 72px; }
  .agenda::after { top: 8rem; width: 130vw; right: -15vw; }
  .agenda-heading h2 { font-size: 4.5rem; }
  .agenda-tabs { margin-top: 3.5rem; }
  .agenda-tabs button { font-size: 2.35rem; padding-inline: 0.4rem; }
  .schedule-item { grid-template-columns: 1fr; gap: 0.8rem; }
  .schedule-place { grid-column: 1; }
  .timer { grid-template-columns: repeat(2, 1fr); }
  .timer div:nth-child(2) { border-right: 0; }
  .timer div:nth-child(-n+2) { border-bottom: 1px solid rgba(11, 9, 18, 0.35); }
  .pricing { grid-template-columns: 1fr; }
  .pricing div { padding: 0 0 1.5rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .pricing div + div { padding: 1.5rem 0 0; border-bottom: 0; }
  .tickets-art { background-image: linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)), url("../assets/images/fondo5.jpg"); }
  .site-footer { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-height: 500px) and (min-width: 601px) {
  .hero { padding-top: 86px; padding-bottom: 24px; }
  .hero-content { gap: 1rem; }
  .hero-logo { max-height: calc(100vh - 184px); max-height: calc(100dvh - 184px); }
}
