.cta-section { padding: 80px 0; }
.cta-section .container { max-width: 980px; }
.cta-section.waitlist-wide .container { max-width: 1200px; }
.cta-section.waitlist-story .container { max-width: 900px; }
.cta-section.waitlist-compact .container { max-width: 760px; }
.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
    border-radius: 20px;
    padding: 72px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-purple);
}
.cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 65%);
}
.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
@media (min-width: 480px) {
    .waitlist-form { flex-direction: row; }
}
.waitlist-input {
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 20px;
    border-radius: 14px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.waitlist-input::placeholder { color: rgba(255,255,255,0.45); }
.waitlist-input:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
}
.waitlist-btn {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--purple);
    background: white;
    padding: 14px 28px;
    border: 0;
    border-radius: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.waitlist-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.waitlist-success {
    display: none;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}
.waitlist-success.show { display: block; }

/* --- Adaptive early-access form --- */
.wl-intent {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
@media (min-width: 560px) { .wl-intent { flex-direction: row; } }
.wl-choice {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    padding: 18px 22px;
    border-radius: 14px;
    border: 2px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.1);
    color: white;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-out);
}
.wl-choice:hover {
    border-color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.16);
    transform: translateY(-2px);
}
.wl-choice-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.wl-choice-sub { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

.wl-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 460px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}
.wl-pilot-link { margin: -4px 0 0 0; font-size: 0.85rem; }
.wl-pilot-link a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.wl-pilot-link a:hover { color: white; }
.wl-field { display: flex; flex-direction: column; gap: 6px; }
.wl-label { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.wl-input {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 13px 16px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.wl-input::placeholder { color: rgba(255,255,255,0.45); }
.wl-input:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }
select.wl-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
/* dropdown options render on the OS layer — keep them readable */
.wl-input option { color: #1A1D21; background: #ffffff; }

.wl-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
}
.wl-check input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: white; cursor: pointer; }

.waitlist-btn.wl-full { width: 100%; margin-top: 4px; }
.wl-back {
    background: none;
    border: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px;
    align-self: center;
    transition: color 0.2s;
}
.wl-back:hover { color: white; }

/* --- Modal --- */
.wl-modal[hidden] { display: none; }
.wl-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.wl-modal-scrim {
    position: absolute;
    inset: 0;
    background: rgba(18, 14, 38, 0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    animation: wlFade 0.2s ease-out;
}
.wl-modal-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    overflow-y: auto;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
    border-radius: 20px;
    padding: 44px 34px 34px;
    text-align: center;
    box-shadow: var(--shadow-purple);
    animation: wlPop 0.22s var(--ease-out);
}
@keyframes wlFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes wlPop { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: none; } }
.wl-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: 0;
    color: rgba(255,255,255,0.7);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}
.wl-modal-close:hover { color: white; }
.wl-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 10px;
}
.wl-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
}
.wl-band-btn { display: inline-block; margin: 0 auto; }
.waitlist-success i { font-size: 1.3rem; vertical-align: middle; margin-right: 6px; }

/* `hidden` must beat the display:flex on these panels (attribute selector > class) */
.wl-intent[hidden], .wl-panel[hidden] { display: none; }
