:root {
  --ink: #120c08;
  --ink-soft: #2a1c12;
  --paper: #f4e4c8;
  --cream: #fff4e4;
  --foam: #fffaf2;
  --ginger: #e37a28;
  --ginger-deep: #c45a10;
  --gold: #f0c14b;
  --stage: #100c0a;
  --stage-mid: #1c140f;
  --chart: #3ecf8e;
  --space: #071018;
  --space-2: #122034;
  --line: 4px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--stage);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

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

/* Stage atmosphere — decent, not busy */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 50% -10%, rgba(240, 193, 75, 0.22), transparent 58%),
    radial-gradient(ellipse 50% 40% at 8% 70%, rgba(227, 122, 40, 0.12), transparent 55%),
    radial-gradient(ellipse 45% 35% at 92% 30%, rgba(62, 207, 142, 0.08), transparent 50%),
    linear-gradient(180deg, #16100c 0%, #100c0a 45%, #0b0908 100%);
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: radial-gradient(#f0c14b 1.1px, transparent 1.1px);
  background-size: 7px 7px;
}

/* Perspective concert floor (background only — sections stay upright) */
.perspective-floor {
  position: fixed;
  left: -20%;
  right: -20%;
  bottom: -18vh;
  height: 48vh;
  z-index: 0;
  pointer-events: none;
  transform: perspective(520px) rotateX(62deg);
  transform-origin: center bottom;
  background:
    repeating-linear-gradient(
      to right,
      rgba(240, 193, 75, 0.07) 0 2px,
      transparent 2px 72px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(240, 193, 75, 0.08) 0 2px,
      transparent 2px 54px
    );
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 85%);
}

.page {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.display {
  font-family: "Bangers", cursive;
  letter-spacing: 0.04em;
  line-height: 0.92;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ginger-deep);
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(16, 12, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 4px solid var(--gold);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  padding: 3px;
  background: var(--cream);
  border: 3px solid var(--gold);
  border-radius: 12px;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.brand-name {
  font-size: 1.55rem;
  color: var(--cream);
}

.brand-sym {
  display: block;
  margin-top: 2px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:not(.btn) {
  color: var(--paper);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 8px 12px;
}

.nav-links a:not(.btn):hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 3px solid var(--gold);
  background: var(--ink);
  color: var(--gold);
  border-radius: 10px;
  font-size: 1.4rem;
  cursor: pointer;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-ginger {
  background: var(--ginger);
  color: #fff;
  border-color: var(--ink);
}

.btn-cream {
  background: var(--cream);
  color: var(--ink);
}

.btn-ink {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
  box-shadow: none;
}

.btn-lg {
  padding: 14px 22px;
  font-size: 1.02rem;
}

/* HERO — stage program spread */
.hero {
  padding: 42px 0 28px;
}

.hero-board {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--gold);
  border: 3px solid var(--gold);
  border-radius: 999px;
  padding: 6px 12px 6px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(255, 77, 77, 0);
  }
}

.hero-title {
  margin: 16px 0 8px;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  color: var(--cream);
  text-shadow: 4px 4px 0 #000, 0 0 28px rgba(227, 122, 40, 0.35);
}

.hero-symbol {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.speech {
  position: relative;
  background: var(--foam);
  border: var(--line);
  border-radius: 22px 22px 22px 6px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

.speech::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -16px;
  width: 22px;
  height: 22px;
  background: var(--foam);
  border-right: var(--line);
  border-bottom: var(--line);
  transform: rotate(45deg);
}

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

.ca-bar {
  margin-top: 22px;
  display: flex;
  align-items: stretch;
  background: var(--ink);
  border: 3px solid var(--gold);
  border-radius: 14px;
  overflow: hidden;
}

.ca-label {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ca-value {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  color: var(--cream);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-copy {
  border: 0;
  background: var(--ginger);
  color: #fff;
  padding: 0 16px;
  font-weight: 800;
  cursor: pointer;
}

.hero-art {
  position: relative;
}

.spotlight {
  position: absolute;
  inset: -8% -6% auto;
  height: 70%;
  background: radial-gradient(ellipse at 50% 40%, rgba(240, 193, 75, 0.38), transparent 68%);
  pointer-events: none;
}

.photo-frame {
  position: relative;
  background: var(--cream);
  border: 5px solid var(--ink);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 12px 12px 0 #000, 0 0 0 8px var(--gold);
}

.photo-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  background: #1a120c;
}

.sticker {
  position: absolute;
  z-index: 2;
  background: var(--ginger);
  color: #fff;
  border: 3px solid var(--ink);
  font-family: "Bangers", cursive;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  box-shadow: var(--shadow-sm);
}

.sticker-tl {
  top: -14px;
  left: 18px;
  font-size: 1.05rem;
}

.sticker-br {
  right: 16px;
  bottom: -14px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.95rem;
}

/* ABOUT — cream newsprint spread */
.about {
  padding: 28px 0 64px;
}

.paper-sheet {
  background: var(--paper);
  border: 5px solid var(--ink);
  border-radius: 24px;
  box-shadow: 0 0 0 8px rgba(240, 193, 75, 0.18), var(--shadow);
  overflow: hidden;
}

.sheet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 14px;
  border-bottom: 4px dashed var(--ink);
}

.sheet-title {
  margin: 8px 0 0;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.seal {
  width: 86px;
  height: 86px;
  padding: 4px;
  background: var(--foam);
  border: 4px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.banner-frame {
  margin: 18px 22px 0;
  background: #0d0a08;
  border: 4px solid var(--ink);
  border-radius: 14px;
  padding: 8px;
}

.banner-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 24px;
  align-items: start;
}

.desk-frame {
  background: var(--foam);
  border: 4px solid var(--ink);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}

.desk-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.caption {
  margin: 10px 4px 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ginger-deep);
}

.about-copy h3 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.about-copy p {
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 700;
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.fact {
  background: var(--ink);
  color: var(--cream);
  border-radius: 12px;
  padding: 12px 14px;
}

.fact span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 800;
}

.fact strong {
  font-size: 1.02rem;
}

/* HOW TO BUY — vinyl inner sleeve / tour setlist */
.howto {
  padding: 20px 0 72px;
}

.howto-head {
  text-align: center;
  margin-bottom: 28px;
}

.howto-head h2 {
  margin: 8px 0 10px;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  color: var(--cream);
  text-shadow: 3px 3px 0 #000;
}

.howto-head p {
  margin: 0 auto;
  max-width: 560px;
  color: #e8d3b4;
  font-weight: 700;
}

.setlist {
  list-style: none;
  margin: 0;
  padding: 22px;
  background: linear-gradient(180deg, #1a120c, #0e0b09);
  border: 5px solid var(--gold);
  border-radius: 28px;
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.35);
}

.track {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 10px;
  border-bottom: 2px solid rgba(240, 193, 75, 0.18);
}

.track:last-child {
  border-bottom: 0;
}

.track-no {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-family: "Bangers", cursive;
  font-size: 2rem;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--cream);
  border-radius: 50%;
}

.track h3 {
  margin: 0 0 4px;
  color: var(--cream);
  font-size: 1.35rem;
}

.track p {
  margin: 0;
  color: #d9c4a6;
  font-weight: 700;
}

.eq {
  width: 84px;
  height: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 4px;
}

.eq span {
  width: 7px;
  background: var(--ginger);
  border-radius: 3px 3px 0 0;
  animation: eq 1.1s ease-in-out infinite;
}

.eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq span:nth-child(2) { height: 80%; animation-delay: 0.1s; }
.eq span:nth-child(3) { height: 55%; animation-delay: 0.2s; }
.eq span:nth-child(4) { height: 95%; animation-delay: 0.15s; }
.eq span:nth-child(5) { height: 35%; animation-delay: 0.25s; }

@keyframes eq {
  50% { transform: scaleY(0.45); }
}

/* COMMUNITY — lunar lounge */
.community {
  padding: 10px 0 80px;
}

.moon-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  background: linear-gradient(160deg, #102038, #071018 55%, #1a120c);
  border: 5px solid var(--cream);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.moon-copy {
  padding: 36px 32px;
  color: var(--cream);
}

.moon-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.moon-copy p {
  margin: 0 0 22px;
  font-weight: 700;
  line-height: 1.6;
  color: #d7e4f2;
}

.pass-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.moon-art {
  background: #05080e;
  padding: 18px;
  display: flex;
  align-items: center;
}

.moon-art .photo-frame {
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.65), 0 0 0 6px #3ecf8e;
}

/* FOOTER */
.footer {
  border-top: 4px solid var(--gold);
  padding: 22px 0 28px;
  color: #cbb79a;
  text-align: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid var(--gold);
}

.footer small {
  display: block;
  font-weight: 700;
}

.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--gold);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 800;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 920px) {
  .hero-board,
  .about-grid,
  .moon-card {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--ink);
    border: 3px solid var(--gold);
    border-radius: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .track {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .eq {
    display: none;
  }

  .sheet-head {
    align-items: center;
  }

  .hero {
    padding-top: 24px;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 1.2rem;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .ca-label {
    display: none;
  }
}
