/* ===== Landing page ===== */

body.landing {
    overflow: hidden;
    background: #000;
}

body.landing .site-nav-brand {
    display: none;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    display: block;
    background-color: transparent;
}

.landing-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding-top: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

body.landing .site-nav {
    position: relative;
    z-index: 2;
}

/* ===== Hero section ===== */

.hero {
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.hero-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-logo {
    width: 160px;
    height: 160px;
}

.hero-wordmark {
    font-family: Rubik, 'Rubik Blank';
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    letter-spacing: 0.05em;
    margin: 0;
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.hero-description {
    color: var(--color-muted);
    font-size: 1.15rem;
    max-width: 560px;
    line-height: 1.5;
    margin: 0.25rem 0 0;
}

.hero-features {
    text-align: left;
}

.hero-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero-features li {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.4;
    padding-left: 1.2em;
    position: relative;
}

.hero-features li::before {
    content: "\2022";
    color: var(--color-teal);
    position: absolute;
    left: 0;
}

.hero-credit {
    font-size: 0.85rem;
    margin: 0;
}

.hero-credit a {
    color: var(--color-teal);
    text-decoration: none;
}

.hero-credit a:hover {
    text-decoration: underline;
}

/* ===== Artist zone ===== */

.artist-zone {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.artist-zone-label {
    color: var(--color-muted);
    text-transform: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-teal);
}

.artist-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-text);
    transition: opacity 0.15s;
}

.artist-card:hover {
    opacity: 0.8;
}

.artist-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.artist-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 700;
}

.artist-name {
    margin-top: 0.5em;
    text-align: center;
    font-size: 0.9em;
}

/* ===== Wide screen ===== */

@media (min-width: 900px) {
    .hero {
        flex-direction: row;
        gap: 4rem;
        padding: 0 4rem;
    }

    .hero-branding {
        align-items: center;
    }

    .hero-content {
        align-items: flex-start;
        text-align: left;
    }

}

/* ===== Mobile ===== */

@media (max-width: 768px) {
    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .hero {
        gap: 0.25rem;
        padding: 0 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
        margin: 1.5rem 0 0;
    }

    .hero-tagline {
        margin: 0.25rem 0 1rem 0;
    }

    .artist-zone {
        padding: 1rem;
    }

    .artist-grid {
        gap: 1rem;
    }
}
