* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: #000;
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #000;
}

.hero-image {
position: absolute;
    left: 0;
    top: 0;

    width: 70%;
    height: 100%;

    background-image: url("images/background.jpg");
    background-position: left center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-color: #000;
}

.hero-content {
    position: absolute;

    left: 25%;
    width: 75%;

    top: 50%;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    color: #fff;
}

.logo {
    display: block;

    width: 72%;
    max-width: 700px;
    height: auto;

    margin-bottom: 30px;
}

.baseline {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 12px;

    font-size: clamp(30px, 3.2vw, 52px);
    font-weight: 300;

    line-height: 1.1;

    white-space: nowrap;
}

.baseline span {
    font-weight: 300;
    color: #43f584;
}

.baseline strong {
    font-weight: 800;
    color: #43f584;
}

.subtitle {
    margin-top: 22px;

    font-size: clamp(10px, 1vw, 16px);
    font-weight: 400;

    line-height: 1.4;

    color: #fff;

    white-space: nowrap;
}

.subtitle b {
    color: #43f584;
    font-weight: 400;

    margin: 0 5px;
}

.coming-soon {
    margin-top: 42px;

    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;

    font-size: clamp(25px, 2.5vw, 40px);
    font-weight: 300;

    line-height: 1.1;

    color: #43f584;
}

.coming-soon span {
    font-weight: 300;
}

.coming-soon strong {
    font-weight: 800;
}

.email {
    margin-top: 10px;

    font-size: clamp(11px, 1vw, 15px);
    font-weight: 400;

    color: #fff;

    letter-spacing: 0.2px;
}

@media (max-width: 1000px) {

    .hero-image {
        width: 42%;
    }

    .hero-content {
        left: 42%;
        width: 58%;
    }

    .logo {
        width: 80%;
    }

    .subtitle {
        white-space: normal;
        padding: 0 20px;
    }
}

@media (max-width: 700px) {

    body {
        overflow: auto;
    }

    .hero {
        min-height: 100vh;
        height: auto;
    }


    .hero-image {
        width: 100%;
        height: 100%;
        opacity: 0.25;
    }

    .hero-content {
        position: relative;

        left: 0;
        width: 100%;

        top: 0;
        transform: none;

        min-height: 100vh;

        padding: 40px 25px;

        justify-content: center;
    }

    .logo {
        width: 90%;
        margin-bottom: 25px;
    }

    .baseline {
        flex-wrap: wrap;
        gap: 5px 8px;

        font-size: clamp(27px, 8vw, 45px);

        white-space: normal;
    }

    .subtitle {
        white-space: normal;
        font-size: 11px;

        max-width: 350px;
    }

    .coming-soon {
        margin-top: 35px;

        font-size: clamp(25px, 8vw, 40px);
    }

    .email {
        font-size: 11px;
    }
}