/* ================================================
   EVA DELONNE V2 — Clean Build
   Berry Luxury: dark velvet + raspberry/blueberry glow
   Every line intentional. No legacy. No overrides.
   ================================================ */

/* --- TOKENS --- */
:root {
  --bg: #0d0811;
  --surface: rgba(180,60,160,0.05);
  --surface-hover: rgba(180,60,160,0.09);
  --glass: rgba(140,50,180,0.06);
  --glass-shine: rgba(255,200,240,0.04);
  --border: rgba(200,100,200,0.12);
  --border-hover: rgba(255,61,154,0.25);
  --raspberry: #ff3d9a;
  --blueberry: #8b5cf6;
  --fuchsia: #c026d3;
  --berry: linear-gradient(135deg, #ff3d9a, #c026d3, #8b5cf6);
  --text: #f0e6f0;
  --text-dim: rgba(240,230,240,0.55);
  --text-faint: rgba(240,230,240,0.3);
  --r: 18px;
  --max-w: 900px;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
  /* PANTONE 389C - urgency accent */
  --lime: rgb(220, 255, 0);
  --lime-dim: rgba(220, 255, 0, 0.85);
  --lime-glow: rgba(220, 255, 0, 0.12);
  --lime-border: rgba(220, 255, 0, 0.25);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* --- AMBIENT GLOW --- */
.ambient {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: drift 20s ease-in-out infinite alternate;
}
.ambient-orb--1 {
  width: 600px; height: 600px;
  background: rgba(255,61,154,0.12);
  top: -10%; left: -5%;
  animation-duration: 22s;
}
.ambient-orb--2 {
  width: 500px; height: 500px;
  background: rgba(139,92,246,0.1);
  top: 40%; right: -10%;
  animation-duration: 26s;
  animation-delay: -8s;
}
.ambient-orb--3 {
  width: 400px; height: 400px;
  background: rgba(192,38,211,0.08);
  bottom: 0; left: 30%;
  animation-duration: 30s;
  animation-delay: -14s;
}
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.15); }
}

/* --- LAYOUT --- */
main {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px 60px;
}
.section { padding: 40px 0; }

/* --- NAV --- */
.nav {
  position: fixed; top: 12px; left: 12px; right: 12px; z-index: 100;
  max-width: calc(var(--max-w) + 24px);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  background: rgba(13,8,17,0.78);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 60px rgba(255,61,154,0.03);
}
.nav-brand {
  display: flex;
  align-items: center;
}
.nav-logo {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-dim);
  padding: 8px 12px; border-radius: 10px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-lang {
  font-size: 12px; font-weight: 700; color: var(--text-dim);
  padding: 6px 10px; border: 1px solid var(--border); border-radius: 10px;
  transition: all 0.2s;
}
.nav-lang:hover { border-color: var(--border-hover); color: var(--text); }
.nav-cta {
  font-size: 13px; font-weight: 700; color: var(--lime);
  padding: 10px 20px; border-radius: 50px;
  background: transparent;
  border: 1.5px solid var(--lime);
  box-shadow: 0 0 16px rgba(200,255,0,0.08);
  transition: box-shadow 0.3s, background 0.3s, color 0.3s;
}
.nav-cta:hover {
  background: rgba(200,255,0,0.08);
  box-shadow: 0 0 28px rgba(200,255,0,0.15);
  color: #fff;
}
@keyframes berryShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Mobile nav controls */
.nav-mobile {
  display: none;
  align-items: center;
  gap: 8px;
}
.nav-burger {
  width: 36px; height: 36px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  transition: all 0.2s;
}
.nav-burger:hover { border-color: var(--border-hover); }
.nav-burger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--text-dim);
  border-radius: 1px;
}
.nav-mobile .nav-lang {
  font-size: 11px; padding: 6px 8px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-mobile .nav-cta { font-size: 12px; padding: 8px 14px; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(13,8,17,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 28px; color: var(--text-dim);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu a, .mobile-menu button {
  display: block;
  font-size: 20px; font-weight: 600; color: var(--text);
  padding: 16px 32px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.2s;
  width: 100%;
}
.mobile-menu a:hover, .mobile-menu button:hover {
  background: rgba(255,61,154,0.06);
}

/* --- HERO --- */
.hero {
  padding-top: 80px;
}
.hero-photo {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 20px 80px rgba(0,0,0,0.5),
    0 0 100px rgba(255,61,154,0.06),
    0 0 40px rgba(139,92,246,0.04);
  margin-bottom: 20px;
  position: relative;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  box-shadow: inset 0 -60px 80px -40px rgba(255,61,154,0.08);
  pointer-events: none;
}
.hero-photo img {
  width: 100%; display: block;
  max-height: 60vh; object-fit: cover;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,61,154,0.05) 0%, rgba(139,92,246,0.04) 50%, rgba(255,61,154,0.03) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
  box-shadow:
    0 0 80px rgba(255,61,154,0.04),
    0 0 40px rgba(139,92,246,0.03),
    inset 0 1px 0 var(--glass-shine);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  position: relative;
  overflow: hidden;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,200,240,0.03) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--r) var(--r) 0 0;
}
.hero-text h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.05;
  background: linear-gradient(135deg, #fff 0%, #ffd6eb 50%, #d8b4fe 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 13px; font-weight: 600;
  color: var(--raspberry);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px; opacity: 0.85;
}
.hero-desc {
  font-size: 15px; color: var(--text-dim); line-height: 1.7;
  margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Gallery */
.hero-gallery {
  background: linear-gradient(145deg, rgba(255,61,154,0.05), rgba(139,92,246,0.04));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 5px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(139,92,246,0.04), inset 0 1px 0 var(--glass-shine);
}
.hero-gallery-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  transition: opacity 0.8s ease-in-out;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .hero-gallery {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-gallery-img {
    max-height: 360px;
  }
}

/* --- LIMITED OFFER --- */
.feb-pack {
  padding: 100px 0 40px;
}
.feb-pack-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: linear-gradient(160deg, rgba(20,18,28,0.98) 0%, rgba(25,20,35,0.96) 100%);
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 80px rgba(233, 30, 140, 0.06),
    0 0 40px rgba(139, 92, 246, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.feb-pack-grid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 30, 140, 0.2), transparent);
  opacity: 0.6;
  z-index: 1;
}
.feb-pack-visual {
  position: relative;
  overflow: hidden;
}
.feb-pack-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
  display: block;
}
.feb-pack-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feb-pack-badge {
  display: inline-block;
  width: fit-content;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: #e91e8c;
  background: rgba(233, 30, 140, 0.15);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.feb-pack-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 8px;
}
.feb-pack-deadline {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
}
/* Content pills */
.content-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.content-pill {
  background: rgba(233, 30, 140, 0.1);
  color: #e91e8c;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
}
.feb-pack-price {
  font-size: 17px; font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.feb-pack-anchor {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}
.feb-pack-anchor strong {
  color: #fff;
  font-weight: 700;
}
.feb-pack-cta {
  display: inline-flex; align-items: center; gap: 10px;
  width: fit-content;
  padding: 16px 32px;
  font-size: 15px; font-weight: 700;
  border-radius: 50px;
  background: var(--lime);
  color: #0d0811;
  box-shadow: 0 0 32px var(--lime-glow), 0 4px 16px rgba(0,0,0,0.2);
  transition: all 0.25s;
  text-shadow: none;
}
.feb-pack-cta:hover {
  box-shadow: 0 0 48px rgba(220,255,0,0.25), 0 6px 24px rgba(0,0,0,0.25);
  transform: translateY(-2px);
  background: rgb(230, 255, 30);
}
.feb-pack-note {
  display: block;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 16px;
  font-style: italic;
}

@media (max-width: 768px) {
  .feb-pack {
    padding-top: 90px;
  }
  .feb-pack-grid {
    grid-template-columns: 1fr;
  }
  .feb-pack-img {
    min-height: 280px;
    max-height: 340px;
  }
  .feb-pack-content {
    padding: 28px 24px;
  }
  .content-pill {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-size: 14px; font-weight: 700;
  border-radius: 50px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--berry); background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 0 28px rgba(255,61,154,0.2), 0 6px 20px rgba(139,92,246,0.15);
  animation: berryShift 5s ease infinite;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.btn--primary:hover {
  box-shadow: 0 0 44px rgba(255,61,154,0.3), 0 10px 28px rgba(139,92,246,0.2);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: rgba(255,61,154,0.05);
  border-color: var(--border-hover);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn--outline:hover {
  border-color: var(--border-hover);
  color: var(--raspberry);
}
.btn--unlock {
  background: var(--berry); background-size: 200% 200%;
  color: #fff;
  padding: 18px 36px;
  font-size: 16px; font-weight: 800;
  box-shadow: 0 0 44px rgba(255,61,154,0.25), 0 12px 36px rgba(139,92,246,0.15);
  animation: berryShift 5s ease infinite;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.btn--unlock:hover {
  box-shadow: 0 0 64px rgba(255,61,154,0.35), 0 16px 48px rgba(139,92,246,0.2);
  transform: translateY(-2px);
}
.btn--members {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #fff;
  padding: 16px 32px;
  width: fit-content;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 0 36px rgba(139,92,246,0.2), 0 6px 24px rgba(124,58,237,0.15);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn--members:hover {
  box-shadow: 0 0 50px rgba(139,92,246,0.3), 0 8px 32px rgba(124,58,237,0.2);
  transform: translateY(-2px);
}
.btn-text {
  font-size: 13px; color: var(--text-dim); font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.btn-text:hover { color: var(--raspberry); border-bottom-color: rgba(255,61,154,0.3); }

/* --- SECTION LABEL --- */
.section-label {
  text-align: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--raspberry), #b05ce6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255,61,154,0.3)) drop-shadow(0 0 20px rgba(139,92,246,0.15));
  padding: 0 0 28px;
  position: relative;
}
.section-label::before {
  content: '';
  position: absolute; top: 50%; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,61,154,0.15) 30%, rgba(139,92,246,0.12) 70%, transparent 100%);
}
.section-label span { position: relative; z-index: 1; background: var(--bg); padding: 0 16px; }

/* --- BADGE --- */
.badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--raspberry);
  background: rgba(255,61,154,0.1);
  border: 1px solid rgba(255,61,154,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.badge--members {
  color: #a78bfa;
  background: rgba(139,92,246,0.12);
  border-color: rgba(139,92,246,0.25);
}

/* --- MUSIC --- */
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}
.track-card {
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, rgba(180,60,160,0.06) 0%, rgba(139,92,246,0.04) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}
.track-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,200,240,0.03) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.track-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 50px rgba(255,61,154,0.08), 0 8px 32px rgba(139,92,246,0.06);
  transform: translateY(-3px);
}
.track-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r) var(--r) 0 0;
}
.track-info {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 56px;
}
.track-info h3 {
  font-size: 15px; font-weight: 700; color: var(--text);
  margin: 0; line-height: 1.2;
  flex: 1;
}
.track-play {
  font-size: 12px; font-weight: 600; color: var(--raspberry);
  background: rgba(255,61,154,0.08);
  padding: 6px 14px; border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.music-lyrics {
  display: flex; justify-content: center; gap: 24px;
  margin-top: 12px;
}

@media (max-width: 500px) {
  .music-grid { gap: 12px; }
  .track-info h3 { font-size: 14px; }
}

/* --- MEMBERS CLUB (premium purple) --- */
.private { padding: 0; }
.private-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: linear-gradient(135deg,
    rgba(139,92,246,0.06) 0%,
    rgba(167,139,250,0.04) 30%,
    rgba(139,92,246,0.06) 60%,
    rgba(192,38,211,0.04) 100%
  );
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow:
    0 0 100px rgba(139,92,246,0.05),
    0 0 50px rgba(139,92,246,0.03),
    inset 0 1px 0 rgba(255,255,255,0.03),
    inset 0 -1px 0 rgba(139,92,246,0.06);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  position: relative;
}
.private-grid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,200,240,0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.private-visual {
  position: relative;
  overflow: hidden;
}
.private-img-link { display: block; height: 100%; }
.private-img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.private-img-blur {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    transparent 40%,
    rgba(13,8,17,0.3) 100%
  );
  pointer-events: none;
}
.private-text {
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.private-text h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 16px;
}
.private-text p {
  font-size: 15px; color: var(--text-dim); line-height: 1.7;
  margin-bottom: 28px;
}
.private-supporter {
  display: block;
  font-size: 13px; color: var(--text-dim);
  margin-bottom: 20px; font-style: italic;
  letter-spacing: 0.2px; opacity: 0.75;
}
.private-note {
  display: block;
  font-size: 11px; color: var(--text-faint);
  margin-top: 10px; letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .private-grid {
    grid-template-columns: 1fr;
  }
  .private-img { min-height: 260px; }
  .private-text { padding: 28px 24px; }
}

/* --- SOCIALS --- */
.socials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}
.social-link {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 6px;
  padding: 20px 10px 16px;
  background: linear-gradient(135deg, rgba(180,60,160,0.05), rgba(139,92,246,0.04));
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 13px; font-weight: 500; color: var(--text-dim);
  transition: all 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.social-link:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255,61,154,0.07);
  box-shadow: 0 0 20px rgba(255,61,154,0.05);
}
.social-link svg {
  width: 24px; height: 24px; flex-shrink: 0;
}
.social-link span { font-size: 12px; font-weight: 600; }
.social-handle {
  display: block;
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

@media (max-width: 500px) {
  .socials-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 12px;
  }
  .social-link { padding: 16px 8px; }
  .social-link svg { width: 22px; height: 22px; }
}

/* --- BRANDS --- */
.brands-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.05) 0%, rgba(180,60,160,0.04) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 60px rgba(139,92,246,0.03), inset 0 1px 0 var(--glass-shine);
  position: relative;
  overflow: hidden;
}
.brands-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,200,240,0.02) 0%, transparent 100%);
  pointer-events: none;
}
.brands-card h2 {
  font-size: 28px; font-weight: 800; margin-bottom: 12px; color: #fff;
}
.brands-desc {
  font-size: 14px; color: var(--text-dim); line-height: 1.7;
  margin-bottom: 20px; max-width: 500px;
}
.brands-services {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.brands-services span {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7);
  background: rgba(255,61,154,0.06);
  border: 1px solid rgba(255,61,154,0.15);
  padding: 7px 14px; border-radius: 20px;
  letter-spacing: 0.2px;
  transition: all 0.2s;
}
.brands-services span:hover {
  background: rgba(255,61,154,0.1);
  border-color: rgba(255,61,154,0.25);
  color: #fff;
}
.brands-proof {
  font-size: 12px; color: var(--text-faint); letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.brands-actions {
  display: flex; flex-direction: column; align-items: stretch; gap: 12px;
  width: 100%; max-width: 340px;
  margin-bottom: 16px;
}
.brands-email {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px;
  background: var(--berry); background-size: 200% 200%;
  color: #fff;
  font-size: 15px; font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 0 28px rgba(255,61,154,0.2), 0 6px 20px rgba(139,92,246,0.15);
  animation: berryShift 5s ease infinite;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
  transition: all 0.25s;
  text-align: center;
}
.brands-email:hover {
  box-shadow: 0 0 44px rgba(255,61,154,0.3), 0 10px 28px rgba(139,92,246,0.2);
  transform: translateY(-2px);
}
.brands-email svg { flex-shrink: 0; }
.brands-stats-btn {
  font-size: 13px; color: var(--text-dim); font-weight: 500;
  padding: 10px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.2s;
}
.brands-stats-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
}
.brands-micro {
  font-size: 12px; color: var(--text-faint); font-style: italic;
  max-width: 380px; line-height: 1.5;
}

@media (max-width: 768px) {
  .brands-card { padding: 24px; }
  .brands-card h2 { font-size: 24px; }
  .brands-services { grid-template-columns: repeat(2, auto); }
  .brands-actions { max-width: 100%; }
}

/* --- FOOTER --- */
.footer {
  text-align: center;
  padding: 48px 20px 32px;
  color: var(--text-faint);
  font-size: 12px;
}
.footer-top {
  display: inline-block;
  font-size: 12px; font-weight: 600; color: var(--text-dim);
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  margin-bottom: 20px;
  transition: all 0.2s;
}
.footer-top:hover { border-color: var(--border-hover); color: var(--text); }
.footer p { margin-top: 8px; }

/* --- MODALS --- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13,8,17,0.88);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.open,
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  background: linear-gradient(135deg, rgba(20,14,26,0.96), rgba(30,18,40,0.96));
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  max-width: 500px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(255,61,154,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.modal-box--lg { max-width: 600px; }
.modal-box--player { max-width: 520px; }
.player-frame {
  width: 100%;
  height: 70vh;
  max-height: 500px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  margin-top: 12px;
}
.modal-external {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.modal-external:hover { color: var(--raspberry); }
.modal-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  font-size: 16px; font-weight: 700;
}
.modal-close {
  font-size: 22px; color: var(--text-dim);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.modal-close:hover { color: var(--text); border-color: var(--border-hover); }
.modal-body { font-size: 14px; color: var(--text-dim); line-height: 1.8; }
.lyrics { white-space: pre-wrap; }
.lyrics em {
  color: var(--raspberry); font-style: normal;
  display: block; margin: 8px 0;
}

/* Language grid */
.langGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.langBtn {
  padding: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.langBtn:hover, .langBtn.active {
  background: rgba(255,61,154,0.08);
  border-color: rgba(255,61,154,0.2);
  color: var(--raspberry);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255,61,154,0.15), rgba(139,92,246,0.15));
  border-radius: 3px;
}

/* --- SELECTION --- */
::selection { background: rgba(255,61,154,0.25); color: #fff; }

/* --- SCROLL OFFSET --- */
section[id] { scroll-margin-top: 80px; }

/* --- INSTAGRAM BROWSER BANNER --- */
#instagram-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, #e91e8c, #8a2be2);
  color: #fff;
  padding: 10px 40px 10px 35px;
  font-size: 13px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: slideDown 0.4s ease-out;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-100%); opacity: 0; }
}
.banner-text { text-align: center; }
.banner-text strong { color: #c8ff00; font-size: 16px; font-weight: bold; }
.arrow-pointer {
  font-size: 20px; color: #c8ff00;
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateX(0); }
  50% { opacity: 0.6; transform: translateX(3px); }
}
.close-banner {
  position: absolute; left: 10px;
  background: rgba(255,255,255,0.2);
  border: none; color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%; font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.close-banner:hover { background: rgba(255,255,255,0.3); }
body.has-instagram-banner { padding-top: 50px !important; }
body.has-instagram-banner .nav { top: 52px !important; }
@media (max-width: 768px) {
  #instagram-banner { font-size: 11px; padding: 8px 35px 8px 30px; }
  .banner-text strong { font-size: 14px; }
  body.has-instagram-banner { padding-top: 44px !important; }
  body.has-instagram-banner .nav { top: 46px !important; }
}

/* --- HERO LOGO IMAGE --- */
.hero-logo-img {
  width: clamp(200px, 25vw, 280px);
  height: auto;
  margin-bottom: 8px;
  margin-left: -8px;
  filter: drop-shadow(0 0 30px rgba(255,200,240,0.15));
}

/* --- HERO THANKS LINE --- */
.hero-thanks {
  font-size: 14px;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 12px;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* --- SECURE CHECKOUT LINE --- */
.feb-pack-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 14px;
}
.feb-pack-secure svg { flex-shrink: 0; }

/* --- SECTION DIVIDER --- */
.section-divider {
  text-align: center;
  padding: 12px 0 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.3px;
}

/* --- MEMBERS CLUB EXTRAS --- */
.mc-comparison {
  display: block;
  font-size: 12px;
  color: var(--text-faint);
  font-style: italic;
  margin-bottom: 20px;
  margin-top: 4px;
}
.mc-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 14px;
}
.mc-secure svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .mc-comparison { display: none; }
}

/* --- OFFER PULSE ANIMATION --- */
@keyframes offerPulse {
  0% { box-shadow: 0 0 0 rgba(200,255,0,0); }
  30% { box-shadow: 0 0 40px rgba(200,255,0,0.25), 0 0 80px rgba(200,255,0,0.1); }
  60% { box-shadow: 0 0 20px rgba(200,255,0,0.15), 0 0 50px rgba(200,255,0,0.05); }
  100% { box-shadow: 0 0 0 rgba(200,255,0,0); }
}
.feb-pack-grid.pulse-glow {
  animation: offerPulse 1.2s ease-in-out;
}

/* --- COMPAT: old class names JS might reference --- */
.lyricsOverlay { /* alias */ }
.lyricsOverlay.active { opacity: 1; visibility: visible; }
.modalOverlay.open { opacity: 1; visibility: visible; }
