:root {
  color-scheme: dark;
  --green: #00e676;
  --violet: #9237fd;
  --cyan: #00dcf8;
  --black: #000000;
  --white: #ffffff;
  --text-soft: #c8c8c8;
  --text-muted: #a7a7a7;
  --surface: rgba(18, 18, 18, 0.86);
  --surface-strong: rgba(28, 28, 28, 0.94);
  --line: rgba(255, 255, 255, 0.16);
  --error: #f51000;
  --max-width: 1160px;
  --header-height: 74px;
  --shadow-green: 0 0 26px rgba(0, 230, 118, 0.4);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::selection { background: var(--green); color: var(--black); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  transform: translateY(-180%);
  border-radius: 6px;
  background: var(--green);
  color: var(--black);
  padding: 0.7rem 0.9rem;
  font-weight: 900;
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 5vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.12));
  border-bottom: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(0, 0, 0, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand-mark, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
}

.brand-dot {
  width: 0.78rem;
  height: 0.78rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: var(--shadow-green);
}

.site-menu, .site-nav, .footer-links, .link-grid {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.site-nav a, .nav-dropdown summary, .footer-links a, .link-grid a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-soft);
  padding: 0.5rem 0.72rem;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-nav a:hover, .nav-dropdown summary:hover, .footer-links a:hover, .link-grid a:hover {
  border-color: rgba(0, 230, 118, 0.48);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-dropdown { position: relative; }
.nav-dropdown summary { list-style: none; }
.nav-dropdown summary::-webkit-details-marker { display: none; }

.dropdown-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
  min-width: 12rem;
  display: grid;
  gap: 0.2rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0.65rem;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.82rem 1.1rem;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: var(--black); box-shadow: var(--shadow-green); }
.button-primary:hover { box-shadow: 0 0 34px rgba(0, 230, 118, 0.58); }
.button-secondary { border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.08); color: var(--white); }
.button-secondary:hover { border-color: rgba(0, 220, 248, 0.58); box-shadow: 0 0 22px rgba(0, 220, 248, 0.18); }
.header-cta { min-height: 2.7rem; padding: 0.62rem 0.9rem; }

.hero {
  position: relative;
  min-height: calc(92svh - var(--header-height));
  display: grid;
  align-items: end;
  margin-top: calc(var(--header-height) * -1);
  overflow: hidden;
  isolation: isolate;
}

.hero-media, .hero-shade, .hero-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  z-index: -4;
}

.hero-shade {
  z-index: -3;
  background:
    radial-gradient(circle at 74% 48%, rgba(0, 230, 118, 0.16), transparent 32%),
    radial-gradient(circle at 86% 24%, rgba(146, 55, 253, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.34) 72%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.94));
}

.hero-glow {
  z-index: -2;
  background: radial-gradient(circle at 26% 72%, rgba(0, 230, 118, 0.16), transparent 28%);
  animation: glow-drift 7s ease-in-out infinite alternate;
}

.hero-content {
  width: min(var(--max-width), 90vw);
  margin: 0 auto;
  padding: calc(var(--header-height) + 5rem) 0 7rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  border: 1px solid rgba(0, 230, 118, 0.46);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: var(--white);
  padding: 0.42rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.status-badge span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: var(--shadow-green);
}

.eyebrow, .section-kicker, .tagline {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: "League Gothic", "Roboto Condensed", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-style: italic;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 { max-width: 10ch; font-size: clamp(4.6rem, 14vw, 11.5rem); text-shadow: 0 0 34px rgba(0, 230, 118, 0.18); }
h2 { font-size: clamp(2.55rem, 7vw, 5.4rem); }
h3 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }

p { color: var(--text-soft); }
.hero-subtitle { max-width: 650px; margin: 1rem 0 0; font-size: clamp(1.12rem, 2vw, 1.45rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

.section, .page-hero { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-quiet { background: #050505; border-block: 1px solid var(--line); }
.section-shell { width: min(var(--max-width), 90vw); margin: 0 auto; }
.section-heading { max-width: 870px; margin-bottom: 2rem; }
.section-cta { margin-top: 1.5rem; }

.page-hero {
  padding-top: clamp(5rem, 10vw, 8rem);
  background:
    radial-gradient(circle at 82% 16%, rgba(146, 55, 253, 0.2), transparent 28%),
    radial-gradient(circle at 16% 72%, rgba(0, 230, 118, 0.14), transparent 24%),
    #000000;
  border-bottom: 1px solid var(--line);
}

.page-hero p { max-width: 760px; font-size: 1.12rem; }

.split-grid, .feature-release, .submit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.stacked-copy { display: grid; gap: 1rem; }
.stacked-copy p { margin: 0; }

.card-grid { display: grid; gap: 1rem; }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.info-card, .release-card, .artist-card, .demo-form, .process-step, .policy-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.info-card, .release-card, .artist-card, .process-step, .policy-box { padding: 1.1rem; }
.info-card p, .release-card p, .artist-card p, .process-step p, .policy-box p { margin-bottom: 0; }

.feature-release {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 1rem;
}

.cover-art {
  position: relative;
  min-height: 19rem;
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(circle at 44% 36%, rgba(0, 230, 118, 0.82), transparent 16%),
    radial-gradient(circle at 72% 66%, rgba(146, 55, 253, 0.78), transparent 20%),
    radial-gradient(circle at 30% 78%, rgba(0, 220, 248, 0.58), transparent 18%),
    linear-gradient(145deg, #080808, #202020);
  aspect-ratio: 1 / 1;
}

.cover-art::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  box-shadow: inset 0 0 38px rgba(0, 0, 0, 0.76);
}

.cover-art span {
  position: absolute;
  inset: auto 12% 16%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--violet));
  box-shadow: 0 0 28px rgba(0, 230, 118, 0.55);
}

.release-card .cover-art { min-height: auto; margin-bottom: 1rem; }
.release-meta { display: flex; flex-wrap: wrap; gap: 0.55rem; color: var(--text-muted); font-size: 0.92rem; }
.release-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.release-links a { border: 1px solid var(--line); border-radius: 999px; padding: 0.42rem 0.66rem; color: var(--text-soft); }
.release-links a:hover { border-color: var(--green); color: var(--white); }
.genre-tag {
  border: 1px solid rgba(0, 230, 118, 0.38);
  border-radius: 999px;
  color: var(--white);
  padding: 0.08rem 0.48rem;
}

.embed-slot {
  display: grid;
  place-items: center;
  min-height: 4.5rem;
  margin-top: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 1rem;
}

.metric-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--white);
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.metric-card p { margin-bottom: 0; }

.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.process-step span { color: var(--cyan); font-weight: 900; }

.join-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.12), rgba(146, 55, 253, 0.13));
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.demo-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: var(--surface-strong);
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 0.8rem;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 1rem;
}

.newsletter-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--white);
  font-weight: 800;
}

.newsletter-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.44);
  color: var(--white);
  padding: 0.78rem 0.82rem;
}

.newsletter-form .form-status {
  grid-column: 1 / -1;
}

.demo-form label { display: grid; gap: 0.42rem; color: var(--white); font-size: 0.92rem; font-weight: 800; }
.demo-form input, .demo-form select, .demo-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.44);
  color: var(--white);
  padding: 0.78rem 0.82rem;
}
.demo-form input:focus, .demo-form select:focus, .demo-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.16); outline: none; }
.demo-form textarea { resize: vertical; }
.checkbox-row { grid-template-columns: 1.1rem minmax(0, 1fr); align-items: start; }
.checkbox-row input { width: 1.05rem; height: 1.05rem; margin-top: 0.24rem; accent-color: var(--green); }
.form-status { min-height: 1.5rem; margin: 0; color: var(--text-muted); font-size: 0.9rem; }
.form-status.is-success { color: var(--green); }
.form-status.is-error { color: var(--error); }

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}
.faq-list summary { cursor: pointer; color: var(--white); font-weight: 900; }

.text-link { color: var(--green); font-weight: 900; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }

.site-footer { border-top: 1px solid var(--line); padding: 2rem 0; background: #000000; }
.footer-shell {
  width: min(var(--max-width), 90vw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.footer-links { flex-wrap: wrap; justify-content: flex-end; }
.site-footer p { margin: 0.35rem 0 0; color: var(--text-soft); }

@keyframes glow-drift {
  from { opacity: 0.5; transform: translate3d(-1%, 1%, 0); }
  to { opacity: 1; transform: translate3d(1%, -1%, 0); }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-header { min-height: 70px; }
  .site-menu {
    position: absolute;
    inset: 100% 5vw auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.96);
    padding: 0.8rem;
  }
  .site-header.is-open .site-menu { display: flex; }
  .site-nav { display: grid; gap: 0.25rem; }
  .site-nav a, .nav-dropdown summary { border-radius: 6px; }
  .dropdown-panel { position: static; margin-top: 0.35rem; box-shadow: none; }
  .header-cta { width: 100%; }
  .hero { margin-top: -70px; min-height: calc(88svh - 70px); }
  .hero-content { padding-top: 10rem; padding-bottom: 4.5rem; }
  .split-grid, .feature-release, .submit-layout, .three-up, .two-up, .process-grid, .metric-grid { grid-template-columns: 1fr; }
  .newsletter-form { grid-template-columns: 1fr; }
  .join-band, .footer-shell { display: grid; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(4rem, 18vw, 6rem); }
  .hero-actions, .hero-actions .button, .join-band .button { width: 100%; }
  .section, .page-hero { padding-block: 4rem; }
}

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