/* ==========================================================================
   THE ELECTRIC ROADS — Landing de venta de boletas
   ========================================================================== */

:root {
  --bg: #050505;
  --bg-alt: #0d0d0d;
  --bg-card: #111211;
  --line: rgba(255,255,255,0.08);

  --neon: #a3f550;
  --neon-soft: rgba(163,245,80,0.15);
  --neon-glow: rgba(163,245,80,0.55);

  --accent: #ff4d1c;
  --accent-soft: rgba(255,77,28,0.15);
  --accent-glow: rgba(255,77,28,0.55);

  --white: #f6f6f2;
  --gray: #9a9a94;
  --gray-dim: #67675f;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --radius: 18px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.locked { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0;
}

.section-title {
  font-size: clamp(34px, 5.5vw, 64px);
  margin-bottom: 20px;
}

.section-lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--gray);
  max-width: 620px;
  line-height: 1.6;
  margin: 0 0 48px;
}

.highlight { color: var(--neon); }
.highlight-alt { color: var(--accent); }

section { position: relative; }
section[id] { scroll-margin-top: 90px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-word {
  display: inline-block;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), filter .6s var(--ease);
}
.reveal-word.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gray-dim); border-radius: 10px; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,5,5,0.82);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-color: var(--line);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 34px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray);
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--neon);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 18px; }

.burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.burger span, .burger span::before, .burger span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--white);
  position: relative;
  transition: transform .25s, opacity .25s;
}
.burger span::before { position: absolute; top: -6px; }
.burger span::after { position: absolute; top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { transform: translateY(6px) rotate(45deg); }
.burger.open span::after { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   BUTTONS — "rich media" style: glow, sweep, magnetic
   ========================================================================== */
.btn {
  --btn-x: 50%;
  --btn-y: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}
.btn::after {
  content: "";
  position: absolute;
  left: var(--btn-x);
  top: var(--btn-y);
  width: 12px; height: 12px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  filter: blur(10px);
  opacity: 0;
  transition: opacity .3s;
  z-index: -1;
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  color: #0a0a0a;
  background: var(--neon);
  box-shadow: 0 0 0 0 var(--neon-glow);
  animation: btn-pulse 2.6s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px -6px var(--neon-glow);
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(163,245,80,0.35); }
  50% { box-shadow: 0 0 0 10px rgba(163,245,80,0); }
}

.btn-accent {
  color: var(--white);
  background: linear-gradient(120deg, var(--accent), #ff2d55);
  box-shadow: 0 10px 30px -10px var(--accent-glow);
}
.btn-accent:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 40px -8px var(--accent-glow); }

.btn-ghost {
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: var(--neon); color: var(--neon); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; animation: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: var(--bg);
  overflow: hidden;
}

.hero-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  pointer-events: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(5,5,5,0.98) 0%, rgba(5,5,5,0.96) 42%, rgba(5,5,5,0.8) 58%, rgba(5,5,5,0.35) 74%, rgba(5,5,5,0) 92%);
}

/* Reutilizado por .final-cta más abajo */
.hero-glow {
  position: absolute;
  left: 50%; top: 8%;
  width: 900px; height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--neon-soft) 0%, transparent 65%);
  filter: blur(10px);
  animation: glow-pulse 6s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: .7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(163,245,80,0.4);
  border-radius: 999px;
  background: rgba(5,5,5,0.55);
  backdrop-filter: blur(6px);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
  animation: dot-blink 1.6s ease-in-out infinite;
}
@keyframes dot-blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero-title {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.94;
  margin: 0 0 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .stroke {
  -webkit-text-stroke: 2px var(--neon);
  color: transparent;
}

.hero-sub {
  max-width: 540px;
  margin: 0 0 40px;
  color: var(--gray);
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.6;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-meta .meta-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5,5,5,0.55);
  backdrop-filter: blur(6px);
  font-size: 13px;
  color: var(--gray);
}
.hero-meta .meta-pill strong { color: var(--white); font-weight: 600; }
.meta-icon { color: var(--neon); flex-shrink: 0; }

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .hero-ctas { justify-content: flex-start; }

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gray-dim);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-scroll .mouse {
  width: 22px; height: 34px;
  border: 1.5px solid var(--gray-dim);
  border-radius: 12px;
  position: relative;
}
.hero-scroll .mouse::before {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  width: 3px; height: 8px;
  background: var(--neon);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 18px; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee-wrap {
  background: var(--accent);
  transform: rotate(-1.4deg);
  margin: -34px 0 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 3px solid #0a0a0a;
  border-bottom: 3px solid #0a0a0a;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 30px);
  letter-spacing: 0.02em;
  color: #0a0a0a;
  white-space: nowrap;
  text-transform: uppercase;
}
.marquee-track span::after { content: "•"; margin-left: 18px; color: rgba(10,10,10,0.5); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   ABOUT / INTEREST
   ========================================================================== */
.about {
  padding: 140px 0 100px;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.about-quotes {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.about-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  text-transform: uppercase;
  padding-left: 22px;
  border-left: 3px solid var(--neon);
}
.about-quote span { color: var(--neon); }
.about-quote.alt { border-left-color: var(--accent); }
.about-quote.alt span { color: var(--accent); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: left;
  transition: border-color .3s, transform .3s;
}
.stat-card:hover { border-color: var(--neon); transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  color: var(--neon);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 12px; color: var(--gray); letter-spacing: 0.04em; line-height: 1.4; }

/* ==========================================================================
   EXPERIENCE GRID (DESIRE)
   ========================================================================== */
.experience {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.exp-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s;
}
.exp-card:hover { transform: translateY(-6px); border-color: rgba(163,245,80,0.5); }
.exp-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), var(--neon-soft), transparent 70%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.exp-card:hover::before { opacity: 1; }
.exp-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gray-dim);
  margin-bottom: 26px;
}
.exp-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--neon-soft);
  color: var(--neon);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.exp-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.exp-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   LINE-UP TEASER
   ========================================================================== */
.lineup {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 50% 30%, rgba(255,77,28,0.1), transparent 70%),
    var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.lineup .hero-glow { top: -40%; opacity: .55; }
.lineup .container { position: relative; z-index: 2; }
.lineup .eyebrow { justify-content: center; }
.lineup .section-title { margin-bottom: 24px; }
.lineup-text {
  max-width: 620px;
  margin: 0 auto;
  color: var(--gray);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.7;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { padding: 100px 0; background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 320px);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,5,5,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .6s var(--ease), filter .6s var(--ease);
  filter: grayscale(.15) contrast(1.05);
}
.gallery-item.g1 img { object-position: 55% 22%; }
.gallery-item.g2 img { object-position: 50% 30%; }
.gallery-item.g3 img { object-position: 65% 15%; }
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(0) contrast(1.05); }
.gallery-item.g1 { grid-row: 1 / 3; }
.gallery-item.g2 { grid-row: 1 / 2; }
.gallery-item.g3 { grid-row: 2 / 3; }

.gallery-caption {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  z-index: 2;
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}

/* ==========================================================================
   COUNTDOWN / URGENCY
   ========================================================================== */
.urgency {
  padding: 90px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255,77,28,0.08), transparent 70%),
    var(--bg);
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 36px 0 10px;
}
.countdown .box {
  width: 96px;
  padding: 18px 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.countdown .box b {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--neon);
}
.countdown .box small {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
.urgency-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 36px 0 10px;
  padding: 18px 30px;
  border: 1px dashed rgba(163,245,80,0.4);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--neon);
}
.urgency-soon .blink-dots span {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  margin-left: 3px;
  animation: dot-blink 1s infinite;
}
.urgency-soon .blink-dots span:nth-child(2) { animation-delay: .2s; }
.urgency-soon .blink-dots span:nth-child(3) { animation-delay: .4s; }

/* ==========================================================================
   TICKETS (ACTION)
   ========================================================================== */
.tickets { padding: 40px 0 120px; background: var(--bg); }
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.ticket-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s;
}
.ticket-card:hover { transform: translateY(-8px); }
.ticket-card.featured {
  border-color: var(--neon);
  background: linear-gradient(180deg, rgba(163,245,80,0.08), var(--bg-card) 40%);
  box-shadow: 0 30px 60px -30px var(--neon-glow);
}
.ticket-badge {
  position: absolute;
  top: -14px; left: 28px;
  background: var(--neon);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.ticket-phase {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
  font-weight: 600;
}
.ticket-dates {
  font-size: 12.5px;
  color: var(--gray-dim);
  margin-bottom: 18px;
}
.ticket-price {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 48px);
  margin-bottom: 4px;
}
.ticket-price sup { font-size: 16px; margin-right: 4px; color: var(--gray); }
.ticket-stock { font-size: 12.5px; color: var(--gray-dim); margin-bottom: 26px; }
.ticket-features {
  list-style: none;
  padding: 0; margin: 0 0 30px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.ticket-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--gray);
  line-height: 1.5;
}
.ticket-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--neon); }

.tickets-note {
  text-align: center;
  margin-top: 34px;
  font-size: 13px;
  color: var(--gray-dim);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 100px 0; background: var(--bg-alt); border-top: 1px solid var(--line); }
.faq-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 50px;
  align-items: start;
}
.faq-media {
  position: sticky;
  top: 110px;
  height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.faq-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 8%;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--white);
  transition: transform .3s;
}
.faq-q .plus::before { width: 10px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 10px; }
.faq-item.open .faq-q .plus { transform: rotate(135deg); border-color: var(--neon); }
.faq-item.open .faq-q { color: var(--neon); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a p {
  margin: 0 0 22px;
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 640px;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.final-cta .hero-glow { top: 20%; opacity: .6; }
.final-cta h2 {
  font-size: clamp(38px, 7vw, 90px);
  margin-bottom: 26px;
  position: relative; z-index: 2;
}
.final-cta p { color: var(--gray); margin-bottom: 40px; position: relative; z-index: 2; }
.final-cta .hero-ctas { position: relative; z-index: 2; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 70px 0 30px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p { color: var(--gray); font-size: 13.5px; line-height: 1.7; margin: 18px 0 22px; max-width: 300px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: color .25s, border-color .25s, transform .25s;
}
.social-row a:hover { color: var(--neon); border-color: var(--neon); transform: translateY(-3px); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span { font-size: 14px; color: var(--gray); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 12px;
  color: var(--gray-dim);
}

/* ==========================================================================
   LEAD MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 32px;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .35s var(--ease);
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  color: var(--gray);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--white); border-color: var(--neon); }
.modal h3 { font-size: 26px; margin-bottom: 10px; }
.modal p.modal-lead { color: var(--gray); font-size: 13.5px; margin: 0 0 26px; line-height: 1.6; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 8px;
}
.field input, .field select {
  width: 100%;
  padding: 14px 16px;
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .25s;
}
.field input:focus, .field select:focus { border-color: var(--neon); }

.form-success { display: none; text-align: center; padding: 10px 0 6px; }
.form-success.active { display: block; }
.form-success .check {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--neon-soft);
  color: var(--neon);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success h4 { font-size: 20px; margin-bottom: 10px; }
.form-success p { color: var(--gray); font-size: 13.5px; line-height: 1.6; margin: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .ticket-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .gallery-grid { grid-template-rows: repeat(2, 220px); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-media { display: none; }
}

.mobile-menu {
  display: none;
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-actions .btn-primary { padding: 12px 18px; font-size: 12px; }
  .logo-img { height: 26px; }

  .mobile-menu {
    position: fixed; inset: 0; top: 0;
    background: rgba(5,5,5,0.98);
    z-index: 90;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 30px;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 32px;
    text-transform: uppercase;
    color: var(--white);
  }

  .about { padding: 100px 0 70px; }
  .stat-row { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .countdown .box { width: 74px; padding: 14px 0; }
  .countdown .box b { font-size: 28px; }
  .marquee-wrap { transform: rotate(-2.4deg); margin-top: -22px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-item.g1, .gallery-item.g2, .gallery-item.g3 { grid-row: auto; height: 320px; }
}

@media (max-width: 480px) {
  .nav-actions .btn-primary { display: none; }
}

@media (max-width: 420px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
}
