:root {
    --black: #080808;
    --black-2: #101010;
    --white: #f7f7f4;
    --grey: #999994;
    --yellow: #e4ff19;
    --border: rgba(255,255,255,.13);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    padding: 35px 6vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: opacity .6s ease, visibility .6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-top,
.loader-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    letter-spacing: .15em;
    color: var(--grey);
}

.loader-top span:first-child {
    color: var(--yellow);
}

.loader-center {
    width: min(600px, 100%);
    margin: auto;
}

.loader-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 25px;
}

.loader-name {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 600;
    line-height: .8;
    letter-spacing: -.09em;
    color: var(--white);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    background: rgba(8,8,8,.9);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.logo span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
    letter-spacing: .14em;
    color: var(--grey);
    transition: .3s;
}

nav a:hover {
    color: var(--yellow);
}

.menu-toggle {
    display: none;
}

.hero {
    min-height: 100vh;
    padding: 82px 6vw 45px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    top: 20%;
    border-radius: 50%;
    background: var(--yellow);
    filter: blur(150px);
    opacity: .06;
    pointer-events: none;
}

.hero-content {
    height: calc(100vh - 127px);
    max-width: 1450px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.top-line,
.bottom-line {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    letter-spacing: .15em;
    color: var(--grey);
}

.top-line span:first-child {
    color: var(--yellow);
}

.hero-main {
    margin: auto 0;
}

.hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(58px, 10vw, 150px);
    line-height: .83;
    letter-spacing: -.075em;
    font-weight: 600;
}

.hero h1 em,
.content h2 em,
.cta h2 em {
    font-style: normal;
    color: var(--yellow);
}

.hero-main p {
    max-width: 500px;
    margin-top: 40px;
    color: var(--grey);
    font-size: 14px;
    line-height: 1.8;
}

.buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.button {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .13em;
    transition: .3s;
}

.primary {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.primary:hover {
    background: transparent;
    color: var(--yellow);
}

.secondary:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.bottom-line {
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.section {
    max-width: 1450px;
    margin: auto;
    padding: 125px 6vw;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 50px;
    border-bottom: 1px solid var(--border);
}

.number {
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    color: var(--yellow);
}

.content {
    min-width: 0;
}

.tag {
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
    letter-spacing: .18em;
    color: var(--yellow);
}

.content h2,
.cta h2 {
    margin-top: 28px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(58px, 8.5vw, 125px);
    line-height: .86;
    letter-spacing: -.075em;
    font-weight: 600;
}

.text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7vw;
    max-width: 900px;
    margin-top: 65px;
}

.text-columns p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.8;
}

.services {
    margin-top: 70px;
    border-top: 1px solid var(--border);
}

.service {
    min-height: 125px;
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid var(--border);
    transition: .3s;
}

.service:hover {
    padding-left: 8px;
}

.service-number {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    color: var(--grey);
    transition: .3s;
}

.service:hover .service-number {
    border-color: var(--yellow);
    color: var(--yellow);
}

.service h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.service p {
    max-width: 600px;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.7;
    color: var(--grey);
}

.heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.view-all {
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
    letter-spacing: .14em;
    color: var(--grey);
    transition: .3s;
}

.view-all:hover {
    color: var(--yellow);
}

.roster {
    margin-top: 65px;
    border-top: 1px solid var(--border);
}

.roster > div {
    min-height: 80px;
    display: grid;
    grid-template-columns: 55px 1fr auto;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transition: .3s;
}

.roster > div:hover {
    padding-left: 8px;
}

.roster span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
    color: var(--grey);
}

.roster strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    letter-spacing: -.04em;
}

.roster small {
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    letter-spacing: .14em;
    color: var(--yellow);
}

.cta {
    padding: 150px 6vw;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.cta h2 {
    font-size: clamp(65px, 10vw, 145px);
}

.cta p {
    margin: 30px 0;
    font-size: 13px;
    color: var(--grey);
}

footer {
    padding: 55px 6vw;
    border-top: 1px solid var(--border);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border);
}

.footer-main strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    letter-spacing: .08em;
}

.footer-main > div {
    display: flex;
    gap: 30px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    letter-spacing: .12em;
    color: var(--grey);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 45px 0;
    border-bottom: 1px solid var(--border);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-column .footer-title {
    margin-bottom: 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    letter-spacing: .16em;
    color: var(--yellow);
}

.footer-column a,
.footer-column > span:not(.footer-title) {
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
    line-height: 1.6;
    letter-spacing: .08em;
    color: var(--grey);
    transition: .3s;
}

.footer-column a:hover {
    color: var(--yellow);
}

.footer-operator {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    letter-spacing: .1em;
}

.footer-operator > span {
    color: var(--yellow);
}

.footer-operator strong {
    font-size: 9px;
    font-weight: 500;
    color: var(--white);
}

.footer-operator a {
    color: var(--grey);
    transition: .3s;
}

.footer-operator a:hover {
    color: var(--yellow);
}

.artists-hero {
    min-height: 100vh;
    padding: 82px 6vw 45px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.artists-hero:after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -280px;
    top: 20%;
    border-radius: 50%;
    background: var(--yellow);
    filter: blur(160px);
    opacity: .055;
    pointer-events: none;
}

.artists-hero-content {
    height: calc(100vh - 127px);
    max-width: 1450px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.artists-hero-main {
    margin: auto 0;
}

.artists-hero h1 {
    margin-top: 28px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(70px, 12vw, 175px);
    line-height: .8;
    letter-spacing: -.08em;
    font-weight: 600;
}

.artists-hero h1 em {
    font-style: normal;
    color: var(--yellow);
}

.artists-hero-main p {
    max-width: 570px;
    margin-top: 42px;
    color: var(--grey);
    font-size: 14px;
    line-height: 1.8;
}

.artists-catalogue,
.labels-section {
    max-width: 1450px;
}

.artists-list {
    margin-top: 70px;
    border-top: 1px solid var(--border);
}

.artist-row {
    min-height: 100px;
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid var(--border);
    transition: .3s;
}

.artist-row:hover {
    padding-left: 10px;
    background: rgba(255,255,255,.015);
}

.artist-number {
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
    color: var(--grey);
}

.artist-row strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(16px, 2vw, 25px);
    letter-spacing: -.04em;
    font-weight: 600;
}

.artist-row small {
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    letter-spacing: .15em;
    color: var(--yellow);
}

.spotify-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--grey);
    transition: .3s;
}

.spotify-link:hover {
    color: var(--yellow);
}

.spotify-logo {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.spotify-text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    letter-spacing: .12em;
}

.labels-list {
    margin-top: 70px;
}

.labels-list .artist-row {
    grid-template-columns: 60px minmax(0, 1fr) auto;
}

.labels-list .artist-row strong {
    font-size: 20px;
}

.faq-list {
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 0;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.faq-question span:first-child {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    line-height: 1.5;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 25px;
    font-weight: 300;
    transition: transform .3s ease;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s ease;
}

.faq-answer p {
    overflow: hidden;
    margin: 0;
    max-width: 700px;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .3s ease, transform .3s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-bottom: 28px;
    opacity: .7;
    transform: translateY(0);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.artists-nav {
    display: flex;
    align-items: center;
}

.artists-home {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 11px 17px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.025);
    color: var(--white);
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .15em;
    overflow: hidden;
    transition: color .35s ease, border-color .35s ease, background .35s ease, transform .35s ease;
}

.artists-home span:first-child {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    transition: transform .35s ease;
}

.artists-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--yellow);
    transform: translateX(-101%);
    transition: transform .4s cubic-bezier(.77,0,.18,1);
    z-index: -1;
}

.artists-home:hover {
    color: var(--black);
    border-color: var(--yellow);
    transform: translateY(-1px);
}

.artists-home:hover::before {
    transform: translateX(0);
}

.artists-home:hover span:first-child {
    transform: translateX(-3px);
}

.legal-page {
    min-height: 100vh;
    padding: 150px 6vw 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.legal-header {
    padding-bottom: 55px;
    border-bottom: 1px solid var(--border);
}

.legal-header .tag {
    display: block;
    margin-bottom: 25px;
}

.legal-header h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(55px, 8vw, 110px);
    line-height: .86;
    letter-spacing: -.075em;
    font-weight: 600;
}

.legal-header h1 em {
    font-style: normal;
    color: var(--yellow);
}

.legal-header p {
    max-width: 700px;
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--grey);
}

.legal-content {
    padding-top: 55px;
}

.legal-section {
    padding: 35px 0;
    border-bottom: 1px solid var(--border);
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section:last-child {
    border-bottom: 0;
}

.legal-section h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 18px;
}

.legal-section h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 25px 0 10px;
}

.legal-section p,
.legal-section li {
    max-width: 800px;
    font-size: 13px;
    line-height: 1.9;
    color: var(--grey);
}

.legal-section p + p {
    margin-top: 15px;
}

.legal-section ul {
    padding-left: 20px;
    margin-top: 12px;
}

.legal-section li + li {
    margin-top: 8px;
}

.legal-section a {
    color: var(--white);
    border-bottom: 1px solid var(--border);
    transition: .3s;
}

.legal-section a:hover {
    color: var(--yellow);
    border-color: var(--yellow);
}

.legal-highlight {
    color: var(--white);
}

@media (max-width: 700px) {

    .navbar {
        height: 72px;
        padding: 0 5vw;
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        width: 160px;
        height: 160px;
    }

    .logo span {
        font-size: 8px;
    }

    .menu-toggle {
        display: flex;
        width: 38px;
        height: 38px;
        padding: 8px;
        border: 1px solid var(--border);
        background: transparent;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        position: relative;
        z-index: 1002;
    }

    .menu-toggle span {
        display: block;
        width: 18px;
        height: 1px;
        background: var(--white);
        transition: transform .3s ease, opacity .3s ease;
    }

    nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        height: calc(100vh - 72px);
        padding: 35px 5vw;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        background: rgba(8,8,8,.98);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-top: 1px solid var(--border);
        transform: translateX(100%);
        transition: transform .35s ease;
        z-index: 1001;
    }

    nav.active {
        transform: translateX(0);
    }

    nav a {
        width: 100%;
        padding: 22px 0;
        font-size: 11px;
        letter-spacing: .12em;
        color: var(--white);
        border-bottom: 1px solid var(--border);
    }

    nav a:first-child {
        border-top: 1px solid var(--border);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

    .loader {
        padding: 25px 5vw;
    }

    .loader-top,
    .loader-bottom {
        font-size: 7px;
    }

    .loader-logo {
        width: 90px;
        height: 90px;
    }

    .hero {
        padding: 72px 5vw 30px;
    }

    .hero-content {
        height: calc(100vh - 102px);
    }

    .top-line span:last-child {
        display: none;
    }

    .hero h1 {
        font-size: 53px;
    }

    .hero-main p {
        font-size: 12px;
        margin-top: 28px;
    }

    .buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .bottom-line {
        flex-direction: column;
        gap: 8px;
    }

    .section {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 80px 5vw;
    }

    .content h2,
    .cta h2 {
        font-size: 52px;
    }

    .text-columns {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 45px;
    }

    .service {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        min-height: 120px;
    }

    .service-number {
        width: 38px;
        height: 38px;
    }

    .service h3 {
        font-size: 14px;
    }

    .service p {
        font-size: 11px;
    }

    .heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .roster {
        margin-top: 45px;
    }

    .roster > div {
        grid-template-columns: 35px 1fr;
        min-height: 72px;
    }

    .roster small {
        display: none;
    }

    .cta {
        padding: 100px 5vw;
    }

    footer {
        padding: 40px 5vw 30px;
    }

    .footer-main {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 30px;
    }

    .footer-main > div {
        flex-direction: column;
        gap: 8px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px 0;
    }

    .footer-column {
        gap: 10px;
    }

    .footer-operator {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .artists-hero {
        padding: 72px 5vw 30px;
    }

    .artists-hero-content {
        height: calc(100vh - 102px);
    }

    .artists-hero h1 {
        font-size: 58px;
    }

    .artists-hero-main p {
        font-size: 12px;
        margin-top: 30px;
    }

    .artist-row {
        min-height: 92px;
        grid-template-columns: 32px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .artist-row strong {
        font-size: 14px;
    }

    .artist-row small {
        display: none;
    }

    .spotify-link {
        grid-column: 3;
        grid-row: 1;
    }

    .spotify-text {
        display: none;
    }

    .spotify-logo {
        width: 20px;
        height: 20px;
    }

    .artists-list {
        margin-top: 45px;
    }

    .labels-list {
        margin-top: 45px;
    }

    .labels-list .artist-row {
        grid-template-columns: 32px minmax(0, 1fr) auto;
    }

    .labels-list .artist-row strong {
        font-size: 14px;
    }

    .faq-list {
        margin-top: 35px;
    }

    .faq-question {
        padding: 22px 0;
        gap: 20px;
    }

    .faq-question span:first-child {
        font-size: 12px;
    }

    .faq-icon {
        font-size: 22px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.7;
    }

    .artists-nav {
        display: flex;
        align-items: center;
    }

    .artists-home {
        padding: 9px 12px;
        gap: 8px;
        font-size: 7px;
        letter-spacing: .11em;
    }

    .artists-home span:first-child {
        font-size: 12px;
    }

    .legal-page {
        padding: 125px 5vw 70px;
    }

    .legal-header {
        padding-bottom: 40px;
    }

    .legal-header h1 {
        font-size: 52px;
    }

    .legal-header p {
        font-size: 12px;
        margin-top: 25px;
    }

    .legal-content {
        padding-top: 35px;
    }

    .legal-section {
        padding: 28px 0;
    }

    .legal-section h2 {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .legal-section h3 {
        font-size: 13px;
        margin-top: 22px;
    }

    .legal-section p,
    .legal-section li {
        font-size: 12px;
        line-height: 1.8;
    }

    .hero-glow,
    .artists-hero:after {
        filter: blur(100px);
    }
}

@media (max-width: 400px) {

    .hero h1 {
        font-size: 48px;
    }

    .content h2,
    .cta h2 {
        font-size: 47px;
    }

    .artists-hero h1 {
        font-size: 51px;
    }

    .artist-row {
        min-height: 84px;
    }

    .artist-row strong {
        font-size: 12px;
    }

    .artists-home {
        padding: 8px 10px;
        font-size: 6px;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
    }

    nav a {
        font-size: 10px;
    }

    .legal-header h1 {
        font-size: 47px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}