* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #1DB954;
  --green-glow: rgba(29, 185, 84, 0.35);
  --white-soft: rgba(255, 255, 255, 0.88);
  --white-muted: rgba(255, 255, 255, 0.68);
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #111;
  color: white;
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 90, 90, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(29, 185, 84, 0.12), transparent 34%),
    linear-gradient(135deg, #0b0b0b, #2d1414, #101010);
  z-index: -1;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(11, 11, 11, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: var(--white-muted);
  font-size: 0.78rem;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.nav-links .nav-cta {
  background: rgba(29, 185, 84, 0.16);
  border: 1px solid rgba(29, 185, 84, 0.35);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  margin: 4px auto;
  border-radius: 999px;
}

.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;
}

.container {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 42px 20px 28px;
  animation: fade 0.8s ease;
}

.page-container {
  max-width: 980px;
}

.section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 38px);
  margin-bottom: 28px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 54px);
}

.cover {
  width: 100%;
  max-width: 360px;
  justify-self: center;
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.eyebrow {
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 12px;
  text-align: center;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .subtitle,
.hero-copy .intro {
  text-align: left;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.05rem);
  line-height: 1.15;
  margin-bottom: 18px;
  text-align: center;
}

h3 {
  font-size: 1.05rem;
}

.subtitle {
  font-size: 1.15rem;
  color: var(--white-muted);
  margin-bottom: 24px;
}

.intro,
.about-section p,
.playlist-intro,
.cta-section p,
.instrumental-section p,
.contact-hero p,
.contact-details p,
.form-note {
  line-height: 1.8;
  color: var(--white-soft);
  text-align: center;
}

.hero-actions,
.link-buttons,
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.button,
.link-buttons a,
.social-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: white;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.button-primary {
  background: var(--green);
  color: #071107;
  border-color: transparent;
}

.button-secondary,
.link-buttons a,
.social-buttons a {
  background: rgba(255, 255, 255, 0.09);
}

.button:hover,
.link-buttons a:hover,
.social-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px var(--green-glow);
}

.link-buttons,
.social-buttons:not(.stacked) {
  justify-content: center;
}

.platform-buttons a:hover,
.social-buttons a:hover {
  background: var(--green);
  color: #071107;
}

.song-list {
  display: grid;
  gap: 18px;
}

.song {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--card-strong);
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.song-cover {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.song-info {
  width: 100%;
}

.song-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 12px;
}

audio {
  width: 100%;
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.playlist {
  background: var(--card-strong);
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.playlist iframe {
  border-radius: 16px;
}

.instrumental-section {
  text-align: center;
}

.instrumental-playlist {
  margin-top: 28px;
}

.cta-section {
  text-align: center;
}

.cta-section .button {
  margin-top: 22px;
}

.contact-hero {
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 720px;
  margin: 0 auto;
}

.contact-card,
.contact-details {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--white-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(29, 185, 84, 0.7);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 4px rgba(29, 185, 84, 0.12);
}

.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-button {
  width: fit-content;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  font-size: 1rem;
}

.form-note {
  font-size: 0.88rem;
  color: var(--white-muted);
  text-align: left;
}

.email-link {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  margin-top: 10px;
  word-break: break-word;
}

.contact-details hr {
  margin: 28px 0;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-details h3 {
  margin-bottom: 14px;
}

.stacked {
  display: grid;
}

.site-footer {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 20px 40px;
  color: var(--white-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}

.footer-inner p,
.footer-note {
  margin-top: 8px;
  font-size: 0.92rem;
}

.footer-note {
  text-align: center;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 20px;
    background: rgba(12, 12, 12, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .hero-section,
  .contact-layout,
  .playlist-grid {
    grid-template-columns: 1fr;
  }

  .cover {
    max-width: 320px;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .subtitle,
  .hero-copy .intro {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 28px 14px 18px;
  }

  .section {
    border-radius: 22px;
  }

  .button,
  .link-buttons a,
  .social-buttons a,
  .form-button {
    width: 100%;
  }

  .song {
    flex-direction: column;
    text-align: center;
  }

  .song-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .playlist {
    padding: 12px;
  }
}

.footer-social-only {
  justify-content: center;
  text-align: center;
}

.footer-social-only .social-buttons {
  justify-content: center;
}


.pitch-hero .intro {
  max-width: 760px;
  margin: 0 auto;
}

.centered-actions {
  justify-content: center;
}

.pitch-contact-action {
  margin-top: 28px;
}

.section-intro {
  color: var(--white-soft);
  line-height: 1.8;
  text-align: center;
  margin: -4px auto 24px;
  max-width: 680px;
}

.song picture {
  flex-shrink: 0;
  display: block;
}

.pitch-page .site-header {
  position: static;
}

.pitch-container {
  max-width: 900px;
}

.pitch-hero {
  text-align: center;
  padding-top: clamp(30px, 5vw, 54px);
  padding-bottom: clamp(30px, 5vw, 54px);
}

.pitch-note {
  color: var(--white-muted);
  margin-top: 18px;
  font-size: 0.95rem;
  text-align: center;
}

.pitch-song-list .song {
  background: rgba(255, 255, 255, 0.085);
}

.pitch-footer {
  padding-top: 12px;
}
