@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/oswald-regular.ttf") format("truetype");
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/oswald-medium.ttf") format("truetype");
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/oswald-semibold.ttf") format("truetype");
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/oswald-bold.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/roboto-300.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/roboto-400.ttf") format("truetype");
}


@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/archivo-black.ttf") format("truetype");
}
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/anton-regular.ttf") format("truetype");
}
/* ATLAS-051 refined professional palette */
:root {
  --bg: #070708;
  --bg-elev: #101014;
  --fg: #f2f2f0;
  --muted: rgba(242,242,240,0.62);
  --accent: #3DDC64;
  --accent-dim: rgba(61,220,100,0.16);
  --accent-glow: rgba(61,220,100,0.28);
  --line: rgba(255,255,255,0.14);
  --pill-fill: rgba(255,255,255,0.06);
  --cta-fill: rgba(61,220,100,0.12);
  --header-h: 5.25rem;
  --display: "Archivo Black", "Anton", Impact, "Arial Black", sans-serif;
  --ui: "Roboto", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ui);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 200; background: #fff; color: #000; padding: .5rem .75rem; }

/* Fixed header — nibirii rhythm */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 95;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3.1rem);
  background: linear-gradient(180deg, rgba(15,15,15,.72), rgba(15,15,15,0));
}
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  text-decoration: none; color: var(--fg);
}
.brand-eye { filter: drop-shadow(0 0 8px rgba(61,220,100,.45)); }
.brand-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav { display: flex; flex-wrap: wrap; gap: .45rem; justify-content: flex-end; }
.nav a {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.15rem 1rem; min-height: 2rem;
  border: 1px solid #fff; border-radius: 100px;
  background: var(--pill-fill);
  color: #fff; text-decoration: none;
  font-family: var(--display);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease;
}
.nav a:hover, .nav a.is-active {
  background: rgba(255,255,255,.2);
  border-color: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid; place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
  overflow: hidden;
}
.hero-media, .hero-veil { position: absolute; inset: 0; }
.hero-media { z-index: 0; background: #000; }
.hero-video, .hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-slide { opacity: 0; transition: opacity 1s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-media.has-video .hero-fallback { opacity: 0; pointer-events: none; }
.hero-veil {
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,15,15,.35) 0%, rgba(15,15,15,.45) 45%, rgba(15,15,15,.88) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 52rem; }
.hero-kicker {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: #fff;
}
.hero-eye { margin-bottom: .75rem; }
.hero-eye img { filter: drop-shadow(0 0 12px rgba(61,220,100,.5)); }
.hero-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 5.5rem);
  letter-spacing: 0.06em;
  line-height: 0.92;
  color: var(--accent);
  text-transform: uppercase;
}
.hero-slogan {
  margin: 0.9rem 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
}
.hero-tba {
  margin: 1.1rem 0 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1rem, 2.8vw, 1.45rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-tba .accent { color: var(--accent); font-weight: 700; }
.hero-tba .sep { opacity: .5; margin: 0 .35rem; }
.hero-spaced {
  margin: 1.25rem 0 0;
  font-family: var(--display);
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.38em; text-transform: uppercase; color: #fff;
}
.hero-ctas {
  margin-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
}
.btn-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: 0.2rem 1.25rem; min-height: 2.55rem;
  border: 1px solid var(--fg); border-radius: 125px;
  background: var(--cta-fill);
  color: var(--fg); text-decoration: none;
  font-family: var(--display);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}
.btn-pill:hover { background: rgba(240,240,240,.42); transform: translateY(-1px); }
.btn-static { pointer-events: none; }

/* Full-bleed photo bands */
.band {
  position: relative;
  min-height: 420px;
  display: grid; place-items: center;
  text-align: center;
  padding: 4.5rem 1.25rem;
  background: #111 center/cover no-repeat;
  background-image: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), var(--band-img);
}
.band-inner { position: relative; z-index: 1; max-width: 40rem; }
.eyebrow {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
.band-title-pill {
  display: inline-block;
  margin: 0;
  padding: .55rem 1.5rem;
  border: 1px solid #fff; border-radius: 125px;
  background: rgba(0,0,0,.85);
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.band-sub {
  margin: 1rem 0 1.35rem;
  font-size: 15px; font-weight: 300; color: #fff;
}

/* Clubshow-style artist cards */
.section { padding: 4.5rem clamp(1rem, 4vw, 3rem); }
.section-head { text-align: center; margin-bottom: 2rem; }
.section-head h2 {
  margin: 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.shows-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .shows-rail { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .shows-rail { grid-template-columns: 1fr; }
  .nav { gap: .3rem; }
  .nav a { padding: 2px 10px; font-size: 11px; }
  .site-header { height: auto; min-height: 4.5rem; padding-top: .75rem; padding-bottom: .75rem; flex-wrap: wrap; gap: .75rem; }
}
.show-card {
  display: flex; flex-direction: column;
  background: #161616;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .2s ease, border-color .2s ease;
}
.show-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.show-poster {
  aspect-ratio: 1;
  background: #0a0a0a;
  overflow: hidden;
}
.show-poster img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
  filter: contrast(1.05) saturate(0.95);
}
.show-body { padding: 1rem 1rem 1.15rem; text-align: left; }
.show-name {
  margin: 0;
  font-family: var(--display); font-weight: 600;
  font-size: 1.2rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.show-meta {
  margin: .45rem 0 0;
  font-size: 13px; color: rgba(242,242,240,0.82); text-transform: uppercase; letter-spacing: .08em;
}
.show-roles {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: .55rem 0 0;
}
.role-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  border: 1px solid rgba(61,220,100,0.45);
  border-radius: 999px;
  background: rgba(61,220,100,0.12);
  color: var(--accent);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}
.show-cta {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; min-height: 2.2rem;
  border: 1px solid rgba(255,255,255,.45); border-radius: 100px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}

/* Gallery — edge-to-edge 3-col like festival roster */
.gallery { padding: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center;
  display: block;
  filter: contrast(1.1) saturate(.95);
  transition: transform .35s ease, filter .35s ease;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  filter: contrast(1.15) saturate(1.05);
  z-index: 1;
  position: relative;
}

.site-footer {
  padding: 3.5rem 1.25rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-logo {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-logo img { filter: drop-shadow(0 0 8px rgba(61,220,100,.4)); }
.footer-links { margin: 0 0 .75rem; font-size: 14px; }
.footer-links a { color: var(--fg); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { margin: 0; font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none !important; }
  .hero-media.has-video .hero-fallback.is-active { opacity: 1; }
  html { scroll-behavior: auto; }
}

.show-links {
  margin-top: .85rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.show-cta {
  margin-top: 0;
  text-decoration: none;
  color: inherit;
}
.show-cta:hover { border-color: var(--accent); color: var(--accent); }
.show-cta-sc { border-color: rgba(255,85,0,.55); }
.show-cta-sc:hover { border-color: #ff5500; color: #ff5500; }

/* Persistent track player */
.audio-dock {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .7rem .9rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(12,12,12,.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,.45);
}
.audio-toggle {
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: rgba(61,220,100,.12);
  color: var(--accent);
  font-size: 0.95rem;
  cursor: pointer;
}
.audio-toggle[aria-pressed="true"] {
  background: var(--accent);
  color: #0a0a0a;
}
.audio-meta { min-width: 0; }
.audio-label {
  margin: 0;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
.audio-title {
  margin: .15rem 0 0;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-credit {
  margin: .15rem 0 0;
  font-size: 11px;
  color: var(--muted);
}
.audio-credit a { color: inherit; text-decoration: none; }
.audio-credit a:hover { color: var(--accent); }
@media (max-width: 560px) {
  .audio-dock { left: .6rem; right: .6rem; bottom: .6rem; }
}

/* === ATLAS-043 HARDER PASS === */

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 81;
  opacity: 0.025;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0,0,0,0.35) 2px,
    rgba(0,0,0,0.35) 3px
  );
}

.site-header {
  background: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,0));
  border-bottom: 1px solid rgba(61,220,100,0.12);
}
.brand-eye { filter: drop-shadow(0 0 10px rgba(61,220,100,.7)) drop-shadow(0 0 22px rgba(61,220,100,.35)); }
.nav a {
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 0 0 1px rgba(61,220,100,0.05);
}
.nav a:hover, .nav a.is-active {
  background: rgba(61,220,100,0.16);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 18px rgba(61,220,100,0.25);
}

.hero-veil {
  background:
    radial-gradient(ellipse at 50% 35%, rgba(61,220,100,0.18), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(61,220,100,0.12), transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.5) 40%, rgba(0,0,0,.92) 100%);
}
.hero-title {
  text-shadow:
    0 0 18px rgba(61,220,100,0.55),
    0 0 48px rgba(61,220,100,0.28),
    2px 0 0 rgba(61,220,100,0.35),
    -2px 0 0 rgba(61,220,100,0.3);
}
.hero-slogan {
  color: var(--accent);
  text-shadow: 0 0 16px rgba(61,220,100,0.35);
}
.hero-tba .accent {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(61,220,100,0.45);
}
.btn-pill {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(61,220,100,0.22), rgba(61,220,100,0.06));
  box-shadow: 0 0 22px rgba(61,220,100,0.18);
}
.btn-pill:hover {
  background: linear-gradient(180deg, rgba(61,220,100,0.38), rgba(61,220,100,0.12));
  box-shadow: 0 0 34px rgba(61,220,100,0.35);
  transform: translateY(-2px);
}

.band {
  min-height: 460px;
  background-color: #000;
}
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(61,220,100,0.12), transparent 40%, rgba(61,220,100,0.1)),
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.62));
}
.band-inner { z-index: 2; }
.band-title-pill {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(61,220,100,0.2), inset 0 0 20px rgba(0,0,0,0.5);
}

.show-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 0 0 1px rgba(61,220,100,0.05);
}
.show-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(61,220,100,0.2), 0 12px 40px rgba(0,0,0,0.5);
  transform: translateY(-5px);
}
.show-poster img {
  filter: contrast(1.15) saturate(1.05);
}
.show-cta {
  border-color: rgba(61,220,100,0.45);
}
.show-cta:hover {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(61,220,100,0.25);
}
.show-cta-sc {
  border-color: rgba(255,85,0,0.65);
}

.gallery-grid img {
  filter: contrast(1.18) saturate(1.05) brightness(0.92);
}
.gallery-grid img:hover {
  filter: contrast(1.25) saturate(1.15) brightness(1);
  box-shadow: 0 0 0 2px var(--accent);
}

.audio-dock {
  border-color: rgba(61,220,100,0.35);
  background: rgba(0,0,0,.92);
  box-shadow: 0 0 30px rgba(61,220,100,0.15), 0 12px 40px rgba(0,0,0,.55);
}
.audio-toggle {
  box-shadow: 0 0 16px rgba(61,220,100,0.3);
}

.site-footer {
  border-top: 1px solid rgba(61,220,100,0.18);
  background: radial-gradient(ellipse at 50% 0%, rgba(61,220,100,0.08), transparent 55%);
}

@media (prefers-reduced-motion: reduce) {
  body::before, body::after { opacity: 0.03; }
  .hero-title { text-shadow: 0 0 12px rgba(61,220,100,0.35); }
  .show-card:hover, .btn-pill:hover { transform: none; }
}


/* Easter eye screamer */
.brand-eye, .hero-eye img, .footer-logo img { cursor: pointer; }
.easter-screamer {
  position: fixed; inset: 0; z-index: 9999; background: #000;
  display: flex; align-items: center; justify-content: center;
  animation: screamer-in 70ms steps(2, end);
}
.easter-screamer[hidden] { display: none !important; }
.easter-screamer img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.4) saturate(1.25) brightness(1.08);
}
@keyframes screamer-in {
  0% { opacity: 0; transform: scale(1.2); filter: brightness(4); }
  100% { opacity: 1; transform: scale(1); filter: none; }
}
@media (prefers-reduced-motion: reduce) {
  .easter-screamer { animation: none; }
  .easter-screamer img { filter: contrast(1.1); }
}

/* === ATLAS-045 LOGO + IMPACT TYPE === */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.brand {
  gap: 0.55rem;
}
.brand-wordmark {
  height: 18px;
  width: auto;
  max-width: min(42vw, 220px);
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(61,220,100,.28));
}
.brand-eye.logo-mark,
.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(61,220,100,.55)) drop-shadow(0 0 18px rgba(61,220,100,.25));
  cursor: pointer;
}
.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin: 0 auto 0.25rem;
}
.hero-logo .hero-eye {
  width: clamp(88px, 18vw, 140px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(61,220,100,.55)) drop-shadow(0 0 40px rgba(61,220,100,.25));
}
.hero-logo .hero-wordmark {
  width: min(92vw, 620px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(0,0,0,0.55));
}
.footer-wordmark {
  height: 16px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
/* Archivo Black tracking for remaining text chrome */
.nav a,
.btn-pill,
.hero-kicker,
.hero-slogan,
.hero-tba,
.hero-spaced,
.eyebrow,
.band-title-pill,
.section-head h2,
.show-name,
.audio-title {
  font-family: var(--display);
  letter-spacing: 0.04em;
}
.nav a { font-size: 0.68rem; letter-spacing: 0.12em; font-weight: 400; }
.btn-pill { font-size: 0.72rem; letter-spacing: 0.1em; font-weight: 400; }
.hero-slogan {
  letter-spacing: 0.28em;
  text-shadow: 0 0 18px rgba(61,220,100,0.25);
}
@media (max-width: 560px) {
  .brand-wordmark { height: 14px; }
  .brand-eye.logo-mark { width: 32px; height: 32px; }
}

/* === ATLAS-045b PREMIUM FX === */

/* Cinematic premium layer */
html { background: #000; }
body {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(61,220,100,0.08), transparent 55%),
    var(--bg);
}

.site-header {
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  background: linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.25));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-media {
  transform: scale(1.04);
  filter: contrast(1.08) saturate(1.05);
}
.hero-logo .hero-eye {
  animation: logoPulse 4.5s ease-in-out infinite;
}
.hero-logo .hero-wordmark {
  animation: none;
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(61,220,100,.5)) drop-shadow(0 0 28px rgba(61,220,100,.2)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 28px rgba(61,220,100,.75)) drop-shadow(0 0 48px rgba(61,220,100,.35)); transform: scale(1.03); }
}
@keyframes wordGlitch {
  0%, 92%, 100% {
    filter: drop-shadow(2px 0 0 rgba(61,220,100,0.35)) drop-shadow(-2px 0 0 rgba(61,220,100,0.3)) drop-shadow(0 0 18px rgba(255,255,255,0.1));
    transform: translate(0,0);
  }
  93% {
    filter: drop-shadow(4px 0 0 rgba(61,220,100,0.7)) drop-shadow(-3px 0 0 rgba(61,220,100,0.6));
    transform: translate(1px, -0.5px);
  }
  95% {
    filter: drop-shadow(-3px 0 0 rgba(61,220,100,0.6)) drop-shadow(3px 0 0 rgba(61,220,100,0.55));
    transform: translate(-1px, 0.5px);
  }
}

.btn-pill {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.14em;
}
.btn-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn-pill:hover::after { transform: translateX(120%); }

.show-card {
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .25s ease, box-shadow .35s ease;
  background: linear-gradient(180deg, #121212, #070707);
}
.show-poster {
  position: relative;
}
.show-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.75));
  pointer-events: none;
}
.show-body { position: relative; z-index: 1; }

.gallery {
  position: relative;
}
.gallery::before {
  content: "CRASHOUT CULT";
  position: absolute;
  left: 50%;
  top: -0.6rem;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
}
.gallery-grid {
  gap: 2px;
  background: #000;
}
.gallery-grid img {
  transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .4s ease, box-shadow .35s ease;
}

.band {
  isolation: isolate;
}
.band-title-pill {
  backdrop-filter: blur(6px);
}

.audio-dock {
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.audio-dock:hover {
  border-color: rgba(61,220,100,0.55);
  box-shadow: 0 0 40px rgba(61,220,100,0.22), 0 16px 48px rgba(0,0,0,.55);
}

.easter-screamer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: #000;
  cursor: pointer;
}
.easter-screamer[hidden] { display: none !important; }
.easter-screamer img {
  width: min(100vw, 100vh);
  height: min(100vw, 100vh);
  object-fit: cover;
  animation: screamFlash .12s steps(2,end) infinite;
}
@keyframes screamFlash {
  0% { filter: contrast(1.4) brightness(1.1); transform: scale(1.02); }
  100% { filter: contrast(1.8) brightness(1.35) hue-rotate(20deg); transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo .hero-eye,
  .hero-logo .hero-wordmark { animation: none; }
  .btn-pill::after { display: none; }
  .easter-screamer img { animation: none; }
}

/* === ATLAS-047 cutout eye === */

.brand-eye.logo-mark,
.logo-mark,
.hero-logo .hero-eye {
  background: transparent;
  mix-blend-mode: normal;
}
.hero-logo .hero-eye {
  width: clamp(96px, 20vw, 160px);
}

/* === ATLAS-051 FEINSCHLIFF === */

/* Refined accents — mute multi-neon spam */
.hero-veil {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(61,220,100,0.10), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.55) 45%, rgba(7,7,8,.94) 100%);
}
.hero-title {
  text-shadow: 0 0 24px var(--accent-glow);
}
.hero-slogan {
  color: var(--fg);
  letter-spacing: 0.34em;
  text-shadow: none;
  opacity: 0.9;
}
.hero-tba .accent {
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent-glow);
}
.nav a:hover, .nav a.is-active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
}
.btn-pill {
  border-color: rgba(61,220,100,0.55);
  background: linear-gradient(180deg, rgba(61,220,100,0.18), rgba(61,220,100,0.05));
  box-shadow: 0 0 16px rgba(61,220,100,0.12);
}
.btn-pill:hover {
  background: linear-gradient(180deg, rgba(61,220,100,0.28), rgba(61,220,100,0.1));
  box-shadow: 0 0 24px rgba(61,220,100,0.22);
}
.band::after {
  background:
    linear-gradient(90deg, rgba(61,220,100,0.06), transparent 45%, rgba(61,220,100,0.04)),
    linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.66));
}
.band-title-pill {
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 18px rgba(61,220,100,0.12);
}
.show-card {
  background: linear-gradient(180deg, #141418, #0a0a0c);
  border: 1px solid var(--line);
  box-shadow: none;
  border-radius: 16px;
}
.show-card:hover {
  border-color: rgba(61,220,100,0.55);
  box-shadow: 0 10px 36px rgba(0,0,0,0.45), 0 0 20px rgba(61,220,100,0.12);
  transform: translateY(-4px);
}
.show-cta { border-color: rgba(255,255,255,0.28); }
.show-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}
.show-cta-sc {
  border-color: rgba(255,255,255,0.28);
}
.show-cta-sc:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.gallery::before { color: rgba(255,255,255,0.22); letter-spacing: 0.36em; }
.gallery-grid img {
  filter: contrast(1.08) saturate(0.92) brightness(0.94);
}
.gallery-grid img:hover {
  filter: contrast(1.12) saturate(1) brightness(1);
  box-shadow: 0 0 0 1px rgba(61,220,100,0.55);
}
.audio-dock {
  border-color: rgba(61,220,100,0.28);
  background: rgba(10,10,12,.9);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.audio-toggle {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
  box-shadow: none;
}
.audio-toggle[aria-pressed="true"] {
  background: var(--accent);
  color: #071008;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: transparent;
}
.brand-eye.logo-mark,
.logo-mark,
.hero-logo .hero-eye {
  filter: drop-shadow(0 0 12px var(--accent-glow));
}
.hero-logo .hero-eye { animation: logoPulse 5.5s ease-in-out infinite; }
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(61,220,100,.35)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 22px rgba(61,220,100,.55)); transform: scale(1.02); }
}
.section { padding: 5rem clamp(1rem, 4vw, 3rem); }
.section-head { margin-bottom: 2.4rem; }

/* Mobile Feinschliff */
@media (max-width: 720px) {
  :root { --header-h: auto; }
  .site-header {
    height: auto;
    min-height: 4.25rem;
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
    gap: 0.65rem;
  }
  .brand-wordmark { height: 16px; max-width: 48vw; }
  .brand-eye.logo-mark { width: 34px; height: 34px; }
  .nav { width: 100%; justify-content: flex-start; gap: 0.35rem; }
  .nav a {
    min-height: 2.15rem;
    padding: 0.2rem 0.75rem;
    font-size: 0.62rem;
  }
  .hero { padding: calc(5.5rem + 1rem) 1rem 3.5rem; }
  .hero-logo .hero-wordmark { width: min(94vw, 420px); }
  .hero-ctas { gap: 0.6rem; }
  .btn-pill { min-height: 2.75rem; width: 100%; max-width: 20rem; }
  .audio-dock {
    left: 0.5rem; right: 0.5rem; bottom: 0.5rem;
    max-width: none;
    border-radius: 18px;
  }
  .band { min-height: 360px; padding: 3.5rem 1rem; }
}

/* === ATLAS-052 QUALITY === */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn-pill:focus-visible,
.nav a:focus-visible,
.audio-toggle:focus-visible,
.show-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.gallery-section { padding-bottom: 2rem; }
.gallery-section .gallery { margin-top: 0.5rem; }
.gallery::before { display: none; } /* real section head now */
body {
  padding-bottom: 5.5rem; /* clear audio dock */
}
.site-footer {
  padding-bottom: 5.5rem;
}
.hero-logo { margin-bottom: 0.35rem; }
.hero-tba {
  margin-top: 0.85rem;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  letter-spacing: 0.12em;
  opacity: 0.92;
}
.band-sub { max-width: 28rem; margin-left: auto; margin-right: auto; }
@media (max-width: 720px) {
  body, .site-footer { padding-bottom: 6.25rem; }
}

/* === ATLAS-054 FAQ === */

.faq-section { max-width: 46rem; margin: 0 auto; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #121216, #0a0a0c);
  overflow: hidden;
}
.faq-item.is-open {
  border-color: rgba(61,220,100,0.35);
  box-shadow: 0 0 18px rgba(61,220,100,0.08);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 0;
  background: transparent;
  color: var(--fg);
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
}
.faq-chevron {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}
.faq-a {
  padding: 0 1.15rem 1.1rem;
}
.faq-a p {
  margin: 0;
  font-family: var(--ui);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}
.faq-q:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
@media (max-width: 720px) {
  .faq-q { font-size: 0.88rem; padding: 0.95rem 1rem; min-height: 3rem; }
}

/* === ATLAS-056 VIDEOS === */

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .videos-grid { grid-template-columns: 1fr; }
}
.video-card {
  background: linear-gradient(180deg, #121216, #0a0a0c);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: top;
}
.video-title {
  margin: 0;
  padding: 0.75rem 1rem 0.9rem;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* NEXUS-060 — artist card readability */
.show-links {
  margin-top: .95rem;
  gap: .5rem;
}
.show-cta {
  color: var(--fg);
  border-color: rgba(61,220,100,0.5);
  background: rgba(61,220,100,0.08);
  font-weight: 400;
}
.show-cta-sc {
  border-color: rgba(255,85,0,0.65);
  background: rgba(255,85,0,0.08);
}
.show-body { padding: 1.05rem 1rem 1.2rem; }


/* Portrait reel cards */
.video-card.is-portrait .video-frame {
  aspect-ratio: 9 / 16;
  max-height: 70vh;
  margin: 0 auto;
}
.videos-grid {
  align-items: start;
}
