:root {
  --bg: #050505;
  --panel: #101010;
  --panel-strong: #171717;
  --text: #e8e3dd;
  --muted: #a79f98;
  --line: rgba(232, 227, 221, 0.16);
  --accent: #b9232c;
  --accent-hot: #f04f57;
  --gold: #b79a65;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  background:
    radial-gradient(circle at 20% 0%, rgba(185, 35, 44, 0.22), transparent 30rem),
    linear-gradient(180deg, #030303 0%, var(--bg) 55%, #090807 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

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

img {
  max-width: 100%;
  display: block;
}

.intro {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.16), transparent 15rem),
    radial-gradient(circle at 16% 25%, rgba(185, 35, 44, 0.28), transparent 28rem),
    #020202;
  isolation: isolate;
}

.intro::before,
.intro::after,
.intro-smoke {
  content: '';
  position: absolute;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.intro::before {
  background:
    radial-gradient(ellipse at 18% 62%, rgba(238, 238, 238, 0.2), transparent 30%),
    radial-gradient(ellipse at 72% 36%, rgba(255, 255, 255, 0.17), transparent 29%),
    radial-gradient(ellipse at 58% 78%, rgba(185, 35, 44, 0.18), transparent 32%);
  filter: blur(38px);
  opacity: 0.78;
  animation: smoke-drift 52s ease-in-out infinite alternate;
}

.intro::after {
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0 24%, rgba(0, 0, 0, 0.58) 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 38%, rgba(0, 0, 0, 0.82));
  z-index: 0;
  mix-blend-mode: normal;
}

.intro-smoke {
  background:
    radial-gradient(ellipse at 28% 24%, rgba(255, 255, 255, 0.14), transparent 30%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.13), transparent 34%),
    radial-gradient(ellipse at 48% 56%, rgba(185, 35, 44, 0.16), transparent 42%);
  filter: blur(54px);
  opacity: 0.68;
  animation: smoke-roll 42s linear infinite;
}

.intro-mark {
  position: relative;
  z-index: 1;
  width: min(680px, 88vw);
  text-align: center;
  transform: translateY(-2vh);
}

.intro-logo {
  width: min(480px, 74vw);
  margin: 0 auto;
  filter: drop-shadow(0 0 32px rgba(0, 0, 0, 0.94));
}

.intro-mark p {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  z-index: 2;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  margin: 0.7rem auto 0;
  background: linear-gradient(var(--muted), transparent);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem clamp(1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

body.is-nav-visible .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-brand img {
  width: 54px;
  filter: drop-shadow(0 0 12px rgba(185, 35, 44, 0.35));
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(0.7rem, 2.8vw, 2.2rem);
  list-style: none;
}

.site-nav a {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.feature-section {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1rem, 5vw, 4rem) clamp(4.75rem, 10vw, 8.75rem);
  border-bottom: 1px solid var(--line);
}

.is-hidden {
  display: none;
}

.feature-section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: none;
}

h1,
h2 {
  font-size: clamp(1.9rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.feature-section > h1,
.feature-section > h2,
.feature-copy,
.section-lead {
  text-align: center;
}

.section-lead {
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  text-transform: uppercase;
}

.section-lead {
  max-width: 620px;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.release-art {
  background:
    radial-gradient(circle at 50% 35%, rgba(240, 79, 87, 0.16), transparent 54%),
    var(--panel);
  border: 1px solid var(--line);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.release-art img {
  width: 76%;
  filter: drop-shadow(0 0 26px rgba(0, 0, 0, 0.72));
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button,
.signup-form button,
.gig-action {
  border: 1px solid rgba(232, 227, 221, 0.34);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button.primary,
.signup-form button {
  border-color: var(--accent);
  background: var(--accent);
}

.button:hover,
.signup-form button:hover {
  border-color: var(--accent-hot);
  background: var(--accent-hot);
  color: #080808;
}

.images-section,
.lineup-section,
.videos-section,
.downloads-section {
  background: rgba(255, 255, 255, 0.025);
}

.image-layout {
  display: grid;
  gap: 1rem;
  margin-top: 2.6rem;
  align-items: stretch;
}

.image-layout-1v-2h {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  grid-template-rows: repeat(2, 1fr);
}

.image-layout-1v-2h .image-frame-vertical {
  grid-row: span 2;
}

.image-layout-3v,
.image-layout-3h {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-layout-3v .image-frame {
  aspect-ratio: 4 / 5;
}

.image-layout-3h .image-frame {
  aspect-ratio: 16 / 9;
}

.image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 45%, rgba(240, 79, 87, 0.14), transparent 48%),
    #080808;
}

.image-frame-vertical {
  aspect-ratio: 4 / 5;
}

.image-frame-horizontal {
  aspect-ratio: 16 / 9;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.6rem;
}

.member-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.48fr) 1fr;
  min-height: 320px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.member-card figure {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(240, 79, 87, 0.14), transparent 48%),
    #080808;
}

.member-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
}

.member-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 1.5rem;
}

.member-info h3 {
  margin-bottom: 0.25rem;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
}

.member-info p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-shell {
  margin-top: 2.6rem;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.gig-list {
  display: grid;
  gap: 1px;
  margin-top: 2.6rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.gig-card {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--panel);
}

.gig-card time {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gig-card p,
.download-card small,
.news-grid p {
  color: var(--muted);
}

.download-grid,
.news-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.6rem;
}

.download-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-card,
.news-grid article {
  min-height: 180px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.download-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.download-card span {
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.download-card:hover {
  border-color: var(--accent-hot);
  background: var(--panel-strong);
}

.news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-grid time {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-grid h2 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.follow-section {
  text-align: center;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.6rem;
}

.social-row a {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0.15rem;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-row a:hover {
  color: var(--accent-hot);
}

.signup-form {
  max-width: 560px;
  margin-top: 3rem;
}

.signup-form label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signup-form div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.signup-form input {
  min-width: 0;
  border: 1px solid var(--line);
  border-right: 0;
  background: #080808;
  color: var(--text);
  padding: 0.85rem 1rem;
  font: inherit;
}

footer {
  padding: 2rem 1rem;
  color: var(--muted);
  text-align: center;
  background: #030303;
}

@keyframes smoke-drift {
  0% {
    transform: translate3d(-4%, 2%, 0) scale(1.08) rotate(0deg);
  }

  50% {
    transform: translate3d(5%, -3%, 0) scale(1.18) rotate(8deg);
  }

  100% {
    transform: translate3d(-1%, 4%, 0) scale(1.12) rotate(-6deg);
  }
}

@keyframes smoke-roll {
  0% {
    transform: translate3d(-7%, -2%, 0) scale(1.1) rotate(0deg);
  }

  100% {
    transform: translate3d(7%, 3%, 0) scale(1.22) rotate(360deg);
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 132px;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .site-nav ul {
    width: 100%;
    justify-content: space-between;
    gap: 0.55rem;
  }

  .site-nav a {
    font-size: 0.64rem;
  }

  .feature-grid,
  .image-layout,
  .download-grid,
  .member-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .image-layout-1v-2h {
    grid-template-rows: auto;
  }

  .image-layout-1v-2h .image-frame-vertical {
    grid-row: auto;
  }

  .gig-card {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .member-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .member-card figure {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 520px) {
  .intro-mark {
    transform: translateY(-4vh);
  }

  .signup-form div {
    grid-template-columns: 1fr;
  }

  .signup-form input {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
}
