@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cinzel:wght@400;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

:root {
  --bg-video-opacity: var(--bg-video-opacity);
  --bg: #050505;
  --bg-alt: #0b0b0b;
  --ink: #f6f6f6;
  --muted: #b3b3b3;
  --accent: #4c00b0;
  --accent-2: #f6f6f6;
  --card: rgba(255, 255, 255, 0.02);
  --stroke: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #141414 0%, #0a0a0a 40%, var(--bg) 100%);
  min-height: 100vh;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='0.06'/></svg>");
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 7vw;
  background: rgba(5, 5, 5, 0.85);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.brand {
  font-family: "Cinzel", serif;
  font-size: 26px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--stroke);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(76, 0, 176, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-mini {
  padding: 8px 12px;
  font-size: 10px;
  border-color: var(--stroke);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 80px 7vw 60px;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--accent);
  font-size: 11px;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(46px, 10vw, 110px);
  margin: 12px 0 12px;
  letter-spacing: 0.08em;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 18px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.link-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.link-row a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 0;
  padding: 22px;
  box-shadow: var(--shadow);
}

.cover-art {
  height: 260px;
  border-radius: 0;
  background: linear-gradient(135deg, #1a1a1a, #3a3a3a 35%, #b3121b 90%);
  background-size: cover;
  background-position: center;
  filter: saturate(0.8);
  position: relative;
}
.cover-art::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.now-playing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}

.label {
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.4em;
  margin: 0 0 6px;
}

.track-title {
  font-size: 20px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.track-meta {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 70px 7vw;
}

.section.alt {
  background: var(--bg-alt);
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  font-family: "Cinzel", serif;
  font-size: 34px;
  margin: 0 0 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.track-grid,
.video-grid,
.cta-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.track-card,
.video-card,
.cta-card,
.about-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 0;
  padding: 20px;
  box-shadow: var(--shadow);
}

.track-card iframe {
  width: 100%;
  margin-top: 14px;
  border-radius: 0;
}

.track-info h3 {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 14px;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  height: 200px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: var(--muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  align-items: start;
}

.about-copy p {
  color: var(--muted);
}

.about-card h3 {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.cta-card {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.cta-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.cta-meta {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.site-footer {
  padding: 40px 7vw 60px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.videos-full .video-grid {
  grid-template-columns: 1fr;
}

.videos-full .video-card {
  max-width: none;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 16px 6vw;
  }

  .hero,
  .section {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .hero-card {
    order: -1;
  }
}

\n.latest-embed {\n  margin-top: 14px;\n  margin-bottom: 14px;\n}\n\n.latest-embed iframe {\n  width: 100%;\n  height: 152px;\n  border: 0;\n}\n
\n.home-hero .section-head {\n  text-align: center;\n}\n\n.home-video {\n  margin-top: 28px;\n  border: 1px solid var(--stroke);\n  box-shadow: var(--shadow);\n}\n\n.home-video video {\n  width: 100%;\n  height: auto;\n  display: block;\n}\n
\n.home-bg {\n  position: fixed;\n  inset: 0;\n  z-index: 0;\n  overflow: hidden;\n}\n\n.home-bg video {\n  width: 100%;\n  height: 100%;\n  object-fit: cover;\n  opacity: var(--bg-video-opacity);\n}\n\n.home-overlay {\n  position: absolute;\n  inset: 0;\n  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.7) 100%);\n}\n\n.home-content {\n  position: relative;\n  z-index: 2;\n}\n\n.home-hero {\n  min-height: 70vh;\n  display: grid;\n  place-items: center;\n}\n\n.home-hero .section-head {\n  text-align: center;\n}\n
\n.home-page {\n  min-height: 100vh;\n  display: flex;\n  flex-direction: column;\n}\n\n\n.home-page .site-header,\n.home-page .site-footer {\n  background: transparent;\n}\n\n.home-page .home-content {\n  flex: 1;\n  display: grid;\n}\n\n.home-page .home-hero {\n  min-height: 100vh;\n  display: grid;\n  place-items: center;\n}\n
.latest-embed {
  margin-top: 14px;
  margin-bottom: 14px;
}

.latest-embed iframe {
  width: 100%;
  height: 152px;
  border: 0;
}

.home-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--bg-video-opacity);
}

.home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.7) 100%);
}

.home-content {
  position: relative;
  z-index: 2;
}

.home-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.home-hero .section-head {
  text-align: center;
}

.home-page {\n  min-height: 100vh;\n  display: flex;\n  flex-direction: column;\n}\n.home-page .site-header,
.home-page .site-footer {
  background: transparent;
}

.home-page .home-content {
  flex: 1;
  display: grid;
}

.home-page .home-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
}


\n.videos-scroll .video-scroll {\n  display: grid;\n  grid-auto-flow: row;\n  grid-auto-rows: minmax(240px, auto);\n  gap: 24px;\n  overflow-y: auto;\n  padding-bottom: 16px;\n  scroll-snap-type: y mandatory;\n}\n\n.videos-scroll .video-card {\n  scroll-snap-align: start;\n}\n\n.videos-scroll .video-scroll::-webkit-scrollbar {\n  height: 10px;\n}\n\n.videos-scroll .video-scroll::-webkit-scrollbar-thumb {\n  background: rgba(255, 255, 255, 0.25);\n  border-radius: 999px;\n}\n


\n.page-enter {\n  animation: pageFadeIn 0.35s ease both;\n}\n\n.page-exit {\n  animation: pageFadeOut 0.2s ease both;\n}\n\n@keyframes pageFadeIn {\n  from {\n    opacity: 0;\n    transform: translateY(6px);\n  }\n  to {\n    opacity: 1;\n    transform: translateY(0);\n  }\n}\n\n@keyframes pageFadeOut {\n  from {\n    opacity: 1;\n  }\n  to {\n    opacity: 0;\n  }\n}\n




\r\n


.home-page.allow-scroll {
  overflow-y: auto;
}

\n.cta-title {\n  display: inline-flex;\n  align-items: center;\n  gap: 10px;\n}\n\n.cta-icon {\n  width: 18px;\n  height: 18px;\n  display: inline-flex;\n}\n\n.cta-icon svg {\n  width: 100%;\n  height: 100%;\n}\n

.shhh-link {
  position: fixed;
  right: 20px;
  bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.35);
  z-index: 12;
}

.shhh-link:hover {
  color: var(--ink);
  border-color: var(--accent);
}

.shhh-page {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #000000;
  font-family: "Space Grotesk", sans-serif;
}

.shhh-main {
  text-align: center;
}

.shhh-text {
  font-size: 16px;
  letter-spacing: 0.3em;
}

.shhh-title {
  font-size: 14px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 0 0 10px;
}


.home-page.no-scroll {
  overflow: hidden;
}

