:root {
  --bg: #030407;
  --panel: #080b12;
  --panel-2: #0d111a;
  --line: rgba(255, 255, 255, 0.17);
  --muted: #c7ccd8;
  --soft: #8d96a8;
  --white: #ffffff;
  --blue: #1059ff;
  --blue-2: #0b8dff;
  --blue-dark: #061f68;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 10%, rgba(16, 89, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 18% 54%, rgba(11, 141, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #010205 0%, var(--bg) 50%, #010205 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.28;
}

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

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

.section-shell,
.site-header,
.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0 20px;
}

.brand {
  display: inline-grid;
  gap: 0;
  width: max-content;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand span {
  color: var(--blue);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 31px;
}

.brand strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 5px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 160ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  border-color: var(--blue);
  background: linear-gradient(180deg, #1668ff, #0b42df);
  box-shadow: 0 16px 36px rgba(16, 89, 255, 0.24);
}

.button-outline {
  background: rgba(3, 6, 14, 0.52);
}

.button-outline:hover {
  border-color: var(--blue-2);
  background: rgba(16, 89, 255, 0.12);
}

.button.compact {
  min-height: 42px;
  padding-inline: 22px;
}

.button.wide {
  width: min(100%, 310px);
}

.button-row,
.button-stack {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button-stack {
  flex-direction: column;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 24px;
  align-items: center;
  min-height: 690px;
  padding: 32px 0 36px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-title {
  max-width: 500px;
  margin: 0;
  text-transform: uppercase;
  line-height: 0.83;
}

.hero-title span,
.hero-title strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(76px, 10vw, 148px);
  letter-spacing: 0;
}

.hero-title span {
  color: var(--white);
  text-shadow: 0 7px 0 rgba(255, 255, 255, 0.1);
}

.hero-title strong {
  color: var(--blue);
  font-weight: 900;
}

.hero-title em {
  display: block;
  margin-top: -4px;
  color: var(--white);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(45px, 6vw, 78px);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  transform: rotate(-5deg);
  transform-origin: left center;
}

.hero-subtitle {
  max-width: 390px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 640px;
}

.hero-media::before {
  position: absolute;
  inset: 10% 4% 9% auto;
  width: 56%;
  content: "";
  background: rgba(16, 89, 255, 0.18);
  box-shadow: 0 0 100px rgba(16, 89, 255, 0.42);
}

.hero-media img {
  position: absolute;
  right: -42px;
  bottom: 0;
  width: min(720px, 100%);
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

.show-card,
.ticket-card,
.summary-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(11, 14, 22, 0.96), rgba(3, 5, 10, 0.86));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.show-card {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 140px;
  padding: 0 38px 0 0;
}

.show-date {
  display: grid;
  place-items: center;
  align-self: stretch;
  border-right: 1px solid var(--line);
  color: var(--blue-2);
  text-transform: uppercase;
}

.show-date strong {
  color: var(--white);
  font-size: 48px;
  line-height: 0.9;
}

.show-card h2,
.legacy-copy h2,
.detail-copy h1,
.page-heading h1,
.summary-copy h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.show-card h2 {
  font-size: 27px;
}

.show-card p,
.legacy-copy p,
.detail-description,
.ticket-info p,
.ticket-note,
.page-heading p,
.summary-list {
  color: var(--muted);
}

.show-card p {
  margin: 4px 0;
}

.legacy {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: 70px;
  align-items: center;
  padding: 80px 0 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legacy-media img {
  width: min(420px, 100%);
  max-height: 480px;
  object-fit: contain;
  object-position: bottom left;
}

.legacy-copy h2,
.page-heading h1,
.summary-copy h1 {
  color: var(--blue);
  font-size: clamp(34px, 4vw, 52px);
}

.legacy-copy p {
  max-width: 440px;
  margin: 18px 0 28px;
  font-size: 18px;
}

.page-main {
  padding: 36px 0 84px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.back-link::before {
  content: "<";
  margin-right: 10px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1fr);
  gap: 58px;
  align-items: center;
}

.detail-media img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-copy h1 {
  max-width: 520px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
}

.event-list {
  display: grid;
  gap: 22px;
  margin: 42px 0;
}

.event-list div {
  display: grid;
  gap: 3px;
  padding-left: 20px;
  border-left: 3px solid var(--blue);
}

.event-list span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-list strong {
  color: var(--white);
}

.event-list p {
  margin: 0;
  color: var(--muted);
}

.detail-description {
  max-width: 470px;
  margin: 0 0 34px;
}

.ticket-page,
.summary-page {
  width: min(840px, calc(100% - 48px));
}

.page-heading {
  margin-bottom: 38px;
}

.page-heading h1,
.summary-copy h1 {
  color: var(--white);
}

.ticket-list {
  display: grid;
  gap: 28px;
}

.ticket-card {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(220px, 0.72fr);
  min-height: 238px;
  overflow: hidden;
}

.ticket-info {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
}

.ticket-info h2,
.summary-card h2 {
  margin: 0;
  color: var(--blue);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.ticket-info p {
  margin: 0;
}

.price {
  display: block;
  margin-top: 10px;
  font-size: 31px;
}

.ticket-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ticket-note {
  max-width: 380px;
  margin: 36px 0 0;
  font-size: 14px;
}

.summary-page {
  display: grid;
  grid-template-columns: minmax(310px, 0.92fr) minmax(240px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.summary-card {
  margin: 22px 0 26px;
  padding: 34px;
}

.summary-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.summary-list dt {
  color: var(--muted);
}

.summary-list dd {
  margin: 0;
  color: var(--white);
  font-weight: 800;
  text-align: right;
}

.summary-total {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.summary-media img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  object-position: right bottom;
}

.site-footer {
  padding: 54px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 52px;
  padding-bottom: 44px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  display: block;
  margin: 9px 0;
}

.footer-brand {
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.social-links a {
  color: var(--white);
  font-weight: 900;
}

.copyright {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  text-align: center;
}

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

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero,
  .detail-grid,
  .legacy,
  .summary-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-media {
    min-height: 560px;
  }

  .hero-media img {
    right: 50%;
    transform: translateX(50%);
    object-position: bottom center;
  }

  .show-card {
    grid-template-columns: 112px 1fr;
    padding: 0;
  }

  .show-card .button {
    grid-column: 2;
    width: fit-content;
    margin: 0 24px 24px 0;
  }

  .legacy {
    gap: 34px;
    padding-top: 56px;
  }

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

  .summary-media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .site-header,
  .site-footer,
  .ticket-page,
  .summary-page {
    width: min(100% - 30px, var(--max));
  }

  .site-header {
    gap: 18px;
    padding-top: 20px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 10px;
  }

  .brand span {
    font-size: 25px;
  }

  .brand strong {
    font-size: 16px;
    letter-spacing: 4px;
  }

  .hero-title span,
  .hero-title strong {
    font-size: clamp(62px, 20vw, 86px);
  }

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

  .hero-media {
    min-height: 420px;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .button,
  .button-stack .button {
    width: 100%;
  }

  .show-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .show-date {
    grid-template-columns: auto auto auto;
    justify-content: start;
    gap: 10px;
    min-height: 82px;
    padding-left: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .show-card-content {
    padding: 24px;
  }

  .show-card .button {
    grid-column: auto;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
  }

  .detail-media img {
    max-height: 540px;
  }

  .ticket-card {
    grid-template-columns: 1fr;
  }

  .ticket-media {
    min-height: 260px;
  }

  .ticket-info,
  .summary-card {
    padding: 26px;
  }

  .summary-list div {
    align-items: start;
  }
}
