:root {
  --bg: #06090f;
  --bg-soft: #0d141f;
  --surface: #101a28;
  --surface-2: #111d2d;
  --line: rgba(255, 255, 255, 0.12);
  --text: rgba(247, 251, 255, 0.96);
  --muted: rgba(229, 240, 255, 0.72);
  --primary: #07b6d5;
  --primary-2: #2ee5ff;
  --danger: #ff4f7b;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 13px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 15% -5%, rgba(7, 182, 213, 0.26), transparent 30%),
    radial-gradient(circle at 100% 8%, rgba(255, 79, 123, 0.16), transparent 32%),
    linear-gradient(175deg, #05080e 0%, #060a11 48%, #04060a 100%);
  color: var(--text);
  font-family: "Space Grotesk", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

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

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

.container {
  width: min(1100px, calc(100% - 1.2rem));
  margin: 0 auto;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 16px rgba(46, 229, 255, 0.85);
  z-index: 70;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.02) 50%, transparent 50%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 50%, transparent 50%);
  background-size:
    3px 3px,
    4px 4px;
}

.cursor-glow {
  position: fixed;
  width: 300px;
  aspect-ratio: 1;
  margin: -150px 0 0 -150px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.32;
  background: radial-gradient(circle, rgba(7, 182, 213, 0.34), transparent 68%);
  filter: blur(8px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background-color 180ms ease, border-color 180ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(5, 9, 14, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.07em;
  font-size: 1.6rem;
}

.brand img {
  border-radius: 7px;
}

.menu-toggle {
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.45rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.main-nav {
  position: absolute;
  top: calc(100% + 0.3rem);
  left: 0.6rem;
  right: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10, 15, 23, 0.96);
  padding: 0.7rem 0.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  transition: all 180ms ease;
}

.main-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.nav-list a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-list a:hover {
  color: var(--primary-2);
}

.btn-nav {
  display: none;
}

.kicker {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--primary-2);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

h1 {
  font-size: clamp(2.7rem, 16vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 12vw, 3.6rem);
}

h3 {
  font-size: clamp(1.5rem, 9vw, 2.1rem);
}

.subline {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.62rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.65;
  transform: none;
  cursor: not-allowed;
}

.btn-primary {
  color: #021318;
  background: linear-gradient(130deg, var(--primary-2), var(--primary));
  box-shadow: 0 12px 28px rgba(7, 182, 213, 0.38);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(7, 182, 213, 0.5);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  color: var(--primary-2);
  border-color: rgba(46, 229, 255, 0.6);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: clip;
}

.hero-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  transform: scale(1.06);
}

.hero-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.3), rgba(5, 8, 13, 0.88)),
    radial-gradient(circle at 65% 30%, rgba(7, 182, 213, 0.26), transparent 36%);
}

.hero-blob {
  position: absolute;
  width: 45vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.4;
}

.hero-blob-a {
  right: -10%;
  top: -12%;
  background: rgba(46, 229, 255, 0.45);
  animation: driftA 12s ease-in-out infinite;
}

.hero-blob-b {
  left: -15%;
  bottom: -15%;
  background: rgba(255, 79, 123, 0.32);
  animation: driftB 14s ease-in-out infinite;
}

.hero-content {
  padding: 4.4rem 0 2.2rem;
  display: grid;
  gap: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.hero-feature-card {
  margin-top: 0.2rem;
  border: 1px solid rgba(46, 229, 255, 0.38);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(10, 16, 25, 0.86);
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(46, 229, 255, 0.08) inset;
}

.hero-feature-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.hero-feature-content {
  padding: 0.85rem;
}

.hero-feature-label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-2);
}

.hero-feature-meta {
  margin: 0.3rem 0 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
}

#hero-feature-cta {
  width: 100%;
  min-height: 42px;
}

.hero-stats {
  margin-top: 0.3rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stats article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 0.58rem;
  background: rgba(12, 19, 29, 0.68);
  box-shadow: var(--shadow);
}

.stat-value {
  display: block;
  font-size: clamp(0.95rem, 5vw, 1.35rem);
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
  font-size: 0.72rem;
}

.section {
  padding: 3.9rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(14, 22, 33, 0.74), rgba(14, 22, 33, 0.45));
}

.section-head {
  margin-bottom: 1rem;
}

.event-filter-row {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.45rem;
  margin-bottom: 0.75rem;
  scrollbar-width: thin;
}

.event-filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
}

.event-filter-chip.is-active {
  color: #05141a;
  background: var(--primary-2);
  border-color: rgba(46, 229, 255, 0.8);
}

.event-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 1fr);
  gap: 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
}

.event-card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.event-card.is-hidden {
  display: none;
}

.event-card img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}

.event-body {
  padding: 0.85rem;
}

.event-date,
.event-venue {
  color: var(--muted);
}

.event-date {
  font-size: 0.85rem;
}

.event-price {
  margin-top: 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.event-actions {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.party-shots-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(72%, 1fr);
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
}

.shot-card {
  scroll-snap-align: start;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.shot-card:hover img {
  transform: scale(1.04);
}

.shot-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 0.8rem;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 13, 0.85));
}

.shot-overlay p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.about-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: rgba(15, 23, 34, 0.72);
}

.about-panel p {
  color: var(--muted);
}

.location-list {
  display: grid;
  gap: 0.7rem;
}

.location-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.88rem;
  background: var(--surface);
}

.location-card p {
  margin: 0 0 0.55rem;
  color: var(--muted);
}

.location-card a {
  color: var(--primary-2);
  font-weight: 700;
  font-size: 0.9rem;
}

.shop-grid {
  display: grid;
  gap: 0.7rem;
}

.shop-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.shop-card-featured {
  border-color: rgba(46, 229, 255, 0.75);
}

.shop-tier {
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.shop-price {
  margin: 0.4rem 0 0.95rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.checkout-status {
  min-height: 1.4rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.sound-links {
  display: grid;
  gap: 0.6rem;
}

.sound-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.78rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
}

.sound-links a:hover {
  color: var(--primary-2);
  border-color: rgba(46, 229, 255, 0.62);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 6.5rem;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-wrap p {
  color: var(--muted);
  margin: 0;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--primary-2);
}

.mobile-dock {
  position: fixed;
  left: 50%;
  bottom: 0.6rem;
  transform: translateX(-50%);
  z-index: 60;
  width: min(460px, calc(100% - 1rem));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.35rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.32rem;
  background: rgba(9, 14, 22, 0.94);
  backdrop-filter: blur(10px);
}

.mobile-dock a,
.mobile-dock button {
  border: 0;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  border-radius: 9px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.mobile-dock a:active,
.mobile-dock button:active {
  background: rgba(46, 229, 255, 0.18);
  color: var(--primary-2);
}

.chat-toggle {
  position: fixed;
  right: 0.9rem;
  bottom: 4.9rem;
  z-index: 61;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: #04141a;
  font-weight: 700;
  background: linear-gradient(130deg, var(--primary-2), var(--primary));
  box-shadow: 0 12px 25px rgba(7, 182, 213, 0.45);
  cursor: pointer;
}

.chat-panel {
  position: fixed;
  right: 0.6rem;
  bottom: 8.1rem;
  z-index: 62;
  width: min(360px, calc(100vw - 1rem));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(8, 13, 20, 0.98);
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 0.84rem;
  border-bottom: 1px solid var(--line);
}

.chat-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.chat-header button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.chat-log {
  max-height: 260px;
  overflow-y: auto;
  padding: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.chat-msg {
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  font-size: 0.9rem;
}

.chat-msg.user {
  justify-self: end;
  background: rgba(46, 229, 255, 0.18);
  border: 1px solid rgba(46, 229, 255, 0.24);
}

.chat-msg.bot {
  justify-self: start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 0.8rem 0.72rem;
}

.chat-quick button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  padding: 0.34rem 0.6rem;
  font-size: 0.78rem;
  cursor: pointer;
}

.chat-form {
  border-top: 1px solid var(--line);
  padding: 0.72rem 0.8rem 0.85rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
}

.chat-form input {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0 0.6rem;
}

.chat-form button {
  min-height: 40px;
  border: 0;
  border-radius: 9px;
  background: var(--primary-2);
  color: #05212a;
  font-weight: 700;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

.state-page {
  background:
    radial-gradient(circle at 10% 10%, rgba(7, 182, 213, 0.28), transparent 30%),
    linear-gradient(160deg, #060a11 0%, #05080d 100%);
}

.state-main {
  min-height: 100svh;
  display: grid;
  align-items: center;
}

.state-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(10, 15, 23, 0.88);
  padding: clamp(1.1rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

.state-card h1 {
  font-size: clamp(2.2rem, 10vw, 4.6rem);
}

.state-actions {
  margin-top: 1rem;
}

@media (min-width: 760px) {
  .container {
    width: min(1180px, calc(100% - 2rem));
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto auto;
    gap: 0.95rem;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    background: transparent;
    padding: 0;
    justify-self: center;
  }

  .nav-list {
    display: flex;
    gap: 1rem;
  }

  .btn-nav {
    display: inline-flex;
    font-size: 0.88rem;
  }

  .hero-content {
    max-width: 100%;
    padding: 6rem 0 3rem;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: end;
    gap: 1rem;
  }

  .hero-content > .kicker,
  .hero-content > h1,
  .hero-content > .subline,
  .hero-content > .hero-actions,
  .hero-content > .hero-stats {
    grid-column: 1;
  }

  .hero-feature-card {
    grid-column: 2;
    grid-row: 1 / span 5;
    align-self: stretch;
    display: grid;
    grid-template-rows: 1fr auto;
    animation: heroCardFloat 8s ease-in-out infinite;
  }

  .hero-feature-card img {
    height: 100%;
    min-height: 250px;
  }

  .hero-stats article {
    padding: 0.78rem 0.7rem;
  }

  .event-list {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: unset;
    overflow: visible;
  }

  .party-shots-track {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-columns: unset;
    overflow: visible;
  }

  .shot-card {
    min-height: 320px;
  }

  .location-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sound-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .mobile-dock {
    display: none;
  }

  .chat-toggle {
    bottom: 1rem;
  }

  .chat-panel {
    bottom: 4.7rem;
  }
}

@media (min-width: 980px) {
  .event-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .party-shots-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@keyframes driftA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-18px, 24px, 0) scale(1.07);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(22px, -16px, 0) scale(1.08);
  }
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
