/* Waitlist page: signup form, brand block, cookie banner */

/* ----- Page wrapper (narrow, vertically centered) ----- */
.wl-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ----- Brand block ----- */
.wl-brand {
    text-align: center;
    margin-bottom: 3rem;
}

.wl-brand .wl-tagline {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 400;
}

/* ----- Headline ----- */
.wl-headline {
    text-align: center;
    margin-bottom: 3rem;
}

.wl-headline h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.wl-headline p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 500px;
    margin: 0 auto;
}

/* ----- Signup form ----- */
.wl-form {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.wl-form .form-group {
    margin-bottom: 1.25rem;
}

.wl-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.wl-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s;
    font-family: inherit;
}

.wl-form .form-group input:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.wl-form .form-group input::placeholder {
    color: #a0aec0;
}

.wl-consent {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.wl-consent input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.wl-consent label {
    font-size: 0.875rem;
    color: #4a5568;
    cursor: pointer;
    margin: 0;
}

.wl-consent label a {
    color: #4299e1;
    text-decoration: none;
}

.wl-consent label a:hover {
    text-decoration: underline;
}

.wl-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: #2d3748;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1.5rem;
}

.wl-submit:hover {
    background: #1a202c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wl-submit:active {
    transform: translateY(0);
}

.wl-submit:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
}

/* ----- Success / error messages ----- */
.wl-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: none;
}

.wl-message.show {
    display: block;
}

.wl-message.success {
    background: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.wl-message.error {
    background: #fed7d7;
    color: #742a2a;
    border: 1px solid #fc8181;
}

/* ----- Features strip ----- */
.wl-features {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.wl-features h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #718096;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.wl-feature-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.wl-feature-item {
    font-size: 0.875rem;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wl-feature-item::before {
    content: "\2713";
    color: #48bb78;
    font-weight: bold;
    font-size: 1.1rem;
}

/* ----- Responsive ----- */
@media (max-width: 640px) {
    .wl-wrapper { padding: 1.5rem; }
    .wl-headline h1 { font-size: 1.75rem; }
    .wl-form { padding: 1.5rem; }
    .wl-feature-list { flex-direction: column; gap: 0.75rem; }
}
