body {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #dd6677 0%, #ffddbb 100%);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.summary {
        text-align: center;
        margin-bottom: 32px;
        color: #333;
        font-size: 1.1rem;
        min-height: 48px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
}
.waitlist-section {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100vw;
        background: #000000;
        color: #f4f4f4;
        box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
        padding: 40px 0 32px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 10;
}

.banner-logo {
    max-width: 800px;
}

@media (max-width: 800px) {
    .banner-logo {
        width: 80vw;
        margin-bottom: 10vh;
    }
    .summary {
        font-size: 1rem;
        max-width: 98vw;
        width: 98vw;
        margin-bottom: 10vh;
    }
    .waitlist-section {
        padding: 24px 0 12px 0;
    }
    .waitlist-form {
        max-width: 98vw;
        padding: 12px 4px 8px 4px;
    }
}

@media (max-width: 1200px) and (min-width: 801px) {
    .banner-logo {
        width: 65vw;
        margin-bottom: 5vh;
    }
    .summary {
        font-size: 1.05rem;
        max-width: 80vw;
        width: 80vw;
        margin-bottom: 10vh;
    

        }

    .waitlist-section {
        padding: 24px 0 12px 0;
    }
    .waitlist-form {
        max-width: 98vw;
        padding: 12px 4px 8px 4px;
    }

}

@media (max-width: 8000px) and (min-width: 1201px) {
    .banner-logo {
        width: 45vw;
        margin-bottom: 5vh;
    }
    .summary {
        font-size: 1.05rem;
        max-width: 80vw;
        width: 80vw;
        margin-bottom: 10vh;
        }

    .waitlist-section {
        padding: 24px 0 12px 0;
    }
    .waitlist-form {
        max-width: 98vw;
        padding: 12px 4px 8px 4px;
    }

}

.waitlist-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 4px 4px 16px 4px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.waitlist-form input[type="email"] {
    padding: 12px;
    border: 1px solid #20222e;
    background: #1f1d29;
    color: #f4f4f4;
    border-color: #ffddbb;
    border-radius: 6px;
    font-size: 1rem;
    text-align: center;
}
.waitlist-form input[type="email"]::placeholder {
    color: #b0b3c6;
}
.waitlist-form button {
    padding: 12px;
    background: linear-gradient(90deg, #dd6677 0%, #a58f78 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: bold;
    letter-spacing: 1px;
}
.waitlist-form button:hover {
    background: linear-gradient(90deg, #eb25db 0%, #3b82f6 100%);
}
.success-message {
    color: #4ade80;
    margin-top: 16px;
    text-align: center;
    font-weight: 500;
}
