:root {
  --bg: #07070c;
  --bg-soft: #0e1020;
  --panel: #131528;
  --panel-soft: rgba(15, 18, 34, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #c2c7d6;
  --muted-strong: #8b91a7;
  --accent: #d946ef;
  --accent-dark: #8f1cb3;
  --accent-soft: rgba(217, 70, 239, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --max-width: min(1240px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  overflow-x: clip;
  background:
    radial-gradient(circle at top right, rgba(217, 70, 239, 0.16), transparent 24%),
    linear-gradient(180deg, #09090f 0%, #06060b 100%);
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  transition: background 180ms ease, backdrop-filter 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 6, 11, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner,
.section,
.site-footer {
  width: var(--max-width);
  margin-inline: auto;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 5.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-copy span,
.site-nav a,
.header-cta,
.menu-toggle,
.section-kicker,
.event-label,
.ticket-type,
.coming-soon,
.scroll-indicator {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  max-width: 100%;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta,
.button-solid {
  color: var(--text);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 14px 32px rgba(143, 28, 179, 0.28);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: clip;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(5, 6, 11, 0.84) 0%, rgba(5, 6, 11, 0.52) 26%, rgba(5, 6, 11, 0.36) 48%, rgba(5, 6, 11, 0.88) 100%),
    radial-gradient(circle at center, rgba(217, 70, 239, 0.1), transparent 38%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.22));
}

@media (min-width: 721px) {
        .hero-video {
        filter: blur(3px) brightness(0.72);
        transform: scale(1.03);
      }
    }

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--max-width);
  margin: 0 auto;
  padding: 9rem 0 5rem;
}

.section-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
}

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

h1,
h2,
h3,
h4,
.feature-box span {
  text-wrap: balance;
}

h1,
h2,
h3,
h4 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1,
h2 {
  max-width: 11ch;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.8rem, 9vw, 7.2rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h4 {
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
}

p,
li {
  line-height: 1.75;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.hero-meta {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  color: #ffffff;
}

.inline-chunk {
  white-space: nowrap;
}

.hero-next {
  max-width: 32rem;
  margin-top: 1.2rem;
}

.hero-next strong {
  color: #ffffff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 7rem 0;
}

.section-intro {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin-bottom: 2.5rem;
}

.feature-grid,
.event-grid,
.program-panels,
.ticket-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-box {
  position: relative;
  min-height: 24rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0f1c;
}

.feature-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.72) 100%);
}

.feature-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.feature-box span {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.feature-box:hover img {
  transform: scale(1.05);
}

.lineup-section {
  width: min(1320px, calc(100vw - 1rem));
  padding-inline: clamp(1rem, 2vw, 2rem);
  border-radius: 30px;
  overflow: clip;
  background: linear-gradient(180deg, rgba(9, 10, 18, 0.96), rgba(6, 7, 12, 1));
}

.event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card,
.program-panel,
.ticket-card,
.contact-card {
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(22, 25, 42, 0.9), rgba(10, 11, 18, 0.98));
  box-shadow: var(--shadow);
}

.event-card.is-current,
.ticket-card.featured {
  border-color: rgba(217, 70, 239, 0.45);
  box-shadow: 0 18px 60px rgba(143, 28, 179, 0.22);
}

.event-card.is-past {
  opacity: 0.72;
}

.event-label,
.ticket-type,
.coming-soon {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
}

.event-country,
.ticket-note {
  margin-top: 0.55rem;
  color: var(--muted-strong);
}

.event-card ul,
.ticket-card ul {
  padding-left: 1rem;
  margin-top: 1rem;
}

.event-card a,
.program-panel a {
  display: inline-block;
  margin-top: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.statement-band {
  position: relative;
  min-height: 42rem;
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(3, 4, 9, 0.08), rgba(3, 4, 9, 0.78)),
    url("photos/648345991_17899931805401037_3972095891131072816_n.jpeg") center center / cover no-repeat;
}

.statement-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 11, 0.78), rgba(5, 6, 11, 0.2)),
    linear-gradient(180deg, rgba(217, 70, 239, 0.08), transparent);
}

.statement-content {
  position: relative;
  z-index: 1;
  width: var(--max-width);
  margin-inline: auto;
  max-width: min(1240px, calc(100vw - 2rem));
}

.statement-content p:last-child {
  max-width: 38rem;
  margin-top: 1rem;
}

.program-section {
  display: block;
}

.program-copy {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.program-panels {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 1.5rem;
}

.program-panel h3 {
  margin-bottom: 0.9rem;
}

.program-panel p {
  margin-top: 0.35rem;
}

.program-panel {
  min-height: 100%;
}

.tickets-section {
    padding-top: 3.5rem;
}

.ticket-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ticket-price {
  margin-top: 0.8rem;
  font-size: 2.8rem;
  line-height: 1;
  color: #ffffff;
  font-weight: 800;
}

.ticket-card ul {
  margin-top: 1rem;
}

.ticket-action {
  margin-top: 2rem;
  text-align: center;
}

.ticket-notice {
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticket-notice-muted {
  margin-bottom: 1rem;
  color: var(--muted-strong);
  text-transform: none;
  letter-spacing: 0;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  margin: 0;
  min-height: 36rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #090a10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section {
  padding-top: 2rem;
}

.contact-card {
  width: 100%;
  max-width: none;
  padding: 2.5rem;
}

.contact-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.contact-links a {
  font-size: 1.05rem;
  font-weight: 700;
}

.site-footer {
  padding: 0 0 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer p {
  color: var(--muted-strong);
}

.site-footer .flex {
  display: inline-flex;
}

.site-footer .items-center {
  align-items: center;
}

.site-footer .group {
  transition: opacity 300ms ease;
}

.site-footer .transition-all,
.site-footer .duration-300 {
  transition: opacity 300ms ease;
}

.site-footer .opacity-80 {
  opacity: 0.8;
}

.site-footer .hover\:opacity-100:hover {
  opacity: 1;
}

.site-footer .mb-6 {
  margin-bottom: 1.5rem;
}

.site-footer .text-\[11px\] {
  font-size: 11px;
}

.site-footer .uppercase {
  text-transform: uppercase;
}

.site-footer .tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.site-footer .font-semibold {
  font-weight: 600;
}

.site-footer .text-white {
  color: #ffffff;
}

.site-footer .w-5 {
  width: 1.25rem;
}

.site-footer .h-5 {
  height: 1.25rem;
}

.site-footer .ml-3 {
  margin-left: 0.75rem;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 550ms ease, transform 550ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .feature-grid,
  .event-grid,
  .program-panels,
  .ticket-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .header-inner {
    grid-template-columns: auto auto;
    gap: 0.75rem;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(7, 7, 12, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open a {
    padding: 0.8rem 0;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .brand-copy strong {
    font-size: 0.84rem;
    letter-spacing: 0.12em;
  }

  .brand-copy span {
    font-size: 0.66rem;
  }
}

@media (max-width: 720px) {
  .tickets-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
    border-radius: 24px 24px 0 0;
    padding-top: 3rem;
    overflow: clip;
  }

  .tickets-section > * {
    width: min(100%, calc(100vw - 1.5rem));
    margin-left: auto;
    margin-right: auto;
  }

  .feature-grid,
  .event-grid,
  .program-panels,
  .ticket-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 5rem 0;
  }

  .event-card,
  .program-panel,
  .ticket-card,
  .contact-card {
    padding: 1.5rem;
  }

  .lineup-section {
    width: calc(100vw - 0.5rem);
    padding-inline: 0.75rem;
    border-radius: 22px;
  }

  .hero-content {
    padding-top: 7.5rem;
    padding-bottom: 4rem;
  }

  .hero-meta {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .feature-box {
    min-height: 19rem;
    height: 19rem;
  }

  .feature-box span {
    font-size: 0.98rem;
    max-width: 12ch;
  }

  .ticket-price {
    font-size: 2.3rem;
  }

  .gallery-item {
    min-height: 28rem;
  }

  .contact-links a {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
