@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/DMSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('/assets/fonts/LeagueSpartan-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-main: #2f3136;
  --accent: #4B2E83;
  --text: #2B2B2B;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 200;
  color: var(--text);
  background: var(--bg-main);
  min-height: 100vh;
  overflow-x: hidden;
}

p {
  font-size: 25px !important;
  line-height: 1.45;
}

.section-shell {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .section-shell {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.font-head {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
}

.site-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.06), transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(0, 0, 0, 0.22), transparent 45%);
}

.nav-shell {
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: 0 0 18px rgba(75, 46, 131, 0.28);
  transition:
    background 420ms cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header .section-shell {
  transition: padding-top 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-logo {
  transition: height 420ms cubic-bezier(0.16, 1, 0.3, 1), transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled .section-shell {
  padding-top: 0.45rem;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(251, 240, 244, 0.2);
  border: 1px solid rgba(219, 198, 255, 0.45);
  backdrop-filter: blur(15px) saturate(130%);
  box-shadow: 0 0 30px rgba(75, 46, 131, 0.5);
}

.site-header.is-scrolled .header-logo {
  height: 3.4rem;
  transform: scale(0.95);
}

.menu-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(75, 46, 131, 0.2);
  display: grid;
  place-content: center;
  gap: 0.24rem;
  background: white;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled .menu-btn {
  transform: scale(0.88);
}

.menu-btn span {
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--accent);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 360px);
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 60;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu__inner {
  height: 100%;
  padding: 2rem;
  background: linear-gradient(150deg, #FBF0F4, #F2BFCF 40%, #EEA8BF 100%);
  border-left: 1px solid rgba(75, 46, 131, 0.2);
  box-shadow: -30px 0 60px rgba(75, 46, 131, 0.2);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 43, 43, 0.36);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 55;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-link {
  border-radius: 0.9rem;
  background: rgba(251, 240, 244, 0.75);
  border: 1px solid rgba(75, 46, 131, 0.15);
  padding: 0.85rem 1rem;
  font-family: 'League Spartan', sans-serif;
  font-size: 1.15rem;
  color: var(--accent);
  transition: transform 0.25s ease, background 0.25s ease;
}

.menu-link:hover {
  transform: translateX(4px);
  background: #fff;
}

.hero-wrap {
  perspective: 1200px;
}

.hero-card {
  border: 0;
  transform: none;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 21, 26, 0.78) 0%, rgba(20, 21, 26, 0.58) 48%, rgba(20, 21, 26, 0.14) 72%, rgba(20, 21, 26, 0.08) 100%);
  pointer-events: none;
}

.hero-copy {
  max-width: 52%;
}

.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.74rem 1.35rem;
  background: linear-gradient(90deg, #8D4BAA, #4B2E83);
  color: #fff;
  font-family: 'League Spartan', sans-serif;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(75, 46, 131, 0.25);
}

.glass-card,
.stream-shell {
  border: 1px solid rgba(75, 46, 131, 0.16);
  border-radius: 1.5rem;
  background: rgba(251, 240, 244, 0.8);
  backdrop-filter: blur(8px);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 18px 45px rgba(75, 46, 131, 0.1);
}

.about-grid {
  align-items: stretch;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card h2,
.info-card p {
  margin-top: 0 !important;
}

.brand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.brand-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(43, 43, 43, 0.2);
}

.brand-apple {
  background: #000;
  color: #fff;
}

.brand-spotify {
  background: #1db954;
  color: #fff;
}

.brand-deezer {
  background: #121216;
  color: #fff;
}

.brand-youtube {
  background: #ff0000;
  color: #fff;
}

.brand-instagram {
  background: linear-gradient(45deg, #f09433 0%, #dc2743 45%, #cc2366 70%, #bc1888 100%);
  color: #fff;
}

.legal-copy h2 {
  margin-top: 1.9rem;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--accent);
  font-family: 'League Spartan', sans-serif;
}

.legal-copy p {
  margin-top: 0.7rem;
  line-height: 1.7;
}

.motion-rise,
.motion-rise-delay,
.motion-rise-delay-2,
.motion-float {
  opacity: 0;
  transform: translateY(24px);
}

.motion-in {
  opacity: 1;
  transform: translateY(0);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms ease;
}

.motion-rise-delay.motion-in {
  transition-delay: 120ms;
}

.motion-rise-delay-2.motion-in {
  transition-delay: 220ms;
}

.motion-float.motion-in {
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 767px) {
  .hero-card {
    transform: none;
  }

  .hero-copy {
    max-width: 100%;
  }

  p {
    font-size: 25px !important;
  }

  .site-header.is-scrolled .header-logo {
    height: 2.9rem;
  }
}
