html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.top-spacer {
    height: 60px;
    width: 100%;
    background: #ffffff;
}

.hero-section {
    width: 100%;
    background-color: #ef82b2;
    margin: 0;
    padding: 0;
}

.hero-container {
    width: 100%;
    min-height: 520px;
    background-color: #fd91bc;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
}

.herbox-logo {
    display: block;
    width: 1020px;
    max-width: 80vw;
    height: auto;
    margin-left: auto !important;
    margin-right: auto !important;
}

.signup-section {
    background: #ffffff;
    padding: 72px 20px 100px;
}

.signup-section .container {
    max-width: 1400px;
}

.coming-soon-text {
    width: 75vw;
    max-width: 1400px;
    margin: 0 auto 48px;
    font-size: clamp(1.7rem, 2.8vw, 2.8rem);
    line-height: 1.45;
    text-align: center;
}

.email-form {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid #f91f7b;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
}

.email-input {
    flex: 1;
    border: 0;
    padding: 24px;
    font-size: 1.25rem;
    outline: none;
}

.go-button {
    width: 140px;
    border: 0;
    background: #f91f7b;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: bold;
}

.form-message {
    margin-top: 28px;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.success-message {
    color: #f91f7b;
}

.error-message {
    color: #b00020;
}

@media (max-width: 768px) {
    .top-spacer {
        height: 32px;
    }

    .hero-container {
        min-height: 360px;
    }

    .herbox-logo {
        width: 320px;
        max-width: 85vw;
    }

    .signup-section {
        padding: 48px 20px 72px;
    }

    .coming-soon-text {
        font-size: 1.35rem;
    }

    .email-form {
        flex-direction: column;
    }

    .go-button {
        width: 100%;
        padding: 18px;
    }
}