/* ============================================================
   svbxrbia — artist landing page
   dark / cinematic / music-forward
   ============================================================ */

/* ---- reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #080808;
  --bg-2:        #0f0f0f;
  --bg-3:        #141414;
  --bg-4:        #1a1a1a;
  --purple:      #7c3aed;
  --purple-dim:  #6b21a8;
  --purple-glow: rgba(124, 58, 237, 0.18);
  --purple-line: rgba(124, 58, 237, 0.4);
  --text:        #f0f0f0;
  --text-muted:  #888;
  --text-dim:    #555;
  --border:      rgba(255,255,255,0.07);
  --font-display: 'Unbounded', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95) 0%, transparent 100%);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color 0.2s;
  text-transform: lowercase;
}

.nav-links a:hover { color: var(--text); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}

/* atmospheric background glow */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 28px;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(64px, 14vw, 160px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-bottom: 28px;
  position: relative;
}

.hero-name-text {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #f0f0f0 0%, #a78bfa 40%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* glitch layers */
.hero-name-text::before,
.hero-name-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f0f0 0%, #a78bfa 40%, #f0f0f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  pointer-events: none;
}

.hero-name-text::after {
  background: linear-gradient(135deg, #7c3aed 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-name:hover .hero-name-text::before {
  opacity: 0.8;
  animation: glitch-1 0.5s steps(2, end) infinite;
}

.hero-name:hover .hero-name-text::after {
  opacity: 0.5;
  animation: glitch-2 0.5s steps(2, end) infinite;
}

@keyframes glitch-1 {
  0%   { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 0); }
  25%  { clip-path: inset(60% 0 20% 0); transform: translate(3px, 0); }
  50%  { clip-path: inset(40% 0 40% 0); transform: translate(-2px, 0); }
  75%  { clip-path: inset(10% 0 80% 0); transform: translate(2px, 0); }
  100% { clip-path: inset(70% 0 10% 0); transform: translate(-1px, 0); }
}

@keyframes glitch-2 {
  0%   { clip-path: inset(70% 0 10% 0); transform: translate(3px, 0); }
  25%  { clip-path: inset(10% 0 80% 0); transform: translate(-3px, 0); }
  50%  { clip-path: inset(50% 0 30% 0); transform: translate(2px, 0); }
  75%  { clip-path: inset(30% 0 50% 0); transform: translate(-2px, 0); }
  100% { clip-path: inset(20% 0 60% 0); transform: translate(1px, 0); }
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}

.hero-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  transition: all 0.2s;
}

.social-pill:hover {
  border-color: var(--purple-line);
  color: var(--text);
  background: var(--purple-glow);
}

.social-pill svg { flex-shrink: 0; }

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 40px;
  position: relative;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--text);
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-weight: 400;
}

/* top divider line */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: var(--border);
}

/* ---- MUSIC ---- */
.music-section {
  background: var(--bg-2);
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.track-embed {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.track-embed:hover {
  border-color: var(--purple-line);
}

.track-embed iframe {
  display: block;
}

.track-label {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.track-sub {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 400;
  margin-left: 4px;
}

.soundcloud-full-embed {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
}

.soundcloud-full-embed iframe { display: block; }

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--purple-line);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--purple);
  transition: all 0.2s;
  background: transparent;
}

.btn-outline:hover {
  background: var(--purple-glow);
  color: #a78bfa;
  border-color: var(--purple);
}

/* ---- VIDEO ---- */
.video-section {
  background: var(--bg);
}

.video-wrapper {
  margin-bottom: 40px;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(124,58,237,0.07);
}

.video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ---- BOOKING ---- */
.booking-section {
  background: var(--bg-2);
}

.booking-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 350px;
  background: radial-gradient(ellipse at top center, rgba(124,58,237,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.booking-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.booking-title {
  margin-bottom: 20px;
}

.booking-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all 0.2s;
  margin-bottom: 20px;
}

.btn-primary:hover {
  background: #6d28d9;
  box-shadow: 0 0 30px rgba(124,58,237,0.35);
  transform: translateY(-1px);
}

.booking-note {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ---- SUPPORT / TIP JAR ---- */
.support-section {
  background: var(--bg);
}

.support-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 250px;
  background: radial-gradient(ellipse at top center, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.support-inner {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.support-title {
  margin-bottom: 16px;
}

.support-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

.tip-jar {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.tip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-2);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.tip-btn:hover {
  border-color: var(--purple-line);
  color: var(--text);
  background: var(--purple-glow);
  box-shadow: 0 0 20px rgba(124,58,237,0.12);
  transform: translateY(-1px);
}

.tip-btn-featured {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 0 24px rgba(124,58,237,0.25);
}

.tip-btn-featured:hover {
  background: #6d28d9;
  border-color: #6d28d9;
  color: #fff;
  box-shadow: 0 0 32px rgba(124,58,237,0.4);
}

.support-note {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ---- FOOTER ---- */
.footer {
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  text-transform: lowercase;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav {
    padding: 18px 20px;
  }

  .nav-links { gap: 20px; }

  .hero {
    padding: 100px 24px 80px;
  }

  .section {
    padding: 72px 24px;
  }

  .section::before {
    left: 24px;
    right: 24px;
  }

  .tracks-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 48px 24px;
  }

  .footer-links { gap: 20px; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }

  .hero-socials {
    gap: 8px;
  }

  .social-pill {
    font-size: 12px;
    padding: 8px 14px;
  }

  .hero-scroll-hint { display: none; }

  .tip-jar {
    gap: 8px;
  }

  .tip-btn {
    min-width: 70px;
    padding: 12px 16px;
    font-size: 14px;
  }
}
