:root {
  color-scheme: light;
  --bg: #f8f7fc;
  --bg-rgb: 248, 247, 252;
  --surface: #ffffff;
  --surface-rgb: 255, 255, 255;
  --surface-raised: #f1f0f7;
  --surface-raised-rgb: 241, 240, 247;
  --surface-card: #ffffff;
  --surface-card-rgb: 255, 255, 255;
  --ink: #14131f;
  --ink-rgb: 20, 19, 31;
  --muted: #686683;
  --muted-rgb: 104, 102, 131;
  --accent: #6a5cff;
  --accent-rgb: 106, 92, 255;
  --border: rgba(20, 19, 31, 0.1);
  --border-strong: rgba(20, 19, 31, 0.18);
  --shadow-soft: 0 20px 50px rgba(27, 23, 58, 0.12);
  --shadow-hard: 0 36px 90px rgba(27, 23, 58, 0.18);
  --ink-strong: rgba(var(--ink-rgb), 0.88);
  --ink-soft: rgba(var(--ink-rgb), 0.76);
  --ink-subtle: rgba(var(--ink-rgb), 0.64);
  --ink-faint: rgba(var(--ink-rgb), 0.5);
  --container: 1180px;
  --transition: cubic-bezier(.2, .7, .2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #050505;
    --bg-rgb: 5, 5, 5;
    --surface: #0d0d0d;
    --surface-rgb: 13, 13, 13;
    --surface-raised: #141414;
    --surface-raised-rgb: 20, 20, 20;
    --surface-card: #161616;
    --surface-card-rgb: 22, 22, 22;
    --ink: #f4f4f4;
    --ink-rgb: 244, 244, 244;
    --muted: #8a8a8a;
    --muted-rgb: 138, 138, 138;
    --accent: #b7a6ff;
    --accent-rgb: 183, 166, 255;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --shadow-soft: 0 26px 60px rgba(0, 0, 0, 0.55);
    --shadow-hard: 0 40px 80px rgba(0, 0, 0, 0.6);
    --ink-strong: rgba(var(--ink-rgb), 0.92);
    --ink-soft: rgba(var(--ink-rgb), 0.78);
    --ink-subtle: rgba(var(--ink-rgb), 0.68);
    --ink-faint: rgba(var(--ink-rgb), 0.52);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #050505;
  --bg-rgb: 5, 5, 5;
  --surface: #0d0d0d;
  --surface-rgb: 13, 13, 13;
  --surface-raised: #141414;
  --surface-raised-rgb: 20, 20, 20;
  --surface-card: #161616;
  --surface-card-rgb: 22, 22, 22;
  --ink: #f4f4f4;
  --ink-rgb: 244, 244, 244;
  --muted: #8a8a8a;
  --muted-rgb: 138, 138, 138;
  --accent: #b7a6ff;
  --accent-rgb: 183, 166, 255;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 26px 60px rgba(0, 0, 0, 0.55);
  --shadow-hard: 0 40px 80px rgba(0, 0, 0, 0.6);
  --ink-strong: rgba(var(--ink-rgb), 0.92);
  --ink-soft: rgba(var(--ink-rgb), 0.78);
  --ink-subtle: rgba(var(--ink-rgb), 0.68);
  --ink-faint: rgba(var(--ink-rgb), 0.52);
}

:root[data-theme="light"] {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  animation: page-in .6s ease forwards;
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease, opacity .25s ease;
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, var(--container));
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(var(--surface-rgb), 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
  position: relative;
}

.brand-name {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  display: inline-block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0% 50%;
  transition: transform .3s var(--transition);
  opacity: 0.85;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav a.active {
  color: var(--ink);
}

.site-nav .nav-cta::after {
  display: none;
}

.nav-cta {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 11px;
  background: linear-gradient(140deg, rgba(var(--accent-rgb), 0.22), rgba(var(--surface-rgb), 0.9));
  color: var(--ink);
  transition: border-color .3s ease, transform .3s var(--transition), background .3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.45);
  transform: translateY(-2px);
  background: linear-gradient(140deg, rgba(var(--accent-rgb), 0.3), rgba(var(--surface-rgb), 0.92));
}

.nav-cta.active {
  border-color: rgba(var(--accent-rgb), 0.6);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(var(--surface-rgb), 0.8);
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
  transition: border-color .3s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.45);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  border-radius: 999px;
  padding: 14px 26px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink-strong);
  font-weight: 500;
  transition: transform .3s var(--transition), border-color .3s ease, background .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.45);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(191, 178, 255, 0.56), rgba(132, 116, 255, 0.92));
  border-color: transparent;
  box-shadow: 0 22px 46px rgba(102, 91, 255, 0.38);
}

.btn.primary:hover {
  box-shadow: 0 26px 56px rgba(102, 91, 255, 0.48);
}

.btn.outline {
  background: rgba(var(--ink-rgb), 0.06);
  border-color: rgba(var(--ink-rgb), 0.24);
}

.btn.outline:hover {
  background: rgba(var(--ink-rgb), 0.12);
  border-color: rgba(var(--ink-rgb), 0.35);
}

.btn.small {
  padding: 10px 16px;
  letter-spacing: 0.24em;
  font-size: 10px;
}

/* Hero */
.hero {
  position: relative;
  padding: 160px 0 140px;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(var(--surface-rgb), 0.94) 0%, rgba(var(--surface-rgb), 0.82) 40%, rgba(var(--surface-rgb), 0.56) 100%),
    url('../img/placeholders/photo1.svg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 80% at 20% 20%, rgba(var(--accent-rgb), 0.18), transparent 65%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(140px, 18vw, 320px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(var(--ink-rgb), 0.05);
  text-transform: uppercase;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 680px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--ink-faint);
}

.hero h1 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  max-width: 540px;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 11px;
  color: var(--ink-subtle);
}

.hero-tags li {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(var(--ink-rgb), 0.22);
  background: rgba(var(--bg-rgb), 0.6);
  backdrop-filter: blur(4px);
}

/* Spotlight cards */
.spotlight {
  padding: 96px 0 120px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.spotlight-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(var(--surface-rgb), 0.92), rgba(var(--surface-rgb), 0.88));
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  transition: transform .35s var(--transition), border-color .35s ease;
}

.spotlight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--accent-rgb), 0.55);
}

.spotlight-label {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
}

.spotlight-card h3 {
  margin: 16px 0 12px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.spotlight-card p {
  margin: 0;
  color: var(--ink-subtle);
  line-height: 1.7;
  max-width: 320px;
}

.spotlight-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--accent);
}

/* Pages */
.page {
  padding: 120px 0 140px;
}

.page-header {
  margin-bottom: 52px;
}

.page-header h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 4.6vw, 60px);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.page-header p {
  margin: 0;
  color: var(--ink-subtle);
  max-width: 520px;
}

.bio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
}

.bio-media img {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface-card);
  box-shadow: var(--shadow-soft);
}

.bio-text h2,
.bio-text h3 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 16px;
}

.bio-text p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 12px 0 32px;
}

.pill-list li,
.pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: var(--muted);
  background: rgba(var(--ink-rgb), 0.06);
}

.bio-stats {
  margin: 80px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.bio-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.bio-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bio-stat-value {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 600;
  color: var(--ink-strong);
}

.bio-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}

.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 32px;
}

.filters .pill {
  cursor: pointer;
  transition: border-color .3s ease, background .3s ease, color .3s ease;
}

.filters .pill:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
}

.filters .pill.active {
  border-color: rgba(var(--accent-rgb), 0.65);
  background: rgba(var(--accent-rgb), 0.16);
  color: var(--accent);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(var(--surface-rgb), 0.9), rgba(var(--surface-rgb), 0.92));
  transition: transform .35s var(--transition), border-color .35s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.45);
}

/* Videos */
.video-slider {
  margin-top: 80px;
  padding: 48px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(var(--surface-rgb), 0.9), rgba(var(--surface-rgb), 0.92));
  box-shadow: var(--shadow-soft);
}

.video-stage {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.video-stage .slide {
  display: none;
  width: 100%;
  background: #000;
}

.video-stage .slide.active {
  display: block;
}

.video-controls {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.video-controls .btn.small {
  background: rgba(var(--bg-rgb), 0.6);
  border-color: var(--border);
}

.video-dots {
  display: flex;
  gap: 10px;
}

.video-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease;
}

.video-dots button[aria-current="true"] {
  background: var(--accent);
  border-color: var(--accent);
}

/* Releases */
.release-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.release-card {
  grid-column: span 6;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(var(--surface-rgb), 0.94), rgba(var(--surface-rgb), 0.9));
  transition: transform .35s var(--transition), border-color .35s ease;
}

.release-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--accent-rgb), 0.45);
}

.release-card .cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.release-top h3 {
  margin: 0 0 8px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.release-top p {
  margin: 0;
  color: var(--ink-subtle);
}

.badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(var(--ink-rgb), 0.08);
}

.badge.track {
  border-color: rgba(var(--accent-rgb), 0.4);
  color: var(--accent);
}

.badge.podcast {
  border-color: rgba(119, 237, 255, 0.4);
  color: #77edff;
}

.badge.mix {
  border-color: rgba(255, 189, 124, 0.4);
  color: #ffbd7c;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.actions a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: border-color .3s ease;
}

.actions a:hover {
  border-color: var(--accent);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-media {
  max-width: min(92vw, 1080px);
  max-height: 82vh;
  border-radius: 16px;
  box-shadow: var(--shadow-hard);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(var(--surface-rgb), 0.78);
  color: var(--ink);
  font-size: 28px;
  cursor: pointer;
}

/* PDF frame */
.pdf-frame {
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 16px;
  background: linear-gradient(150deg, rgba(var(--surface-rgb), 0.9), rgba(var(--surface-rgb), 0.94));
  box-shadow: var(--shadow-soft);
}

.muted {
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0;
  background: rgba(var(--surface-rgb), 0.94);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: border-color .3s ease, transform .3s var(--transition);
}

.socials .icon:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  transform: translateY(-3px);
}

.socials .icon img {
  width: 18px;
  height: 18px;
}

.credit {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .site-nav {
    gap: 24px;
  }

  .hero {
    padding: 140px 0 110px;
  }

  .hero-content {
    max-width: 760px;
  }

  .bio-stats {
    margin-top: 68px;
    padding-top: 28px;
  }

  .spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .release-card {
    grid-column: span 12;
    grid-template-columns: 150px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(var(--surface-rgb), 0.96);
    box-shadow: var(--shadow-soft);
    display: none;
    min-width: 240px;
  }

  .site-nav a {
    width: 100%;
  }

  .site-nav a::after {
    bottom: -6px;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    margin-top: 12px;
  }

  .hero {
    padding: 110px 0 72px;
  }

  .hero-overlay {
    font-size: clamp(110px, 32vw, 200px);
    opacity: 0.12;
  }

  .hero-tags {
    flex-wrap: wrap;
  }

  .hero p {
    max-width: none;
  }

  .bio-stats {
    margin-top: 48px;
    padding-top: 24px;
  }

  .bio-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

  .video-slider {
    padding: 32px 20px;
  }

  .video-controls {
    flex-wrap: wrap;
  }

  .release-card {
    grid-template-columns: 1fr;
  }

  .release-card .cover {
    height: 220px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav-bar {
    padding: 18px 0;
  }
}
