:root {
  --bg: #07000f;
  --panel: #120d1c;
  --panel-2: #171923;
  --cyan: #00d4ff;
  --green: #00ff85;
  --gold: #ffb800;
  --rose: #ff3d8b;
  --white: #ffffff;
  --muted: #aaa8bd;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--white);
  font-family: "Exo 2", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.music-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-shell {
  padding: 22px 0 34px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0 28px;
}

.brand-link,
.nav-actions,
.hero-actions,
.genre-pills,
.chart-controls,
.show-slots,
.music-footer {
  display: flex;
  align-items: center;
}

.brand-link {
  gap: 12px;
  text-decoration: none;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
}

.brand-link img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-link strong,
.music-footer strong {
  color: var(--white);
}

.brand-link span,
.music-footer span {
  color: var(--cyan);
}

.nav-actions {
  gap: 8px;
}

.nav-actions a,
.secondary-btn,
.primary-btn,
.filter-btn,
.text-link {
  min-height: 42px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
}

.nav-actions a {
  padding: 13px 14px;
  color: var(--muted);
}

.nav-actions a:hover,
.text-link:hover {
  color: var(--cyan);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  min-height: 520px;
}

.hero-copy,
.signal-panel,
.feature-band,
.spotlight-card,
.episode-card,
.submit-band {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(255, 61, 139, 0.08)),
    var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  min-height: 520px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.88rem;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 6.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.lead,
.section-heading p,
.signal-panel p,
.spotlight-card p,
.episode-card p,
.submit-band p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

.primary-btn {
  background: var(--cyan);
  color: #061018;
}

.secondary-btn {
  border: 1px solid var(--cyan);
  color: var(--cyan);
}

.signal-panel {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 520px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.signal-panel::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto auto;
  width: 132px;
  aspect-ratio: 1;
  background: url("/assets/images/NEURALSTITCH_AI_MUSICLOGO.png") center / contain no-repeat;
  opacity: 0.32;
}

.status-tag {
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(0, 255, 133, 0.45);
  color: var(--green);
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
}

.number-one {
  margin-top: 22px;
  color: var(--gold);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.genre-pills,
.chart-controls,
.show-slots {
  flex-wrap: wrap;
  gap: 8px;
}

.genre-pills span,
.show-slots span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.feature-band,
.two-column,
.method-grid,
.submit-band {
  margin-top: 22px;
}

.feature-band {
  padding: clamp(22px, 4vw, 36px);
}

.section-heading {
  max-width: 780px;
}

.chart-controls {
  margin: 24px 0 16px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0 14px;
  cursor: pointer;
}

.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.chart-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.chart-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.chart-table th,
.chart-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.chart-table th {
  color: var(--cyan);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.chart-table td:first-child {
  color: var(--gold);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.track-title {
  font-weight: 900;
}

.status-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 184, 0, 0.45);
  color: var(--gold);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
}

.spotlight-card,
.episode-card,
.submit-band {
  padding: clamp(22px, 4vw, 34px);
}

.spotlight-layout {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.spotlight-layout img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
}

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

.method-grid .section-heading {
  grid-column: 1 / -1;
}

.method-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel-2);
}

.method-card strong {
  display: block;
  color: var(--rose);
  font-family: "Rajdhani", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.method-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.submit-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
}

.submit-band div {
  max-width: 780px;
}

.music-footer {
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
}

.music-footer a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 860px) {
  .top-nav,
  .submit-band,
  .music-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .signal-panel {
    min-height: 0;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .music-shell,
  .music-footer {
    width: min(100% - 20px, 1180px);
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .nav-actions a {
    padding-left: 8px;
    padding-right: 8px;
  }

  .spotlight-layout {
    grid-template-columns: 1fr;
  }
}
