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

html,
body {
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;

    color: #08295d;
}

.coming-soon {
    min-height: 100vh;
    min-height: 100svh;

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

    padding: 40px 20px;
    text-align: center;
}

.content {
    width: 100%;
    max-width: 720px;

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

.logo {
    width: min(430px, 80vw);
    height: auto;
    display: block;

}

.separator {
    width: 46px;
    height: 4px;

    margin: 34px 0 25px;

    border-radius: 999px;
    background: #f7bd18;
}

.eyebrow {
    margin-bottom: 12px;

    font-size: 13px;
    font-weight: 800;

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

    color: #e52027;
}

h1 {
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1;
    font-weight: 900;

    letter-spacing: -0.045em;

    color: #08295d;
}

.subtitle {
    max-width: 480px;

    margin-top: 18px;

    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;

    color: #657084;
}

.made-in {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 35px;
    padding: 10px 17px;

    border: 1px solid rgba(8, 41, 93, 0.12);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.75);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;

    color: #08295d;
}

.made-in span {
    font-size: 18px;
}


/* Mobile */

@media (max-width: 600px) {

    .coming-soon {
        padding: 30px 20px;
    }

    .logo {
        width: min(330px, 82vw);
    }

    .separator {
        margin-top: 28px;
    }

    .subtitle {
        max-width: 330px;
    }
}