:root {
  color-scheme: dark;
  color: #f8f8fa;
  background: #08080d;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(circle at top, rgba(255, 69, 110, 0.16), transparent 35%),
              linear-gradient(180deg, #090911 0%, #060609 100%);
  line-height: 1.6;
}

img, svg {
  max-width: 100%;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 13, 0.86);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 3rem;
  height: auto;
  max-height: 3rem;
  object-fit: contain;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-inner p {
  margin: 0.25rem 0 0;
  color: #9ea2b8;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: #d9dbe8;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  color: #f6b6c3;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.77rem;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.75rem, 4vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-text,
.section-text,
.request-form p,
.about-card p,
.feature-card p,
.hero-card p,
.site-footer p {
  color: #d9dbe8;
}

.hero-text {
  max-width: 42rem;
  margin: 1.5rem 0 1rem;
  font-size: 1.05rem;
}

.listen-now {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #f8f8fa;
  font-weight: 600;
}

.listen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.listen-now span {
  color: #f6b6c3;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.7rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ff3b7f, #ffbf1b);
  color: #08111f;
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #f8f8fa;
}

.hero-card {
  background: linear-gradient(180deg, rgba(22, 27, 40, 0.9), rgba(12, 13, 19, 0.88));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  border-radius: 30px;
}

.music-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 59, 127, 0.16);
  color: #ff8aad;
  font-weight: 700;
}

.section {
  padding: 3.5rem 0;
  scroll-margin-top: 6rem;
}

#music,
#request,
#about {
  scroll-margin-top: 6rem;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.about-grid,
.music-grid {
  display: grid;
  gap: 1.5rem;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card,
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2rem;
  border-radius: 28px;
}

.about-card h3,
.feature-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.request-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.request-form {
  display: grid;
  gap: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  border-radius: 28px;
}

.request-form label {
  display: grid;
  gap: 0.65rem;
  font-weight: 600;
  color: #e3e7f0;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.04);
  color: #f8f8fa;
  font: inherit;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: rgba(255, 59, 127, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 59, 127, 0.12);
}

.form-note {
  margin: 0;
  color: #9ea2b8;
  font-size: 0.95rem;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.flash-message {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%) translateY(1rem);
  background: rgba(255, 59, 127, 0.95);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 20;
}

.flash-message.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.social-links a {
  color: #f8f8fa;
  text-decoration: none;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-links a:hover {
  background: rgba(255, 59, 127, 0.18);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .hero-grid,
  .request-grid,
  .about-grid,
  .music-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 3rem;
  }
}
