:root {
  --ink: #07051a;
  --ink-2: #120a2c;
  --navy: #0b0724;
  --magenta: #ff2bd6;
  --cyan: #00f0ff;
  --sunset: #ff7a18;
  --cream: #f4ecff;
  --muted: #b7a8d4;
  --live: #39ff88;
  --display: "Audiowide", "Arial Black", sans-serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --kick: "Orbitron", sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--cream);
  background: var(--ink);
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--magenta); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--magenta);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.site-header {
  background: rgba(7, 5, 26, 0.92);
  border-bottom: 2px solid var(--cyan);
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.28);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.7rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--cream);
  min-width: 0;
}
.brand-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1.12;
  text-shadow: 0 0 12px rgba(255, 43, 214, 0.55);
}
.brand-name span {
  display: block;
  font-family: var(--kick);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  align-items: center;
  font-family: var(--kick);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav a { color: var(--cream); text-decoration: none; }
.nav a:hover { color: var(--cyan); }
.nav a[aria-current="page"] { color: var(--magenta); }

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.15rem;
}

.hero {
  position: relative;
  padding: 2.4rem 0 2.6rem;
  background:
    linear-gradient(180deg, rgba(7, 5, 26, 0.35) 0%, rgba(7, 5, 26, 0.72) 70%, var(--ink) 100%),
    url("/assets/brand/wfp-80s-city.jpg") center / cover no-repeat;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(0, 0, 0, 0.14) 2px 3px
  );
  background-size: 100% 3px;
  opacity: 0.45;
  z-index: 0;
  animation: scanCrawl 5s linear infinite;
}
@keyframes scanCrawl {
  to { background-position: 0 3px; }
}
.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}
@media (min-width: 820px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 2rem; }
}

@media (max-width: 819px) {
  .hero {
    padding: 0 0 1.5rem !important;
  }
  .hero > .container.hero-grid {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding-inline: 0;
  }
  .pennant-wrap {
    order: -1;
    width: 100%;
    margin: 0;
  }
  .logo-stage {
    width: 100%;
    max-width: none;
    border-radius: 0;
    animation: none;
    filter: none;
  }
  .hero-copy {
    padding-inline: 1.15rem;
  }
  .cass {
    max-width: none;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(0, 240, 255, 0.45);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-family: var(--kick);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.9rem;
  background: rgba(7, 5, 26, 0.45);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 4px rgba(57, 255, 136, 0.2);
}
h1 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 4.4vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255, 43, 214, 0.55),
    3px 3px 0 rgba(0, 240, 255, 0.25);
}
.h1-sub {
  display: block;
  font-family: var(--kick);
  font-size: 0.42em;
  letter-spacing: 0.18em;
  margin-top: 0.45em;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.7);
}
.lede {
  font-size: 1.05rem;
  color: #efe6ff;
  max-width: 36rem;
  margin: 0 0 1.2rem;
  text-shadow: 0 1px 8px #07051a;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0.78rem 1.2rem;
  font-family: var(--kick);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--magenta);
  color: #fff;
  box-shadow: 0 0 22px rgba(255, 43, 214, 0.45);
}
.btn-primary:hover { background: #ff57e0; color: #fff; }
.play-80s {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-family: var(--kick);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.play-80s-go {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 3px #fff, 0 0 22px rgba(255, 43, 214, 0.65);
  position: relative;
  flex-shrink: 0;
}
.play-80s-go::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #fff;
}
.play-80s:hover .play-80s-go {
  background: #ff57e0;
  box-shadow: 0 0 0 3px var(--cyan), 0 0 28px rgba(0, 240, 255, 0.55);
}
.btn-secondary {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(7, 5, 26, 0.45);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.25);
}
.btn-secondary:hover { background: rgba(0, 240, 255, 0.12); color: #fff; }
.btn-dark {
  background: var(--cyan);
  color: #07051a;
}

.pennant-wrap {
  display: flex;
  justify-content: center;
}
.logo-stage {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  filter: drop-shadow(0 0 32px rgba(255, 43, 214, 0.45));
  animation: logoGlow 3.2s ease-in-out infinite;
}
.logo-stage img,
.logo-stage video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  filter: none;
}
.logo-reel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 26px rgba(255, 43, 214, 0.42)); }
  50% { filter: drop-shadow(0 0 44px rgba(0, 240, 255, 0.58)); }
}

.liner-view {
  width: 100%;
  height: 1.15em;
  margin: 0 0 0.35rem;
  overflow: hidden;
  white-space: nowrap;
}
.liner-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.liner-group {
  flex: 0 0 auto;
  padding-right: 1.2rem;
  font-family: var(--kick);
  font-size: 0.52rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffd56a;
  line-height: 1.15;
}
.cass {
  position: relative;
  margin-top: 0.35rem;
  max-width: 26.5rem;
  padding: 1.15rem 0.85rem 0.55rem;
  background:
    linear-gradient(180deg, #3a3a42 0%, #23232a 18%, #1a1a20 100%);
  border: 1px solid #6a6a74;
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 12px 28px rgba(0,0,0,0.4);
}
.cass-screw {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #c8c8d0, #5a5a64);
  box-shadow: inset 0 0 0 1px #2a2a30;
}
.cass-screw-tl { top: 8px; left: 8px; }
.cass-screw-tr { top: 8px; right: 8px; }
.cass-screw-bl { bottom: 8px; left: 8px; }
.cass-screw-br { bottom: 8px; right: 8px; }
.cass-label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.4rem;
  align-items: center;
  background:
    repeating-linear-gradient(
      #f4ecd8,
      #f4ecd8 13px,
      #e6dcc4 14px
    );
  color: #2a2218;
  border-radius: 2px;
  padding: 0.35rem 0.55rem;
  font-family: var(--kick);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cass-label strong {
  font-family: "Permanent Marker", "Comic Sans MS", cursive;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: center;
  color: #1a120c;
  transform: rotate(-2deg);
  line-height: 1.05;
}
.cass-window {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0.55rem 0.35rem 0.45rem;
  padding: 0.45rem 0.7rem;
  background: #0b0b10;
  border: 2px solid #111;
  box-shadow: inset 0 0 0 1px #4a4a52;
}
.cass-mid {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.reel {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(#d4d4dc 0 12deg, #3a3a42 12deg 18deg);
  box-shadow:
    inset 0 0 0 7px #1c1c22,
    inset 0 0 0 10px #c8c8d0,
    0 0 0 2px #0a0a0e;
  animation: spin 3.4s linear infinite;
}
.cass-tape-line {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6a3a18, #c48a3a, #6a3a18);
}
.cass iframe {
  display: block;
  width: 100%;
  height: 100px;
  border: 0;
  background: #111;
}
.cass-holes {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.4rem 0 0.1rem;
}
.cass-holes i {
  display: block;
  width: 14px;
  height: 10px;
  border-radius: 2px;
  background: #0a0a0e;
  box-shadow: inset 0 1px 2px #000;
}
.cass-holes i:nth-child(2),
.cass-holes i:nth-child(4) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
body.max-volume {
  animation: pulse 0.35s linear 6;
}
@keyframes pulse {
  50% { filter: hue-rotate(40deg) saturate(1.4); }
}
@media (prefers-reduced-motion: reduce) {
  .reel { animation: none; }
  .liner-track { transform: none !important; }
  .logo-reel { display: none; }
  .logo-stage { animation: none; }
  .hero::after { animation: none; }
}
.deck-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.75rem;
  font-family: var(--kick);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  background: linear-gradient(90deg, #12082a, #1a0a36);
  border-bottom: 1px solid rgba(0, 240, 255, 0.22);
}
.deck-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--live);
}
.deck iframe {
  display: block;
  width: 100%;
  height: 100px;
  border: 0;
  background: #111;
}

.band { padding: 2.4rem 0; }
.band-light {
  background:
    linear-gradient(180deg, #140a30, #1a0a38);
  border-block: 1px solid rgba(255, 43, 214, 0.25);
}
.section-kicker {
  font-family: var(--kick);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 700;
  margin: 0 0 0.4rem;
}
h2 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--cream);
}
.prose-p { max-width: 40rem; margin: 0 0 1rem; color: #ddd0f4; }
.camp { color: #ffc4f3; font-style: italic; }

.quiz-wrap { max-width: 40rem; }
.quiz-box {
  margin-top: 1rem;
  padding: 1.15rem 1.2rem 1.3rem;
  border: 2px solid rgba(0, 240, 255, 0.35);
  border-radius: 12px;
  background: rgba(7, 5, 26, 0.55);
  min-height: 14rem;
}
.quiz-prog {
  font-family: var(--kick);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.5rem;
}
.quiz-box h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}
.quiz-opts { display: grid; gap: 0.5rem; }
.quiz-opt {
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(18, 8, 40, 0.8);
  border: 1px solid rgba(255, 43, 214, 0.28);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
}
.quiz-opt:hover:not(:disabled) { border-color: var(--cyan); }
.quiz-opt.is-yes { border-color: var(--live); color: var(--live); }
.quiz-opt.is-no { border-color: #ff5a7a; color: #ff9aad; }
.quiz-rank {
  font-family: var(--display);
  color: var(--magenta);
  text-transform: uppercase;
}
.quiz-result .btn { margin-top: 0.8rem; }

.alexa {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .alexa { grid-template-columns: 1fr 1fr; }
}
.say {
  background: rgba(7, 5, 26, 0.55);
  border: 1px solid rgba(0, 240, 255, 0.28);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.08);
}
.say strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 0.2rem 0 0.35rem;
  color: var(--cyan);
}
.say p { margin: 0; color: var(--muted); }

.about-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .about-grid { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}
.request-band {
  padding: 2.4rem 0 2.6rem;
  text-align: center;
  background:
    repeating-linear-gradient(
      -18deg,
      rgba(255, 214, 80, 0.05) 0 12px,
      transparent 12px 24px
    ),
    radial-gradient(680px 260px at 50% 10%, rgba(255, 43, 214, 0.32), transparent 68%),
    #16051c;
  border-block: 4px solid #ffd650;
  box-shadow: inset 0 0 50px rgba(255, 43, 214, 0.12);
}
.request-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
  font-family: var(--kick);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--live);
}
.request-band h2 {
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  margin: 0 0 0.25rem;
  color: #fff;
  text-transform: uppercase;
  text-shadow:
    3px 3px 0 #ff2bd6,
    0 0 22px rgba(255, 214, 80, 0.55);
}
.request-yell {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1rem, 3vw, 1.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffd650;
  text-shadow: 0 0 12px rgba(255, 214, 80, 0.4);
}
.request-sub {
  max-width: 30rem;
  margin: 0 auto 0.85rem;
  color: #ffe9a8;
  font-size: 1.05rem;
}
.request-thats {
  margin: 0;
  font-family: var(--kick);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
}
.request-phone {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 5vw, 2.35rem);
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-decoration: none;
  text-shadow: 0 0 18px rgba(0, 240, 255, 0.55);
}
.request-phone:hover { color: #fff; }
.request-again {
  margin: 0.7rem 0 0;
  font-family: var(--kick);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff9ae8;
}
.request-mail {
  margin: 0.7rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.faq details {
  border-bottom: 1px solid rgba(0, 240, 255, 0.18);
  padding: 0.75rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--cream);
}
.faq p { margin: 0.5rem 0 0; color: var(--muted); }

.site-footer {
  border-top: 2px solid var(--magenta);
  padding: 1.6rem 0 2rem;
  color: var(--muted);
  font-size: 0.88rem;
  background: #050314;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.footer-links a { color: var(--cyan); text-decoration: none; }
.footer-links a:hover { color: var(--magenta); }
.footer-bottom {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.page-hero {
  padding: 2rem 0 0.5rem;
  background:
    linear-gradient(180deg, rgba(7,5,26,.55), var(--ink)),
    url("/assets/brand/wfp-80s-city.jpg") center / cover no-repeat;
}
.page-hero h1 { font-size: clamp(1.35rem, 4vw, 2rem); }

@media (max-width: 640px) {
  .brand-name { font-size: 0.88rem; }
  .brand-name span { font-size: 0.56rem; letter-spacing: 0.14em; }
  .nav { font-size: 0.58rem; gap: 0.6rem; }
  h1 { font-size: clamp(1.8rem, 12vw, 2.4rem); }
}
