/* === Design Tokens === */
:root {
  --bg: #14111e;
  --bg-soft: #1c1830;
  --fg: #f5f3fb;
  --muted: #a8a4bd;
  --border: rgba(255, 255, 255, 0.08);
  --violet: #a855f7;
  --blue: #6366f1;
  --amber: #f5a623;
  --grad-primary: linear-gradient(135deg, #a855f7, #6366f1);
  --grad-warm: linear-gradient(135deg, #f5a623, #ef4444);
  --grad-hero:
    radial-gradient(ellipse at 20% 0%, rgba(168, 85, 247, 0.45), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(99, 102, 241, 0.4), transparent 60%),
    linear-gradient(180deg, #14111e, #0f0d18);
  --shadow-glow: 0 20px 60px -20px rgba(168, 85, 247, 0.5);
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 700;
}
h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); }

.grad {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.grad-warm {
  background: var(--grad-warm);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.muted { color: var(--muted); font-size: 1.125rem; }
.muted.small { font-size: 1rem; margin-top: 1rem; }
.eyebrow {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1rem;
}

/* === Layout === */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 56rem; }
.section { padding: 6rem 0; position: relative; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }

.grid-2 { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600; font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: scale(1.05); }
.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.1); }
.btn-light {
  background: var(--fg);
  color: var(--bg);
}
.btn-light:hover { transform: scale(1.05); }

/* === Glass utility === */
.glass {
  background: rgba(40, 35, 60, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
}

/* === Reveal Animation === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* === Nav === */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(20, 17, 30, 0.7);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 80rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.125rem;
  letter-spacing: -0.02em;
}
.nav-links {
  display: none; align-items: center; gap: 2rem;
}
.nav-links a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }
.nav-links .btn { color: white; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--fg);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-mobile {
  display: none;
  flex-direction: column; gap: 1rem;
  padding: 1.5rem;
  background: rgba(20, 17, 30, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; }

/* === Hero === */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4;
}
.hero-overlay { position: absolute; inset: 0; background: var(--grad-hero); }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.blob-1 {
  top: -8rem; right: -8rem;
  width: 24rem; height: 24rem;
  background: rgba(168, 85, 247, 0.3);
}
.blob-2 {
  bottom: 0; left: -8rem;
  width: 24rem; height: 24rem;
  background: rgba(245, 166, 35, 0.2);
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}
.hero-content {
  position: relative;
  max-width: 64rem; margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  text-align: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: rgba(40, 35, 60, 0.5);
  backdrop-filter: blur(16px);
  font-size: 0.75rem; color: var(--muted);
  margin-bottom: 1.5rem;
}
.badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero .lead {
  max-width: 36rem; margin: 2rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.cta-row {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 2.5rem;
  justify-content: center; align-items: center;
}
.cta-row .btn { width: 100%; max-width: 20rem; }
@media (min-width: 640px) {
  .cta-row { flex-direction: row; }
  .cta-row .btn { width: auto; }
}

/* === About === */
.about-img-wrap { position: relative; }
.img-glow {
  position: absolute; inset: -1rem;
  background: var(--grad-primary);
  opacity: 0.3; filter: blur(40px);
  border-radius: var(--radius-xl);
}
.about-img-wrap img {
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  width: 100%; height: auto;
}

/* === Music === */
.music-section { overflow: hidden; }
.bg-orb {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.1);
  filter: blur(80px);
  pointer-events: none;
}
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head .muted { max-width: 32rem; margin: 1rem auto 0; }

.music-grid {
  display: grid; gap: 1.5rem;
  position: relative;
}
@media (min-width: 640px) { .music-grid { grid-template-columns: 1fr 1fr; } }

.song-card {
  background: rgba(40, 35, 60, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.song-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.song-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.song-head h3 { font-size: 1.25rem; font-weight: 600; }
.song-head p { font-size: 0.875rem; color: var(--muted); }
.play-btn {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.875rem;
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s;
}
.song-card:hover .play-btn { transform: scale(1.1); }
.song-card iframe {
  border: 0; border-radius: 1rem;
  width: 100%; height: 80px;
  overflow: hidden;
}

/* === Tour === */
.tour-list { display: flex; flex-direction: column; gap: 0.75rem; }
.tour-item {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1.25rem;
  background: rgba(40, 35, 60, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
@media (min-width: 640px) {
  .tour-item { flex-direction: row; align-items: center; justify-content: space-between; padding: 1.5rem; }
}
.tour-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  background: rgba(50, 45, 70, 0.6);
}
.tour-info { display: flex; align-items: center; gap: 1.25rem; }
.date-block {
  width: 3.5rem; height: 3.5rem;
  border-radius: var(--radius);
  background: var(--grad-primary);
  color: white;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.date-block .m { font-size: 0.625rem; text-transform: uppercase; opacity: 0.8; }
.date-block .d { font-size: 1.125rem; font-weight: 700; line-height: 1; }
.tour-info h3 { font-size: 1.25rem; font-weight: 600; }
.tour-info .venue { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }

/* === Community === */
.community-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--grad-primary);
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
@media (min-width: 640px) { .community-card { padding: 4rem; } }
.community-blob {
  position: absolute; top: -5rem; right: -5rem;
  width: 15rem; height: 15rem;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.4);
  filter: blur(60px);
}
.community-card .heart {
  font-size: 2rem; margin-bottom: 1.5rem; color: rgba(255,255,255,0.9);
}
.community-card h2 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 4rem);
  position: relative;
}
.community-card p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem; margin: 1.5rem auto 0;
  font-size: 1.125rem;
  position: relative;
}
.community-card .btn { margin-top: 2.5rem; position: relative; }

/* === Social === */
.social-head {
  display: flex; flex-direction: column; gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .social-head { flex-direction: row; align-items: flex-end; } }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.ig-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
}
.ig-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.ig-item:hover img { transform: scale(1.1); }
.ig-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,17,30,0.8), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.ig-item:hover::after { opacity: 1; }

/* === Footer === */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner {
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: center; justify-content: space-between;
  text-align: center;
}
@media (min-width: 640px) { .footer-inner { flex-direction: row; text-align: left; } }
.footer-meta { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }
.socials { display: flex; gap: 0.75rem; }
.socials a {
  width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(40, 35, 60, 0.5);
  border: 1px solid var(--border);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.3s, background 0.3s;
}
.socials a:hover {
  transform: scale(1.1);
  background: rgba(60, 55, 90, 0.7);
}
