:root {
  color-scheme: dark;
  --black: #030408;
  --ink: #070911;
  --ink-2: #10131c;
  --white: #f4fbff;
  --muted: #9fa9b8;
  --cyan: #17f7ff;
  --pink: #ff2aa1;
  --green: #aaff1e;
  --violet: #8d45ff;
  --amber: #ffd057;
  --line: rgba(255, 255, 255, 0.17);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 8%, rgba(255, 42, 161, 0.2), transparent 28rem),
    radial-gradient(circle at 10% 26%, rgba(23, 247, 255, 0.12), transparent 24rem),
    var(--black);
  color: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.scanline {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.035) 0,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: soft-light;
  opacity: 0.3;
}

.cursor-glow {
  position: fixed;
  width: 24rem;
  height: 24rem;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(23, 247, 255, 0.13), transparent 70%);
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  background: linear-gradient(to bottom, rgba(3, 4, 8, 0.82), rgba(3, 4, 8, 0));
}

.brand-mark,
.site-nav,
.header-action {
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(23, 247, 255, 0.72);
}

.brand-bolt {
  width: 0.7rem;
  height: 1.3rem;
  clip-path: polygon(44% 0, 100% 0, 65% 44%, 100% 44%, 26% 100%, 47% 55%, 0 55%);
  background: var(--pink);
  box-shadow: 0 0 22px var(--pink);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  color: rgba(244, 251, 255, 0.78);
}

.site-nav a,
.site-footer a {
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--cyan);
  text-shadow: 0 0 16px rgba(23, 247, 255, 0.7);
}

.header-action {
  justify-self: end;
  padding: 0.7rem 1rem;
  border: 1px solid var(--pink);
  color: var(--white);
  box-shadow:
    inset 0 0 14px rgba(255, 42, 161, 0.16),
    0 0 18px rgba(255, 42, 161, 0.18);
}

.hero {
  position: relative;
  min-height: 92svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1.1rem, 5vw, 5rem) 6rem;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18rem;
  z-index: -1;
  background: linear-gradient(to top, var(--black), transparent);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 8, 0.95) 0%, rgba(3, 4, 8, 0.7) 34%, rgba(3, 4, 8, 0.18) 67%),
    radial-gradient(circle at 20% 78%, rgba(255, 42, 161, 0.28), transparent 26rem),
    radial-gradient(circle at 68% 54%, rgba(23, 247, 255, 0.16), transparent 34rem);
}

.hero-content {
  max-width: 820px;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: clamp(0.76rem, 1.2vw, 0.9rem);
  font-weight: 1000;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(23, 247, 255, 0.65);
}

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

h1 {
  margin-bottom: 0.55rem;
  color: var(--pink);
  font-size: clamp(4.2rem, 14vw, 12rem);
  line-height: 0.78;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255, 42, 161, 0.9),
    0 0 55px rgba(255, 42, 161, 0.55),
    0.08em 0.06em 0 rgba(23, 247, 255, 0.38);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 5vw, 5.6rem);
  line-height: 0.94;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.hero-line {
  margin-bottom: 2rem;
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(23, 247, 255, 0.5);
}

.button-primary:hover {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 32px rgba(255, 42, 161, 0.6);
}

.button-ghost {
  color: var(--pink);
  background: rgba(3, 4, 8, 0.42);
  box-shadow: inset 0 0 18px rgba(255, 42, 161, 0.14);
}

.hero-status {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 2rem;
  display: grid;
  gap: 0.2rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--green);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-status strong {
  color: var(--green);
  font-size: 1.25rem;
  text-shadow: 0 0 18px rgba(170, 255, 30, 0.55);
}

.promo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: -2.3rem auto 0;
  padding: 0 clamp(1rem, 3vw, 2rem);
  position: relative;
  z-index: 5;
}

.promo-strip article {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.1rem;
  align-items: center;
  min-height: 9rem;
  padding: 1.35rem clamp(1rem, 2vw, 1.8rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 4, 8, 0.82);
  backdrop-filter: blur(18px);
}

.promo-strip article + article {
  border-left: 1px solid var(--line);
}

.promo-strip p {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.promo-strip span:not(.promo-icon) {
  color: var(--muted);
}

.promo-icon {
  position: relative;
  width: 3.3rem;
  height: 3.3rem;
  display: block;
}

.infinity::before,
.infinity::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  width: 1.35rem;
  height: 1.35rem;
  border: 0.25rem solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(23, 247, 255, 0.9);
}

.infinity::before {
  left: 0.2rem;
}

.infinity::after {
  right: 0.2rem;
}

.trophy::before {
  content: "";
  position: absolute;
  inset: 0.45rem 0.8rem 1.3rem;
  border: 0.25rem solid var(--pink);
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 0 16px rgba(255, 42, 161, 0.9);
}

.trophy::after {
  content: "";
  position: absolute;
  left: 1.45rem;
  bottom: 0.35rem;
  width: 0.45rem;
  height: 1.1rem;
  background: var(--pink);
  box-shadow: 0 0 16px rgba(255, 42, 161, 0.9);
}

.clock {
  border: 0.25rem solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(170, 255, 30, 0.75);
}

.clock::before,
.clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.2rem;
  background: var(--green);
  transform-origin: bottom center;
}

.clock::before {
  height: 1.1rem;
  transform: translate(-50%, -100%) rotate(0deg);
}

.clock::after {
  height: 0.8rem;
  transform: translate(-50%, -100%) rotate(90deg);
}

.split-section,
.drink-section,
.events-section,
.visit-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 3vw, 2rem);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 7rem;
}

.section-copy p:not(.kicker),
.drink-copy p,
.visit-copy p {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.play-menu {
  border-top: 1px solid var(--line);
}

.menu-row {
  display: grid;
  grid-template-columns: 4.2rem minmax(9rem, 0.7fr) minmax(11rem, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.menu-row:hover {
  color: var(--cyan);
  border-color: rgba(23, 247, 255, 0.7);
}

.menu-number {
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.2em;
}

.menu-title {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.menu-copy {
  color: var(--muted);
}

.image-band {
  position: relative;
  min-height: 62svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.image-band img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 125%;
  object-fit: cover;
  object-position: center;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(3, 4, 8, 0.95), rgba(3, 4, 8, 0.08)),
    linear-gradient(90deg, rgba(3, 4, 8, 0.9), rgba(3, 4, 8, 0.2));
}

.band-copy {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 clamp(3rem, 7vw, 6rem);
}

.band-copy h2 {
  max-width: 760px;
}

.drink-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(18rem, 0.94fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.drink-image {
  position: relative;
}

.drink-image::before {
  content: "";
  position: absolute;
  inset: -1.1rem 1.2rem 1.1rem -1.2rem;
  border: 1px solid rgba(255, 42, 161, 0.62);
  box-shadow: 0 0 36px rgba(255, 42, 161, 0.24);
}

.drink-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.drink-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.drink-list span {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(23, 247, 255, 0.3);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.events-section {
  position: relative;
  overflow: hidden;
}

.texture-panel {
  position: absolute;
  inset: 4rem 2rem auto;
  height: 20rem;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(3, 4, 8, 0.1), var(--black)),
    url("assets/neon-texture.png") center / cover;
  opacity: 0.62;
  filter: saturate(1.25);
}

.events-copy {
  max-width: 720px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.event-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 4, 8, 0.68);
  backdrop-filter: blur(16px);
}

.event-list article {
  min-height: 18rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.event-list article + article {
  border-left: 1px solid var(--line);
}

.event-list span {
  display: inline-block;
  margin-bottom: 4rem;
  color: var(--green);
  font-weight: 1000;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(170, 255, 30, 0.55);
}

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

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 26rem);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.visit-copy h2 {
  color: var(--pink);
  text-shadow: 0 0 28px rgba(255, 42, 161, 0.48);
}

.visit-details {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(23, 247, 255, 0.46);
  background: rgba(3, 4, 8, 0.72);
  box-shadow: 0 0 34px rgba(23, 247, 255, 0.15);
}

.visit-details span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visit-details p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 3vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

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

.mockup-page {
  background: var(--black);
}

.mockup-shell {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.mockup-shell h1 {
  margin: 1rem 0;
  font-size: clamp(2.8rem, 8vw, 6rem);
}

.mockup-shell p {
  max-width: 42rem;
  color: var(--muted);
}

.mockup-shell img {
  width: 100%;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 42px rgba(255, 42, 161, 0.22);
}

.back-link {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes heroDrift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.11) translate3d(-1.2%, -0.8%, 0);
  }
}

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

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding-top: 6rem;
  }

  .hero-status {
    position: static;
    margin-top: 2.6rem;
    max-width: 18rem;
  }

  .promo-strip,
  .split-section,
  .drink-section,
  .event-list,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .promo-strip {
    margin-top: 0;
    padding-top: 2rem;
  }

  .promo-strip article + article,
  .event-list article + article {
    border-left: 0;
  }

  .promo-strip article,
  .event-list article {
    border-bottom: 1px solid var(--line);
  }

  .section-copy {
    position: static;
  }

  .menu-row {
    grid-template-columns: 3rem 1fr;
  }

  .menu-copy {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .brand-mark,
  .header-action {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 84svh;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: clamp(3.4rem, 21vw, 6rem);
  }

  h2 {
    font-size: clamp(2rem, 13vw, 3.8rem);
  }

  .hero-actions,
  .button,
  .drink-list {
    width: 100%;
  }

  .button,
  .drink-list,
  .site-footer {
    display: grid;
  }

  .drink-list {
    grid-template-columns: 1fr;
  }

  .visit-details {
    padding: 1.2rem;
  }
}

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