:root {
  --background: #050406;
  --background-soft: #09070b;
  --background-card: rgba(10, 8, 12, 0.92);
  --background-card-hover: rgba(15, 10, 19, 0.98);

  --purple: #a92cff;
  --purple-bright: #bd47ff;
  --purple-dark: #5e0a96;
  --purple-deep: #2b073f;
  --purple-glow: rgba(174, 47, 255, 0.34);

  --white: #f2edf4;
  --white-muted: #c7becb;
  --grey: #88808d;
  --grey-dark: #4a434e;

  --border: rgba(255, 255, 255, 0.13);
  --border-strong: rgba(185, 64, 255, 0.5);

  --header-height: 74px;
  --container: 1440px;

  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Teko", Impact, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-purple:
    0 0 12px rgba(174, 47, 255, 0.2),
    0 0 38px rgba(106, 13, 160, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--background);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 5%, rgba(77, 15, 110, 0.12), transparent 30%),
    linear-gradient(180deg, #050406 0%, #070509 45%, #030304 100%);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open,
body.loading {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

svg {
  width: 1em;
  height: 1em;
  stroke-width: 1.8;
}

::selection {
  color: #ffffff;
  background: var(--purple);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.noise-layer {
  position: fixed;
  z-index: 500;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.section {
  position: relative;
  padding: 34px 0;
  border-top: 1px solid rgba(151, 47, 208, 0.2);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.7;
  background:
    linear-gradient(90deg, transparent, rgba(133, 25, 188, 0.025), transparent),
    radial-gradient(circle at center top, rgba(110, 23, 154, 0.06), transparent 48%);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 850ms var(--ease),
    transform 850ms var(--ease);
}

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

/* Loader */

.page-loader {
  position: fixed;
  z-index: 99999;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
  opacity: 1;
  overflow: hidden;
  background: #000;
  transition:
    opacity 500ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 500ms ease;
}

.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle, black 12%, transparent 72%);
}

.page-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
}

.loader-inner {
  position: relative;
  width: min(360px, 70vw);
  text-align: center;
  animation: loaderIntro 600ms var(--ease) both;
}

.loader-inner::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: min(260px, 64vw);
  height: min(260px, 64vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 44, 255, 0.24) 0%, rgba(94, 10, 150, 0.14) 34%, rgba(0, 0, 0, 0) 72%);
  transform: translateX(-50%);
  filter: blur(22px);
  pointer-events: none;
}

.loader-logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter:
    drop-shadow(0 0 10px rgba(189, 71, 255, 0.56))
    drop-shadow(0 0 24px rgba(169, 44, 255, 0.34))
    drop-shadow(0 0 52px rgba(94, 10, 150, 0.22));
  animation:
    loaderPulse 1.8s ease-in-out infinite,
    loaderFlicker 3.4s steps(1, end) infinite;
}

.loader-logo img {
  width: min(360px, 70vw);
  height: auto;
  object-fit: contain;
  opacity: 0;
  filter:
    saturate(1.08)
    brightness(0.82)
    contrast(1.04)
    drop-shadow(0 0 10px rgba(189, 71, 255, 0.54))
    drop-shadow(0 0 24px rgba(169, 44, 255, 0.34))
    drop-shadow(0 0 52px rgba(94, 10, 150, 0.22));
  transform: scale(0.88) translateY(8px);
  animation: loaderLogoIn 600ms var(--ease) forwards;
}

.logo-container img {
  display: none;
}

.logo-container.has-logo img {
  display: block;
}

.logo-container.has-logo .logo-fallback,
.logo-container.has-logo .emblem-fallback {
  display: none;
}

.logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: 0.015em;
  text-shadow:
    2px 2px 0 #370053,
    0 0 25px rgba(174, 47, 255, 0.65);
}

.loader-symbol {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 18px 0 16px;
}

.loader-symbol span {
  width: 6px;
  height: 22px;
  background: linear-gradient(180deg, var(--purple-bright), var(--purple-dark));
  transform: skewX(-22deg);
  box-shadow: 0 0 12px rgba(189, 71, 255, 0.34);
  animation: loaderBars 1s ease-in-out infinite;
}

.loader-symbol span:nth-child(2) {
  animation-delay: 100ms;
}

.loader-symbol span:nth-child(3) {
  animation-delay: 200ms;
}

.loader-progress {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.loader-progress span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--purple-bright), transparent);
  transform: translateX(-100%);
  animation: loaderProgress 1.4s var(--ease) infinite;
}

.loader-inner > p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--grey);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.22em;
}

@keyframes loaderIntro {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderLogoIn {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(8px);
    filter:
      saturate(1.02)
      brightness(0.76)
      contrast(1.02)
      drop-shadow(0 0 8px rgba(169, 44, 255, 0.28))
      drop-shadow(0 0 16px rgba(94, 10, 150, 0.16));
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter:
      saturate(1.1)
      brightness(0.98)
      contrast(1.05)
      drop-shadow(0 0 10px rgba(189, 71, 255, 0.56))
      drop-shadow(0 0 24px rgba(169, 44, 255, 0.34))
      drop-shadow(0 0 52px rgba(94, 10, 150, 0.22));
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1) translateY(0);
    filter:
      drop-shadow(0 0 10px rgba(189, 71, 255, 0.44))
      drop-shadow(0 0 22px rgba(169, 44, 255, 0.28))
      drop-shadow(0 0 46px rgba(94, 10, 150, 0.18));
  }

  50% {
    transform: scale(1.025) translateY(-2px);
    filter:
      drop-shadow(0 0 12px rgba(189, 71, 255, 0.62))
      drop-shadow(0 0 28px rgba(169, 44, 255, 0.42))
      drop-shadow(0 0 60px rgba(94, 10, 150, 0.26));
  }
}

@keyframes loaderFlicker {
  0%,
  92%,
  100% {
    opacity: 1;
  }

  93% {
    opacity: 0.96;
  }

  95% {
    opacity: 0.99;
  }

  97% {
    opacity: 0.97;
  }
}

@keyframes loaderBars {
  0%,
  100% {
    opacity: 0.35;
    transform: skewX(-22deg) scaleY(0.65);
  }

  50% {
    opacity: 1;
    transform: skewX(-22deg) scaleY(1);
  }
}

@keyframes loaderProgress {
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 1024px) {
  .loader-inner,
  .loader-logo img {
    width: min(300px, 72vw);
  }
}

@media (max-width: 640px) {
  .loader-inner,
  .loader-logo img {
    width: min(260px, 78vw);
  }

  .loader-inner::before {
    width: min(220px, 62vw);
    height: min(220px, 62vw);
  }
}

/* Header */

.site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(161, 44, 217, 0.22);
  background: rgba(2, 2, 3, 0.86);
  backdrop-filter: blur(18px);
  transition:
    background 300ms ease,
    box-shadow 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 2, 3, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.header-shell {
  display: grid;
  width: min(calc(100% - 48px), 1540px);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 210px 1fr 210px;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  transition:
    transform 250ms var(--ease),
    filter 250ms ease;
}

.brand:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

.brand img {
  width: 148px;
  max-height: 55px;
  object-fit: contain;
}

.brand .logo-fallback {
  flex-direction: row;
  align-items: center;
  gap: 7px;
  font-size: 29px;
  line-height: 1;
}

.primary-navigation {
  display: flex;
  height: 100%;
  justify-content: center;
  gap: 38px;
}

.primary-navigation.is-open {
  z-index: 980;
  background:
    radial-gradient(circle at top right, rgba(101, 13, 143, 0.18), transparent 34%),
    #050408;
}

.nav-link {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  color: #d6cfd9;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--purple-bright);
  box-shadow: 0 0 13px var(--purple-bright);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--purple-bright);
  text-shadow: 0 0 17px rgba(184, 57, 255, 0.44);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-socials {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.header-socials a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #e7e0e9;
  transition:
    color 220ms ease,
    transform 220ms var(--ease),
    filter 220ms ease;
}

.header-socials a:hover {
  color: var(--purple-bright);
  filter: drop-shadow(0 0 8px var(--purple));
  transform: translateY(-3px) scale(1.08);
}

.header-socials svg {
  width: 19px;
  height: 19px;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  background: rgba(10, 8, 12, 0.9);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition:
    transform 280ms var(--ease),
    opacity 200ms ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero-section {
  position: relative;
  display: flex;
  min-height: 790px;
  padding-top: var(--header-height);
  overflow: hidden;
  align-items: center;
  isolation: isolate;
}

.hero-section::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, #050406);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(rgba(15, 3, 21, 0.2), rgba(0, 0, 0, 0.74)),
    url("assets/hero-bg.jpg") center 40% / cover no-repeat,
    radial-gradient(circle at center, #311044 0%, #0a0710 42%, #030304 100%);
  transform: scale(1.025);
  transition: transform 250ms ease-out;
}

.hero-media video {
  width: 100%;
  height: 100%;
  opacity: 0.72;
  object-fit: cover;
  filter:
    saturate(0.82)
    contrast(1.15)
    brightness(0.76)
    hue-rotate(4deg);
}

.hero-overlay {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.62)),
    linear-gradient(180deg, rgba(1, 1, 2, 0.18), rgba(2, 1, 3, 0.25) 42%, rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 50% 40%, transparent 0%, rgba(21, 5, 27, 0.18) 55%, rgba(0, 0, 0, 0.52) 100%);
}

.hero-grid-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.14;
  background:
    linear-gradient(rgba(190, 66, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 66, 255, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent 5%, black 42%, transparent 90%);
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  padding: 102px 0 86px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 5px;
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
}

.hero-title {
  margin: 0;
  color: #e7e4e7;
  font-family: var(--font-display);
  font-size: clamp(78px, 10vw, 158px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 #6b666c,
    0 4px 0 #28252a,
    0 10px 35px rgba(0, 0, 0, 0.85);
  filter: contrast(1.06);
}

.hero-title::after {
  content: "";
  position: absolute;
  width: 85%;
  height: 8px;
  right: 7.5%;
  bottom: 13%;
  opacity: 0.2;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 5px,
    rgba(0, 0, 0, 0.7) 5px 9px
  );
  mix-blend-mode: multiply;
}

.hero-title-wrap {
  position: relative;
}

.hero-subtitle {
  display: flex;
  margin: 22px 0 0;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #d4ccd6;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 37px);
  font-weight: 500;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-subtitle b {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 16px var(--purple-bright);
}

.hero-meta {
  display: flex;
  margin-top: 36px;
  align-items: stretch;
  justify-content: center;
}

.hero-meta-item {
  display: flex;
  min-width: 226px;
  min-height: 54px;
  padding: 0 30px;
  align-items: center;
  gap: 16px;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-meta-item:last-child {
  border-right: 0;
}

.hero-meta-item > svg {
  width: 32px;
  height: 32px;
  color: #bdb4c1;
  stroke-width: 1.4;
}

.hero-meta-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero-meta-item small {
  margin-bottom: 6px;
  color: #aaa1ad;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta-item strong {
  color: #eee8f0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.countdown-panel {
  width: min(780px, 100%);
  margin-top: 38px;
  padding: 20px 56px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(8, 6, 10, 0.93), rgba(5, 4, 7, 0.97));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
}

.countdown-eyebrow {
  margin: 0 0 11px;
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
}

.countdown-divider {
  width: 1px;
  height: 45px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(181, 49, 249, 0.75),
    transparent
  );
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-unit strong {
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: clamp(58px, 5vw, 77px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.035em;
  text-shadow:
    0 0 13px rgba(184, 54, 255, 0.5),
    3px 0 0 rgba(53, 3, 82, 0.7);
  font-variant-numeric: tabular-nums;
}

.countdown-unit span {
  margin-top: 8px;
  color: #c4bcc7;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown-actions {
  display: grid;
  margin-top: 22px;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 53px;
  padding: 12px 25px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 250ms var(--ease),
    box-shadow 250ms ease,
    border-color 250ms ease,
    background 250ms ease;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -120%;
  width: 65%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 600ms var(--ease);
}

.button:hover::before {
  left: 150%;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-primary {
  border-color: #b43cff;
  background:
    linear-gradient(180deg, #a823ed 0%, #6d08ad 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 24px rgba(151, 28, 224, 0.24);
}

.button-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 33px rgba(178, 48, 247, 0.46);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(7, 6, 8, 0.82);
}

.button-secondary:hover {
  border-color: var(--purple-bright);
  background: rgba(21, 9, 27, 0.94);
  box-shadow: 0 0 26px rgba(171, 46, 235, 0.19);
}

.hero-control {
  display: inline-flex;
  min-height: 48px;
  padding: 10px 17px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  color: #e2dce5;
  background: rgba(5, 4, 7, 0.66);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms var(--ease);
}

.hero-control:hover {
  color: #ffffff;
  border-color: var(--purple-bright);
  background: rgba(32, 8, 44, 0.8);
  transform: translateY(-2px);
}

.hero-control svg {
  color: var(--purple-bright);
}

.hero-teaser-control {
  position: absolute;
  z-index: 10;
  top: calc(var(--header-height) + 28px);
  left: 34px;
}

.hero-controls-right {
  position: absolute;
  z-index: 10;
  top: calc(var(--header-height) + 28px);
  right: 34px;
  display: flex;
  gap: 12px;
}

.hero-control-square {
  width: 48px;
  padding-inline: 0;
}

.hero-scroll-indicator {
  position: absolute;
  z-index: 10;
  bottom: 15px;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  transform: translateX(-50%);
  animation: scrollIndicator 1.7s ease-in-out infinite;
}

.hero-section.is-fullscreen .hero-content,
.hero-section.is-fullscreen .hero-teaser-control,
.hero-section.is-fullscreen .hero-scroll-indicator {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-section.is-fullscreen .hero-media {
  transform: scale(1.01) !important;
}

.hero-scroll-indicator svg {
  width: 29px;
  height: 29px;
}

@keyframes scrollIndicator {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -5px);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 5px);
  }
}

/* Section headings */

.section-label {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 14px;
}

.section-label h2,
.large-section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.section-label h2 {
  color: #dbd4dd;
  font-size: 28px;
}

.section-slashes,
.large-section-heading b {
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-shadow: 0 0 12px rgba(179, 51, 246, 0.5);
}

.large-section-heading {
  display: grid;
  margin-bottom: 25px;
  grid-template-columns: minmax(50px, 1fr) auto auto auto minmax(50px, 1fr);
  align-items: center;
  gap: 18px;
  text-align: center;
}

.large-section-heading > span {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(180, 46, 247, 0.64)
  );
}

.large-section-heading > span:last-child {
  background: linear-gradient(
    90deg,
    rgba(180, 46, 247, 0.64),
    transparent
  );
}

.large-section-heading h2 {
  color: #e9e4eb;
  font-size: clamp(39px, 4vw, 54px);
}

/* Information */

.information-section {
  padding-top: 28px;
}

.information-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.information-card {
  position: relative;
  min-height: 194px;
  padding: 20px 15px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(14, 11, 16, 0.95), rgba(5, 4, 7, 0.97));
  text-align: center;
  transition:
    transform 300ms var(--ease),
    border-color 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.information-card::before {
  content: "";
  position: absolute;
  inset: -100% 20%;
  opacity: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(188, 58, 255, 0.09),
    transparent
  );
  transform: rotate(25deg);
  transition: opacity 300ms ease;
}

.information-card:hover {
  z-index: 2;
  border-color: rgba(184, 55, 255, 0.6);
  background: var(--background-card-hover);
  box-shadow: var(--shadow-purple);
  transform: translateY(-8px);
}

.information-card:hover::before {
  opacity: 1;
}

.card-icon {
  position: relative;
  display: grid;
  width: 53px;
  height: 53px;
  margin: 0 auto 11px;
  place-items: center;
  color: var(--purple-bright);
  transition:
    transform 300ms var(--ease),
    filter 300ms ease;
}

.information-card:hover .card-icon {
  filter: drop-shadow(0 0 8px var(--purple));
  transform: scale(1.11);
}

.card-icon svg {
  width: 43px;
  height: 43px;
  stroke-width: 1.4;
}

.information-card h3 {
  position: relative;
  margin: 0 0 8px;
  color: #e6dee8;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.information-card p {
  position: relative;
  margin: 0;
  color: #bfb6c3;
  font-size: 13px;
  line-height: 1.55;
}

/* Line-up */

.lineup-section {
  padding-top: 22px;
}

.lineup-stage {
  position: relative;
  display: grid;
  min-height: 286px;
  padding: 28px 34px;
  overflow: hidden;
  grid-template-columns: 145px 145px minmax(340px, 1fr) 145px 145px;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(172, 45, 224, 0.36);
  border-radius: 7px;
  background:
    radial-gradient(circle at center, rgba(89, 11, 125, 0.13), transparent 43%),
    linear-gradient(180deg, rgba(8, 6, 10, 0.96), rgba(4, 3, 5, 0.98));
}

.lineup-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background:
    linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.02), transparent 75%),
    radial-gradient(circle at 10% 50%, rgba(137, 28, 196, 0.11), transparent 27%),
    radial-gradient(circle at 90% 50%, rgba(137, 28, 196, 0.11), transparent 27%);
  pointer-events: none;
}

.lineup-card {
  position: relative;
  height: 207px;
  overflow: hidden;
  border: 1px solid rgba(174, 52, 226, 0.46);
  border-radius: 7px;
  background: #0a080c;
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.4),
    inset 0 0 30px rgba(100, 17, 144, 0.08);
  transition:
    transform 350ms var(--ease),
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.lineup-card:hover {
  z-index: 5;
  border-color: var(--purple-bright);
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.55),
    0 0 27px rgba(171, 44, 235, 0.23);
  transform: translateY(-10px) rotate(0deg) scale(1.03);
}

.lineup-card-left {
  transform: rotate(-5deg);
}

.lineup-card-right {
  transform: rotate(5deg);
}

.lineup-card-back {
  opacity: 0.78;
  transform: scale(0.94) rotate(-7deg);
}

.lineup-card-right.lineup-card-back {
  transform: scale(0.94) rotate(7deg);
}

.lineup-card-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(52, 8, 74, 0.2), rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 50% 35%, rgba(126, 34, 174, 0.55), transparent 25%),
    linear-gradient(145deg, #18091f, #08060a);
  background-position: center;
  background-size: cover;
  filter: grayscale(0.3) contrast(1.1);
  transition: transform 500ms var(--ease);
}

.lineup-card:hover .lineup-card-image {
  transform: scale(1.08);
}

.lineup-image-1 {
  background-image:
    linear-gradient(180deg, rgba(52, 8, 74, 0.18), rgba(0, 0, 0, 0.86)),
    url("assets/lineup-card-1.jpg"),
    radial-gradient(circle at 50% 35%, rgba(126, 34, 174, 0.55), transparent 25%);
}

.lineup-image-2 {
  background-image:
    linear-gradient(180deg, rgba(52, 8, 74, 0.18), rgba(0, 0, 0, 0.86)),
    url("assets/lineup-card-2.jpg"),
    radial-gradient(circle at 50% 35%, rgba(126, 34, 174, 0.55), transparent 25%);
}

.lineup-image-3 {
  background-image:
    linear-gradient(180deg, rgba(52, 8, 74, 0.18), rgba(0, 0, 0, 0.86)),
    url("assets/lineup-card-3.jpg"),
    radial-gradient(circle at 50% 35%, rgba(126, 34, 174, 0.55), transparent 25%);
}

.lineup-image-4 {
  background-image:
    linear-gradient(180deg, rgba(52, 8, 74, 0.18), rgba(0, 0, 0, 0.86)),
    url("assets/lineup-card-4.jpg"),
    radial-gradient(circle at 50% 35%, rgba(126, 34, 174, 0.55), transparent 25%);
}

.lineup-card strong {
  position: absolute;
  top: 45%;
  left: 50%;
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 70px;
  line-height: 1;
  text-shadow:
    0 0 12px rgba(187, 55, 255, 0.8),
    0 0 32px rgba(107, 17, 157, 0.6);
  transform: translate(-50%, -50%);
}

.lineup-announcement {
  position: relative;
  z-index: 2;
  text-align: center;
}

.lineup-announcement > p,
.lineup-announcement h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.86;
  text-transform: uppercase;
}

.lineup-announcement > p {
  color: #e8e3e9;
  font-size: clamp(55px, 5vw, 85px);
  text-shadow:
    0 3px 0 #4f4a51,
    0 8px 25px rgba(0, 0, 0, 0.6);
}

.lineup-announcement h3 {
  color: var(--purple-bright);
  font-size: clamp(58px, 5.6vw, 91px);
  text-shadow:
    0 3px 0 #52106c,
    0 0 25px rgba(172, 41, 241, 0.32);
}

.lineup-announcement > span {
  display: block;
  margin-top: 12px;
  color: #a89eac;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.announcement-note {
  width: fit-content;
  margin: 17px auto 0;
  padding: 7px 19px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2px;
  color: #d1cad4;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

/* Tickets */

.tickets-section {
  padding: 26px 0 34px;
}

.tickets-layout {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: 38px;
}

.tickets-intro {
  padding: 4px 0 0;
}

.tickets-title {
  margin: 0;
  color: #e8e4e8;
  font-family: var(--font-display);
  font-size: clamp(58px, 5vw, 76px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 #454147,
    0 10px 22px rgba(0, 0, 0, 0.55);
}

.tickets-intro h2 {
  margin: 6px 0 24px;
  color: #bcb5bf;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tickets-intro h2 strong {
  color: var(--purple-bright);
}

.tickets-benefits {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.tickets-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #c6bec9;
  font-size: 14px;
}

.tickets-benefits svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  color: var(--purple-bright);
}

.tickets-benefits small {
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.weeztix-wordmark {
  display: flex;
  margin-top: 25px;
  align-items: center;
  gap: 12px;
}

.weeztix-symbol {
  position: relative;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, #b845ff, #6800aa);
}

.weeztix-symbol::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 19px;
  right: -4px;
  bottom: -2px;
  border-radius: 50% 0 0;
  background: #0c0910;
  transform: rotate(-18deg);
}

.weeztix-wordmark div {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.weeztix-wordmark strong {
  color: #f1edf2;
  font-size: 28px;
  font-weight: 500;
}

.weeztix-wordmark small {
  color: #807884;
  font-size: 11px;
}

.ticket-widget-shell {
  overflow: hidden;
  border: 1px solid rgba(174, 44, 239, 0.72);
  border-radius: 12px;
  background: #08070b;
  box-shadow:
    0 0 0 1px rgba(89, 9, 126, 0.22),
    0 23px 55px rgba(0, 0, 0, 0.42);
  transition:
    border-color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms var(--ease);
}

.ticket-widget-shell:hover {
  border-color: var(--purple-bright);
  box-shadow:
    0 0 0 1px rgba(163, 41, 223, 0.3),
    0 0 38px rgba(126, 20, 180, 0.16),
    0 23px 55px rgba(0, 0, 0, 0.52);
  transform: translateY(-3px);
}

.ticket-widget-header {
  display: flex;
  min-height: 52px;
  padding: 13px 21px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-widget-header > span {
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ticket-widget-header small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d1c9d3;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticket-widget-header svg {
  width: 15px;
  height: 15px;
}

.ticket-integration {
  min-height: 356px;
  padding: 14px;
}

/* Weeztix content mag responsive worden, maar de interne huisstijl
   van externe iframes mag niet worden overschreven. */

#ticket-integration,
#ticket-integration > *,
#ticket-integration iframe {
  max-width: 100%;
}

#ticket-integration iframe {
  width: 100%;
  border: 0;
}

.ticket-integration-placeholder {
  display: grid;
  min-height: 326px;
  padding: 40px;
  place-items: center;
  align-content: center;
  border: 1px dashed rgba(180, 55, 240, 0.4);
  border-radius: 7px;
  background:
    radial-gradient(circle at center, rgba(114, 21, 157, 0.1), transparent 55%),
    rgba(8, 6, 10, 0.7);
  text-align: center;
}

.placeholder-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 17px;
  place-items: center;
  border: 1px solid rgba(180, 55, 240, 0.55);
  border-radius: 50%;
  color: var(--purple-bright);
  background: rgba(105, 13, 148, 0.12);
  box-shadow: 0 0 25px rgba(155, 35, 214, 0.15);
}

.placeholder-icon svg {
  width: 27px;
  height: 27px;
}

.ticket-integration-placeholder h3 {
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticket-integration-placeholder p {
  margin: 0;
  color: #b9b0bc;
}

.ticket-integration-placeholder code {
  color: var(--purple-bright);
}

.ticket-integration-placeholder > span {
  margin-top: 9px;
  color: #746d78;
  font-size: 12px;
}

/* Gallery */

.gallery-section {
  padding-block: 35px;
}

.gallery-grid {
  display: grid;
  min-height: 340px;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 15px;
}

.gallery-item {
  position: relative;
  min-height: 255px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: #09070b;
  cursor: pointer;
  transition:
    transform 300ms var(--ease),
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.gallery-item:hover {
  z-index: 2;
  border-color: var(--purple-bright);
  box-shadow: var(--shadow-purple);
  transform: translateY(-6px);
}

.gallery-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(0.8) brightness(0.65);
  transition:
    transform 700ms var(--ease),
    filter 400ms ease;
}

.gallery-image-one {
  background-image:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55)),
    url("assets/hero-bg.jpg"),
    radial-gradient(circle, #471263, #08060a);
}

.gallery-image-two {
  background-image:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65)),
    url("assets/lineup-card-1.jpg"),
    radial-gradient(circle, #471263, #08060a);
}

.gallery-image-three {
  background-image:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65)),
    url("assets/lineup-card-4.jpg"),
    radial-gradient(circle, #471263, #08060a);
}

.gallery-item:hover .gallery-image {
  filter: saturate(1) brightness(0.82);
  transform: scale(1.055);
}

.gallery-item > span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 50%;
  background: rgba(5, 4, 7, 0.7);
  backdrop-filter: blur(8px);
}

.gallery-item .gallery-play {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 68px;
  height: 68px;
  color: #ffffff;
  border-color: rgba(188, 61, 255, 0.7);
  background: rgba(70, 10, 100, 0.55);
  box-shadow: 0 0 35px rgba(177, 47, 239, 0.35);
  transform: translate(-50%, -50%);
}

.gallery-play svg {
  width: 27px;
  height: 27px;
}

/* Footer content */

.footer-content-section {
  position: relative;
  padding: 31px 0 29px;
  border-top: 1px solid rgba(160, 43, 218, 0.22);
  background:
    radial-gradient(circle at 83% 50%, rgba(95, 14, 134, 0.08), transparent 25%),
    #050406;
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.05fr 0.75fr 1fr;
  gap: 58px;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: #e5dee7;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column h2 span {
  margin-left: 7px;
  color: var(--purple-bright);
}

.newsletter-column > p {
  max-width: 320px;
  margin: 0 0 19px;
  color: #a89fab;
  font-size: 13px;
}

.newsletter-form {
  display: grid;
  max-width: 360px;
  grid-template-columns: 1fr 56px;
}

.newsletter-form input {
  min-width: 0;
  height: 53px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-right: 0;
  border-radius: 3px 0 0 3px;
  outline: none;
  color: #f4eef5;
  background: rgba(9, 7, 11, 0.95);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.newsletter-form input:focus {
  border-color: var(--purple-bright);
  box-shadow: inset 0 0 16px rgba(159, 31, 220, 0.1);
}

.newsletter-form button {
  display: grid;
  height: 53px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--purple-bright);
  border-radius: 0 3px 3px 0;
  color: #ffffff;
  background: linear-gradient(145deg, #b22ef3, #6b08a6);
  cursor: pointer;
  transition:
    filter 220ms ease,
    box-shadow 220ms ease;
}

.newsletter-form button:hover {
  filter: brightness(1.16);
  box-shadow: 0 0 23px rgba(177, 48, 241, 0.36);
}

.form-feedback {
  min-height: 18px;
  margin-top: 8px !important;
  color: var(--purple-bright) !important;
  font-size: 12px !important;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 39px;
  padding: 8px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  color: #bbb3bf;
  background: transparent;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: color 200ms ease;
}

.faq-item button:hover,
.faq-item.is-open button {
  color: var(--purple-bright);
}

.faq-item button svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  transition: transform 260ms var(--ease);
}

.faq-item.is-open button svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms var(--ease);
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #877f8a;
  font-size: 12px;
  line-height: 1.55;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 12px;
}

.footer-socials {
  display: grid;
  gap: 11px;
}

.footer-socials a {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  color: #bdb5c0;
  font-size: 13px;
  transition:
    color 220ms ease,
    transform 220ms var(--ease);
}

.footer-socials a:hover {
  color: var(--purple-bright);
  transform: translateX(5px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-emblem-image {
  display: grid;
  width: 150px;
  height: 110px;
  place-items: center;
  color: var(--purple-bright);
  filter:
    drop-shadow(0 0 9px rgba(179, 48, 242, 0.5))
    drop-shadow(0 0 26px rgba(101, 18, 145, 0.3));
}

.footer-emblem-image img {
  width: 145px;
  max-height: 110px;
  object-fit: contain;
}

.emblem-fallback svg {
  width: 100px;
  height: 100px;
  stroke-width: 0.9;
}

.footer-emblem p {
  margin: 8px 0 0;
  color: #aaa0ae;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-emblem strong {
  margin-top: 6px;
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #030304;
}

.footer-bottom {
  display: grid;
  min-height: 57px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #6e6771;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}

.footer-concept-text {
  white-space: nowrap;
}

.footer-concept-link {
  color: var(--purple-bright);
}

.footer-concept-link:hover {
  color: var(--purple-bright);
  text-shadow: 0 0 10px rgba(189, 71, 255, 0.35);
}

.footer-bottom a {
  transition: color 200ms ease;
}

.footer-bottom a:hover {
  color: var(--purple-bright);
}

.footer-center-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--purple-bright);
  filter: drop-shadow(0 0 7px rgba(173, 43, 237, 0.6));
}

.footer-center-mark svg {
  width: 28px;
  height: 28px;
}

/* Modal */

.teaser-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  padding: 30px;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 350ms ease,
    opacity 350ms ease;
}

.teaser-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.teaser-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.teaser-modal-content {
  position: relative;
  width: min(1050px, 100%);
  overflow: hidden;
  border: 1px solid rgba(184, 56, 246, 0.62);
  border-radius: 8px;
  background: #080609;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 50px rgba(126, 20, 180, 0.17);
  transform: translateY(30px) scale(0.98);
  transition: transform 450ms var(--ease);
}

.teaser-modal.is-open .teaser-modal-content {
  transform: translateY(0) scale(1);
}

.teaser-modal-header {
  display: flex;
  min-height: 71px;
  padding: 12px 18px 12px 24px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.teaser-modal-header small {
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.teaser-modal-header h2 {
  margin: 1px 0 0;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.teaser-modal-header button {
  display: grid;
  width: 43px;
  height: 43px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  color: #ffffff;
  background: #0c090e;
  cursor: pointer;
  transition:
    border-color 200ms ease,
    color 200ms ease,
    transform 200ms var(--ease);
}

.teaser-modal-header button:hover {
  color: var(--purple-bright);
  border-color: var(--purple-bright);
  transform: rotate(5deg);
}

.teaser-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    url("assets/hero-bg.jpg") center / cover,
    radial-gradient(circle, #44125d, #060407);
}

.teaser-video-wrap video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: contain;
}

.teaser-video-fallback {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
  align-content: center;
  color: #c1b7c5;
  text-align: center;
}

.teaser-video-fallback svg {
  width: 55px;
  height: 55px;
  margin-bottom: 13px;
  color: var(--purple-bright);
}

.teaser-video-fallback p {
  margin: 0;
}

.teaser-video-fallback strong {
  color: var(--purple-bright);
}

/* Responsive */

@media (max-width: 1250px) {
  .header-shell {
    grid-template-columns: 170px 1fr 170px;
  }

  .primary-navigation {
    gap: 23px;
  }

  .nav-link {
    font-size: 16px;
  }

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

  .lineup-stage {
    grid-template-columns: 125px 125px minmax(300px, 1fr) 125px 125px;
  }

  .lineup-card {
    height: 190px;
  }
}

@media (max-width: 1024px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 970;
    background: rgba(0, 0, 0, 0.9);
  }

  body.menu-open .site-header {
    z-index: 995;
  }

  :root {
    --header-height: 68px;
  }

  .site-container {
    width: min(calc(100% - 40px), var(--container));
  }

  .header-shell {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-socials {
    display: none;
  }

  .primary-navigation {
    position: fixed;
    z-index: 980;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    display: flex;
    width: min(390px, 90vw);
    height: auto;
    padding: 30px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    border-left: 1px solid rgba(177, 46, 241, 0.35);
    background: rgba(0, 0, 0, 0.9);
    box-shadow: -25px 0 60px rgba(0, 0, 0, 0.55);
    transform: translateX(105%);
    transition: transform 420ms var(--ease);
  }

  .primary-navigation.is-open {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    height: auto;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 23px;
  }

  .nav-link::after {
    top: 0;
    right: auto;
    bottom: 0;
    left: -30px;
    width: 2px;
    height: auto;
    transform: scaleY(0);
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    transform: scaleY(1);
  }

  .hero-section {
    min-height: 780px;
  }

  .hero-meta-item {
    min-width: 0;
    padding: 0 20px;
  }

  .lineup-stage {
    min-height: auto;
    padding: 28px 18px 35px;
    grid-template-columns: repeat(4, minmax(125px, 1fr));
  }

  .lineup-announcement {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 20px;
  }

  .lineup-card {
    grid-row: 2;
  }

  .lineup-card-left,
  .lineup-card-right,
  .lineup-card-back,
  .lineup-card-right.lineup-card-back {
    transform: rotate(0);
  }

  .tickets-layout {
    grid-template-columns: 1fr;
  }

  .tickets-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 35px;
  }

  .tickets-intro .tickets-title,
  .tickets-intro h2 {
    grid-column: 1 / -1;
  }

  .weeztix-wordmark {
    margin-top: 0;
    align-self: end;
  }

  .footer-content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
  }

  .site-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-shell {
    width: calc(100% - 24px);
  }

  .brand .logo-fallback {
    font-size: 25px;
  }

  .brand img {
    width: 126px;
    max-height: 48px;
    object-fit: contain;
  }

  .hero-section {
    min-height: 750px;
  }

  .hero-content {
    padding: 105px 0 63px;
  }

  .hero-kicker {
    display: none;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(65px, 20vw, 108px);
    line-height: 0.78;
  }

  .hero-subtitle {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 9px 13px;
    font-size: clamp(20px, 6vw, 27px);
    letter-spacing: 0.14em;
  }

  .hero-subtitle b {
    width: 5px;
    height: 5px;
  }

  .hero-meta {
    display: grid;
    width: 100%;
    margin-top: 28px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-meta-item {
    min-height: 70px;
    padding: 7px 8px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }

  .hero-meta-item > svg {
    width: 22px;
    height: 22px;
  }

  .hero-meta-item small {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .hero-meta-item strong {
    font-size: 15px;
  }

  .countdown-panel {
    margin-top: 24px;
    padding: 18px 10px 17px;
  }

  .countdown-eyebrow {
    margin-bottom: 14px;
    font-size: 14px;
  }

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

  .countdown-divider {
    display: none;
  }

  .countdown-unit strong {
    font-size: clamp(42px, 13vw, 56px);
  }

  .countdown-unit span {
    font-size: 11px;
    letter-spacing: 0.07em;
  }

  .countdown-actions {
    margin-top: 18px;
    gap: 10px;
  }

  .button {
    min-height: 48px;
    padding: 10px 12px;
    gap: 8px;
    font-size: 16px;
  }

  .button svg {
    width: 16px;
    height: 16px;
  }

  .hero-teaser-control {
    top: calc(var(--header-height) + 15px);
    left: 14px;
  }

  .hero-controls-right {
    top: calc(var(--header-height) + 15px);
    right: 14px;
  }

  .hero-control {
    min-height: 40px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .hero-control-square {
    width: 40px;
  }

  #sound-toggle span {
    display: none;
  }

  .hero-scroll-indicator {
    bottom: 5px;
  }

  .section {
    padding-block: 27px;
  }

  .section-label {
    gap: 9px;
  }

  .section-label h2 {
    font-size: 24px;
  }

  .section-slashes {
    font-size: 21px;
  }

  .information-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .information-card {
    min-height: 176px;
    padding: 17px 10px;
  }

  .card-icon {
    width: 46px;
    height: 46px;
  }

  .card-icon svg {
    width: 36px;
    height: 36px;
  }

  .information-card h3 {
    font-size: 17px;
  }

  .information-card p {
    font-size: 11px;
  }

  .large-section-heading {
    gap: 8px;
  }

  .large-section-heading h2 {
    font-size: 37px;
  }

  .large-section-heading b {
    font-size: 19px;
  }

  .lineup-stage {
    display: grid;
    padding: 25px 13px 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
  }

  .lineup-announcement {
    grid-column: 1 / -1;
  }

  .lineup-announcement > p {
    font-size: 51px;
  }

  .lineup-announcement h3 {
    font-size: 54px;
  }

  .lineup-announcement > span {
    font-size: 18px;
  }

  .announcement-note {
    max-width: 100%;
    padding: 6px 10px;
    font-size: 12px;
  }

  .lineup-card {
    height: 205px;
    grid-row: auto;
  }

  .lineup-card-back {
    display: none;
  }

  .tickets-intro {
    display: block;
  }

  .weeztix-wordmark {
    margin-top: 25px;
  }

  .ticket-widget-header {
    padding: 12px 13px;
  }

  .ticket-widget-header > span {
    font-size: 15px;
  }

  .ticket-widget-header small {
    font-size: 11px;
  }

  .ticket-integration {
    min-height: 330px;
    padding: 9px;
  }

  .ticket-integration-placeholder {
    min-height: 310px;
    padding: 25px 15px;
  }

  .gallery-grid {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-item {
    min-height: 190px;
  }

  .gallery-item-large {
    min-height: 250px;
    grid-column: 1 / -1;
  }

  .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-emblem {
    padding-top: 5px;
  }

  .footer-bottom {
    padding: 18px 0;
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .footer-bottom > div {
    justify-content: center;
    gap: 18px;
  }

  .footer-center-mark {
    grid-row: 1;
    margin: 0 auto;
  }

  .teaser-modal {
    padding: 12px;
  }

  .teaser-modal-header {
    min-height: 61px;
    padding: 9px 10px 9px 15px;
  }

  .teaser-modal-header h2 {
    font-size: 25px;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: 69px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-meta-item strong {
    font-size: 13px;
  }

  .countdown-unit strong {
    font-size: 40px;
  }

  .countdown-unit span {
    font-size: 9px;
  }

  .countdown-actions {
    grid-template-columns: 1fr;
  }

  .information-grid {
    grid-template-columns: 1fr;
  }

  .information-card {
    min-height: 155px;
  }

  .lineup-card {
    height: 180px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item-large {
    min-height: 220px;
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-loader {
    transform: none !important;
  }

  .loader-inner,
  .loader-inner::before,
  .loader-logo,
  .loader-logo img {
    opacity: 1 !important;
    transform: none !important;
  }

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

/* Public content extensions for admin-managed data */

.event-dates-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.event-date-chip {
  border: 1px solid var(--border);
  background: rgba(11, 9, 15, 0.8);
  padding: 10px;
}

.event-date-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: #d9b7ff;
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.lineup-announced-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.artist-public-card {
  border: 1px solid var(--border);
  background: rgba(11, 9, 14, 0.92);
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.artist-public-card:hover {
  border-color: rgba(184, 63, 255, 0.5);
  box-shadow: 0 0 16px rgba(184, 63, 255, 0.22);
}

.artist-public-image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.artist-public-meta {
  padding: 10px;
}

.artist-public-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 0.85;
  letter-spacing: 0.03em;
}

.artist-public-meta p {
  margin: 5px 0 0;
  color: var(--white-muted);
}

#ticket-widget-frame {
  width: 100%;
  min-height: 300px;
  border: 1px solid var(--border);
  background: rgba(11, 10, 15, 0.92);
}

.ticket-widget-skeleton {
  min-height: 340px;
  border: 1px solid var(--border);
  background:
    linear-gradient(120deg, rgba(184, 63, 255, 0.08), rgba(255, 255, 255, 0.02), rgba(184, 63, 255, 0.08)),
    #0b0a0f;
  background-size: 240% 100%, auto;
  animation: ticketSkeletonMove 1600ms linear infinite;
}

@keyframes ticketSkeletonMove {
  from {
    background-position: 100% 0, 0 0;
  }
  to {
    background-position: -100% 0, 0 0;
  }
}

.admin-login-form.shake {
  animation: adminShake 280ms linear;
}

@keyframes adminShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.admin-primary-button.is-loading {
  opacity: 0.72;
  cursor: wait;
}

@media (max-width: 1160px) {
  .lineup-announced-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .lineup-announced-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* Contact page */

.contact-page .site-header {
  background: rgba(2, 2, 3, 0.96);
}

.contact-main {
  padding-top: var(--header-height);
}

.contact-section {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 560px);
  gap: 38px;
}

.contact-copy h1 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 90px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-copy > p {
  max-width: 560px;
  margin: 0;
  color: var(--white-muted);
}

.contact-direct {
  margin-top: 26px;
}

.contact-direct p {
  margin: 0;
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct a {
  display: inline-block;
  margin-top: 6px;
  color: #e9e2eb;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
}

.contact-form-shell {
  padding: 22px;
  border: 1px solid rgba(174, 44, 239, 0.72);
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(11, 8, 14, 0.98), rgba(4, 3, 5, 0.98));
  box-shadow:
    0 0 0 1px rgba(89, 9, 126, 0.22),
    0 23px 55px rgba(0, 0, 0, 0.42);
}

#contact-form {
  display: grid;
  gap: 9px;
}

#contact-form label {
  margin-top: 6px;
  color: #c7becb;
  font-size: 13px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 4px;
  outline: none;
  color: #f4eef5;
  background: rgba(9, 7, 11, 0.95);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: var(--purple-bright);
  box-shadow: inset 0 0 16px rgba(159, 31, 220, 0.1);
}

#contact-form .button {
  margin-top: 10px;
  width: 100%;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   NO MAN'S LAND CONTACT PAGE
   ================================================== */

.contact-page-body {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(100, 17, 145, 0.12),
      transparent 30%
    ),
    #050406;
}

.contact-page-main {
  min-height: 100vh;
  overflow: hidden;
}

.contact-page-main button,
.contact-page-main input,
.contact-page-main textarea,
.contact-page-main select {
  font-family: var(--font-body);
}

/* Contact hero */

.contact-hero {
  position: relative;
  display: flex;
  min-height: 480px;
  padding-top: var(--header-height);
  overflow: hidden;
  align-items: center;
  isolation: isolate;
}

.contact-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48%;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(5, 4, 6, 0.75) 58%,
      #050406 100%
    );
}

.contact-hero-background {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.42),
      rgba(0, 0, 0, 0.05) 48%,
      rgba(0, 0, 0, 0.42)
    ),
    url("assets/hero-bg.jpg") center 42% / cover no-repeat,
    radial-gradient(
      circle at center,
      #38104f,
      #0a0710 55%,
      #040305
    );
  filter:
    saturate(0.95)
    contrast(1.14)
    brightness(0.72);
  transform: scale(1.035);
  animation: contactHeroBreathing 12s ease-in-out infinite alternate;
}

.contact-hero-overlay {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 1, 3, 0.22),
      rgba(11, 3, 15, 0.22) 42%,
      rgba(3, 2, 4, 0.78)
    ),
    radial-gradient(
      circle at 50% 40%,
      transparent 0%,
      rgba(30, 5, 41, 0.15) 52%,
      rgba(0, 0, 0, 0.54) 100%
    );
}

.contact-hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.11;
  background:
    linear-gradient(
      rgba(189, 71, 255, 0.15) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(189, 71, 255, 0.12) 1px,
      transparent 1px
    );
  background-size: 75px 75px;
  mask-image:
    linear-gradient(
      180deg,
      transparent 5%,
      black 42%,
      transparent 97%
    );
}

.contact-hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  padding: 68px 0 82px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title-block h1 {
  position: relative;
  margin: 0;
  color: #e7e3e8;
  font-family: var(--font-display);
  font-size: clamp(100px, 12vw, 176px);
  font-weight: 700;
  line-height: 0.76;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 #747076,
    0 5px 0 #302d31,
    0 11px 36px rgba(0, 0, 0, 0.92);
}

.contact-title-block h1::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 8%;
  left: 4%;
  height: 8px;
  opacity: 0.18;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 7px,
      #000000 7px 11px
    );
  mix-blend-mode: multiply;
}

.contact-hero-subtitle {
  display: flex;
  margin-top: 25px;
  align-items: center;
  gap: 21px;
}

.contact-hero-subtitle p {
  margin: 0;
  color: #ddd6e0;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.5vw, 35px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.contact-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow:
    0 0 10px var(--purple-bright),
    0 0 24px rgba(174, 47, 255, 0.62);
}

.contact-event-meta {
  display: flex;
  margin-top: 33px;
  align-items: stretch;
  justify-content: center;
}

.contact-meta-item {
  display: flex;
  min-width: 220px;
  min-height: 58px;
  padding: 0 30px;
  align-items: center;
  gap: 15px;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-meta-item:last-child {
  border-right: 0;
}

.contact-meta-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: #d0c8d3;
}

.contact-meta-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.35;
}

.contact-meta-item > div:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.contact-meta-item small {
  margin-bottom: 6px;
  color: #aaa1ad;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-meta-item strong {
  color: #eee9f0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

@keyframes contactHeroBreathing {
  0% {
    transform: scale(1.035);
  }

  100% {
    transform: scale(1.07);
  }
}

/* Direct contact cards */

.contact-options-section {
  position: relative;
  z-index: 10;
  margin-top: -42px;
  padding-bottom: 35px;
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-option-card {
  position: relative;
  display: grid;
  min-height: 190px;
  padding: 35px 31px;
  overflow: hidden;
  grid-template-columns: 67px minmax(0, 1fr);
  align-items: start;
  gap: 23px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 5px;
  background:
    linear-gradient(
      145deg,
      rgba(14, 11, 16, 0.98),
      rgba(6, 5, 8, 0.99)
    );
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    transform 350ms var(--ease),
    border-color 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.contact-option-card::before {
  content: "";
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: -80%;
  width: 55%;
  opacity: 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(187, 64, 255, 0.1),
      transparent
    );
  transform: rotate(21deg);
  transition:
    left 700ms var(--ease),
    opacity 300ms ease;
}

.contact-option-card:hover {
  z-index: 3;
  border-color: rgba(189, 71, 255, 0.68);
  background:
    linear-gradient(
      145deg,
      rgba(21, 13, 27, 0.99),
      rgba(8, 6, 10, 1)
    );
  box-shadow:
    0 27px 60px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(168, 41, 229, 0.18);
  transform: translateY(-9px);
}

.contact-option-card:hover::before {
  left: 140%;
  opacity: 1;
}

.contact-option-icon {
  display: grid;
  width: 67px;
  height: 67px;
  place-items: center;
  color: var(--purple-bright);
  transition:
    transform 350ms var(--ease),
    filter 300ms ease;
}

.contact-option-icon svg {
  width: 55px;
  height: 55px;
  stroke-width: 1.35;
}

.contact-option-card:hover .contact-option-icon {
  filter:
    drop-shadow(0 0 8px rgba(189, 71, 255, 0.8));
  transform:
    translateY(-3px)
    scale(1.09);
}

.contact-option-content {
  position: relative;
  z-index: 2;
}

.contact-option-content h2 {
  margin: 1px 0 7px;
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-option-content p {
  margin: 0 0 15px;
  color: #bbb3bf;
  font-size: 13px;
  line-height: 1.55;
}

.contact-option-content span {
  color: var(--purple-bright);
  font-size: 13px;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.contact-option-card:hover .contact-option-content span {
  color: #d897ff;
  text-shadow:
    0 0 12px rgba(189, 71, 255, 0.48);
}

.contact-option-arrow {
  position: absolute;
  top: 19px;
  right: 19px;
  width: 18px;
  height: 18px;
  opacity: 0;
  color: var(--purple-bright);
  transform:
    translate(-5px, 5px);
  transition:
    opacity 250ms ease,
    transform 300ms var(--ease);
}

.contact-option-card:hover .contact-option-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* Form and information */

.contact-content-section {
  position: relative;
  padding: 19px 0 35px;
}

.contact-content-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(
      circle at 25% 35%,
      rgba(120, 22, 164, 0.06),
      transparent 36%
    ),
    radial-gradient(
      circle at 76% 40%,
      rgba(120, 22, 164, 0.05),
      transparent 32%
    );
}

.contact-content-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(330px, 0.95fr);
  gap: 18px;
}

.contact-form-panel,
.contact-info-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(
      145deg,
      rgba(12, 9, 14, 0.98),
      rgba(5, 4, 7, 0.99)
    );
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.31),
    inset 0 1px 0 rgba(255, 255, 255, 0.024);
}

.contact-form-panel {
  padding: 35px 42px 37px;
}

.contact-info-panel {
  padding: 35px 37px;
}

.contact-form-panel::before,
.contact-info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  opacity: 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--purple-bright),
      transparent
    );
  transition: opacity 300ms ease;
}

.contact-form-panel:hover,
.contact-info-panel:hover {
  border-color: rgba(186, 58, 246, 0.43);
}

.contact-form-panel:hover::before,
.contact-info-panel:hover::before {
  opacity: 1;
}

.contact-section-heading {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 15px;
}

.contact-section-heading h2 {
  margin: 0;
  color: #e3dde5;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 600;
  letter-spacing: 0.065em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-section-heading > span {
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow:
    0 0 12px rgba(180, 51, 246, 0.52);
}

.contact-section-heading-small {
  margin-bottom: 16px;
}

.contact-section-heading-small h2 {
  font-size: 29px;
}

.contact-form {
  display: grid;
  gap: 17px;
}

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-field label {
  color: #d8d0da;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.085em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-input-wrap,
.contact-select-wrap,
.contact-textarea-wrap {
  position: relative;
}

.contact-input-wrap input,
.contact-select-wrap select,
.contact-textarea-wrap textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  outline: 0;
  color: #f2edf4;
  background:
    linear-gradient(
      180deg,
      rgba(9, 7, 11, 0.99),
      rgba(6, 5, 8, 0.99)
    );
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease,
    transform 240ms var(--ease);
}

.contact-input-wrap input,
.contact-select-wrap select {
  height: 53px;
  padding: 0 49px 0 17px;
}

.contact-textarea-wrap textarea {
  display: block;
  min-height: 169px;
  padding: 16px 17px;
  line-height: 1.6;
  resize: vertical;
}

.contact-select-wrap select {
  appearance: none;
  cursor: pointer;
}

.contact-input-wrap input::placeholder,
.contact-textarea-wrap textarea::placeholder {
  color: #716a75;
}

.contact-input-wrap input:hover,
.contact-select-wrap select:hover,
.contact-textarea-wrap textarea:hover {
  border-color: rgba(189, 71, 255, 0.39);
  background:
    linear-gradient(
      180deg,
      rgba(14, 9, 18, 0.99),
      rgba(7, 5, 9, 0.99)
    );
}

.contact-input-wrap input:focus,
.contact-select-wrap select:focus,
.contact-textarea-wrap textarea:focus {
  border-color: var(--purple-bright);
  box-shadow:
    0 0 0 1px rgba(189, 71, 255, 0.15),
    0 0 21px rgba(171, 42, 234, 0.13),
    inset 0 0 18px rgba(152, 26, 208, 0.055);
}

.contact-input-wrap > svg,
.contact-select-wrap > svg {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 18px;
  height: 18px;
  pointer-events: none;
  color: #8f8793;
  transform: translateY(-50%);
  transition:
    color 220ms ease,
    filter 220ms ease;
}

.contact-input-wrap:focus-within > svg,
.contact-select-wrap:focus-within > svg {
  color: var(--purple-bright);
  filter:
    drop-shadow(0 0 5px rgba(189, 71, 255, 0.7));
}

.contact-field.has-error input,
.contact-field.has-error select,
.contact-field.has-error textarea {
  border-color: #d85884;
}

.contact-field-error {
  display: none;
  min-height: 15px;
  color: #e17197;
  font-size: 11px;
}

.contact-field.has-error .contact-field-error {
  display: block;
}

.contact-submit-button {
  position: relative;
  display: inline-flex;
  width: 100%;
  min-height: 56px;
  margin-top: 1px;
  padding: 13px 25px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #c05aff;
  border-radius: 3px;
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      #aa22ee 0%,
      #7309b6 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.23),
    0 0 24px rgba(151, 28, 224, 0.22);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 270ms var(--ease),
    box-shadow 270ms ease,
    filter 270ms ease;
}

.contact-submit-button:hover {
  filter: brightness(1.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 34px rgba(177, 48, 241, 0.42);
  transform: translateY(-3px);
}

.contact-submit-button:active {
  transform: translateY(-1px);
}

.contact-submit-button svg {
  width: 19px;
  height: 19px;
}

.contact-submit-shine {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -80%;
  width: 45%;
  opacity: 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.28),
      transparent
    );
  transform: skewX(-22deg);
}

.contact-submit-button:hover .contact-submit-shine {
  opacity: 1;
  animation:
    contactButtonShine 700ms var(--ease) forwards;
}

@keyframes contactButtonShine {
  to {
    left: 140%;
  }
}

.contact-form-status {
  min-height: 18px;
  margin: -6px 0 0;
  color: var(--purple-bright);
  font-size: 12px;
}

.contact-info-intro {
  margin: 0 0 27px;
  color: #b7afb9;
  font-size: 13px;
  line-height: 1.65;
}

.contact-info-list {
  display: grid;
  gap: 26px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.contact-info-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--purple-bright);
  transition:
    transform 280ms var(--ease),
    filter 280ms ease;
}

.contact-info-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.4;
}

.contact-info-item:hover .contact-info-icon {
  filter:
    drop-shadow(0 0 7px rgba(189, 71, 255, 0.75));
  transform:
    translateY(-2px)
    scale(1.08);
}

.contact-info-item h3 {
  margin: 1px 0 5px;
  color: #ddd6e0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.085em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-info-item p {
  margin: 0;
  color: #aaa2ad;
  font-size: 12px;
  line-height: 1.65;
}

.contact-info-item a {
  display: inline-block;
  margin-top: 14px;
  color: var(--purple-bright);
  font-size: 12px;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.contact-info-item a:hover {
  color: #dfa5ff;
  text-shadow:
    0 0 10px rgba(189, 71, 255, 0.58);
}

.contact-info-decoration {
  position: absolute;
  right: -30px;
  bottom: -36px;
  display: flex;
  opacity: 0.12;
  gap: 10px;
  transform: rotate(-15deg);
}

.contact-info-decoration span {
  width: 12px;
  height: 100px;
  background:
    linear-gradient(
      180deg,
      transparent,
      var(--purple-bright),
      transparent
    );
  transform: skewX(-18deg);
}

/* Quick answers */

.quick-answers-section {
  padding: 0 0 35px;
}

.quick-answers-panel {
  position: relative;
  display: grid;
  min-height: 230px;
  padding: 34px 44px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 35px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background:
    radial-gradient(
      circle at 77% 50%,
      rgba(104, 17, 146, 0.11),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(12, 9, 14, 0.98),
      rgba(5, 4, 7, 0.99)
    );
}

.quick-answers-content {
  position: relative;
  z-index: 5;
}

.quick-answers-content .contact-section-heading {
  margin-bottom: 15px;
}

.quick-answers-content .contact-section-heading h2 {
  font-size: 37px;
}

.quick-answers-content > p {
  margin: 0 0 22px;
  color: #b6adb9;
  font-size: 13px;
}

.quick-answers-button {
  display: inline-flex;
  min-width: 193px;
  min-height: 48px;
  padding: 10px 21px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid rgba(190, 74, 250, 0.52);
  border-radius: 3px;
  color: #e9e2eb;
  background: rgba(8, 6, 10, 0.82);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition:
    color 250ms ease,
    border-color 250ms ease,
    background 250ms ease,
    box-shadow 250ms ease,
    transform 250ms var(--ease);
}

.quick-answers-button:hover {
  color: #ffffff;
  border-color: var(--purple-bright);
  background: rgba(32, 8, 44, 0.88);
  box-shadow:
    0 0 25px rgba(171, 46, 235, 0.2);
  transform: translateY(-3px);
}

.quick-answers-button svg {
  width: 18px;
  height: 18px;
  color: var(--purple-bright);
}

.quick-answers-cards {
  position: relative;
  display: flex;
  height: 185px;
  align-items: center;
  justify-content: center;
}

.quick-answer-card {
  position: absolute;
  width: 134px;
  height: 178px;
  overflow: hidden;
  border: 1px solid rgba(176, 52, 230, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(61, 15, 81, 0.3),
      rgba(5, 4, 7, 0.94)
    ),
    url("assets/lineup-card-1.jpg") center / cover no-repeat,
    radial-gradient(
      circle at center,
      #351145,
      #08060a
    );
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.47);
  transition:
    transform 350ms var(--ease),
    border-color 300ms ease,
    filter 300ms ease;
}

.quick-answer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(46, 7, 66, 0.15),
      rgba(0, 0, 0, 0.67)
    );
}

.quick-answer-card > div {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 65px;
  height: 65px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(84, 21, 112, 0.65),
      rgba(18, 7, 23, 0.85)
    );
  transform: translate(-50%, -50%);
}

.quick-answer-card span {
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 57px;
  font-weight: 700;
  line-height: 1;
  text-shadow:
    0 0 13px rgba(189, 71, 255, 0.73);
}

.quick-answer-card-one {
  left: 6%;
  transform:
    rotate(-7deg)
    translateY(5px);
}

.quick-answer-card-two {
  z-index: 2;
  left: 34%;
  transform:
    rotate(2deg)
    translateY(-4px);
}

.quick-answer-card-three {
  z-index: 1;
  right: 5%;
  transform:
    rotate(8deg)
    translateY(7px);
}

.quick-answers-panel:hover .quick-answer-card-one {
  border-color: rgba(189, 71, 255, 0.72);
  transform:
    rotate(-10deg)
    translate(-8px, -3px);
}

.quick-answers-panel:hover .quick-answer-card-two {
  border-color: rgba(189, 71, 255, 0.72);
  transform:
    rotate(0)
    translateY(-10px);
}

.quick-answers-panel:hover .quick-answer-card-three {
  border-color: rgba(189, 71, 255, 0.72);
  transform:
    rotate(11deg)
    translate(8px, -1px);
}

/* Contact responsive */

@media (max-width: 1100px) {
  .contact-option-card {
    padding: 29px 23px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
  }

  .contact-option-icon {
    width: 54px;
    height: 54px;
  }

  .contact-option-icon svg {
    width: 45px;
    height: 45px;
  }

  .contact-content-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
  }

  .contact-form-panel {
    padding-inline: 31px;
  }

  .contact-info-panel {
    padding-inline: 29px;
  }
}

@media (max-width: 900px) {
  .contact-hero {
    min-height: 470px;
  }

  .contact-meta-item {
    min-width: 0;
    padding: 0 20px;
  }

  .contact-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-option-card:last-child {
    grid-column: 1 / -1;
  }

  .contact-content-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-answers-panel {
    grid-template-columns: 1fr minmax(320px, 0.8fr);
  }
}

@media (max-width: 767px) {
  .contact-hero {
    min-height: 510px;
  }

  .contact-hero-content {
    padding: 76px 0 93px;
  }

  .contact-title-block h1 {
    font-size: clamp(82px, 25vw, 125px);
  }

  .contact-hero-subtitle {
    margin-top: 22px;
    gap: 12px;
  }

  .contact-hero-subtitle p {
    font-size: clamp(20px, 6vw, 27px);
    letter-spacing: 0.17em;
  }

  .contact-dot {
    width: 5px;
    height: 5px;
  }

  .contact-event-meta {
    display: grid;
    width: 100%;
    margin-top: 33px;
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-meta-item {
    min-height: 80px;
    padding: 7px 6px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }

  .contact-meta-icon {
    width: 27px;
    height: 27px;
  }

  .contact-meta-icon svg {
    width: 23px;
    height: 23px;
  }

  .contact-meta-item small {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .contact-meta-item strong {
    font-size: 14px;
  }

  .contact-options-section {
    margin-top: -55px;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .contact-option-card,
  .contact-option-card:last-child {
    min-height: 158px;
    padding: 27px 23px;
    grid-column: auto;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
  }

  .contact-option-icon {
    width: 52px;
    height: 52px;
  }

  .contact-option-icon svg {
    width: 43px;
    height: 43px;
  }

  .contact-option-content h2 {
    font-size: 24px;
  }

  .contact-option-content p {
    font-size: 12px;
  }

  .contact-option-content span {
    overflow-wrap: anywhere;
    font-size: 12px;
  }

  .contact-form-panel,
  .contact-info-panel {
    padding: 27px 19px 29px;
  }

  .contact-section-heading {
    gap: 9px;
  }

  .contact-section-heading h2,
  .contact-section-heading-small h2 {
    font-size: 25px;
  }

  .contact-section-heading > span {
    font-size: 20px;
  }

  .contact-field label {
    font-size: 15px;
  }

  .contact-input-wrap input,
  .contact-select-wrap select {
    height: 51px;
  }

  .contact-textarea-wrap textarea {
    min-height: 155px;
  }

  .contact-submit-button {
    min-height: 53px;
    font-size: 19px;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .quick-answers-panel {
    min-height: 390px;
    padding: 29px 20px 23px;
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .quick-answers-content .contact-section-heading h2 {
    font-size: 31px;
  }

  .quick-answers-cards {
    height: 171px;
  }

  .quick-answer-card {
    width: 112px;
    height: 151px;
  }

  .quick-answer-card-one {
    left: 2%;
  }

  .quick-answer-card-two {
    left: 33%;
  }

  .quick-answer-card-three {
    right: 2%;
  }
}

@media (max-width: 430px) {
  .contact-title-block h1 {
    font-size: 80px;
  }

  .contact-hero-subtitle p {
    font-size: 18px;
    letter-spacing: 0.13em;
  }

  .contact-meta-item strong {
    font-size: 12px;
  }

  .contact-meta-item small {
    font-size: 10px;
  }

  .contact-option-card,
  .contact-option-card:last-child {
    padding: 24px 17px;
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 15px;
  }

  .contact-option-icon {
    width: 43px;
    height: 43px;
  }

  .contact-option-icon svg {
    width: 37px;
    height: 37px;
  }

  .contact-section-heading h2,
  .contact-section-heading-small h2 {
    font-size: 22px;
  }

  .contact-section-heading > span {
    font-size: 17px;
  }

  .quick-answers-panel {
    min-height: 370px;
  }

  .quick-answer-card {
    width: 96px;
    height: 138px;
  }

  .quick-answer-card > div {
    width: 53px;
    height: 53px;
  }

  .quick-answer-card span {
    font-size: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero-background {
    animation: none;
  }

  .contact-option-card,
  .contact-option-icon,
  .contact-submit-button,
  .quick-answer-card {
    transition-duration: 0.01ms;
  }
}
