/* Cloud Waitlist Section Styles */
.waitlist-section {
    padding: 12rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.waitlist-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    width: 100%;
    position: relative;
}

.waitlist-image-card {
    position: relative;
    width: 500px;
    height: 600px;
    overflow: hidden;
    flex-shrink: 0;
}

.waitlist-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.waitlist-container {
    max-width: 600px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-left: -80px;
    position: relative;
    z-index: 2;
}

.waitlist-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 2;
}

.waitlist-container h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    background: none;
    backdrop-filter: none;
    border: none;
    padding: 0;
    display: block;
}

.waitlist-container .subheadline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.waitlist-container .trust-signal {
    color: rgba(255, 255, 255, 0.6);
}

.waitlist-container .btn-primary {
    background: #00ff88;
    color: #000000;
    font-weight: 600;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.waitlist-container .btn-primary:hover {
    background: #00e67a;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.waitlist-input {
    flex: 1;
    min-width: 280px;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.125rem;
    transition: all 0.2s;
}

.waitlist-input:focus {
    outline: none;
    border-color: #00ff88;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.waitlist-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
