/* =========================================================
   01. ROOT / THEME
   ========================================================= */
:root {
  --bg: #040404;
  --bg-soft: #0a0a0d;
  --bg-elevated: #111116;
  --panel: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: #c8c8d0;
  --green-glow: rgba(56, 255, 163, 0.18);
  --pink-glow: rgba(214, 92, 255, 0.16);
  --red-glow: rgba(255, 64, 64, 0.12);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.26);
}

/* =========================================================
   02. RESET / BASE
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(circle at 8% 10%, rgba(56, 255, 163, 0.06), transparent 18%),
    radial-gradient(circle at 88% 12%, rgba(214, 92, 255, 0.06), transparent 18%),
    radial-gradient(circle at 50% 70%, rgba(255, 64, 64, 0.03), transparent 20%),
    var(--bg);
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.narrow {
  max-width: 920px;
}

h1,
h2,
h3,
.eyebrow,
.nav a,
.btn,
.badge,
.tour-tag,
.scroll-cue,
.store-pill,
.hero-kicker,
.members-title {
  font-family: "Cinzel", serif;
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 0.7px, transparent 0.8px);
  background-size: 6px 6px;
  mix-blend-mode: soft-light;
}

.site-aurora {
  position: fixed;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.5;
  z-index: 0;
}

.site-aurora-left {
  top: 12%;
  left: -5%;
  width: 280px;
  height: 280px;
  background: var(--green-glow);
}

.site-aurora-right {
  right: -4%;
  bottom: 8%;
  width: 320px;
  height: 320px;
  background: var(--pink-glow);
}

/* =========================================================
   03. INTRO
   ========================================================= */
.intro-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introFadeOut 0.8s ease forwards;
  animation-delay: 2.8s;
}

.intro-logo {
  width: min(70vw, 620px);
  opacity: 0;
  transform: scale(0.3) rotate(-220deg);
  animation:
    introSpinIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    introGlow 1.2s ease-in-out 1.4s 2;
}

@keyframes introSpinIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-220deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.05) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes introGlow {
  0%,
  100% {
    filter:
      drop-shadow(0 0 20px rgba(56, 255, 163, 0.2))
      drop-shadow(0 0 15px rgba(214, 92, 255, 0.2));
  }
  50% {
    filter:
      drop-shadow(0 0 35px rgba(56, 255, 163, 0.35))
      drop-shadow(0 0 30px rgba(214, 92, 255, 0.3));
  }
}

@keyframes introFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* =========================================================
   04. HEADER / NAV
   ========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 4, 4, 0.22);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  background: rgba(4, 4, 4, 0.82);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  width: auto;
  height: 46px;
  max-width: 190px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  position: relative;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: opacity 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 15px;
  right: 15px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { top: 25px; }
.menu-toggle span:nth-child(3) { top: 33px; }

/* =========================================================
   05. GENERIC SECTION STYLES
   ========================================================= */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading-left {
  max-width: 800px;
}

.section-heading.center {
  text-align: center;
}

.section h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.02;
  margin-bottom: 14px;
}

.section p {
  color: var(--muted);
}

.eyebrow {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.section-intro {
  max-width: 760px;
}

/* =========================================================
   06. PANEL SYSTEM
   ========================================================= */
.panel {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.008) 100%),
    var(--bg-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-angled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, rgba(56,255,163,0.75), rgba(214,92,255,0.75), transparent);
  z-index: 2;
}

.panel-glow {
  position: absolute;
  inset: auto auto 0 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(56,255,163,0.14) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* =========================================================
   07. HERO
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  z-index: 1;
  background: #000;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.52)),
    radial-gradient(circle at center, transparent 28%, rgba(0, 0, 0, 0.48) 100%);
  z-index: 2;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.65) 0%, transparent 18%, transparent 82%, rgba(0,0,0,0.65) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 22%, transparent 78%, rgba(0,0,0,0.55) 100%);
}

.hero-gridlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 112px 20px 40px;
}

.hero-logo {
  width: min(56vw, 500px);
  max-width: 500px;
  height: auto;
  transform: translateY(48px);
  filter:
    drop-shadow(0 14px 30px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 34px rgba(56, 255, 163, 0.14))
    drop-shadow(0 0 24px rgba(214, 92, 255, 0.12));
  transition: transform 0.25s ease;
}

.hero-copy {
  max-width: 840px;
}

.hero-kicker {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: #f4f4f4;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: #ededf2;
}

.hero-buttons,
.section-buttons,
.hero-links,
.footer-links,
.feature-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-buttons,
.section-buttons {
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.hero-links a,
.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.36);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-links a:hover,
.footer-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.hero-status {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  width: min(980px, 100%);
  margin-top: 8px;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.hero-status-item {
  display: grid;
  gap: 4px;
  text-align: left;
}

.hero-status-item .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f3f3f3;
}

.hero-status-item .value {
  color: #d7d7de;
  font-size: 0.95rem;
}

.hero-status-link {
  justify-self: end;
  text-decoration: underline;
  font-weight: 600;
}

.scroll-cue {
  margin-top: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

/* =========================================================
   08. BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 16px 30px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(56, 255, 163, 0.08),
    0 0 15px rgba(214, 92, 255, 0.08);
}

.btn-solid {
  background: linear-gradient(180deg, #ffffff 0%, #dadada 100%);
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

.btn-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.hero-buttons .btn,
.section-buttons .btn {
  flex: 0 1 auto;
}

/* =========================================================
   09. META TAGS / PILLS
   ========================================================= */
.feature-meta {
  margin: 22px 0 8px;
}

.feature-meta span,
.store-pill,
.badge,
.tour-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.02);
}

.store-pill.active {
  background: #fff;
  color: #000;
}

.badge {
  width: fit-content;
}

.tour-tag.sold-out {
  opacity: 0.65;
}

/* =========================================================
   10. PREMIUM IDENTITY STRIP
   ========================================================= */
.press-strip {
  padding-top: 54px;
  padding-bottom: 34px;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.identity-card {
  padding: 30px 26px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.identity-card h3 {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.identity-card p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 250px;
  margin: 0 auto;
}

.identity-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(56,255,163,0.035), rgba(214,92,255,0.02)),
    var(--bg-soft);
}

/* =========================================================
   11. RELEASE / FEATURE LAYOUT
   ========================================================= */
.release-layout,
.feature-grid,
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.release-copy,
.release-frame,
.content-box,
.card,
.newsletter,
.fan-club {
  padding: 30px;
}

.release-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: #fff;
  margin-bottom: 12px;
}

.release-copy h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
}

.image-wrap {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.008) 100%),
    var(--bg-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.neon-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, var(--green-glow), transparent 30%),
    radial-gradient(circle at bottom right, var(--pink-glow), transparent 30%),
    radial-gradient(circle at center, var(--red-glow), transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.section-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.image-wrap:hover .section-image {
  transform: scale(1.04);
  filter: brightness(1.03);
}

.content-box p,
.release-copy p {
  margin-bottom: 22px;
}

.release-frame iframe {
  width: 100%;
  min-height: 520px;
  height: 100%;
  border: none;
  border-radius: 14px;
}

.release-art {
  margin: 22px 0 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.release-art img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.release-art:hover img {
  transform: scale(1.02);
  filter: brightness(1.03);
}

.release-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 12px;
  margin-top: 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.countdown-item {
  padding: 14px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.countdown-number {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
  font-family: "Cinzel", serif;
}

.countdown-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.countdown-title {
  text-align: center;
  margin-top: 10px;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.countdown-sub {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .release-countdown {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* RELEASE VIDEO PREVIEW */
.release-video-preview {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.release-video-preview img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.release-video-preview:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: white;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(3px);
  transition: all 0.3s ease;
}

.release-video-preview:hover .play-button {
  background: rgba(0, 0, 0, 0.55);
}

.play-button::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  animation: pulse 2.5s infinite;
}

.release-frame {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.release-video-header {
  margin-bottom: 18px;
}

.release-video-label {
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: #fff;
}

.release-video-header h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 10px;
}

.release-video-header p {
  color: var(--muted);
}

.release-video-preview {
  margin-top: 8px;
}

.release-video-preview img {
  width: 100%;
  height: 420px;
  min-height: 0;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.release-video-cta {
  margin-top: 18px;
  text-align: center;
}

.release-video-cta a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fff;

  opacity: 0.7;
  position: relative;
  display: inline-block;

  transition: all 0.3s ease;
}

/* subtle underline effect */
.release-video-cta a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.4);

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.release-video-cta a:hover {
  opacity: 1;
  letter-spacing: 0.22em;
}

.release-video-cta a:hover::after {
  transform: scaleX(1);
}



@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* =========================================================
   12. TOUR
   ========================================================= */
.tour-highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  margin-bottom: 18px;
}

.tour-highlight-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  margin-bottom: 10px;
  color: #fff;
}

.tour-highlight h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tour-highlight p {
  color: var(--muted);
}

.tour-list {
  display: grid;
  gap: 18px;
  margin-top: 14px;
}

.tour-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
}

.tour-image {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  background: #050505;
  padding: 8px;
}

.tour-info {
  min-width: 0;
  align-self: center;
}

.tour-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  line-height: 1.15;
}

.tour-info p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.tour-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tour-row {
  display: grid;
  grid-template-columns: 90px minmax(160px, 1fr) minmax(180px, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.008) 100%),
    var(--bg-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.tour-date,
.tour-city,
.tour-venue,
.tour-tag {
  min-width: 0;
}

.tour-city,
.tour-venue {
  overflow-wrap: anywhere;
}

.tour-row .btn {
  min-width: 160px;
  width: 160px;
  min-height: 48px;
  padding: 12px 16px;
  font-size: 0.76rem;
}

.tour-card .btn {
  min-width: 180px;
  width: 180px;
  min-height: 48px;
  padding: 12px 18px;
  font-size: 0.76rem;
  align-self: center;
  justify-self: end;
}

.tour-row:hover,
.tour-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background:
    linear-gradient(90deg, rgba(56,255,163,0.04), rgba(214,92,255,0.04)),
    var(--bg-soft);
}

.tour-date {
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}

.tour-city,
.tour-venue {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #d0d0d8;
}

.tour-tag.free {
  border-color: rgba(56,255,163,0.4);
  color: #7affc7;
}

/* =========================================================
   13. UPDATES
   ========================================================= */
.updates-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  margin-top: 24px;
}

.update-feature {
  padding: 0;
}

.update-feature-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.update-feature-body {
  padding: 28px;
}

.update-feature-body h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 12px;
}

.update-feature-body p {
  margin-bottom: 18px;
}

.update-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.card {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(56,255,163,0.035), rgba(214,92,255,0.02)),
    var(--bg-soft);
}

.card h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* =========================================================
   14. MEDIA
   ========================================================= */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.media-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease, filter 0.3s ease;
}

.media-grid img:hover {
  transform: scale(1.03);
  opacity: 0.96;
  filter: brightness(1.04);
  border-color: rgba(255, 255, 255, 0.2);
}

/* =========================================================
   15. STORE
   ========================================================= */
.store-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.store-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
}

.store-image {
  width: 100%;
  height: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 12px 0 16px;
  background: #000;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.store-card:hover .store-image {
  transform: scale(1.03);
  filter: brightness(1.03);
}

.price {
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.product-meta {
  margin-bottom: 14px;
  color: #a9a9b2;
}

.store-card .btn {
  margin-top: auto;
}

/* =========================
   STORE 
========================= */

.store-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.product-note {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 6px;
}

/* buttons + venmo layout */
.store-actions {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* venmo styling */
.venmo-link {
  display: block;
  font-size: 0.7rem;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: 0.3s;
}

.venmo-link:hover {
  color: #fff;
}

/* make buttons consistent */
.store-card .btn {
  width: 100%;
}

.store-size-picker {
  margin-top: 12px;
  margin-bottom: 10px;
}

.store-size-picker label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
}

.store-size-picker select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  background: #0d0d11;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.store-size-picker select:focus {
  border-color: rgba(255,255,255,0.3);
}

/* =========================
   STORE SIZE SELECT
========================= */

.store-size-picker {
  margin-top: 12px;
  margin-bottom: 10px;
}

.store-size-picker label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
}

.store-size-picker select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  background: #0d0d11;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  outline: none;
}

.store-size-picker select:focus {
  border-color: rgba(255,255,255,0.3);
}

/* =========================
   MERCH ORDER FORM
========================= */
.merch-order {
  padding-top: 70px;
}

.merch-order-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.merch-order-form {
  max-width: 860px;
  margin: 0 auto;
  padding: 30px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008)),
    var(--bg-soft);
  box-shadow: var(--shadow);
}

.merch-order-form input,
.merch-order-form select,
.merch-order-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  outline: none;
}

.merch-order-form textarea {
  min-height: 120px;
  resize: vertical;
}

.address-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.merch-order-form .btn {
  width: 100%;
  margin-top: 8px;
}

.merch-order-form .product-note {
  text-align: center;
  margin-top: 4px;
}

.order-card {
  max-width: 860px;
  width: min(860px, calc(100% - 32px));
}

.order-card .merch-order-form {
  max-width: none;
  width: 100%;
}

.order-card input,
.order-card select,
.order-card textarea {
  font-size: 1rem;
}

.address-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 14px;
}

.order-success {
  display: none;
  text-align: center;
  padding-top: 18px;
}

.order-success h2 {
  margin-bottom: 10px;
  text-transform: uppercase;
}

.order-success p {
  color: var(--muted);
  margin-bottom: 18px;
}

@media (max-width: 700px) {
  .address-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   16. ABOUT
   ========================================================= */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content p {
  margin-bottom: 18px;
}

.about-short {
  max-width: none;
  margin: 0 0 28px;
  font-size: 1.03rem;
}

.about-full {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  text-align: left;
}

.band-members {
  margin-top: 0;
  text-align: left;
}

.members-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.members-title {
  margin-bottom: 0;
}

.members-order {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.member-card {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  transition: all 0.25s ease;
}

.member-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.member-card span {
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.member-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

/* =========================================================
   17. NEWSLETTER / FAN CLUB
   ========================================================= */
.footer-contact,
.fan-club-section {
  display: grid;
}

.newsletter,
.fan-club {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.newsletter-form input {
  min-width: 320px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
  color: #fff;
  outline: none;
}

/* FAN CLUB HIGHLIGHT EFFECT */

.fanclub-highlight {
  animation: fanGlow 1.8s ease;
}

.fanclub-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.fanclub-perks span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.02);
}

@keyframes fanGlow {
  0% {
    box-shadow: 0 0 0 rgba(56,255,163,0);
  }

  30% {
    box-shadow:
      0 0 40px rgba(56,255,163,0.25),
      0 0 80px rgba(214,92,255,0.18);
  }

  100% {
    box-shadow: 0 0 0 rgba(56,255,163,0);
  }
}

/* =========================================================
   EPK Page
   ========================================================= */
   .epk-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(56, 255, 163, 0.08), transparent 25%),
    radial-gradient(circle at top right, rgba(214, 92, 255, 0.08), transparent 25%),
    rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
}

.epk-gate-card {
  width: min(100%, 520px);
  padding: 36px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    #0a0a0d;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.epk-gate-logo {
  width: auto;
  height: 56px;
  max-width: 220px;
  margin: 0 auto 18px;
}

.epk-gate-card h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

.epk-gate-text {
  margin-bottom: 20px;
  color: var(--muted);
}

.epk-gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.epk-gate-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
  color: #fff;
  outline: none;
}

.epk-gate-error {
  min-height: 20px;
  margin-top: 12px;
  color: #ff8b8b;
  font-size: 0.9rem;
}

/* =========================================================
   18. FOOTER
   ========================================================= */
.footer {
  text-align: center;
  padding: 48px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: auto;
  height: 42px;
  max-width: 180px;
  margin: 0 auto 16px;
}

.footer-links {
  margin-bottom: 16px;
}

.footer p {
  color: #bfbfc7;
  margin-bottom: 6px;
}

.site-credit {
  margin-top: 14px;
  font-size: 0.92rem;
  color: #9d9da7;
}

.site-credit a {
  color: #fff;
}

/* =========================================================
   19. REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   20. RESPONSIVE - LARGE TABLET / SMALL LAPTOP
   ========================================================= */
@media (max-width: 1100px) {
  .tour-row {
    grid-template-columns: 90px 1fr 1fr;
  }

  .tour-tag {
    justify-self: start;
  }

  .tour-row .btn {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .hero-status {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero-status-link {
    justify-self: start;
  }
}

/* =========================================================
   21. RESPONSIVE - PHONES / TOUR STACK
   ========================================================= */
@media (max-width: 700px) {
  .tour-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .tour-image {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .tour-card .btn {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}

/* =========================================================
   22. RESPONSIVE - TABLET
   ========================================================= */
@media (max-width: 980px) {
  .identity-grid,
  .release-layout,
  .feature-grid,
  .two-col,
  .updates-layout,
  .newsletter,
  .fan-club,
  .card-grid,
  .media-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .update-side-grid {
    grid-template-columns: 1fr;
  }

  .release-frame iframe,
  .release-video-preview img {
    height: 360px;
    min-height: 0;
  }

  .newsletter-form input {
    min-width: 0;
    width: 100%;
  }

  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   23. RESPONSIVE - MOBILE NAV
   ========================================================= */
@media (max-width: 780px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: #0a0a0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
  }

  .nav.show {
    display: flex;
  }

  .nav a::after {
    display: none;
  }
}

/* =========================================================
   24. RESPONSIVE - MOBILE
   ========================================================= */
@media (max-width: 640px) {
  .hero-content {
    padding: 110px 20px 30px;
  }

  .hero-logo {
    width: min(76vw, 400px);
    max-width: 400px;
    transform: translateY(22px);
  }

  .hero-links,
  .footer-links,
  .feature-meta,
  .newsletter-form,
  .store-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons,
  .section-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .feature-meta {
    margin: 16px 0;
    gap: 10px;
  }

  .feature-meta span {
    width: 100%;
  }

  .hero-status {
    padding: 16px;
    border-radius: 20px;
  }

  .section {
    padding: 80px 0;
  }

  .identity-card,
  .release-copy,
  .release-frame,
  .content-box,
  .card,
  .store-card,
  .newsletter,
  .fan-club,
  .update-feature-body,
  .tour-highlight {
    padding: 24px;
  }

  .about-full {
    text-align: left;
  }

  .release-frame iframe,
  .release-video-preview img {
    height: 240px;
    min-height: 0;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .members-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .address-row {
    grid-template-columns: 1fr;
  }

  .merch-order-form {
    padding: 22px;
  }
}

/* =========================
   JOIN / QR LANDING PAGE
========================= */

.join-page {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.join-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 20%, rgba(214, 92, 255, 0.15), transparent),
    radial-gradient(circle at 70% 80%, rgba(47, 255, 154, 0.12), transparent);
  z-index: 0;
}

.join-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  flex-direction: column;
}

.join-logo {
  width: 180px;
  margin-bottom: 20px;
  filter:
    drop-shadow(0 0 20px rgba(47,255,154,0.2))
    drop-shadow(0 0 30px rgba(214,92,255,0.2));
}

.join-card {
  background: rgba(10,10,15,0.75);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 40px 30px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.join-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-bottom: 10px;
}

.join-subtext {
  opacity: 0.75;
  margin-bottom: 25px;
}

.join-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  background: #0f0f14;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  outline: none;
}

.join-form input:focus {
  border-color: rgba(47,255,154,0.5);
}

.join-success {
  display: none;
}

.join-success h2 {
  margin-bottom: 10px;
}

.join-success .small {
  font-size: 12px;
  opacity: 0.6;
}

.join-skip {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.5;
  transition: 0.3s;
}

.join-skip:hover {
  opacity: 1;
}

/* FORCE ORDER PAGE FULL WIDTH */
.join-card.order-card {
  max-width: 900px !important;
  width: min(900px, calc(100vw - 32px)) !important;
  text-align: left;
}

/* make form feel wider inside */
.order-card .merch-order-form {
  padding: 40px;
}

/* improve spacing */
.order-card h1 {
  margin-bottom: 14px;
}

.order-card .join-subtext {
  margin-bottom: 32px;
}

/* make inputs feel less cramped */
.order-card input,
.order-card select,
.order-card textarea {
  padding: 16px 18px;
}

/* better address layout */
.order-card .address-row {
  grid-template-columns: 1.5fr 0.8fr 0.9fr;
}

/* =========================
   SITE BANNER
========================= */
.site-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;


  padding: 6px 12px; /* 👈 reduced from ~10px */
  font-size: 0.65rem; /* 👈 smaller text */
  letter-spacing: 0.06em;

  background: linear-gradient(90deg, #d65cff, #38ffa3);
  color: #000; /* better contrast with neon bg */

  text-align: center;
  text-transform: uppercase;

  z-index: 9999;
}

/* =========================================================
   FINAL MOBILE RESPONSIVE OVERRIDES
   ========================================================= */

@media (max-width: 640px) {
  body {
    padding-top: 0;
  }

  .site-banner {
    padding: 5px 10px;
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .header-inner {
    min-height: 72px;
  }

  .nav-logo {
    height: 34px;
    max-width: 140px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    min-height: 100svh;
    padding: 92px 18px 28px;
    gap: 14px;
  }

  .hero-logo {
    width: min(82vw, 360px);
    transform: translateY(18px);
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-status {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section {
    padding: 68px 0;
  }

  .section h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .container {
    width: min(100% - 24px, 1240px);
  }

  .card-grid,
  .identity-grid,
  .media-grid,
  .release-layout,
  .about-layout,
  .updates-layout {
    grid-template-columns: 1fr;
  }

  .store-card {
    padding: 22px;
  }

  .store-image {
    height: 260px;
  }

  .tour-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .tour-image {
    max-height: none;
  }

  .tour-card .btn,
  .btn {
    width: 100%;
    min-width: 0;
  }

  .release-video-preview img {
    height: 260px;
  }

  .release-countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter,
  .fan-club {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
    min-width: 0;
  }

  .fanclub-perks {
    flex-direction: column;
  }

  .fanclub-perks span {
    width: 100%;
  }

  .join-wrapper {
    min-height: 100svh;
    padding: 18px;
  }

  .join-logo {
    width: 150px;
  }

  .join-card {
    width: 100%;
    padding: 28px 20px;
  }

  .join-card.order-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .order-card .merch-order-form {
    padding: 20px;
  }

  .address-row {
    grid-template-columns: 1fr !important;
  }

  .order-payment-links {
    flex-direction: column;
    gap: 12px;
  }
}