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

body {
    min-height: 100vh;
    background: linear-gradient(
        to bottom,
        #FFFFFF 18%,
        #BAC8B1 38%,
        #789B73 56%,
        #405F32 72%,
        #0D2E16 94%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

/* ---- HEADER ---- */
.header {
    padding-top: 50px;    /* era 75px, sube el logo */
    text-align: center;
}

.logo {
    width: 296px;
    height: 116px;
    object-fit: contain;
}

/* ---- MAIN ---- */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 20px 60px;   /* más espacio abajo para bajar el contenido */
}

.coming-soon {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 100px;
    color: #FFFFFF;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 20px;    /* era 28px */
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 24px;    /* era 30px */
    width: 620px;
    max-width: 90vw;
}

/* ---- FORM ---- */
.email-form {
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
}

.input-group {
    display: flex;
    align-items: center;
    width: 521px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.11);
    overflow: hidden;
}

.input-field {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-style: italic;
    font-size: 12px;
    padding: 0 18px;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    font-weight: 200;
}

.input-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.submit-btn {
    width: 91px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.65);
}

@media (max-width: 700px) {
    .input-group {
        width: 300px;
    }
}

/* ---- FOOTER ---- */
.footer {
    padding: 40px 20px 60px;
    display: flex;
    gap: 64px;
    justify-content: center;
}

.social-btn {
    width: 89px;
    height: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 700px) {
    .coming-soon {
        font-size: 55px;
    }
    .email-input {
        width: 280px;
    }
    .logo {
        width: 200px;
        height: auto;
    }
    .footer {
        gap: 20px;
    }
}