/* =============================================
   WAITLIST — fixed proportions, fluid width (95vw)
============================================= */

.waitlist-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background: #fff;
    font-family: system-ui, -apple-system, "SF Pro Display", sans-serif;
}

.waitlist-card {
    width: 95vw;              /* <= perintah kamu */
    max-width: 480px;         /* <= biar desktop tetap seperti desain asli */
    background: #f8f8f8;
    border-radius: 12px;
    padding: 40px 38px 28px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0,0,0,0.40);
    color: #111;
    box-sizing: border-box;
}

/* Badge */
.waitlist-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    background: linear-gradient(90deg, #f3c9ff, #d1b0ff);
    color: #3b0764;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -.1px;
    margin-bottom: 24px;
    white-space: nowrap;
}

/* Title */
.waitlist-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 14px;
    letter-spacing: -1px;
}

/* Subtitle */
.waitlist-text {
    font-size: 15px;
    line-height: 1.55;
    color: #494949;
    margin-bottom: 32px;
}

/* Form — ALWAYS 1 LINE */
.waitlist-form {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 26px;
    white-space: nowrap;
}

/* Input */
.waitlist-form input[type="email"] {
    flex: 1;
    height: 42px;
    padding: 0 20px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}

.waitlist-form input[type="email"]::placeholder {
    color: #a2a2a2;
}

/* Button */
#waitlist-submit {
    height: 42px;
    padding: 0 20px;
    border-radius: 12px;
    background: #7c3aed;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.18s ease;
}

#waitlist-submit:hover {
    background: #6d28d9;
}

/* Success */
.waitlist-success {
    display: none;
    color: #15803d;
    font-size: 14px;
    margin-top: 6px;
}

/* Social proof */
.waitlist-social {
    /* margin-top: 26px; */
    padding: 10px 16px;
    background: #eae6ff;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 22px;
    height: 22px;
    margin-left: -6px;
    border-radius: 50%;
    border: 2px solid #d4d4d4;
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.avatar:first-child {
    margin-left: 0;
}

.waitlist-social-text {
    font-size: 13px;
    color: #444;
    white-space: nowrap;
    letter-spacing: -.1px;
}

/* Mobile scaling — minor tweaks, NOT breaking the layout */
@media (max-width: 600px) {
    .waitlist-badge {
        font-size: 10px;
    }
}

/* Mobile scaling — minor tweaks, NOT breaking the layout */
@media (max-width: 500px) {
    .waitlist-card {
        padding: 15px;
    }
}

@media (max-width: 425px) {
    .waitlist-card {
        padding: 20px 10px;
    }

    .waitlist-badge {
        font-size: 10px;
    }
}