:root {
  --night: #071f36;
  --steel: #2274a5;
  --blast: #f75c03;
  --volt: #f1c40f;
  --neon: #d90368;
  --acid: #00cc66;
  --forest: #0c6d3c;
  --ink: #020910;
  --paper: #f8f7f3;
  --panel: rgba(7, 31, 54, 0.72);
}

/* ── Selection & Scrollbar ─────────────────────────────── */
::selection {
  background: var(--neon);
  color: var(--paper);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: var(--blast);
  border-radius: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* Offset for sticky header when jumping to anchors */
[id] {
  scroll-margin-top: 5rem;
}

body {
  font-family: "Archivo", sans-serif;
  color: var(--paper);
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 116, 165, 0.5), transparent 45%),
    radial-gradient(circle at 90% 15%, rgba(217, 3, 104, 0.45), transparent 38%),
    linear-gradient(135deg, var(--ink), #030d1a 45%, #081220);
  min-height: 100vh;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  backdrop-filter: blur(8px);
  background: rgba(2, 9, 16, 0.8);
  border-bottom: 1px solid rgba(248, 247, 243, 0.15);
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.75rem, 2.2vw, 2.4rem);
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--volt);
}

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

.site-nav a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
  border-radius: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
  transition: color 150ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--acid);
  transition: width 200ms ease;
}

.site-nav a:hover {
  color: var(--acid);
}

.site-nav a:hover::after {
  width: 100%;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  padding: 1rem clamp(1rem, 3vw, 2.25rem) 3rem;
}

.panel {
  background: var(--panel);
  border: 1px solid rgba(248, 247, 243, 0.2);
  border-left: 4px solid var(--blast);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.6), 0 0 0 0 transparent;
}

.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg,
      rgba(217, 3, 104, 0.18) 0%,
      transparent 35%),
    linear-gradient(180deg,
      rgba(7, 31, 54, 0.12) 0%,
      rgba(7, 31, 54, 0.28) 38%,
      rgba(2, 9, 16, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: clamp(1rem, 4vw, 2.4rem);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--acid);
  padding: 0.2rem 0.6rem;
  border-radius: 0;
  transform: skewX(-6deg);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(3.3rem, 10vw, 7rem);
  color: var(--paper);
  text-shadow: 0 3px 0 var(--volt), 0 14px 24px rgba(0, 0, 0, 0.45);
  position: relative;
  display: inline-block;
  animation: glitch-base 6s infinite;
}

h1::before,
h1::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  overflow: hidden;
}

h1::before {
  color: var(--volt);
  clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
  animation: glitch-top 6s infinite;
}

h1::after {
  color: var(--steel);
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
  animation: glitch-bot 6s infinite;
}

@keyframes glitch-base {

  0%,
  90%,
  100% {
    transform: none;
  }

  91% {
    transform: skewX(-1deg);
  }

  93% {
    transform: skewX(1deg);
  }

  95% {
    transform: none;
  }
}

@keyframes glitch-top {

  0%,
  89%,
  100% {
    transform: none;
    opacity: 0;
  }

  90% {
    transform: translate(-3px, -2px);
    opacity: 0.9;
  }

  92% {
    transform: translate(3px, 2px);
    opacity: 0.9;
  }

  94% {
    transform: translate(-2px, 0);
    opacity: 0.9;
  }

  96% {
    opacity: 0;
  }
}

@keyframes glitch-bot {

  0%,
  89%,
  100% {
    transform: none;
    opacity: 0;
  }

  90% {
    transform: translate(3px, 2px);
    opacity: 0.9;
  }

  92% {
    transform: translate(-3px, -2px);
    opacity: 0.9;
  }

  94% {
    transform: translate(2px, 0);
    opacity: 0.9;
  }

  96% {
    opacity: 0;
  }
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--volt);
  text-shadow: 0 0 8px rgba(241, 196, 15, 0.5);
  animation: neon-flicker 8s infinite;
}

@keyframes neon-flicker {

  0%,
  85%,
  87%,
  89%,
  100% {
    opacity: 1;
    text-shadow: 0 0 8px rgba(241, 196, 15, 0.5);
  }

  86% {
    opacity: 0.85;
    text-shadow: none;
  }

  88% {
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(241, 196, 15, 0.9);
  }
}

h3 {
  font-size: 2rem;
  color: var(--blast);
}

.hero-copy {
  max-width: 54ch;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  margin: 0.7rem 0 0;
  line-height: 1.5;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0.75rem 1.6rem;
  font-weight: 800;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  text-decoration: none;
  transform: skewX(-8deg);
  transition: transform 150ms ease, box-shadow 150ms ease;
  position: relative;
  overflow: hidden;
}

.btn span,
.btn>* {
  display: inline-block;
  transform: skewX(8deg);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 400ms ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:hover {
  transform: skewX(-8deg) translateY(-3px);
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(90deg, var(--blast), var(--volt));
  box-shadow: 0 6px 20px rgba(247, 92, 3, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 0 25px rgba(247, 92, 3, 0.8), 0 0 50px rgba(241, 196, 15, 0.4);
  animation: glow-pulse 1.2s ease-in-out infinite;
}

.btn-ghost {
  color: var(--paper);
  border: 2px solid var(--neon);
  box-shadow: 0 0 10px rgba(217, 3, 104, 0.3), inset 0 0 10px rgba(217, 3, 104, 0.05);
}

.btn-ghost:hover {
  background: rgba(217, 3, 104, 0.15);
  box-shadow: 0 0 25px rgba(217, 3, 104, 0.7), inset 0 0 20px rgba(217, 3, 104, 0.1);
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 25px rgba(247, 92, 3, 0.8), 0 0 50px rgba(241, 196, 15, 0.4);
  }

  50% {
    box-shadow: 0 0 40px rgba(247, 92, 3, 1), 0 0 80px rgba(241, 196, 15, 0.7);
  }
}

.music,
.gallery,
.connect {
  padding: clamp(1rem, 3.5vw, 2rem);
}

/* manifesto padding handled in its own rule below gallery styles */

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

.music-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.card {
  border-radius: 0;
  padding: 1rem;
  border: 1px solid rgba(248, 247, 243, 0.15);
  border-top: 3px solid var(--volt);
  background: rgba(2, 9, 16, 0.75);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.spotify-card iframe {
  margin-top: 0.8rem;
  width: 100%;
  flex: 1;
  min-height: 352px;
  border: 0;
  border-radius: 12px;
}

.bandcamp-card {
  gap: 0.75rem;
}

.bandcamp-card img {
  flex: 1;
  width: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(248, 247, 243, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.placeholder-img {
  display: grid;
  place-content: center;
  min-height: 280px;
  height: 100%;
  background:
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 10px,
      rgba(248, 247, 243, 0.03) 10px,
      rgba(248, 247, 243, 0.03) 12px),
    rgba(2, 9, 16, 0.85);
  border: 2px dashed rgba(248, 247, 243, 0.15);
  border-radius: 0;
}

.placeholder-img span {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.18em;
  color: rgba(248, 247, 243, 0.25);
}

/* ── Banner shot ───────────────────────────────────────── */
.shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 247, 243, 0.22);
  border-bottom: 3px solid var(--neon);
  border-radius: 0;
  background: rgba(2, 9, 16, 0.75);
}

.shot img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

/* ── Manifesto ─────────────────────────────────────────── */
.manifesto {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3.5vw, 2rem);
  position: relative;
  overflow: hidden;
}

.manifesto::before,
.manifesto::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 120px);
  pointer-events: none;
  opacity: 0.35;
}

.manifesto::before {
  left: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 18px,
      var(--blast) 18px,
      var(--blast) 20px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 8px,
      rgba(241, 196, 15, 0.15) 8px,
      rgba(241, 196, 15, 0.15) 10px
    );
  mask-image: linear-gradient(180deg, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

.manifesto::after {
  right: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 12px,
      var(--steel) 12px,
      var(--steel) 14px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(217, 3, 104, 0.12) 6px,
      rgba(217, 3, 104, 0.12) 8px
    );
  mask-image: linear-gradient(180deg, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

.manifesto-content {
  max-width: 68ch;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.manifesto-body {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: rgba(248, 247, 243, 0.88);
  text-align: left;
}

.manifesto-body p {
  margin: 0 0 1.3em;
}

.manifesto-body p:first-child::first-letter {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.4em;
  float: left;
  line-height: 0.78;
  margin: 0.06em 0.14em 0 0;
  color: var(--blast);
}

.manifesto-pull {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--volt);
  border-left: 4px solid var(--blast);
  padding: 0.5rem 1.2rem;
  margin: 1.6rem 0;
  letter-spacing: 0.03em;
  font-weight: normal;
}

.manifesto-closer {
  font-style: italic;
  font-weight: 600;
  font-size: 1.05em;
  color: var(--paper);
}

/* ── Social logo bar (under hero) ─────────────────────── */
.social-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 2.5rem;
  padding: 1.2rem clamp(1rem, 3vw, 2.25rem);
  background: rgba(2, 9, 16, 0.5);
  border: 1px solid rgba(248, 247, 243, 0.12);
  border-left: 4px solid var(--volt);
  border-radius: 4px;
}

.social-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: rgba(248, 247, 243, 0.65);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  transition: transform 150ms ease, color 150ms ease;
}

.social-logo:hover {
  transform: translateY(-4px);
  color: var(--paper);
}

.social-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 150ms ease;
}

.social-logo:hover img {
  opacity: 1;
}

/* ── About ─────────────────────────────────────────────── */
.about {
  padding: clamp(1rem, 3.5vw, 2rem);
}

.about-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 247, 243, 0.2);
  border-bottom: 3px solid var(--blast);
}

.about-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.about-body {
  max-width: 70ch;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: rgba(248, 247, 243, 0.88);
  margin: 0;
}

.about-body a {
  color: var(--acid);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 150ms ease;
}

.about-body a:hover {
  border-color: var(--acid);
}

.connect-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.platform {
  display: grid;
  place-content: center;
  min-height: 100px;
  border-radius: 0;
  text-decoration: none;
  color: var(--paper);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  border: 1px solid rgba(248, 247, 243, 0.26);
  border-left: 4px solid rgba(255, 255, 255, 0.5);
  transform: skewX(-4deg);
  transition: transform 150ms ease, box-shadow 150ms ease;
  text-transform: uppercase;
}

.platform:hover {
  transform: skewX(-4deg) translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.platform.spotify {
  background: linear-gradient(135deg, var(--acid), var(--forest));
}

.platform.bandcamp {
  background: linear-gradient(135deg, var(--steel), var(--night));
}

.platform.instagram {
  background: linear-gradient(135deg, var(--neon), var(--blast));
}

.platform.threads {
  background: linear-gradient(135deg, #2a2a2a, #111111);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 3rem clamp(1rem, 3vw, 2.25rem);
  background: var(--blast);
  color: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      transparent,
      transparent 8px,
      rgba(0, 0, 0, 0.07) 8px,
      rgba(0, 0, 0, 0.07) 10px);
  pointer-events: none;
}

.site-footer p {
  margin: 0;
  position: relative;
  z-index: 1;
}

.site-footer p:first-child {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--ink);
}

.site-footer p:last-child {
  font-weight: 800;
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}

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

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

@media (max-width: 980px) {
  .music-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 260px;
  }
}

@media (max-width: 700px) {
  .site-header {
    flex-wrap: wrap;
    gap: 0.35rem 0.8rem;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.25rem 0.6rem;
  }

  .site-nav a {
    font-size: 0.75rem;
    padding: 0.25rem 0.4rem;
  }

  .hero {
    min-height: 80vh;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}