:root {
  color-scheme: dark;
  --bg: #020202;
  --ink: #f4f4f1;
  --soft: #b8b8b3;
  --muted: #777770;
  --line: rgba(255, 255, 255, 0.18);
  --line-strong: rgba(255, 255, 255, 0.34);
  --panel: rgba(8, 8, 8, 0.84);
  --panel-soft: rgba(18, 18, 18, 0.72);
  --chrome: linear-gradient(105deg, #ffffff 0%, #bfc0bf 21%, #f8f8f4 39%, #6e6e6a 58%, #d9d9d4 76%, #ffffff 100%);
  --radius: 4px;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.78);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  cursor: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px rgba(255,255,255,0.78);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 44%, rgba(255,255,255,0.18) 45% 48%, transparent 49%),
    var(--chrome);
  opacity: 0.76;
  mix-blend-mode: difference;
  transition: width 160ms ease, height 160ms ease, opacity 160ms ease;
}

body.cursor-active .cursor-ring {
  width: 54px;
  height: 54px;
  opacity: 0.92;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 88px),
    linear-gradient(90deg, transparent 0 10%, rgba(255,255,255,0.045) 10% 10.2%, transparent 10.2% 100%);
  opacity: 0.45;
  mask-image: linear-gradient(to bottom, black 0%, black 58%, transparent 100%);
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100svh;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  background: #000;
}

@supports (height: 100dvh) {
  .video-background {
    height: 100dvh;
  }
}

@supports (height: 100lvh) {
  .video-background {
    height: 100lvh;
  }
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(0.12) hue-rotate(78deg) saturate(1.22) contrast(1.2) brightness(0.46);
  transform: scale(1.03);
}

.video-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(68, 118, 96, 0.12), transparent 48%, rgba(145, 206, 170, 0.07)),
    radial-gradient(circle at 24% 45%, transparent 0 22rem, rgba(0,0,0,0.42) 42rem),
    linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.26) 45%, rgba(0,0,0,0.78)),
    linear-gradient(180deg, rgba(0,0,0,0.48), rgba(0,0,0,0.16) 38%, rgba(0,0,0,0.76));
}

a {
  color: inherit;
  cursor: none;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  display: grid;
  grid-template-columns: minmax(150px, 270px) 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px 42px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.92), rgba(0,0,0,0.62), transparent);
}

.brand img {
  display: block;
  width: 230px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.2));
}

.nav {
  justify-self: end;
  display: flex;
  gap: 0;
  background: transparent;
}

.nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a:first-child {
  border-left: 0;
}

.nav a:hover,
.nav a:focus-visible {
  color: #050505;
  background: var(--chrome);
}

.hero {
  position: relative;
  z-index: 3;
  min-height: 96svh;
  display: grid;
  place-items: center;
  padding: 126px 42px 82px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0 54%, rgba(255,255,255,0.06) 54.2%, transparent 54.6% 100%),
    radial-gradient(circle at 16% 100%, rgba(255,255,255,0.12), transparent 34rem);
  opacity: 0.72;
}

.hero-grid {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 92vw);
  display: grid;
  justify-items: center;
  text-align: center;
}

.kicker {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-logo {
  display: block;
  width: min(920px, 92vw);
  margin: 0;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.22));
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 700;
}

.hero-actions,
.artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  justify-content: center;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.button.primary {
  color: #030303;
  border-color: transparent;
  background: var(--chrome);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.025);
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  border-block: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.86);
  overflow: hidden;
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 12px 0;
  animation: slide 42s linear infinite;
}

.ticker span {
  color: #f7f7f4;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker span::after {
  content: " /";
  color: var(--muted);
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.section {
  position: relative;
  z-index: 3;
  padding: 100px 42px;
}

.section-head {
  display: block;
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.divisions .section-head {
  margin-bottom: 30px;
  text-align: center;
}

.divisions .section-head h2 {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.playlists h2,
.contact h2 {
  max-width: 1180px;
  font-size: 4.4rem;
  line-height: 0.88;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 430px));
  gap: clamp(18px, 5vw, 56px);
  justify-content: center;
  align-items: stretch;
}

.division-card,
.artist-panel,
.playlists,
.contact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(180deg, var(--panel), rgba(2,2,2,0.95));
  box-shadow: var(--shadow);
}

.division-card {
  min-height: 590px;
  padding: 0;
  display: block;
  position: relative;
  overflow: visible;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  perspective: 1200px;
}

.division-card::before {
  display: none;
}

.division-card::after {
  display: none;
}

.card-inner {
  position: relative;
  width: 100%;
  min-height: 590px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 720ms cubic-bezier(.2,.8,.2,1);
}

.division-card:hover .card-inner,
.division-card:focus-within .card-inner {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.2), transparent 17%, transparent 78%, rgba(255,255,255,0.12)),
    linear-gradient(180deg, rgba(20,20,20,0.94), rgba(2,2,2,0.96));
  box-shadow: none;
}

.card-face::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 0;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 6px;
  pointer-events: none;
}

.card-face::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 34%, rgba(255,255,255,0.12) 35%, transparent 38% 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 54px);
  opacity: 0.48;
  pointer-events: none;
}

.card-back::before,
.card-back::after {
  display: none;
}

.card-back {
  transform: rotateY(180deg);
  align-content: center;
  grid-template-rows: auto 1fr;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(180deg, rgba(12,12,12,0.96), rgba(2,2,2,0.98));
}


.card-back h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  text-align: center;
}

.card-back ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.card-back li {
  display: block;
  padding: 6px 0;
  border-bottom: 0;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.card-back li::after {
  content: none;
}

.card-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  background: rgba(0,0,0,0.6);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sublabel-logo-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 22px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,0.13), transparent 62%),
    rgba(0,0,0,0.58);
}

.sublabel-logo-wrap img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.16));
}

.sublabel-copy {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 16px;
  background: rgba(0,0,0,0.62);
}

.division-card h3 {
  font-size: clamp(1.55rem, 2.55vw, 2.8rem);
  line-height: 0.95;
}

.division-card p {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
}

.division-card ul {
  display: none;
}

.card-back ul {
  display: grid;
}

.artist-panel {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: stretch;
  padding: 28px;
}

.artist-mark {
  min-height: 250px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 9px),
    #050505;
  color: transparent;
  -webkit-text-stroke: 1px #f8f8f3;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
}

.artist-copy {
  align-self: center;
}

.artist-role {
  margin: 0 0 8px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.artist-copy h3 {
  font-size: 5.8rem;
  line-height: 0.84;
}

.artist-copy p:not(.artist-role) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.48;
  font-weight: 700;
}

.playlists,
.contact {
  position: relative;
  z-index: 3;
  margin-inline: 42px;
  padding: 42px;
}

.playlists {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: stretch;
}

.playlists iframe {
  display: block;
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: 8px;
  background: #050505;
  color-scheme: dark;
}

.playlist-frame {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), transparent 38%),
    #050505;
}

.contact {
  margin-top: 100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.09), transparent 42%),
    rgba(4,4,4,0.92);
}

.contact h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: -2px;
}

.contact h2 span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0;
  mask-image: linear-gradient(90deg, black 0%, black 88%, transparent 100%);
}

.contact .button {
  min-width: 170px;
  min-height: 50px;
  align-self: end;
  margin-bottom: 2px;
}

.footer {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 30px 42px 42px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .section-head h2,
  .playlists h2,
  .contact h2 {
    font-size: 3.4rem;
  }

  .playlists,
  .artist-panel {
    grid-template-columns: 1fr;
  }

  .division-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .division-card {
    min-height: 470px;
    padding: 10px;
  }

  .card-inner {
    min-height: 470px;
  }

  .division-card h3 {
    font-size: 1.45rem;
  }

  .division-card p {
    font-size: 0.72rem;
  }

  .sublabel-copy {
    padding: 12px;
  }

  .artist-mark {
    min-height: 180px;
  }
}

@media (max-width: 680px) {
  body::before {
    display: none;
  }

  body {
    cursor: auto;
  }

  a {
    cursor: pointer;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .site-header {
    position: fixed;
    grid-template-columns: minmax(132px, 168px) auto;
    gap: 12px;
    align-items: center;
    padding: 14px 18px;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.96), rgba(0,0,0,0.9));
    border-bottom: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
  }

  .brand img {
    width: 168px;
  }

  .nav {
    justify-self: end;
    align-self: center;
    max-width: 100%;
    overflow: visible;
    white-space: nowrap;
  }

  .nav a {
    min-height: 34px;
    padding: 0 8px;
    font-size: 0.64rem;
  }

  .hero {
    min-height: 94svh;
    padding: 184px 22px 82px;
  }

  .video-background {
    top: 0;
    bottom: auto;
    width: 100vw;
    height: 100vh;
    min-height: 100svh;
    background: #000;
  }

  .video-background::before {
    display: none;
  }

  .video-background::after {
    display: none;
  }

  .video-background video {
    display: none;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    left: 22px;
    right: 22px;
    top: 176px;
  }

  .hero-logo {
    width: 100%;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-actions,
  .artist-links,
  .contact,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .section {
    padding: 78px 22px;
  }

  .divisions {
    overflow-x: hidden;
  }

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

  .section-head h2,
  .playlists h2,
  .contact h2 {
    font-size: 2.55rem;
  }

  .divisions .section-head h2 {
    max-width: 10ch;
  }

  .division-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin-inline: auto;
    gap: 22px;
    overflow: visible;
    padding-bottom: 0;
  }

  .division-card {
    width: 100%;
    min-height: 0;
  }

  .card-inner {
    min-height: 0;
    padding: 12px;
    transform-style: flat;
    transition: none;
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.17), transparent 18%, transparent 78%, rgba(255,255,255,0.1)),
      linear-gradient(180deg, rgba(20,20,20,0.95), rgba(1,1,1,0.98));
  }

  .division-card:hover .card-inner,
  .division-card:focus-within .card-inner {
    transform: none;
  }

  .card-face {
    position: relative;
    inset: auto;
    display: block;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
  }

  .card-face::before,
  .card-face::after {
    display: none;
  }

  .card-front {
    display: grid;
    gap: 10px;
    min-height: 238px;
    padding-bottom: 0;
    border-radius: 8px 8px 0 0;
  }

  .card-topline,
  .sublabel-logo-wrap,
  .card-back {
    border-color: rgba(255,255,255,0.19);
    background:
      linear-gradient(145deg, rgba(255,255,255,0.055), transparent 42%),
      rgba(0,0,0,0.48);
  }

  .sublabel-logo-wrap {
    min-height: 174px;
    padding: 14px 8px;
  }

  .sublabel-logo-wrap img {
    width: 94%;
  }

  .sublabel-copy {
    display: none;
    padding: 12px;
    border-radius: 4px;
  }

  .card-back {
    transform: none;
    margin-top: 10px;
    padding: 16px 12px 18px;
    border: 1px solid rgba(255,255,255,0.19);
    border-radius: 4px;
  }

  .card-back h3 {
    margin-bottom: 12px;
    font-size: 1.38rem;
  }

  .card-back ul {
    gap: 5px;
  }

  .card-back li {
    position: relative;
    z-index: 2;
    display: block;
    font-family: Helvetica, Arial, sans-serif;
    font-variant-ligatures: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    text-transform: none;
    list-style: none;
    padding: 3px 0;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.35;
  }

  .division-card h3 {
    font-size: 1.25rem;
  }

  .division-card p {
    margin-top: 8px;
    font-size: 0.76rem;
    line-height: 1.22;
  }

  .artist-panel,
  .playlists,
  .contact {
    margin-inline: 22px;
    padding: 22px;
  }

  .playlists {
    gap: 18px;
  }

  .playlists iframe {
    min-height: 352px;
  }

  .contact {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    grid-template-columns: none;
  }

  .contact h2 {
    display: block;
    white-space: normal;
    font-size: 2.25rem;
    line-height: 0.92;
  }

  .contact h2 span {
    display: block;
    width: 100%;
    margin-top: 10px;
    white-space: nowrap;
    overflow: hidden;
    mask-image: none;
    font-size: 0.9em;
    letter-spacing: 0;
  }

  .contact .button {
    min-width: 0;
    min-height: 52px;
    margin-bottom: 0;
    align-self: stretch;
  }

  .artist-copy h3 {
    font-size: 3.4rem;
  }
}
