@font-face {
  font-family: "DejaVu Sans";
  src: url("fonts/DejaVuSans-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #050507;
  --black-soft: #0b0b0f;
  --white: #f5f3f7;
  --violet: #bd19ff;
  --violet-hot: #e43cff;
  --line-dark: rgba(5, 5, 7, 0.22);
  --line-light: rgba(245, 243, 247, 0.22);
  --gutter: clamp(1.1rem, 3vw, 3.25rem);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "DejaVu Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--violet-hot);
  color: var(--black);
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--black);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(110deg, var(--violet) 0 14px, transparent 14px 27px);
}

.loader::before {
  top: 2rem;
}

.loader::after {
  bottom: 2rem;
}

.loader__center {
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 8rem);
  letter-spacing: -0.07em;
  animation: loader-pulse 850ms steps(2, end) infinite;
}

.loader__rail {
  position: absolute;
  top: 50%;
  display: flex;
  width: max-content;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(245, 243, 247, 0.13);
  animation: rail 10s linear infinite;
}

.loader__rail span {
  padding-right: 0.4em;
}

body.is-loaded .loader {
  visibility: hidden;
  opacity: 0;
}

.cursor {
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 72px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(245, 243, 247, 0.14);
  background: linear-gradient(to bottom, rgba(5, 5, 7, 0.86), rgba(5, 5, 7, 0.16));
  backdrop-filter: blur(8px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3.2rem);
}

.main-nav a {
  position: relative;
  padding: 1.6rem 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1.2rem;
  left: 0;
  height: 2px;
  background: var(--violet-hot);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a span {
  margin-right: 0.35rem;
  color: var(--violet-hot);
  font-size: 0.65rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle__close {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line-light);
}

.hero__photo,
.hero__shade,
.hero__scanlines {
  position: absolute;
  inset: 0;
}

.hero__photo {
  z-index: -3;
  inset: -4%;
  background: url("img/hero-live.png") center center / cover no-repeat;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.04);
  will-change: transform;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.66), transparent 40%, rgba(5, 5, 7, 0.2)),
    linear-gradient(180deg, rgba(5, 5, 7, 0.35), transparent 32%, rgba(5, 5, 7, 0.88) 91%);
}

.hero__scanlines {
  z-index: -1;
  opacity: 0.14;
  background-image: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.09) 3px 4px);
  mix-blend-mode: overlay;
}

.hero__meta {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  color: rgba(245, 243, 247, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right center;
  pointer-events: none;
}

.hero__content {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3.5rem, 7vh, 6.5rem);
  left: var(--gutter);
}

.hero__kicker {
  margin: 0 0 0.55rem 0.6vw;
  color: var(--violet-hot);
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(7rem, 24vw, 27rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.68;
  text-indent: -0.06em;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.hero__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.9rem;
}

.hero__bottom p {
  margin: 0;
  font-size: clamp(0.7rem, 1vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__bottom p span {
  display: block;
  margin-top: 0.4rem;
  color: var(--violet-hot);
}

.action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: min(100%, 280px);
  padding: 0 1rem 0 1.15rem;
  border: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.action:hover,
.action:focus-visible {
  background: var(--violet-hot);
  color: var(--black);
  transform: translateY(-3px);
}

.action__arrow {
  font-size: 1.25rem;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 1rem;
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: rgba(245, 243, 247, 0.65);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-bottom: 1px solid var(--black);
  background: var(--violet-hot);
  color: var(--black);
  white-space: nowrap;
}

.marquee__track {
  display: flex;
  width: max-content;
  padding: 0.7rem 0;
  animation: rail 24s linear infinite;
}

.marquee span {
  padding-right: 0.45em;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  letter-spacing: -0.04em;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
}

.about__statement {
  margin: 0 0 clamp(4rem, 8vw, 7rem);
  font-family: var(--display);
  font-size: clamp(3.8rem, 10.5vw, 10rem);
  letter-spacing: -0.07em;
  line-height: 0.84;
  text-transform: uppercase;
}

.about__statement p {
  margin: 0;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.14vw, 2px) var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.stat {
  min-height: 21rem;
  padding: 1.2rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background-color 250ms ease, color 250ms ease;
}

.stat:hover {
  background: var(--violet-hot);
  color: var(--black);
}

.stat__number {
  margin: 0 0 clamp(5rem, 10vw, 9rem);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.stat h2 {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat > p:last-child {
  margin: 0;
  color: rgba(245, 243, 247, 0.62);
  font-size: 0.88rem;
}

.stat:hover > p:last-child {
  color: rgba(5, 5, 7, 0.7);
}

.music {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
  gap: clamp(3rem, 8vw, 10rem);
  background: var(--white);
  color: var(--black);
}

.music__release,
.music__note {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.music__release {
  color: #7e00af;
}

.music h2 {
  margin: 0.9rem 0 1.3rem;
  font-family: var(--display);
  font-size: clamp(4rem, 9.5vw, 10rem);
  letter-spacing: -0.08em;
  line-height: 0.74;
}

.music__note {
  margin-top: 2rem;
}

.music__player {
  align-self: end;
}

.player-frame {
  padding: clamp(0.65rem, 1.2vw, 1rem);
  background: var(--black);
  box-shadow: 0 24px 60px rgba(5, 5, 7, 0.18);
}

.player-frame iframe {
  display: block;
  border: 0;
}

.music__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.music__links a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-left: 1px solid var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease;
}

.music__links a:hover,
.music__links a:focus-visible {
  background: var(--violet-hot);
}

.shows__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 0 clamp(4rem, 8vw, 8rem);
}

.shows__heading > p {
  margin: 0.7rem 0 0;
  color: var(--violet-hot);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.shows__heading h2 {
  width: min(100%, 72rem);
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 15vw, 16rem);
  letter-spacing: -0.09em;
  line-height: 0.67;
}

.shows__heading h2 span {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.14vw, 2px) var(--white);
}

.shows__grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
}

.shows__copy .lead {
  margin: 0 0 3rem;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.25;
}

.shows__status {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse {
  width: 0.58rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--violet-hot);
  box-shadow: 0 0 0 0 rgba(228, 60, 255, 0.8);
  animation: pulse 1.7s infinite;
}

.video-shell {
  border: 1px solid var(--line-light);
}

.video-shell__label {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-shell__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black-soft);
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter) 2rem;
  background: var(--violet-hot);
  color: var(--black);
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8%;
  width: 44vw;
  height: 16px;
  background: repeating-linear-gradient(115deg, var(--black) 0 16px, transparent 16px 31px);
}

.contact__noise {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0, 0, 0, 0.3) 3px 4px);
  pointer-events: none;
}

.contact__headline {
  position: relative;
  margin: 0 0 clamp(5rem, 9vw, 9rem);
}

.contact__headline > p {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact__headline > a {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 9rem);
  letter-spacing: -0.075em;
  line-height: 0.83;
  transition: color 180ms ease, transform 180ms ease;
}

.contact__headline > a span {
  font-family: var(--body);
  font-size: 0.3em;
  vertical-align: top;
}

.contact__headline > a:hover,
.contact__headline > a:focus-visible {
  color: var(--white);
  transform: translateX(0.03em);
}

.contact__footer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.contact__footer > div {
  min-height: 8.5rem;
  padding: 1rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.contact__footer span {
  display: block;
  margin-bottom: 2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__footer a,
.contact__footer p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.socials {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.socials a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--black);
  color: var(--white);
}

footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes rail {
  to {
    transform: translateX(-50%);
  }
}

@keyframes loader-pulse {
  50% {
    color: var(--violet-hot);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(228, 60, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(228, 60, 255, 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  body,
  a,
  button {
    cursor: none;
  }

  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 220;
    display: grid;
    width: 18px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    mix-blend-mode: difference;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(calc(var(--cursor-x, -100px) - 50%), calc(var(--cursor-y, -100px) - 50%), 0);
    transition: width 160ms ease, opacity 160ms ease;
  }

  .cursor.is-visible {
    opacity: 1;
  }

  .cursor.is-active {
    width: 42px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 64px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
    padding: 1rem 0;
  }

  .menu-open .menu-toggle__open {
    display: none;
  }

  .menu-open .menu-toggle__close {
    display: inline;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 5rem var(--gutter) 2rem;
    background: var(--violet-hot);
    color: var(--black);
    transform: translateY(-102%);
    transition: transform 500ms cubic-bezier(0.77, 0, 0.18, 1);
  }

  .menu-open .main-nav {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(5, 5, 7, 0.3);
    font-family: var(--display);
    font-size: clamp(2.8rem, 12vw, 6rem);
    letter-spacing: -0.06em;
    line-height: 1;
  }

  .main-nav a span {
    color: var(--black);
    font-family: var(--body);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .hero__meta {
    display: none;
  }

  .hero h1 {
    font-size: clamp(6.1rem, 27vw, 13rem);
  }

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

  .stat {
    min-height: 17rem;
  }

  .stat__number {
    margin-bottom: 5rem;
  }

  .music,
  .shows__grid {
    grid-template-columns: 1fr;
  }

  .shows__heading {
    display: block;
  }

  .shows__heading > p {
    margin-bottom: 3rem;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 760px;
  }

  .hero__photo {
    inset: 0;
    background-position: 52% center;
    transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.08);
  }

  .hero__content {
    bottom: 4.5rem;
  }

  .hero__kicker {
    max-width: 11rem;
    font-size: 0.66rem;
  }

  .hero h1 {
    font-size: clamp(5.4rem, 30vw, 8.5rem);
    line-height: 0.74;
  }

  .hero__bottom {
    display: block;
    margin-top: 1.5rem;
  }

  .hero__bottom p {
    margin-bottom: 1.4rem;
  }

  .action {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .about__statement {
    font-size: clamp(3rem, 15vw, 5rem);
  }

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

  .stat {
    min-height: 14rem;
  }

  .stat__number {
    margin-bottom: 3.4rem;
  }

  .music {
    gap: 4rem;
  }

  .music h2 {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .player-frame {
    margin: 0 calc(var(--gutter) * -1);
  }

  .music__links {
    margin: 0 calc(var(--gutter) * -1);
  }

  .shows__heading h2 {
    font-size: clamp(4.5rem, 23vw, 8rem);
  }

  .video-shell {
    margin: 0 calc(var(--gutter) * -1);
    border-right: 0;
    border-left: 0;
  }

  .contact__headline > a {
    font-size: clamp(2.45rem, 12vw, 4.5rem);
  }

  .contact__footer,
  .socials {
    grid-template-columns: 1fr;
  }

  .contact__footer > div {
    min-height: 7rem;
  }

  .contact__footer span {
    margin-bottom: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__photo {
    transform: none;
  }
}
