/* =========================================================
   LEAVE IT PLAYING
   Landing Screen
   ========================================================= */

.landing-screen {
    min-height: calc(100vh - 92px);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    position: relative;

    padding:
        60px 24px
        100px;

    text-align: center;
}


/* =========================================================
   CONTENT
   ========================================================= */

.landing-content {
    width: min(900px, 100%);

    animation:
        landingAppear 1s ease both;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.landing-screen .eyebrow {
    margin-bottom: 24px;

    color: #66666e;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.landing-screen h1 {
    color: #f2f2f3;

    font-size:
        clamp(
            42px,
            7vw,
            82px
        );

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.065em;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.landing-description {
    margin-top: 34px;

    color: #77777f;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   FIND MY VIBE BUTTON
   ========================================================= */

.landing-screen .primary-button {
    margin-top: 40px;
}


/* =========================================================
   BOTTOM MESSAGE
   ========================================================= */

.landing-footer {
    position: absolute;

    left: 50%;
    bottom: 35px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 20px;

    width: max-content;

    color: #3f3f46;

    font-size: 11px;
}

.landing-footer span:not(:last-child)::after {
    content: "·";

    margin-left: 20px;
}


/* =========================================================
   ENTRANCE ANIMATION
   ========================================================= */

@keyframes landingAppear {

    from {
        opacity: 0;

        transform:
            translateY(18px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .landing-screen {
        min-height: calc(100vh - 75px);

        padding:
            40px 20px
            90px;
    }

    .landing-screen h1 {
        font-size:
            clamp(
                40px,
                9vw,
                62px
            );
    }

    .landing-description {
        margin-top: 26px;

        font-size: 14px;
    }

    .landing-screen .primary-button {
        margin-top: 32px;
    }

    .landing-footer {
        width: calc(100% - 40px);

        justify-content: center;

        flex-wrap: wrap;

        gap: 7px;

        font-size: 9px;
    }

    .landing-footer span:not(:last-child)::after {
        margin-left: 7px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .landing-screen {
        padding:
            30px 18px
            80px;
    }

    .landing-screen h1 {
        font-size:
            clamp(
                38px,
                11vw,
                52px
            );
    }

    .landing-description {
        font-size: 13px;
    }
}