/* Hero Hook Style */
.hero-hook {
    text-align: center;
    font-size: 14px;
    color: #787774;
    margin-top: 16px;
}

.hero-hook strong {
    color: #37352F;
    font-weight: 600;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    gap: 8px;
    max-width: 500px;
    margin: 0 auto 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.input-notion {
    flex: 1;
    min-width: 250px;
    padding: 12px 16px;
    border: 1px solid #E9E9E7;
    border-radius: 6px;
    font-size: 16px;
    background-color: #FAFAFA;
    transition: all 0.2s;
    outline: none;
    font-family: inherit;
}

.input-notion:focus {
    background-color: white;
    border-color: #37352F;
    box-shadow: 0 0 0 2px rgba(55, 53, 47, 0.1);
}

.btn-black {
    background-color: #000000;
    color: white;
}

.btn-black:hover {
    background-color: #333333;
}

.success-message {
    background-color: #E8F5E9;
    color: #2E7D32;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid #C8E6C9;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}