* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: #fff;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background: url("img/bg.jpg") center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* затемнение */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* контент */
.content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
}

.logo {
    margin-bottom: 24px;
}


.accent {
    color: #2ecc71;
}


/* h1 { */
.pretitle{
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 36px;
    line-height: 122%;
    letter-spacing: -0.02em;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.subtitle {
    font-weight: 600;
    font-size: 18px;
    line-height: 156%;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.description {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #CCCCCC;
    margin-bottom: 32px;
}

/* форма */
.waitlist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.waitlist input {
    flex: 1;
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 12px 16px;
    background: #303030;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #848484;
}

.waitlist button {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: #1e1e1e;
    border: 1px solid #767676;
    border-radius: 8px;
    padding: 12px 16px;
    background: #e6e6e6;
    cursor: pointer;
}

.waitlist button:hover {
    opacity: 0.9;
}

.contact {
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    text-align: center;
    color: #CCCCCC;
}

.contact a {
    color: #CCCCCC;
    text-decoration: underline;
}
.contact a:hover{
    color: #fff;
}

/* footer */
.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.socials{
    display: flex;
    align-items: center;
}

.socials a {
    margin-right: 32px;
    text-decoration: none;
    opacity: 0.8;
}

.socials a:hover {
    opacity: 1;
}

.copyright {
    opacity: 0.8;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: var(--colors-primary-color-base-white);
}

/* ===== АДАПТИВ ===== */

/* планшеты */
@media (max-width: 992px) {
    h1 {
        font-size: 40px;
    }

    .waitlist {
        flex-direction: column;
    }

    .waitlist button {
        width: 100%;
    }
}

/* мобильные */
@media (max-width: 576px) {
    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .description {
        font-size: 14px;
    }

    .footer {
        flex-direction: column;
        gap: 10px;
    }
}
