:root {
  --bg: #0a0e1a;
  --bg-2: #111629;
  --panel: rgba(8, 13, 24, 0.72);
  --panel-strong: rgba(8, 13, 24, 0.88);
  --text: #eef6ff;
  --muted: #a7b5c8;
  --cyan: #00f2ff;
  --rose: #ff7e5f;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 242, 255, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 126, 95, 0.08), transparent 30%),
    linear-gradient(180deg, #090d18, #0a0e1a 45%, #0d1120 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Atmosphere */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 95%);
  pointer-events: none;
  z-index: -3;
}

.noise {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.035) 0.6px, transparent 0.6px);
  background-size: 6px 6px;
  opacity: 0.05;
  pointer-events: none;
  z-index: -2;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 22, 0.6);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.site-nav a:hover {
  color: var(--cyan);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

/* General */
.section {
  padding: 6rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-tag,
.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.section-heading p,
.hero-description,
.member-card p,
.archive-card p,
.site-footer p {
  color: var(--muted);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("band-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(1.1) contrast(1.02);
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 26, 0.35), rgba(10, 14, 26, 0.68)),
    linear-gradient(90deg, rgba(10, 14, 26, 0.82) 0%, rgba(10, 14, 26, 0.35) 45%, rgba(10, 14, 26, 0.82) 100%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 0%, rgba(0, 242, 255, 0.04) 40%, transparent 80%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: scanPulse 8s linear infinite;
  z-index: -1;
}

.hero-content {
  padding: 7rem 0 5rem;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero-description {
  max-width: 640px;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(7, 14, 24, 0.56);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d7e8fa;
  font-size: 0.82rem;
}

/* Buttons */
.btn {
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), #70f7ff);
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.24);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 126, 95, 0.4);
  background: rgba(255, 126, 95, 0.08);
}

/* Glitch */
.glitch {
  position: relative;
  color: var(--text);
  text-shadow:
    0 0 12px rgba(0, 242, 255, 0.16),
    0 0 22px rgba(255, 126, 95, 0.08);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glitch::before {
  color: var(--cyan);
  transform: translate(-2px, 0);
  opacity: 0.7;
  clip-path: inset(0 0 54% 0);
  animation: glitchTop 2.8s infinite linear alternate-reverse;
}

.glitch::after {
  color: var(--rose);
  transform: translate(2px, 0);
  opacity: 0.65;
  clip-path: inset(56% 0 0 0);
  animation: glitchBottom 2.1s infinite linear alternate-reverse;
}

/* Members */
.members-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.members-poster {
  position: relative;
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background: #0b1220;
}

.members-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 100%;
}

.poster-shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.08) 35%, transparent 50%);
  mix-blend-mode: screen;
  animation: posterSweep 7s linear infinite;
  pointer-events: none;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.member-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(16, 23, 41, 0.88), rgba(8, 12, 22, 0.92)),
    var(--panel);
  border: 1px solid rgba(0, 242, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.member-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 242, 255, 0.08), transparent 40%, rgba(255, 126, 95, 0.06));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.member-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 255, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.member-card:hover::before {
  opacity: 1;
}

.member-index,
.member-role,
.member-card h3,
.member-card p {
  position: relative;
  z-index: 1;
}

.member-index {
  display: block;
  color: rgba(255,255,255,0.3);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
}

.member-role {
  display: inline-block;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.member-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
}

/* Archive */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.archive-feature {
  grid-column: span 3;
}

.archive-card {
  background:
    linear-gradient(180deg, rgba(15, 20, 36, 0.85), rgba(8, 12, 22, 0.92));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.archive-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.archive-card h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.video-placeholder {
  min-height: 320px;
  border-radius: 16px;
  border: 1px dashed rgba(0, 242, 255, 0.32);
  background:
    linear-gradient(135deg, rgba(0, 242, 255, 0.08), rgba(255, 126, 95, 0.08)),
    rgba(255,255,255,0.02);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: #c8d8e8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.video-placeholder.small {
  min-height: 180px;
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  text-align: center;
}

/* Animations */
@keyframes glitchTop {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2px, -1px); }
  40% { transform: translate(-4px, 1px); }
  60% { transform: translate(2px, -1px); }
  80% { transform: translate(-1px, 1px); }
  100% { transform: translate(0, 0); }
}

@keyframes glitchBottom {
  0% { transform: translate(0, 0); }
  20% { transform: translate(2px, 1px); }
  40% { transform: translate(4px, -1px); }
  60% { transform: translate(-2px, 1px); }
  80% { transform: translate(1px, -1px); }
  100% { transform: translate(0, 0); }
}

@keyframes posterSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes scanPulse {
  0% { transform: translateY(-10%); opacity: 0.2; }
  50% { opacity: 0.45; }
  100% { transform: translateY(10%); opacity: 0.2; }
}

/* Responsive */
@media (max-width: 1024px) {
  .members-layout {
    grid-template-columns: 1fr;
  }

  .members-poster {
    max-height: 780px;
  }

  .archive-grid {
    grid-template-columns: 1fr 1fr;
  }

  .archive-feature {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: rgba(8, 12, 22, 0.96);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
  }

  .site-nav.active {
    display: flex;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding: 6rem 0 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .member-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-feature {
    grid-column: span 1;
  }

  .members-poster {
    max-height: 680px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 4.75rem 0;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .hero-meta span {
    font-size: 0.76rem;
  }

  .member-card,
  .archive-card {
    padding: 1.15rem;
  }
}