:root {
  --bg-main: #05070d;
  --bg-canvas: #000000;
  --text-main: #f5f5f5;
  --text-soft: #cfc7b6;
  --text-muted: #8e8573;
  --accent: #f2cf69;
  --accent-soft: color-mix(in srgb, var(--accent) 14%, transparent);
  --accent-border: color-mix(in srgb, var(--accent) 65%, transparent);
  --accent-hover-bg: color-mix(in srgb, var(--accent) 8%, transparent);
  --accent-card-border: color-mix(in srgb, var(--accent) 35%, transparent);
  --accent-card-bg: color-mix(in srgb, var(--accent) 5%, transparent);
  --accent-glow: color-mix(in srgb, var(--accent) 45%, transparent);
  --font-main: "Lato", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: "Space Mono", monospace;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html,
body,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button {
  font: inherit;
  background: none;
  border: none;
}

a {
  color: inherit;
}

#canvas-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg-canvas);
  pointer-events: none;
}

header {
  position: fixed;
  top: 28px;
  left: 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
  pointer-events: none;
}

.logo {
  line-height: 1;
  pointer-events: auto;
  display: inline-block;
}

.logo-img {
  display: block;
  width: 64px;
  height: auto;
}

.logo-fallback {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-wordmark {
  display: block;
  width: 320px;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.coords,
.eyebrow,
.section-kicker,
.footer-note,
.btn,
.text-link,
.nav-link,
.social-button,
.artist-meta,
.release-action {
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: lowercase;
}

.coords {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  position: fixed;
  right: 34px;
  top: 34px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.7rem;
  transition: transform 0.25s, color 0.25s;
}

.nav-link:hover {
  color: var(--text-soft);
  transform: translateX(-4px);
}

main {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 120px 34px 120px;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 220px;
}

.hero {
  min-height: 48vh;
  display: flex;
  align-items: flex-start;
  padding-bottom: 10px;
}

.hero-inner {
  max-width: 760px;
  padding-top: 84px;
}

.eyebrow {
  font-size: 0.72rem;
  margin-bottom: 18px;
  color: var(--text-muted);
}

h1 {
  font-size: clamp(3.4rem, 9vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0 0 4px;
  text-transform: lowercase;
}

.hero-subtitle {
  font-size: clamp(1.04rem, 2.1vw, 1.34rem);
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.45;
  max-width: 760px;
  margin: 4px 0 12px;
  text-transform: lowercase;
}

.hero-intro {
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.72;
  color: #b2aa9b;
  margin-bottom: 20px;
  text-transform: lowercase;
  text-align: justify;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn,
.text-link,
.artist-card,
.release-row,
.social-button,
.nav-link {
  pointer-events: auto;
}

.btn,
.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  font-size: 0.72rem;
  transition: transform 0.25s, border-color 0.25s, background 0.25s, color 0.25s;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.btn:hover,
.social-button:hover {
  transform: translateX(4px);
  border-color: var(--accent-border);
  background: var(--accent-hover-bg);
}

.btn.primary {
  border-color: var(--accent-glow);
  box-shadow: 0 0 18px var(--accent-soft);
  color: #fff;
}

.text-link {
  text-decoration: none;
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: transform 0.25s, color 0.25s;
}

.text-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.section {
  padding: 20px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
}

.section-kicker {
  font-size: 0.72rem;
  padding-top: 8px;
  color: var(--text-muted);
}

.section-body h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  text-transform: lowercase;
}

.section-body p {
  max-width: 790px;
  font-size: 1rem;
  line-height: 1.9;
  color: #a7a093;
  margin-bottom: 14px;
  text-transform: lowercase;
  text-align: justify;
  text-wrap: pretty;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.artist-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  padding: 18px;
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), background 0.28s var(--ease);
  text-decoration: none;
  color: inherit;
  min-height: 92px;
}

.artist-card:hover {
  transform: translateX(4px);
  border-color: var(--accent-card-border);
  background: var(--accent-card-bg);
}

.artist-card h3 {
  font-size: 1.04rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #fff;
}

.artist-meta {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.66rem;
  color: var(--text-muted);
}

.artist-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #9a9487;
  margin-bottom: 0;
  text-transform: lowercase;
  text-align: left;
}

/* Ninja Tune–style release list */
.release-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.release-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), background 0.25s;
}

.release-row:hover {
  transform: translateX(4px);
  background: var(--accent-card-bg);
}

.release-action {
  font-size: 0.62rem;
  color: var(--accent);
  letter-spacing: 0.14em;
}

.release-title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
}

.release-artist {
  font-size: 0.88rem;
  color: #9a9487;
  text-transform: lowercase;
}

.archive-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 18px;
}

.archive-row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), background 0.25s;
}

.archive-row:hover {
  transform: translateX(4px);
  background: var(--accent-card-bg);
}

.archive-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.archive-row strong {
  font-weight: 400;
  font-size: 1.05rem;
  text-transform: lowercase;
}

.archive-row span {
  font-size: 0.88rem;
  color: #9a9487;
  text-transform: lowercase;
}

.social-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

footer {
  position: fixed;
  bottom: 32px;
  left: 34px;
  z-index: 20;
  pointer-events: none;
}

.bottom-right-note {
  position: fixed;
  right: 34px;
  bottom: 32px;
  z-index: 20;
  pointer-events: none;
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  font-family: var(--font-mono);
}

.footer-note {
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.footer-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  pointer-events: auto;
}

.support-lockup,
.managed-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.support-lockup img {
  display: block;
  height: 56px;
  width: auto;
  opacity: 0.9;
}

.managed-lockup img {
  display: block;
  height: 22px;
  width: auto;
  opacity: 0.9;
}

.support-lockup:hover img,
.managed-lockup:hover img {
  opacity: 1;
}

#cursor-spirit {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  z-index: 30;
}

.cursor-aura {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: transparent;
  animation: spirit-breathe 3.4s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes spirit-breathe {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.08);
  }
}

.cursor-eyes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.eye {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
  transform-origin: center center;
  transition: transform 0.07s ease-out, opacity 0.07s ease-out, box-shadow 0.07s ease-out;
}

.eye.blink {
  transform: scaleY(0.08) scaleX(1.3);
  opacity: 0.2;
  box-shadow: none;
}

@media (max-width: 1080px) {
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .release-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 980px) {
  .hero-inner {
    padding-top: 16px;
  }

  .hero-wordmark {
    width: min(260px, 82vw);
  }

  header {
    top: 16px;
    left: 16px;
    gap: 6px;
  }

  .logo-img {
    width: 48px;
  }

  .coords {
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .site-nav {
    display: none;
  }

  main {
    padding: 150px 18px 110px;
  }

  .page {
    padding-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 12px;
  }

  h1 {
    font-size: clamp(2.8rem, 18vw, 4.6rem);
    line-height: 0.95;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .hero-intro,
  .section-body p {
    font-size: 0.92rem;
    line-height: 1.7;
    text-align: left;
    text-wrap: wrap;
  }

  .btn,
  .text-link,
  .social-button,
  .nav-link {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .section {
    padding: 24px 0 34px;
  }

  .section-grid,
  .artist-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-kicker {
    padding-top: 0;
    font-size: 0.66rem;
  }

  .section-body h2 {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
    margin-bottom: 12px;
  }

  .artist-card {
    padding: 16px;
  }

  .archive-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
