:root {
  --fg: #fff;
  --bg: #0a0a0a;
  --muted: #999;
  --accent: #fff;
  --rule: rgba(255,255,255,0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", "Inter", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.7; }

/* ============ Top nav ============ */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav.top .brand { font-weight: 700; letter-spacing: 0.22em; }
nav.top ul { list-style: none; display: flex; gap: 2rem; margin: 0; padding: 0; }

/* ============ Hero (animated light banner) ============ */
.hero {
  position: relative;
  width: 100%;
  height: clamp(440px, 76vh, 820px);
  overflow: hidden;
  background: #060507;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drita-banner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.drita-banner canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* fade the far ends into black so the light dissolves at the edges */
.drita-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #060507 0%, transparent 14%, transparent 86%, #060507 100%),
    radial-gradient(130% 120% at 50% 50%, transparent 55%, rgba(6,5,7,0.6) 100%);
}

.hero .overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-shadow: 0 2px 60px rgba(6,5,7,0.7), 0 0 20px rgba(6,5,7,0.5);
}

.hero .tag {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ Section blocks ============ */
section.block {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

section.block.center { text-align: center; }

h2.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-weight: 500;
}

section.block h3 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  max-width: 32ch;
}

section.block.center h3 { margin-left: auto; margin-right: auto; }

section.block p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
  margin: 0 0 1rem;
}

section.block.center p { margin-left: auto; margin-right: auto; }

section.block + section.block { border-top: 1px solid var(--rule); }

.equation {
  font-family: "Cambria Math", "Latin Modern Math", Georgia, "Times New Roman", serif;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--muted);
}

/* ============ Listen / CTA ============ */
.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  border: 1px solid var(--fg);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

.cta:hover { background: var(--fg); color: var(--bg); opacity: 1; }

.streaming {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.streaming a {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--rule);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.streaming a:hover { background: var(--fg); color: var(--bg); opacity: 1; border-color: var(--fg); }

/* ============ Artist card (label home) ============ */
.artist-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
  max-width: 500px;
  margin: 2rem auto 0;
}

.artist-card .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s;
}

.artist-card:hover .bg { transform: scale(1.04); opacity: 1; }
.artist-card:hover { opacity: 1; }

.artist-card .placeholder {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, #2a2a2a, #0a0a0a);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.1);
  font-size: 8rem; font-weight: 900;
}

.artist-card .label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* ============ Footer ============ */
footer.site {
  border-top: 1px solid var(--rule);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

footer.site ul {
  list-style: none; padding: 0;
  display: flex; gap: 1.5rem; justify-content: center;
  margin: 0 0 1.5rem;
}

@media (max-width: 600px) {
  nav.top { padding: 1rem; }
  nav.top ul { gap: 1rem; }
  section.block { padding: 3.5rem 1.5rem; }
  .hero .overlay { padding: 2rem 1.5rem 2.5rem; }
}
