/* ============ RESET & TOKENS ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0f;
  --bg-soft: #101018;
  --bg-card: #14141f;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f2f0f7;
  --text-dim: #a5a0b8;
  --accent: #a78bfa;
  --accent-deep: #7c3aed;
  --accent-glow: rgba(139, 92, 246, 0.35);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: min(1140px, 92%); margin: 0 auto; }
.section { padding: 110px 0; }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ SECTION HEADERS ============ */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-header { margin-bottom: 56px; }

/* ============ NAV ============ */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

#header.scrolled {
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  width: min(1240px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text);
}

.nav-links { display: flex; gap: 36px; list-style: none; }

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s ease;
}

.nav-links a:hover { color: var(--accent); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 110; }
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(60px) brightness(0.42) saturate(1.4);
  transform: scale(1.25);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(124, 58, 237, 0.22), transparent 70%),
    linear-gradient(to bottom, rgba(10, 10, 15, 0.55), rgba(10, 10, 15, 0.35) 45%, var(--bg) 96%);
}

.hero-content { position: relative; z-index: 1; padding: 120px 20px 80px; }

.hero-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 13rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-shadow: 0 0 90px var(--accent-glow);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--text-dim);
  margin: 18px 0 36px;
}

.hero-sub em { color: var(--text); font-style: italic; }

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-platforms { display: flex; gap: 26px; justify-content: center; margin-top: 44px; }

.hero-platforms a {
  color: var(--text-dim);
  transition: color 0.25s ease, transform 0.25s ease;
}
.hero-platforms a:hover { color: var(--accent); transform: translateY(-3px); }
.hero-platforms svg { width: 24px; height: 24px; }

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  z-index: 1;
  animation: bob 2.2s ease-in-out infinite;
}
.scroll-hint svg { width: 22px; height: 22px; }

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 6px 28px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px var(--accent-glow); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }

.btn-lg { padding: 18px 44px; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: none; }

/* ============ TICKER ============ */
.ticker-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  padding: 16px 0;
}

.ticker { display: flex; gap: 34px; width: max-content; animation: ticker 30s linear infinite; }

.ticker span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.ticker .dot { color: var(--accent); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ LATEST RELEASE ============ */
.latest-section { padding-bottom: 40px; }

.latest-inner {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 64px;
  align-items: center;
}

.latest-art { position: relative; }

.latest-art img {
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px var(--accent-glow);
}

.latest-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}

.latest-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.latest-date { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; margin: 14px 0 18px; }
.latest-desc { color: var(--text-dim); max-width: 46ch; margin-bottom: 30px; }
.latest-links { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ MUSIC GRID ============ */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px;
}

.music-card { transition-delay: calc(var(--i, 0) * 60ms); }

.music-art {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.music-art img { transition: transform 0.5s ease, filter 0.5s ease; }

.music-art:hover img { transform: scale(1.06); filter: brightness(0.55); }

.music-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.music-art:hover .music-play { opacity: 1; }

.music-play svg {
  width: 54px;
  height: 54px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 8px 30px var(--accent-glow);
}

.music-meta { padding: 16px 4px 0; }
.music-meta h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.music-meta p { color: var(--text-dim); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }

/* ============ LISTEN ============ */
.listen-section { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.listen-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: center;
}

.listen-player iframe { border-radius: 16px; display: block; }

.listen-lead { font-size: 1.15rem; color: var(--text-dim); margin-bottom: 28px; }

.platform-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-card);
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.platform-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.platform-btn:hover { transform: translateX(6px); background: #1a1a28; }
.platform-btn.apple:hover { border-color: #fa57c1; }
.platform-btn.spotify:hover { border-color: #1db954; }
.platform-btn.youtube:hover { border-color: #ff0000; }

.platform-btn.apple svg { color: #fa57c1; }
.platform-btn.spotify svg { color: #1db954; }
.platform-btn.youtube svg { color: #ff0000; }

/* ============ VIDEOS ============ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
}

.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

.video-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 18px;
}

.video-card h3 span { color: var(--text-dim); font-weight: 600; font-size: 0.95rem; }

.videos-more { text-align: center; margin-top: 52px; }

/* ============ ABOUT ============ */
.about-section {
  background:
    radial-gradient(ellipse 60% 70% at 85% 30%, rgba(124, 58, 237, 0.12), transparent 65%),
    var(--bg);
  border-top: 1px solid var(--line);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-text p { color: var(--text-dim); max-width: 56ch; margin-bottom: 18px; }
.about-text em { color: var(--text); }

.about-credit a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 0.25s ease; }
.about-credit a:hover { border-color: var(--accent); }

.about-stats { display: grid; gap: 22px; }

.stat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 30px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.stat:hover { border-color: var(--accent); transform: translateY(-3px); }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============ CONTACT ============ */
.contact-section { text-align: center; }
.contact-section .section-header { margin-bottom: 34px; }

.contact-lead {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 auto 36px;
}

.contact-socials { display: flex; gap: 26px; justify-content: center; margin-top: 44px; }

.contact-socials a { color: var(--text-dim); transition: color 0.25s ease, transform 0.25s ease; }
.contact-socials a:hover { color: var(--accent); transform: translateY(-3px); }
.contact-socials svg { width: 24px; height: 24px; }

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 44px 0;
}

.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; letter-spacing: 0.12em; }

.footer-nav { display: flex; gap: 26px; }

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s ease;
}
.footer-nav a:hover { color: var(--accent); }

.footer-credit { font-size: 0.85rem; color: var(--text-dim); }
.footer-credit a { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .section { padding: 80px 0; }

  .latest-inner { grid-template-columns: 1fr; gap: 40px; }
  .latest-art { max-width: 380px; }

  .listen-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .hamburger { display: block; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }

  .about-stats { grid-template-columns: 1fr; }

  .music-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 20px; }

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