/* ============ Tokens ============ */
:root {
  --bg: #0a0a0c;
  --bg-alt: #101013;
  --surface: #151518;
  --surface-2: #1c1c20;
  --border: #28282e;
  --text: #f4f4f2;
  --text-dim: #9b9ba3;
  --text-faint: #7a7a82;
  --accent: #8b5cf6;
  --accent-2: #c084fc;
  --accent-dim: #7c3aed;
  --accent-ink: #ffffff;
  --radius: 14px;
  --max: 1200px;
  --ease: cubic-bezier(.22,.68,0,1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .nav__logo {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* subtle grain overlay */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--solid {
  background: var(--accent-dim);
  color: var(--accent-ink);
}
.btn--solid:hover { background: var(--accent); }

.btn--outline {
  border-color: var(--border);
  color: var(--text);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background .3s var(--ease), padding .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,12,0.82);
  backdrop-filter: blur(14px);
  padding: 0.9rem 0;
  border-color: var(--border);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.nav__logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.nav__logo-text small {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  gap: 2.2rem;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .2s;
  position: relative;
}
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 4rem;
  max-width: var(--max);
  margin: 0 auto;
  gap: 2rem;
}
.hero__glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(139,92,246,0.28) 0%, rgba(139,92,246,0) 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  margin-bottom: 1.5rem;
}
.hero__sub {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.25rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__photo {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-left: auto;
  width: min(400px, 38vw);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(139,92,246,0.25), 0 40px 100px rgba(0,0,0,0.55);
  border: 1px solid rgba(139,92,246,0.35);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.45) contrast(1.08);
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0) 55%, rgba(10,10,12,0.85) 100%),
    linear-gradient(90deg, rgba(10,10,12,0.3) 0%, rgba(10,10,12,0) 35%);
  pointer-events: none;
}
.hero__photo-tag {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--border);
  border-radius: 20px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: var(--accent);
  border-radius: 50%;
  animation: scrollcue 1.8s ease infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 0; }
}

/* ============ Stats ============ */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.stats__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
}
.stat__label {
  color: var(--text-dim);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ Sections ============ */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}
.section--alt { max-width: none; background: var(--bg-alt); }
.section--alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

.section__head { max-width: 620px; margin-bottom: 3rem; }
.section__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.section__desc { color: var(--text-dim); margin-top: 0.75rem; }

/* ============ Releases ============ */
.releases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) {
  .releases__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .releases__grid { grid-template-columns: 1fr; }
}
.release-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.release-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-dim);
}
.release-card__art {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: #000;
}
.release-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.release-card:hover .release-card__art img { transform: scale(1.06); }
.release-card__body { padding: 1.1rem 1.2rem 1.3rem; }
.release-card__type {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}
.release-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0.35rem 0 0.15rem;
}
.release-card__artist { color: var(--text-dim); font-size: 0.9rem; }
.release-card__meta {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-faint);
}
.release-card__listen {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-dim);
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s;
}
.release-card__listen:hover { color: var(--accent); }

/* ============ Artists ============ */
.artists__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.artist-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.artist-card:hover { transform: translateY(-6px); border-color: var(--accent-dim); }
.artist-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}
.artist-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.artist-card:hover .artist-card__photo img { transform: scale(1.06); }
.artist-card__body {
  padding: 1.3rem 1.4rem 1.5rem;
}
.artist-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.artist-card__role {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.25rem;
}
.artist-card__bio {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-top: 0.65rem;
  line-height: 1.55;
}
.artist-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
  padding: 0.6rem 1.1rem;
  border-radius: 100px;
  border: 1px solid var(--accent-dim);
  background: none;
  color: var(--accent);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.artist-card__btn:hover { background: var(--accent-dim); color: var(--accent-ink); }
.artist-card__socials {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.1rem;
}
.artist-card__socials a {
  color: var(--text-faint);
  transition: color .2s;
}
.artist-card__socials a:hover { color: var(--accent); }
.artist-card__socials svg { width: 19px; height: 19px; }

/* ============ Features strip ============ */
.features {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.features__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.feature__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(139,92,246,0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__icon svg { width: 20px; height: 20px; }
.feature h3 { font-size: 0.92rem; margin-bottom: 0.3rem; }
.feature p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; }

/* ============ About ============ */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.about__text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1.25rem; }
.about__text p { color: var(--text-dim); margin-bottom: 1rem; max-width: 560px; }
.about__cta { margin-top: 1.5rem; }

.about__visual { display: flex; justify-content: center; }
.tape-deck {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.tape-deck__reel {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, #2a2a2f 0deg 10deg, #333338 10deg 20deg);
  border: 6px solid var(--bg);
  box-shadow: 0 0 0 1px var(--border);
  animation: spin 6s linear infinite;
}
.tape-deck__reel:last-child { animation-duration: 6.4s; }

/* ============ CTA band ============ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem;
  text-align: center;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band__waves {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0.35;
  pointer-events: none;
}
.cta-band__waves span {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
}
.cta-band__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.cta-band__content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 0.6rem;
}
.cta-band__content p {
  color: var(--text-dim);
  margin-bottom: 1.75rem;
}

/* ============ Demo Form ============ */
.demo-form {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field label {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
}
.field input, .field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font: inherit;
  transition: border-color .2s;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.demo-form .btn { align-self: flex-start; margin-top: 0.5rem; }
.form-note {
  font-size: 0.88rem;
  color: var(--accent);
  min-height: 1.2em;
}

/* ============ Contact ============ */
.contact__solo { max-width: 560px; }
.contact h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.contact p { color: var(--text-dim); max-width: 460px; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-weight: 600;
}
.contact__details a:hover { color: var(--accent); }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 0;
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand .nav__logo { margin-bottom: 0.9rem; }
.footer__tagline {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 260px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.footer__col a {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: color .2s;
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.82rem;
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { order: -1; }
  .features__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 260px;
    background: var(--bg-alt);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__toggle { display: flex; }

  .hero { flex-direction: column; text-align: center; padding-top: 7rem; }
  .hero__content { max-width: 100%; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__photo { margin: 3rem auto 0; width: min(280px, 70vw); }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .features__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 1.25rem; }
}

/* ============ Listen modal ============ */
.listen-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.listen-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.listen-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,6,8,0.78);
  backdrop-filter: blur(6px);
}
.listen-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transform: translateY(12px) scale(0.98);
  transition: transform .25s var(--ease);
}
.listen-modal.open .listen-modal__panel { transform: translateY(0) scale(1); }
.listen-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  color: var(--text-dim);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.listen-modal__close:hover { color: var(--text); border-color: var(--accent-dim); }
.listen-modal__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.listen-modal__title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-right: 1.5rem;
}
.listen-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.listen-modal__option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color .2s, transform .2s;
}
.listen-modal__option:hover {
  border-color: var(--accent-dim);
  transform: translateY(-2px);
}
.listen-modal__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.listen-modal__icon svg { width: 100%; height: 100%; }

@media (max-width: 480px) {
  .listen-modal__grid { grid-template-columns: 1fr; }
}
