:root {
  color-scheme: dark;
  --ink: #f6f2e8;
  --muted: #b8b3aa;
  --black: #070707;
  --panel: #11100f;
  --panel-2: #1a1815;
  --line: rgba(246, 242, 232, 0.18);
  --hot: #ff3d81;
  --cyan: #16d8e6;
  --acid: #d6ff39;
  --amber: #ffb000;
  --paper: #fbf7ec;
  --paper-ink: #181511;
  --paper-muted: #635d53;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--ink);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark {
  width: 14px;
  height: 14px;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(214, 255, 57, 0.14), 0 0 28px rgba(214, 255, 57, 0.8);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.header-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid transparent;
  color: rgba(246, 242, 232, 0.82);
  font-size: 14px;
}

.site-nav a:hover,
.header-action:hover {
  border-color: var(--line);
  color: var(--ink);
}

.header-action {
  border-color: rgba(246, 242, 232, 0.34);
  background: rgba(246, 242, 232, 0.08);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 130px 28px 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  z-index: -3;
  background: #050505;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52) 56%, rgba(0, 0, 0, 0.94)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.72));
}

.hero-content {
  width: min(100%, 880px);
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--acid);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 9ch;
  font-size: 104px;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-copy {
  margin: 20px 0 0;
  max-width: 560px;
  color: rgba(246, 242, 232, 0.84);
  font-size: 22px;
  line-height: 1.35;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--acid);
  background: var(--acid);
  color: #111;
}

.button.primary:hover {
  background: #efff8c;
}

.button.ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.button.full {
  width: 100%;
}

.next-card {
  position: absolute;
  right: 28px;
  bottom: 54px;
  z-index: 1;
  width: 250px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.68);
  backdrop-filter: blur(16px);
}

.next-card span,
.next-card strong {
  display: block;
}

.next-label {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.next-card strong {
  margin: 10px 0 6px;
  font-size: 28px;
}

.next-card span:last-child {
  color: var(--muted);
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--acid);
  color: #111;
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}

.ticker span {
  min-width: max-content;
}

.section {
  padding: 86px 28px;
  scroll-margin-top: 76px;
}

.section-dark {
  background: var(--black);
}

.section-head {
  width: min(100%, 1120px);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 28px;
  align-items: end;
}

.section-head.compact {
  display: block;
  max-width: 520px;
  margin: 0;
}

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 52px;
  line-height: 1;
  text-transform: uppercase;
}

.section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.event-grid {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.event-card {
  min-height: 360px;
  display: grid;
  align-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 61, 129, 0.28), transparent 40%),
    linear-gradient(315deg, rgba(22, 216, 230, 0.26), transparent 48%);
  opacity: 0.78;
}

.event-card > * {
  position: relative;
}

.event-date {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.event-date time {
  color: var(--acid);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-date span {
  color: rgba(246, 242, 232, 0.64);
  font-size: 13px;
}

.event-card h3 {
  margin: 78px 0 10px;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.event-card p {
  margin: 0;
  color: rgba(246, 242, 232, 0.76);
  line-height: 1.45;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.event-meta span {
  border: 1px solid rgba(246, 242, 232, 0.26);
  padding: 7px 9px;
  color: rgba(246, 242, 232, 0.82);
  font-size: 12px;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  background: var(--paper);
  color: var(--paper-ink);
}

.split-section .eyebrow,
.venue-section .eyebrow,
.guest-section .eyebrow {
  color: #d02c6c;
}

.split-section h2,
.venue-section h2,
.guest-section h2 {
  color: var(--paper-ink);
}

.split-section .section-head p:not(.eyebrow),
.venue-section .section-head p:not(.eyebrow),
.guest-section .section-head p:not(.eyebrow) {
  color: var(--paper-muted);
}

.sound-list {
  display: grid;
  gap: 12px;
}

.sound-list article {
  display: grid;
  grid-template-columns: 54px 160px 1fr;
  align-items: start;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(24, 21, 17, 0.18);
}

.sound-list article:last-child {
  border-bottom: 1px solid rgba(24, 21, 17, 0.18);
}

.sound-list span {
  color: #d02c6c;
  font-weight: 900;
}

.sound-list h3 {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
}

.sound-list p {
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.45;
}

.venue-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 44px;
  background: #fff;
  color: var(--paper-ink);
}

.venue-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  background: #10100f;
  overflow: hidden;
}

.stage-map {
  width: min(86%, 620px);
  aspect-ratio: 1.25;
  position: relative;
  border: 1px solid rgba(246, 242, 232, 0.28);
  background:
    linear-gradient(90deg, transparent 31%, rgba(246, 242, 232, 0.08) 31%, rgba(246, 242, 232, 0.08) 32%, transparent 32%),
    linear-gradient(0deg, transparent 47%, rgba(246, 242, 232, 0.08) 47%, rgba(246, 242, 232, 0.08) 48%, transparent 48%),
    #161514;
}

.stage-map span {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 242, 232, 0.28);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.booth {
  top: 9%;
  left: 9%;
  width: 38%;
  height: 18%;
  background: var(--hot);
}

.floor {
  right: 9%;
  top: 18%;
  width: 44%;
  height: 52%;
  background: rgba(22, 216, 230, 0.24);
}

.bar {
  left: 9%;
  bottom: 11%;
  width: 31%;
  height: 23%;
  background: rgba(214, 255, 57, 0.26);
}

.lounge {
  right: 9%;
  bottom: 11%;
  width: 34%;
  height: 18%;
  background: rgba(255, 176, 0, 0.26);
}

.venue-facts {
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.venue-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(24, 21, 17, 0.16);
}

.venue-facts dt {
  color: #d02c6c;
  font-weight: 900;
  text-transform: uppercase;
}

.venue-facts dd {
  margin: 0;
  color: var(--paper-muted);
}

.guest-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: 48px;
  background: var(--paper);
  color: var(--paper-ink);
}

.guest-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(24, 21, 17, 0.18);
  background: #fff;
}

.guest-form label,
.guest-form .full,
.form-note {
  grid-column: 1 / -1;
}

.guest-form label:nth-of-type(3),
.guest-form label:nth-of-type(4) {
  grid-column: span 1;
}

.guest-form span {
  display: block;
  margin: 0 0 7px;
  color: #d02c6c;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.guest-form input,
.guest-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(24, 21, 17, 0.22);
  border-radius: 0;
  padding: 0 12px;
  background: var(--paper);
  color: var(--paper-ink);
  outline: none;
}

.guest-form input:focus,
.guest-form select:focus {
  border-color: #d02c6c;
}

.guest-form .button {
  margin-top: 4px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.4;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px 16px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 16px 128px;
  }

  h1 {
    font-size: 72px;
  }

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

  .next-card {
    left: 16px;
    right: 16px;
    bottom: 24px;
    width: auto;
  }

  .section {
    padding: 62px 16px;
  }

  .section-head,
  .event-grid,
  .split-section,
  .venue-section,
  .guest-section {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 40px;
  }

  .event-card {
    min-height: 310px;
  }

  .sound-list article {
    grid-template-columns: 42px 1fr;
  }

  .sound-list p {
    grid-column: 2;
  }

  .venue-visual {
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand {
    font-size: 15px;
  }

  .header-action {
    min-height: 36px;
    padding: 0 11px;
  }

  h1 {
    font-size: 56px;
  }

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

  .event-grid {
    gap: 10px;
  }

  .event-card {
    min-height: 280px;
    padding: 16px;
  }

  .event-card h3 {
    font-size: 29px;
  }

  .guest-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .guest-form label:nth-of-type(3),
  .guest-form label:nth-of-type(4) {
    grid-column: 1;
  }

  .venue-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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

  .ticker-track {
    animation: none;
  }
}
