/* ============================================================
   Remarkable Sounds — Landing Page
   ============================================================ */

/* ---------- Header overrides ---------- */
.landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--text); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-ghost {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }

.btn-primary-sm {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary-sm:hover { background: var(--brand-dark); }

/* ---------- Shared section styles ---------- */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ---------- Hero ---------- */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(108, 59, 245, 0.12);
  border: 1px solid rgba(108, 59, 245, 0.3);
  color: #a78bfa;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-highlight {
  background: linear-gradient(135deg, #6C3BF5 0%, #a855f7 50%, #F5A623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform 0.1s;
}
.btn-hero-primary:hover { background: var(--brand-dark); }
.btn-hero-primary:active { transform: scale(0.98); }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color var(--transition), color var(--transition);
}
.btn-hero-secondary:hover { border-color: var(--brand); color: var(--brand); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

/* ---------- Hero visual ---------- */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.hero-album-art {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.album-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(108, 59, 245, 0.2);
  animation: pulse-ring 3s ease-out infinite;
}

.ring-1 { width: 240px; height: 240px; animation-delay: 0s; }
.ring-2 { width: 180px; height: 180px; animation-delay: 0.75s; }
.ring-3 { width: 120px; height: 120px; animation-delay: 1.5s; }

@keyframes pulse-ring {
  0%   { transform: scale(0.9); opacity: 0.6; }
  50%  { transform: scale(1);   opacity: 0.3; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.album-center {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite;
}

.badge-top-right { top: 10%; right: 0; animation-delay: 0s; }
.badge-bottom-left { bottom: 10%; left: 0; animation-delay: 2s; }

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

.badge-emoji { font-size: 1.2rem; }
.badge-label { font-weight: 600; color: var(--text); margin: 0; line-height: 1.2; }
.badge-value { color: var(--text-muted); margin: 0; }

/* ---------- Carousel ---------- */
.carousel-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(108, 59, 245, 0.04) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.carousel-section .section-header {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-track-container {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  margin: 0;
  padding: 0;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.banner {
  padding: 2.5rem;
  border-radius: var(--radius);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.banner-event {
  background: linear-gradient(135deg, #1a0d3d 0%, #16161f 60%, #0d0d14 100%);
  border: 1px solid rgba(108, 59, 245, 0.3);
}

.banner-milestone {
  background: linear-gradient(135deg, #2d1a00 0%, #16161f 60%, #0d0d14 100%);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 59, 245, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.banner-milestone::before {
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
}

.banner-badge {
  display: inline-block;
  background: rgba(108, 59, 245, 0.15);
  border: 1px solid rgba(108, 59, 245, 0.3);
  color: #a78bfa;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  align-self: flex-start;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.banner-milestone .banner-badge {
  background: rgba(245, 166, 35, 0.12);
  border-color: rgba(245, 166, 35, 0.3);
  color: var(--accent);
}

.banner-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.banner-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.banner-body {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
}

.banner-cta {
  display: inline-block;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
  align-self: flex-start;
}
.banner-cta:hover { color: #a78bfa; }

.banner-milestone .banner-cta { color: var(--accent); }
.banner-milestone .banner-cta:hover { color: #f8c262; }

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.carousel-btn:hover { color: var(--text); border-color: var(--brand); background: rgba(108, 59, 245, 0.1); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.carousel-dot.active { background: var(--brand); transform: scale(1.25); }

/* ---------- Discover section ---------- */
.discover-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.discover-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.discover-tab:hover { color: var(--text); border-color: var(--brand); }
.discover-tab.active {
  background: rgba(108, 59, 245, 0.12);
  border-color: var(--brand);
  color: var(--text);
}

.genre-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.genre-tab {
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.genre-tab:hover { color: var(--text); border-color: var(--brand); }
.genre-tab.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ---------- Artists grid ---------- */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.artist-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.artist-card:hover { border-color: rgba(108, 59, 245, 0.4); transform: translateY(-2px); }

.artist-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.avatar-1 { background: linear-gradient(135deg, #6C3BF5, #a855f7); color: #fff; }
.avatar-2 { background: linear-gradient(135deg, #0ea5e9, #6366f1); color: #fff; }
.avatar-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); color: #fff; }
.avatar-4 { background: linear-gradient(135deg, #10b981, #0ea5e9); color: #fff; }
.avatar-5 { background: linear-gradient(135deg, #ec4899, #8b5cf6); color: #fff; }
.avatar-6 { background: linear-gradient(135deg, #f97316, #eab308); color: #fff; }

.artist-info { flex: 1; min-width: 0; }
.artist-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.artist-genre { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.artist-stats { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; }
.artist-rating { color: var(--accent); font-weight: 600; }
.artist-location { color: var(--text-muted); }

.artist-follow-btn {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--brand);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.artist-follow-btn:hover { background: var(--brand); color: #fff; }

/* ---------- Events list ---------- */
.events-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.event-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: border-color var(--transition);
}
.event-row:hover { border-color: rgba(108, 59, 245, 0.4); }

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}
.event-day { font-size: 1.4rem; font-weight: 800; line-height: 1; color: var(--brand); }
.event-month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600; }

.event-info { flex: 1; min-width: 0; }
.event-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.event-meta { font-size: 0.8rem; color: var(--text-muted); }

.event-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.event-spots { font-size: 0.78rem; color: var(--text-muted); }

.btn-event {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition);
}
.btn-event:hover { background: var(--brand-dark); }

.discover-more {
  margin-top: 2rem;
  text-align: center;
}

.btn-outline-lg {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  border: 1px solid var(--brand);
  color: var(--brand);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-lg:hover { background: var(--brand); color: #fff; }

/* ---------- Featured playlists ---------- */
.playlists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.playlist-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.playlist-card:hover { border-color: rgba(108, 59, 245, 0.4); transform: translateY(-2px); }

.playlist-art {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.art-1 { background: linear-gradient(135deg, #6C3BF5, #a855f7); }
.art-2 { background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.art-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.art-4 { background: linear-gradient(135deg, #10b981, #0ea5e9); }
.art-5 { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.art-6 { background: linear-gradient(135deg, #84cc16, #10b981); }

.playlist-info { flex: 1; min-width: 0; }
.playlist-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.playlist-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.playlist-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; }

.tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  background: rgba(108, 59, 245, 0.12);
  border: 1px solid rgba(108, 59, 245, 0.2);
  color: #a78bfa;
  font-size: 0.7rem;
  font-weight: 600;
}

.playlist-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.playlist-play-btn:hover { background: var(--brand-dark); transform: scale(1.1); }

/* ---------- Top artists list ---------- */
.artists-section {
  background: linear-gradient(180deg, rgba(108, 59, 245, 0.03) 0%, transparent 100%);
}

.top-artists-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.top-artist-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: border-color var(--transition);
}
.top-artist-row:hover { border-color: rgba(108, 59, 245, 0.4); }

.artist-rank {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand);
  min-width: 2.5rem;
  letter-spacing: -0.03em;
}

.top-artist-row:nth-child(1) .artist-rank { color: #fbbf24; }
.top-artist-row:nth-child(2) .artist-rank { color: #94a3b8; }
.top-artist-row:nth-child(3) .artist-rank { color: #c2824a; }

.top-artist-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.top-artist-info { flex: 1; min-width: 0; }
.top-artist-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.15rem; }
.top-artist-meta { font-size: 0.8rem; color: var(--text-muted); }

.top-artist-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  flex-shrink: 0;
}
.top-rating { font-size: 0.88rem; font-weight: 700; color: var(--accent); }
.top-supporters { font-size: 0.75rem; color: var(--text-muted); }

.btn-support {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(108, 59, 245, 0.12);
  border: 1px solid rgba(108, 59, 245, 0.3);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.btn-support:hover { background: var(--brand); color: #fff; }

/* ---------- Subscription section ---------- */
.subscription-section {
  max-width: 100%;
  padding: 5rem 2rem;
  background: radial-gradient(ellipse at center, rgba(108, 59, 245, 0.06) 0%, transparent 70%);
  border-top: 1px solid var(--border);
}

.subscription-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.subscription-badge {
  display: inline-block;
  background: rgba(108, 59, 245, 0.12);
  border: 1px solid rgba(108, 59, 245, 0.3);
  color: #a78bfa;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.subscription-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.subscription-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 3rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.plan-card:hover { transform: translateY(-4px); }

.plan-card.featured-plan {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px rgba(108, 59, 245, 0.3), 0 20px 40px rgba(108, 59, 245, 0.1);
}

.plan-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.plan-price {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.plan-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.plan-btn-primary {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}
.plan-btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }

.plan-btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}
.plan-btn-secondary:hover { background: var(--brand); color: #fff; }

/* ---------- Footer overrides ---------- */
.landing-footer {
  padding: 2.5rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--text); }

.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .hero-visual { display: none; }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

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

  .section-title { font-size: 1.6rem; }

  .landing-header { padding: 0.875rem 1.25rem; }

  .header-nav .nav-link { display: none; }

  .discover-tabs { flex-direction: column; }

  .discover-tab { justify-content: center; }

  .event-row {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .event-actions { margin-left: auto; }

  .top-artist-row {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .top-artist-stats { flex-direction: row; align-items: center; gap: 0.75rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .footer-links { gap: 0.75rem; }

  .carousel-wrapper { padding: 0 0.75rem; }
}
