:root {
  --color-background: #050608;
  --color-foreground: #f8f8f8;
  --color-muted: #c5c5c5;
  --color-accent: #e14658;
  --color-accent-dark: #a02232;
  --color-contrast: rgba(12, 14, 20, 0.92);
  --color-panel: rgba(16, 18, 26, 0.8);
  --color-panel-strong: rgba(24, 26, 35, 0.9);
  --color-border: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 30px 60px rgba(0, 0, 0, 0.45);
  --shadow-sharp: 0 15px 40px rgba(0, 0, 0, 0.65);
  --max-width: 1200px;
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --skull-pattern: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M60 20c-11 0-20 9-20 20 0 6.5 3.2 12.3 8.3 16L46 74l14-8 14 8-2.3-18c5-3.7 8.3-9.5 8.3-16 0-11-9-20-20-20zm-7 16c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.4 3-3 3zm14 0c-1.6 0-3-1.3-3-3s1.4-3 3-3 3 1.3 3 3-1.4 3-3 3z'/%3E%3C/g%3E%3C/svg%3E");
  --glow-primary: rgba(225, 70, 88, 0.7);
  --glow-secondary: rgba(255, 255, 255, 0.22);
}

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

html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at top, rgba(90, 15, 25, 0.1), transparent 40%), #050608;
  color: var(--color-foreground);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body.nav-open,
body.intro-active {
  overflow: hidden;
}

:is(
    .btn,
    .streaming-links a,
    .disc-card,
    .merch-card,
    .feature-list li,
    .media-player,
    .media-audio,
    .featured-release,
    .gallery-grid figure,
    .form,
    .contact-grid article,
    .signal-card,
    .hero__stats,
    .tag,
    .timeline li > div,
    .filter-btn
  ) {
  position: relative;
  isolation: isolate;
  z-index: 0;
}

:is(
    .btn,
    .streaming-links a,
    .disc-card,
    .merch-card,
    .feature-list li,
    .media-player,
    .media-audio,
    .featured-release,
    .gallery-grid figure,
    .form,
    .contact-grid article,
    .signal-card,
    .hero__stats,
    .tag,
    .timeline li > div,
    .filter-btn
  )::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 50% 50%, var(--glow-primary), rgba(225, 70, 88, 0.25) 40%, transparent 70%);
  opacity: 0;
  transform: scale(0.55) rotate(0deg);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
  filter: blur(42px);
  z-index: -1;
  mix-blend-mode: screen;
}

:is(
    .btn,
    .streaming-links a,
    .disc-card,
    .merch-card,
    .feature-list li,
    .media-player,
    .media-audio,
    .featured-release,
    .gallery-grid figure,
    .form,
    .contact-grid article,
    .signal-card,
    .hero__stats,
    .tag,
    .timeline li > div,
    .filter-btn
  ):hover::after,
:is(
    .btn,
    .streaming-links a,
    .disc-card,
    .merch-card,
    .feature-list li,
    .media-player,
    .media-audio,
    .featured-release,
    .gallery-grid figure,
    .form,
    .contact-grid article,
    .signal-card,
    .hero__stats,
    .tag,
    .timeline li > div,
    .filter-btn
  ):focus-visible::after,
:is(
    .btn,
    .streaming-links a,
    .disc-card,
    .merch-card,
    .feature-list li,
    .media-player,
    .media-audio,
    .featured-release,
    .gallery-grid figure,
    .form,
    .contact-grid article,
    .signal-card,
    .hero__stats,
    .tag,
    .timeline li > div,
    .filter-btn
  ):focus-within::after {
  opacity: 0.42;
  transform: scale(1) rotate(2deg);
}

.tour-card {
  position: relative;
  isolation: isolate;
  z-index: 0;
}

.tour-card::before {
  content: '';
  position: absolute;
  inset: -45%;
  background: radial-gradient(circle at 50% 50%, var(--glow-primary), rgba(225, 70, 88, 0.2) 45%, transparent 70%);
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 0.55s ease, transform 0.55s ease;
  filter: blur(48px);
  z-index: -1;
  mix-blend-mode: screen;
  pointer-events: none;
}

.tour-card:hover::before,
.tour-card:focus-within::before {
  opacity: 0.35;
  transform: scale(1);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

a:hover,
a:focus-visible {
  color: var(--color-accent);
  transform: translateY(-1px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.background-texture {
  position: fixed;
  inset: 0;
  background-image: var(--skull-pattern),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent),
    radial-gradient(circle at 80% 0%, rgba(255, 0, 64, 0.12), transparent),
    radial-gradient(circle at 0% 80%, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.4;
  z-index: -2;
  pointer-events: none;
}

.container {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: linear-gradient(90deg, rgba(4, 5, 8, 0.92), rgba(4, 5, 8, 0.78));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.5s ease, background 0.5s ease;
}

body.intro-active .site-header {
  display: none;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.brand__icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 6px rgba(225, 70, 88, 0.65));
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.4rem;
  opacity: 0.9;
}

.nav-toggle__bars {
  position: relative;
  width: 28px;
  height: 2px;
  background: currentColor;
  display: block;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: currentColor;
  transition: transform 0.4s ease, top 0.4s ease, opacity 0.4s ease;
}

.nav-toggle__bars::before {
  top: -8px;
}

.nav-toggle__bars::after {
  top: 8px;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background-color: #ff0000;
  background-image: url('new-kiloton.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.5));
  z-index: 2;
}

/* Overlays hidden to show background image */
.hero__gradient {
  display: none;
}

.hero__overlay-skulls {
  display: none;
}

.hero__video-noise {
  display: none;
}

.hero__lights {
  display: none;
}

.hero__light {
  display: none;
}

.hero__light--left {
  display: none;
}

.hero__light--right {
  display: none;
}

.hero__light--pulse {
  display: none;
}

.hero__relics {
  display: none;
}

.hero__relic {
  display: none;
}

.hero__relic--one {
  display: none;
}

.hero__relic--two {
  display: none;
}

.hero__relic--three {
  display: none;
}

.hero__relic--four {
  display: none;
}

.hero__content {
  max-width: 720px;
  text-align: center;
  display: grid;
  gap: 1.8rem;
  position: relative;
  z-index: 10;
}

.hero__eyebrow {
  letter-spacing: 0.62em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.12em;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero__title span {
  display: inline-block;
  color: var(--color-accent);
  text-shadow: 0 0 30px rgba(225, 70, 88, 0.4);
}

.hero__tagline {
  max-width: 52ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0.85rem 1.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.btn--primary {
  background: linear-gradient(120deg, var(--color-accent), #ff6475);
  color: #fff;
  box-shadow: 0 12px 30px rgba(225, 70, 88, 0.35);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(225, 70, 88, 0.45);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.92);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-3px);
}

.btn--slim {
  min-width: unset;
  padding: 0.45rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.btn.is-armed,
.btn[disabled] {
  opacity: 0.6;
  cursor: default;
  box-shadow: none;
  transform: none;
}

.btn:focus-visible,
.filter-btn:focus-visible,
.streaming-links a:focus-visible {
  outline: 2px solid rgba(225, 70, 88, 0.55);
  outline-offset: 4px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 1rem auto 0;
  padding: 1.6rem;
  background: rgba(8, 9, 12, 0.85);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.65rem;
}

.hero__stats dt {
  color: rgba(255, 255, 255, 0.5);
}

.hero__stats dd {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: #fff;
}

.hero__scroll-indicator {
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  padding-bottom: 2.4rem;
}

.hero__scroll-indicator::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 2.2rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(225, 70, 88, 0.9));
  animation: scrollPulse 2.4s infinite;
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 55%);
  z-index: -1;
}

.section--contrast {
  background: linear-gradient(180deg, rgba(8, 9, 13, 0.68), rgba(8, 9, 13, 0.88));
  backdrop-filter: blur(12px);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section__inner {
  display: grid;
  gap: 3rem;
}

.section__inner--split {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.45em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
}

.section__heading {
  margin-bottom: 3rem;
  display: grid;
  gap: 1.2rem;
  max-width: 720px;
}

.section__heading h2,
.section__content h2 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section__content p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
}

.timeline {
  background: rgba(10, 12, 18, 0.9);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.timeline h3 {
  margin-top: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.timeline ol {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

.timeline li {
  display: grid;
  gap: 0.4rem;
  grid-template-columns: 90px 1fr;
  align-items: start;
  position: relative;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: 38px;
  top: 0;
  bottom: -1.5rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(225, 70, 88, 0.7), transparent);
}

.timeline li:last-of-type::before {
  display: none;
}

.timeline__year {
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  color: var(--color-accent);
}

.featured-release {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.4rem;
  background: linear-gradient(135deg, rgba(12, 14, 20, 0.95), rgba(12, 14, 20, 0.7));
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.featured-release__art {
  background: radial-gradient(circle at 30% 30%, rgba(225, 70, 88, 0.6), rgba(0, 0, 0, 0.9)),
    url("https://images.unsplash.com/photo-1558980664-10ea5b6a5b9d?auto=format&fit=crop&w=900&q=80") center/cover;
  border-radius: 18px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.featured-release__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.2), rgba(5, 8, 12, 0.85));
}

.featured-release__skull {
  position: absolute;
  inset: 0;
  background-image: var(--skull-pattern);
  mix-blend-mode: overlay;
  opacity: 0.3;
  animation: drift 24s linear infinite;
}

.featured-release__content h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.18em;
}

.tracklist {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.tracklist li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.tracklist strong {
  font-weight: 600;
  letter-spacing: 0.08em;
}

.tracklist span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.streaming-links a {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.streaming-links a:hover {
  border-color: var(--color-accent);
}

.discography-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.disc-card {
  background: rgba(18, 20, 30, 0.85);
  border-radius: 16px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.disc-card h3 {
  margin-top: 0;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.disc-card p {
  margin: 0.7rem 0;
  color: rgba(255, 255, 255, 0.6);
}

.disc-card ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.tour-filters {
  display: flex;
  gap: 0.8rem;
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.filter-btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.tour-card {
  background: rgba(12, 14, 20, 0.86);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.tour-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(225, 70, 88, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.tour-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 70, 88, 0.35);
}

.tour-card:hover::after {
  opacity: 1;
}

.tour-card__date {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.tour-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
}

.tag--warning {
  background: rgba(225, 70, 88, 0.3);
}

.tag--soldout {
  background: rgba(255, 255, 255, 0.22);
  color: #0d0f16;
  font-weight: 700;
}

.tour-card.is-hidden {
  display: none;
}

.media-player {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.media-player__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

.media-audio {
  margin-top: 1.5rem;
  background: rgba(12, 14, 20, 0.85);
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.media-audio h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 1rem;
}

audio {
  width: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.08);
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.merch-card {
  background: rgba(12, 14, 20, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem;
  display: grid;
  gap: 0.9rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.merch-card__img {
  border-radius: 12px;
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.merch-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(225, 70, 88, 0.3), transparent 70%);
}

.merch-card__img--hoodie {
  background-image: url('https://images.unsplash.com/photo-1521572267360-ee0c2909d518?auto=format&fit=crop&w=900&q=80');
}

.merch-card__img--vinyl {
  background-image: url('https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?auto=format&fit=crop&w=900&q=80');
}

.merch-card__img--mask {
  background-image: url('https://images.unsplash.com/photo-1527285340436-92c70c0c0491?auto=format&fit=crop&w=900&q=80');
}

.price {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.form {
  background: rgba(12, 14, 20, 0.92);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}

.form h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.form label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 8, 12, 0.85);
  color: #fff;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form input:focus-visible,
.form textarea:focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(225, 70, 88, 0.25);
}

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.form__fine-print {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0.4rem 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.contact-grid article {
  background: rgba(12, 14, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.4rem;
  display: grid;
  gap: 0.4rem;
}

.signal-card {
  background: linear-gradient(130deg, rgba(225, 70, 88, 0.32), rgba(12, 14, 20, 0.92));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  align-content: start;
}

.site-footer {
  padding: 3rem 0;
  background: rgba(4, 5, 7, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .container {
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.tiktok-section {
  background: #000 !important;
  padding: 0 !important;
}

.tiktok-embed-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  background: #000 !important;
}

.tiktok-embed,
.tiktok-embed * {
  background: transparent !important;
}

blockquote.tiktok-embed {
  margin: 0 auto;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 6, 8, 0.9);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translate(-50%, 20px);
  background: rgba(12, 14, 20, 0.95);
  border: 1px solid rgba(225, 70, 88, 0.4);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes crestReveal {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introTextFade {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introScan {
  0% {
    opacity: 0;
    transform: translateY(-6%);
  }
  30% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(2%);
  }
  100% {
    opacity: 0.15;
    transform: translateY(0);
  }
}

@keyframes flareSweep {
  0%,
  100% {
    transform: rotate(8deg) translateX(0);
    opacity: 0.12;
  }
  45% {
    transform: rotate(-6deg) translateX(18%);
    opacity: 0.25;
  }
  60% {
    opacity: 0.05;
  }
}

@keyframes particlesRise {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes progressSweep {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes progressPulse {
  0% {
    opacity: 0.1;
    transform: scale(0.85);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

@keyframes heroGlow {
  0%,
  100% {
    transform: scale(0.9) translate3d(0, 0, 0);
    opacity: 0.2;
  }
  45% {
    transform: scale(1.05) translate3d(12px, -10px, 0);
    opacity: 0.38;
  }
  70% {
    transform: scale(1.1) translate3d(-6px, 12px, 0);
    opacity: 0.26;
  }
}

@keyframes relicFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate3d(10px, -14px, 0) rotate(4deg) scale(1.06);
  }
  66% {
    transform: translate3d(-14px, 12px, 0) rotate(-6deg) scale(0.94);
  }
}

@keyframes heroPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(-60px, -60px, 0) rotate(1turn);
  }
}

@keyframes noiseShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-30px, 30px, 0);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, 10px);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    padding: 0;
    z-index: 99;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }

  .site-nav a {
    font-size: 1.2rem;
    color: #fff;
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 100;
    position: relative;
  }

  .nav-toggle__bars {
    width: 32px;
    height: 3px;
  }

  .nav-toggle__bars::before,
  .nav-toggle__bars::after {
    width: 32px;
    height: 3px;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section__heading {
    margin-bottom: 2rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }

  .container {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .section {
    padding: 4rem 0;
  }

  .hero__title {
    letter-spacing: 0.05em;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .timeline li::before {
    left: 12px;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
  }
}
.intro {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: radial-gradient(circle at 50% 0%, rgba(225, 70, 88, 0.2), transparent 55%),
    #050608;
  display: grid;
  place-items: center;
  padding: 2rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.intro__scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: screen;
  opacity: 0;
  animation: introScan 3.6s ease-in-out forwards;
}

.intro__flare {
  position: absolute;
  top: -20%;
  width: 35vw;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 120, 140, 0.4), transparent 65%);
  filter: blur(12px);
  mix-blend-mode: screen;
  opacity: 0.15;
  animation: flareSweep 4s ease-in-out infinite;
}

.intro__flare--left {
  left: -10%;
  animation-delay: 0.2s;
}

.intro__flare--right {
  right: -10%;
  animation-delay: 0.8s;
}

.intro__particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0, transparent 30%),
    radial-gradient(circle at 80% 40%, rgba(225, 70, 88, 0.18) 0, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.12) 0, transparent 35%);
  opacity: 0;
  animation: particlesRise 4.4s ease forwards 0.3s;
}

.intro__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.6rem;
  text-align: center;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.intro__crest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.4rem 2.4rem;
  border-radius: 120px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 14, 20, 0.85);
  box-shadow: 0 18px 60px rgba(225, 70, 88, 0.3);
  animation: crestReveal 0.9s ease forwards 0.4s;
  opacity: 0;
  transform: translateY(20px);
}

.intro__glyph {
  font-size: clamp(2.5rem, 5vw, 3.4rem);
  filter: drop-shadow(0 0 10px rgba(225, 70, 88, 0.6));
}

.intro__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.4em;
}

.intro__tagline {
  margin: 0;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  letter-spacing: 0.5em;
  color: rgba(255, 255, 255, 0.6);
  animation: introTextFade 0.8s ease forwards 0.85s;
  opacity: 0;
  transform: translateY(12px);
}

.intro__progress {
  position: relative;
  width: min(320px, 70vw);
  height: 3px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  border-radius: 999px;
}

.intro__progress-bar {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(225, 70, 88, 0), rgba(225, 70, 88, 0.9), rgba(255, 255, 255, 0));
  transform-origin: left;
  transform: scaleX(0);
  animation: progressSweep 3.2s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.6s;
}

.intro__progress-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(225, 70, 88, 0.9);
  opacity: 0;
  animation: progressPulse 1.4s ease-in-out infinite alternate 1.2s;
}
