:root {
  color-scheme: dark;
  --bg: #080808;
  --ink: #f6f2ea;
  --muted: #b9b1a7;
  --accent: #f2462e;
  --lime: #c7f15f;
  --panel: #121212;
  --line: rgba(255, 255, 255, .16);
  --display-font: "Bebas Neue", Impact, sans-serif;
  --tech-font: "Rajdhani", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 52px);
  background: linear-gradient(180deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, 0));
}

.brand {
  font-weight: 900;
  font-size: 18px;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 13px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 92dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 86px) 72px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, .18), transparent 24%),
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, .1), transparent 22%),
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, .07) 0 2px,
      transparent 2px 26px
    ),
    linear-gradient(135deg, #000 0%, #090909 45%, #020202 100%);
  animation:
    underground-pulse 5.5s ease-in-out infinite alternate,
    underground-drift 12s linear infinite;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, .05) 0 1px,
      transparent 1px 78px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, .07) 0 1px,
      transparent 1px 12px
    );
  mix-blend-mode: screen;
  opacity: .34;
  animation:
    tunnel-grid 7s linear infinite,
    scan-flicker 2.2s steps(4, end) infinite;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(
      from 90deg,
      transparent 0 16%,
      rgba(255, 255, 255, .18) 18%,
      transparent 22% 54%,
      rgba(255, 255, 255, .1) 58%,
      transparent 62% 100%
    );
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: .75;
  animation: underground-rotate 22s linear infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 52%, transparent 0 28%, rgba(0, 0, 0, .5) 64%),
    linear-gradient(90deg, rgba(255, 255, 255, .16), transparent 28% 72%, rgba(255, 255, 255, .1));
  mix-blend-mode: screen;
  opacity: .55;
  transform: skewY(-5deg);
  animation: street-wave 4.8s ease-in-out infinite alternate;
  pointer-events: none;
}

.beam {
  position: absolute;
  width: 42vw;
  height: 120vh;
  transform-origin: bottom center;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .18), transparent);
  filter: blur(10px);
  opacity: .78;
  animation: beam-sweep 7s ease-in-out infinite alternate;
}

.beam-a {
  left: 8vw;
  bottom: -24vh;
  transform: rotate(24deg);
}

.beam-b {
  right: 10vw;
  bottom: -22vh;
  transform: rotate(-20deg);
}

.stage-lines {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38vh;
  background:
    repeating-linear-gradient(
      160deg,
      transparent 0 42px,
      rgba(255, 255, 255, .2) 43px 44px,
      transparent 45px 84px
    ),
    repeating-linear-gradient(
      200deg,
      transparent 0 52px,
      rgba(242, 70, 46, .16) 53px 54px,
      transparent 55px 104px
    );
  transform: perspective(520px) rotateX(62deg);
  transform-origin: bottom;
  animation: floor-run 5s linear infinite;
}

.hero-content {
  position: relative;
  max-width: 860px;
  text-align: center;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-family: var(--display-font);
  font-size: clamp(4.6rem, 12vw, 12rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: .045em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(255, 255, 255, .54),
    0 0 48px rgba(255, 255, 255, .2);
  text-wrap: balance;
  transform: translateX(.03em);
  animation: title-glitch 3.8s steps(2, end) infinite;
}

h1 span {
  display: block;
}

h1 span:first-child {
  font-family: inherit;
  font-size: 1em;
  line-height: inherit;
  letter-spacing: inherit;
  transform: translateX(.035em);
}

h1 span:last-child {
  margin-top: -.05em;
  transform: translateX(.02em);
}

@keyframes underground-pulse {
  from {
    filter: saturate(1) contrast(1);
    scale: 1;
  }

  to {
    filter: saturate(1.28) contrast(1.12);
    scale: 1.04;
  }
}

@keyframes underground-drift {
  to {
    background-position: 0 0, 0 0, 220px 0, 0 0;
  }
}

@keyframes tunnel-grid {
  to {
    background-position: 312px 0, 0 144px;
  }
}

@keyframes scan-flicker {
  50% {
    opacity: .22;
  }

  75% {
    opacity: .48;
  }
}

@keyframes underground-rotate {
  to {
    rotate: 1turn;
  }
}

@keyframes beam-sweep {
  to {
    opacity: .44;
    translate: 4vw 0;
  }
}

@keyframes floor-run {
  to {
    background-position: 0 84px, 0 104px;
  }
}

@keyframes street-wave {
  to {
    opacity: .78;
    transform: skewY(5deg) translate3d(0, -2.5rem, 0);
  }
}

@keyframes title-glitch {
  0%,
  88%,
  100% {
    text-shadow:
      0 0 16px rgba(255, 255, 255, .54),
      0 0 48px rgba(255, 255, 255, .2);
    transform: translateX(.03em);
  }

  90% {
    text-shadow:
      -5px 0 rgba(255, 255, 255, .9),
      5px 0 rgba(120, 120, 120, .75),
      0 0 34px rgba(255, 255, 255, .28);
    transform: translateX(-.01em);
  }

  92% {
    text-shadow:
      6px 0 rgba(255, 255, 255, .86),
      -6px 0 rgba(90, 90, 90, .72),
      0 0 38px rgba(255, 255, 255, .34);
    transform: translateX(.05em);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .hero-media::before,
  .hero-media::after,
  .hero::before,
  .beam,
  .stage-lines,
  h1 {
    animation: none;
  }
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
}

.quote-band {
  padding: 58px clamp(22px, 7vw, 110px);
  background: #f1ede4;
  color: #111;
}

.quote-band p {
  max-width: 940px;
  margin: 0;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tile {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  padding: 28px;
  background: linear-gradient(145deg, #161616, #0b0b0b);
  border-right: 1px solid var(--line);
}

.tile:nth-child(even) {
  background: linear-gradient(145deg, #20120f, #0c0c0c);
}

.tile span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tile strong {
  font-size: 24px;
  line-height: 1.05;
}

.split,
.feature {
  padding: 84px clamp(22px, 7vw, 110px);
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(280px, 1.2fr);
  gap: 56px;
  align-items: start;
}

h2 {
  font-size: clamp(36px, 6vw, 76px);
  line-height: .95;
  text-transform: uppercase;
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-list article {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 92px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

time {
  color: var(--lime);
  font-weight: 900;
}

.event-list h3,
.release-grid h3 {
  margin-bottom: 4px;
}

.event-list p,
.feature p,
footer p {
  color: var(--muted);
}

.feature {
  background: #f1ede4;
  color: #111;
}

.feature p {
  max-width: 760px;
  color: #4b463f;
  font-size: 20px;
  line-height: 1.55;
}

.dark {
  background:
    linear-gradient(120deg, rgba(242, 70, 46, .18), transparent 38%),
    #0b0b0b;
}

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

.release-grid article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  border: 1px solid var(--line);
  background: #141414;
}

.release-grid span {
  color: var(--accent);
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(22px, 7vw, 110px);
  border-top: 1px solid var(--line);
}

footer strong {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 220px;
  }

  .tiles,
  .split,
  .release-grid {
    grid-template-columns: 1fr;
  }

  .tile {
    min-height: 160px;
  }

  .event-list article {
    grid-template-columns: 72px 1fr;
  }

  .event-list article a {
    grid-column: 2;
  }

  footer {
    display: block;
  }
}
