/* ============================================================
   EMULAR — Music Distribution Website
   Premium CSS with Glassmorphism · Animations · Mobile-First
   ============================================================ */

/* —————————————————————————————————————————————————————————————
   0. IMPORTS & CUSTOM PROPERTIES
   ————————————————————————————————————————————————————————————— */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* ── Colour Palette ── */
  --purple-dark:   #38214A;
  --purple-medium: #5C3D6E;
  --purple-light:  #7B5B94;
  --pink-bg:       #F8E7E5;
  --pink-light:    #F5DBD7;
  --pink-accent:   #E49B94;
  --white:         #FFFFFF;
  --white-alpha-10: rgba(255, 255, 255, 0.10);
  --white-alpha-20: rgba(255, 255, 255, 0.20);
  --white-alpha-40: rgba(255, 255, 255, 0.40);
  --white-alpha-70: rgba(255, 255, 255, 0.70);
  --dark-alpha-50:  rgba(56, 33, 74, 0.50);
  --text-dark:  #2D1B3D;
  --text-light: #FFFFFF;

  /* ── Typography ── */
  --font-primary:   'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --fs-base: 16px;

  /* ── Border Radius ── */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 50%;

  /* ── Spacing ── */
  --section-py-mobile:  80px;
  --section-py-desktop: 120px;

  /* ── Transitions ── */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.3s var(--ease-smooth);
  --transition-mid:  0.4s var(--ease-smooth);
  --transition-slow: 0.5s var(--ease-smooth);

  /* ── Glassmorphism tokens ── */
  --glass-bg:      rgba(255, 255, 255, 0.12);
  --glass-border:  rgba(255, 255, 255, 0.20);
  --glass-blur:    20px;
  --glass-btn-bg:  rgba(255, 255, 255, 0.15);
  --glass-btn-border: rgba(255, 255, 255, 0.30);

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(56, 33, 74, 0.08);
  --shadow-md: 0 8px 32px rgba(56, 33, 74, 0.12);
  --shadow-lg: 0 16px 48px rgba(56, 33, 74, 0.18);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.15);

  /* ── Layout ── */
  --container-max: 1200px;
  --navbar-h: 72px;
}


/* —————————————————————————————————————————————————————————————
   1. RESET & BASE
   ————————————————————————————————————————————————————————————— */

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

html {
  font-size: var(--fs-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}


/* ── Selection ── */

::selection {
  background: var(--purple-medium);
  color: var(--text-light);
}

::-moz-selection {
  background: var(--purple-medium);
  color: var(--text-light);
}


/* ── Scrollbar ── */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--pink-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--purple-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purple-medium);
}


/* —————————————————————————————————————————————————————————————
   2. UTILITY CLASSES
   ————————————————————————————————————————————————————————————— */

.highlight {
  background: linear-gradient(135deg, var(--purple-medium), var(--pink-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-light {
  background: linear-gradient(135deg, var(--pink-light), var(--pink-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Particles (generated by JS) ── */

/* ── Canvas Interactivo ── */

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}


/* ── Glassmorphism Components ── */

.glass-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 
    8px 8px 20px rgba(180, 140, 160, 0.08), 
    -8px -8px 20px rgba(255, 255, 255, 0.85),
    inset 2px 2px 6px rgba(255, 255, 255, 0.50),
    inset -2px -2px 6px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.glass-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  color: var(--text-light);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1rem);
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 
    6px 6px 16px rgba(0, 0, 0, 0.12), 
    -6px -6px 16px rgba(255, 255, 255, 0.06),
    inset 2px 2px 4px rgba(255, 255, 255, 0.2),
    inset -2px -2px 4px rgba(0, 0, 0, 0.15);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.glass-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.glass-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 
    8px 8px 20px rgba(0, 0, 0, 0.18), 
    -8px -8px 20px rgba(255, 255, 255, 0.12),
    inset 2px 2px 4px rgba(255, 255, 255, 0.3),
    inset -2px -2px 4px rgba(0, 0, 0, 0.15);
}

.glass-btn:hover::before {
  opacity: 1;
}

.glass-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 
    inset 4px 4px 10px rgba(0, 0, 0, 0.25),
    inset -4px -4px 10px rgba(255, 255, 255, 0.05);
}

.glass-overlay {
  background: rgba(56, 33, 74, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--white-alpha-10);
}


/* —————————————————————————————————————————————————————————————
   3. KEYFRAME ANIMATIONS
   ————————————————————————————————————————————————————————————— */

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-dot {
  0%   { opacity: 1; transform: translateY(0); }
  50%  { opacity: 0.4; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(228, 155, 148, 0.3); }
  50%      { box-shadow: 0 0 25px rgba(228, 155, 148, 0.6), 0 0 50px rgba(228, 155, 148, 0.2); }
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


/* —————————————————————————————————————————————————————————————
   4. SCROLL-TRIGGERED ANIMATION CLASSES
   ————————————————————————————————————————————————————————————— */

.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  transition:
    opacity 0.7s var(--ease-smooth),
    transform 0.7s var(--ease-smooth);
  will-change: opacity, transform;
}

.fade-up    { transform: translateY(40px); }
.fade-left  { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.scale-in   { transform: scale(0.8); }

.fade-up.is-visible,
.fade-left.is-visible,
.fade-right.is-visible,
.scale-in.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}


/* —————————————————————————————————————————————————————————————
   5. NAVBAR
   ————————————————————————————————————————————————————————————— */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition:
    background var(--transition-mid),
    padding var(--transition-mid),
    box-shadow var(--transition-mid);
}

.navbar--scrolled {
  background: rgba(248, 231, 229, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(56, 33, 74, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

/* Scrolled text & element overrides for legibility */
.navbar--scrolled .navbar__logo-text {
  color: var(--text-dark);
}

.navbar--scrolled .navbar__link:not(.navbar__link--cta) {
  color: rgba(45, 27, 61, 0.8);
}

.navbar--scrolled .navbar__link:not(.navbar__link--cta):hover,
.navbar--scrolled .navbar__link--active:not(.navbar__link--cta) {
  color: var(--text-dark);
}

.navbar--scrolled .navbar__toggle-bar {
  background: var(--text-dark);
}

/* Scrolled state for CTA button (dark border & dark text) */
.navbar--scrolled .navbar__link.navbar__link--cta {
  background: transparent !important;
  border: 1.5px solid var(--text-dark) !important;
  color: var(--text-dark) !important;
  box-shadow: none !important;
}

.navbar--scrolled .navbar__link.navbar__link--cta:hover {
  background: rgba(56, 33, 74, 0.08) !important;
  color: var(--text-dark) !important;
  border-color: var(--text-dark) !important;
  box-shadow: none !important;
  transform: scale(1.03) translateY(-1px) !important;
}

.navbar--scrolled .navbar__link.navbar__link--cta:active {
  background: rgba(56, 33, 74, 0.15) !important;
  transform: scale(0.98) translateY(1px) !important;
}

.navbar__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1001;
}

.navbar__logo-img {
  height: 36px;
  width: auto;
  transition: transform var(--transition-fast);
}

.navbar__logo-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--white);
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

.navbar__logo:hover .navbar__logo-img {
  transform: scale(1.08);
}

/* ── Hamburger Toggle ── */

.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 1001;
}

.navbar__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
  transform-origin: center;
}

/* Active hamburger → X */
.navbar__toggle.active .navbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu ── */

.navbar__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: rgba(56, 33, 74, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: calc(var(--navbar-h) + 40px) 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: right var(--transition-mid);
  z-index: 999;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
}

.navbar__menu--active {
  right: 0;
}

.navbar__link {
  display: block;
  padding: 14px 20px;
  color: var(--white-alpha-70);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  border-bottom: none;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 
    inset 2px 2px 5px rgba(255, 255, 255, 0.05),
    inset -2px -2px 5px rgba(0, 0, 0, 0.15);
  transform: translateX(4px);
}

.navbar__link.navbar__link--cta {
  background: linear-gradient(135deg, var(--pink-accent), var(--purple-light)) !important;
  border-radius: var(--radius-xl) !important;
  padding: 12px 24px !important;
  color: var(--text-light) !important;
  border-bottom: none !important;
  font-size: 0.95rem;
  text-align: center;
  box-shadow: 
    4px 4px 10px rgba(56, 33, 74, 0.25), 
    -4px -4px 10px rgba(255, 255, 255, 0.15),
    inset 1px 1px 3px rgba(255, 255, 255, 0.3),
    inset -1px -1px 3px rgba(0, 0, 0, 0.15) !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), padding-left var(--transition-fast);
}

.navbar__link.navbar__link--cta:hover {
  transform: scale(1.03) translateY(-1px) !important;
  background: linear-gradient(135deg, var(--pink-accent), var(--purple-light)) !important;
  box-shadow: 
    6px 6px 15px rgba(56, 33, 74, 0.35), 
    -6px -6px 15px rgba(255, 255, 255, 0.2),
    inset 1px 1px 3px rgba(255, 255, 255, 0.4),
    inset -1px -1px 3px rgba(0, 0, 0, 0.15) !important;
  padding-left: 24px !important;
}

.navbar__link.navbar__link--cta:active {
  transform: scale(0.98) translateY(1px) !important;
  box-shadow: 
    inset 3px 3px 6px rgba(0, 0, 0, 0.3),
    inset -3px -3px 6px rgba(255, 255, 255, 0.05) !important;
}


/* —————————————————————————————————————————————————————————————
   6. HERO
   ————————————————————————————————————————————————————————————— */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.png') center/cover no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(56, 33, 74, 0.88) 0%,
    rgba(92, 61, 110, 0.82) 40%,
    rgba(123, 91, 148, 0.75) 100%
  );
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
  z-index: 1;
}



/* ── Content ── */

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--white-alpha-10);
  border: 1px solid var(--white-alpha-20);
  border-radius: var(--radius-xl);
  color: var(--white-alpha-70);
  font-family: var(--font-secondary);
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__title-highlight {
  background: linear-gradient(135deg, var(--pink-accent), var(--pink-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--white-alpha-70);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero__cta {
  animation: pulse 3s ease-in-out infinite;
}

/* ── Scroll indicator ── */

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll::before {
  content: '';
  width: 24px;
  height: 40px;
  border: 2px solid var(--white-alpha-40);
  border-radius: 12px;
}

.hero__scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--text-light);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}


/* —————————————————————————————————————————————————————————————
   7. ABOUT
   ————————————————————————————————————————————————————————————— */

.about {
  background: var(--pink-bg);
  padding: var(--section-py-mobile) 0;
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(228, 155, 148, 0.2);
  color: var(--purple-medium);
  border-radius: var(--radius-xl);
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about__text {
  color: var(--purple-light);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  box-shadow: 
    6px 6px 16px rgba(180, 140, 160, 0.06), 
    -6px -6px 16px rgba(255, 255, 255, 0.85),
    inset 1px 1px 3px rgba(255, 255, 255, 0.4),
    inset -1px -1px 3px rgba(0, 0, 0, 0.02);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.about__feature:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 
    8px 8px 20px rgba(180, 140, 160, 0.10), 
    -8px -8px 20px rgba(255, 255, 255, 0.95),
    inset 1px 1px 3px rgba(255, 255, 255, 0.5),
    inset -1px -1px 3px rgba(0, 0, 0, 0.02);
}

.about__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-medium));
  color: var(--text-light);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
}

.about__feature-text {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* ── About Visual / Card ── */

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.about__card {
  padding: 40px;
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(92, 61, 110, 0.85), rgba(56, 33, 74, 0.9));
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 
    12px 12px 30px rgba(56, 33, 74, 0.15), 
    -12px -12px 30px rgba(255, 255, 255, 0.8),
    inset 2px 2px 6px rgba(255, 255, 255, 0.2),
    inset -2px -2px 6px rgba(0, 0, 0, 0.3);
}

.about__card-inner {
  text-align: center;
  color: var(--text-light);
}

.about__card-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--pink-accent);
}

.about__card-text {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--white-alpha-70);
}

.about__float-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
  font-size: 1.4rem;
  color: var(--purple-dark);
}

.about__float-icon--1 { top: -5%;  left: 5%;  animation-delay: 0s;   color: #1DB954; }
.about__float-icon--2 { top: 15%;  right: -5%; animation-delay: 0.6s; color: #333; }
.about__float-icon--3 { bottom: 0; left: 0;   animation-delay: 1.2s; color: #FF0000; }
.about__float-icon--4 { bottom: 20%; right: 5%; animation-delay: 1.8s; color: #000; }
.about__float-icon--5 { top: 55%;  left: -8%; animation-delay: 2.4s; color: #A238FF; }


/* —————————————————————————————————————————————————————————————
   8. STATS
   ————————————————————————————————————————————————————————————— */

.stats {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-medium));
  padding: var(--section-py-mobile) 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(228, 155, 148, 0.12), transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: var(--radius-full);
  pointer-events: none;
}

.stats__title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-light);
  margin-bottom: 48px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card.glass-card {
  padding: 28px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    8px 8px 24px rgba(0, 0, 0, 0.25), 
    -8px -8px 24px rgba(255, 255, 255, 0.02),
    inset 2px 2px 6px rgba(255, 255, 255, 0.08),
    inset -2px -2px 6px rgba(0, 0, 0, 0.15);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.stat-card.glass-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 
    12px 12px 35px rgba(0, 0, 0, 0.35), 
    -12px -12px 35px rgba(255, 255, 255, 0.04),
    inset 2px 2px 6px rgba(255, 255, 255, 0.1),
    inset -2px -2px 6px rgba(0, 0, 0, 0.15);
}

.stat-card:nth-child(1) { transition-delay: 0s; }
.stat-card:nth-child(2) { transition-delay: 0.05s; }
.stat-card:nth-child(3) { transition-delay: 0.1s; }
.stat-card:nth-child(4) { transition-delay: 0.15s; }

.stat-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: inline-block;
  color: var(--pink-accent);
}

.stat-card__number {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-family: var(--font-secondary);
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: var(--white-alpha-70);
  font-weight: 400;
  letter-spacing: 0.5px;
}


/* —————————————————————————————————————————————————————————————
   9. PLATFORMS (Marquee)
   ————————————————————————————————————————————————————————————— */

.platforms {
  background: var(--pink-bg);
  padding: var(--section-py-mobile) 0;
}

.platforms__title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 12px;
}

.platforms__subtitle {
  text-align: center;
  color: var(--purple-light);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.platforms__marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.platforms__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.platforms__track:hover {
  animation-play-state: paused;
}

.platform-item {
  flex-shrink: 0;
  width: 140px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  box-shadow: 
    4px 4px 12px rgba(180, 140, 160, 0.06), 
    -4px -4px 12px rgba(255, 255, 255, 0.85),
    inset 1px 1px 3px rgba(255, 255, 255, 0.4),
    inset -1px -1px 3px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.platform-item:hover {
  transform: scale(1.08) translateY(-4px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 
    6px 6px 16px rgba(180, 140, 160, 0.10), 
    -6px -6px 16px rgba(255, 255, 255, 0.95),
    inset 1px 1px 3px rgba(255, 255, 255, 0.5),
    inset -1px -1px 3px rgba(0, 0, 0, 0.02);
}

.platform-item span {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.platform-item img {
  max-width: 80%;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter var(--transition-fast);
}

.platform-item:hover img {
  filter: grayscale(0);
}


/* —————————————————————————————————————————————————————————————
   10. SERVICES
   ————————————————————————————————————————————————————————————— */

.services {
  background: var(--white);
  padding: var(--section-py-mobile) 0;
}

.services__header {
  text-align: center;
  margin-bottom: 48px;
}

.services__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 12px;
}

.services__subtitle {
  color: var(--purple-light);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  max-width: 520px;
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  padding: 32px 24px;
  background: rgba(248, 231, 229, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(228, 155, 148, 0.35);
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: 
    8px 8px 24px rgba(180, 140, 160, 0.08), 
    -8px -8px 24px rgba(255, 255, 255, 0.9),
    inset 2px 2px 6px rgba(255, 255, 255, 0.4),
    inset -2px -2px 6px rgba(180, 140, 160, 0.03);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(248, 231, 229, 0.7);
  box-shadow: 
    12px 12px 32px rgba(180, 140, 160, 0.15), 
    -12px -12px 32px rgba(255, 255, 255, 0.95),
    inset 2px 2px 6px rgba(255, 255, 255, 0.6),
    inset -2px -2px 6px rgba(180, 140, 160, 0.05);
}

/* Stagger animation delays for grid items */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.08s; }
.service-card:nth-child(3) { transition-delay: 0.16s; }
.service-card:nth-child(4) { transition-delay: 0.24s; }

.service-card.fade-up:nth-child(1) { transition-delay: 0s; }
.service-card.fade-up:nth-child(2) { transition-delay: 0.1s; }
.service-card.fade-up:nth-child(3) { transition-delay: 0.2s; }
.service-card.fade-up:nth-child(4) { transition-delay: 0.3s; }

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-medium));
  color: var(--text-light);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card__title {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card__text {
  color: var(--purple-light);
  font-size: 0.9rem;
  line-height: 1.7;
}


/* —————————————————————————————————————————————————————————————
   11. RELEASES (Carousel)
   ————————————————————————————————————————————————————————————— */

.releases {
  background: var(--pink-bg);
  padding: var(--section-py-mobile) 0;
}

.releases__title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 40px;
}

.releases__carousel {
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
}

.releases__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.releases__track::-webkit-scrollbar {
  display: none;
}

.release-card {
  flex-shrink: 0;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.release-card:hover {
  transform: scale(1.04);
}

.release-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.release-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.release-card:hover .release-card__img img {
  transform: scale(1.1);
}

.release-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(56, 33, 74, 0.85), transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform: translateY(100%);
  transition: transform var(--transition-mid);
}

.release-card:hover .release-card__overlay {
  transform: translateY(0);
}

.release-card__name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.release-card__artist {
  font-size: 0.8rem;
  color: var(--white-alpha-70);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* —————————————————————————————————————————————————————————————
   12. ARTISTS
   ————————————————————————————————————————————————————————————— */

.artists {
  background: var(--white);
  padding: var(--section-py-mobile) 0;
}

.artists__title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 12px;
}

.artists__subtitle {
  text-align: center;
  color: var(--purple-light);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.artists__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  justify-items: center;
}

.artist-card {
  text-align: center;
  position: relative;
  cursor: pointer;
}

.artist-card__img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto 16px;
  position: relative;
  border: 3px solid transparent;
  background-image: linear-gradient(var(--white), var(--white)),
                    linear-gradient(135deg, var(--purple-dark), var(--pink-accent));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: transform var(--transition-fast);
}

.artist-card:hover .artist-card__img {
  transform: scale(1.08);
}

.artist-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-card__name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.artist-card:hover .artist-card__name {
  color: var(--purple-medium);
}

.artist-card__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(228, 155, 148, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-mid);
  pointer-events: none;
  z-index: -1;
}

.artist-card:hover .artist-card__glow {
  opacity: 1;
  animation: glow 2s ease-in-out infinite;
}


/* —————————————————————————————————————————————————————————————
   13. CTA SECTION
   ————————————————————————————————————————————————————————————— */

.cta-section {
  position: relative;
  padding: var(--section-py-mobile) 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-medium));
  z-index: 0;
}

.cta-section__bg::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228, 155, 148, 0.15), transparent 70%);
  bottom: -150px;
  left: -100px;
  border-radius: var(--radius-full);
}

.cta-section__bg::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(123, 91, 148, 0.2), transparent 70%);
  top: -100px;
  right: -80px;
  border-radius: var(--radius-full);
}

.cta-section__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section__content {
  text-align: center;
  padding: 48px 24px;
  max-width: 680px;
  margin: 0 auto;
}

.cta-section__content.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    12px 12px 35px rgba(0, 0, 0, 0.35), 
    -12px -12px 35px rgba(255, 255, 255, 0.03),
    inset 2px 2px 6px rgba(255, 255, 255, 0.08),
    inset -2px -2px 6px rgba(0, 0, 0, 0.2);
}

.cta-section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-light);
  margin-bottom: 16px;
}

.cta-section__text {
  color: var(--white-alpha-70);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__icon {
  font-size: 2.5rem;
  color: var(--pink-accent);
  margin-bottom: 20px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.cta-section__btn {
  animation: pulse 3s ease-in-out infinite;
}


/* —————————————————————————————————————————————————————————————
   14. FOOTER
   ————————————————————————————————————————————————————————————— */

.footer {
  background: var(--purple-dark);
  padding: 64px 0 0;
  color: var(--text-light);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--white-alpha-10);
}

.footer__logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo-img {
  height: 36px;
  width: auto;
}

.footer__logo-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

.footer__description {
  color: var(--white-alpha-70);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer__nav-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: var(--white-alpha-70);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer__link:hover {
  color: var(--pink-accent);
  padding-left: 6px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-alpha-10);
  border: 1px solid var(--white-alpha-20);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 1.2rem;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--pink-accent);
  transform: translateY(-3px);
}

.footer__bottom {
  padding: 32px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--white-alpha-40);
  border-top: 1px solid var(--white-alpha-10);
  padding-right: 120px; /* Evita superposición con botones flotantes de scroll y whatsapp */
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding-right: 0; /* Centrado sin padding en móviles */
  }
}

.footer__sponsors {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
}

.footer__sponsor-logo {
  display: inline-block !important;
  height: 32px !important;
  width: auto !important;
  opacity: 0.65;
  transition: opacity var(--transition-fast), filter var(--transition-fast);
  filter: brightness(0) invert(1);
}

.footer__sponsor-logo:hover {
  opacity: 1;
}

/* —————————————————————————————————————————————————————————————
   15. SCROLL TO TOP
   ————————————————————————————————————————————————————————————— */

.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-medium));
  color: var(--text-light);
  border: 1px solid var(--white-alpha-20);
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity var(--transition-fast),
    visibility var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  box-shadow: 0 0 20px rgba(228, 155, 148, 0.5), var(--shadow-lg);
  transform: translateY(-4px);
}

/* —————————————————————————————————————————————————————————————
   15b. WHATSAPP FLOAT BUTTON
   ————————————————————————————————————————————————————————————— */

.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 950;
  box-shadow: 
    4px 4px 15px rgba(37, 211, 102, 0.4), 
    -4px -4px 15px rgba(255, 255, 255, 0.5),
    inset 2px 2px 4px rgba(255, 255, 255, 0.40),
    inset -2px -2px 4px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 
    6px 6px 20px rgba(37, 211, 102, 0.55), 
    -6px -6px 20px rgba(255, 255, 255, 0.6),
    inset 2px 2px 4px rgba(255, 255, 255, 0.50),
    inset -2px -2px 4px rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.whatsapp-btn:active {
  transform: scale(0.95) translateY(1px);
  box-shadow: 
    inset 4px 4px 10px rgba(0, 0, 0, 0.3),
    inset -4px -4px 10px rgba(255, 255, 255, 0.2);
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: whatsapp-pulse 2s infinite;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* —————————————————————————————————————————————————————————————
   16. RESPONSIVE — 480px  (Small Mobile)
   ————————————————————————————————————————————————————————————— */

@media (min-width: 480px) {
  .release-card {
    width: 240px;
  }

  .artist-card__img {
    width: 120px;
    height: 120px;
  }

  .artists__grid {
    gap: 40px;
  }

  .platform-item {
    width: 140px;
    height: 90px;
  }

  .cta-section__content {
    padding: 56px 32px;
  }
}


/* —————————————————————————————————————————————————————————————
   17. RESPONSIVE — 768px  (Tablet)
   ————————————————————————————————————————————————————————————— */

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  /* ── Navbar ── */
  .navbar__toggle {
    display: none;
  }

  .navbar__menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    flex-direction: row;
    gap: 16px;
  }

  .navbar__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-bottom: none;
    position: relative;
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
    border-radius: 0;
  }

  .navbar__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--pink-accent);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition-fast);
    transform-origin: right;
  }

  .navbar__link:hover,
  .navbar__link--active {
    padding-left: 16px;
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .navbar__link:hover::after,
  .navbar__link--active::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .navbar__link.navbar__link--cta {
    border-bottom: none !important;
  }

  .navbar__link.navbar__link--cta::after {
    display: none !important;
  }

  /* ── About ── */
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .about__features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .about__feature {
    flex: 1 1 calc(50% - 8px);
  }

  /* ── Stats ── */
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  /* ── Services ── */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  /* ── Releases ── */
  .release-card {
    width: 260px;
  }

  /* ── Artists ── */
  .artists__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }

  .artist-card__img {
    width: 140px;
    height: 140px;
  }

  /* ── Footer ── */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}


/* —————————————————————————————————————————————————————————————
   18. RESPONSIVE — 1024px (Desktop)
   ————————————————————————————————————————————————————————————— */

@media (min-width: 1024px) {
  /* ── Section Padding ── */
  .about,
  .stats,
  .platforms,
  .services,
  .releases,
  .artists,
  .cta-section {
    padding: var(--section-py-desktop) 0;
  }

  /* ── Navbar ── */
  .navbar__logo img {
    height: 42px;
  }

  .navbar__link {
    font-size: 0.95rem;
    padding: 8px 20px;
  }

  .navbar__link::after {
    left: 20px;
    right: 20px;
  }

  .navbar__link:hover {
    padding-left: 20px;
  }

  /* ── Hero ── */
  .hero__content {
    max-width: 900px;
  }

  .hero__badge {
    margin-bottom: 28px;
  }

  .hero__subtitle {
    max-width: 620px;
  }

  /* ── About ── */
  .about__grid {
    gap: 80px;
  }

  .about__card {
    max-width: 440px;
    min-height: 340px;
  }

  .about__float-icon {
    width: 56px;
    height: 56px;
  }

  .about__float-icon img {
    width: 32px;
    height: 32px;
  }

  /* ── Services ── */
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .service-card {
    padding: 36px 24px;
  }

  /* ── Releases ── */
  .release-card {
    width: 280px;
  }

  /* ── Artists ── */
  .artists__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .artist-card__img {
    width: 160px;
    height: 160px;
  }

  .artist-card__glow {
    width: 180px;
    height: 180px;
  }

  /* ── CTA ── */
  .cta-section__content {
    padding: 72px 56px;
  }

  /* ── Footer ── */
  .footer {
    padding-top: 80px;
  }

  .footer__grid {
    gap: 64px;
  }
}


/* —————————————————————————————————————————————————————————————
   19. RESPONSIVE — 1440px (Large Desktop)
   ————————————————————————————————————————————————————————————— */

@media (min-width: 1440px) {
  :root {
    --container-max: 1320px;
  }

  .hero__content {
    max-width: 1000px;
  }

  .stats__grid {
    gap: 32px;
  }

  .stat-card {
    padding: 36px 28px;
  }

  .services__grid {
    gap: 32px;
  }

  .service-card {
    padding: 44px 28px;
  }

  .release-card {
    width: 300px;
  }

  .artists__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
  }

  .cta-section__content {
    max-width: 780px;
    padding: 80px 64px;
  }
}


/* —————————————————————————————————————————————————————————————
   20. ACCESSIBILITY & REDUCED MOTION
   ————————————————————————————————————————————————————————————— */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero__overlay {
    animation: none;
  }

  .platforms__track {
    animation: none;
  }

  .fade-up,
  .fade-left,
  .fade-right,
  .scale-in {
    opacity: 1;
    transform: none;
  }
}

/* ── Focus Styles ── */

:focus-visible {
  outline: 2px solid var(--pink-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.navbar__link:focus-visible,
.glass-btn:focus-visible {
  outline-color: var(--text-light);
}


/* —————————————————————————————————————————————————————————————
   21. PRINT STYLES
   ————————————————————————————————————————————————————————————— */

@media print {
  .navbar,
  .hero__canvas,
  .cta-section__canvas,
  .hero__scroll,
  .scroll-top,
  .platforms__marquee {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .glass-card,
  .glass-btn {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid #ccc;
  }
}
