/* ── Top banner ─────────────────────────────────────────────── */
#tt-launch-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: #060a13;
    color: #cbd5e1;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 10px 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}
#tt-launch-banner .tt-banner-text {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}
#tt-launch-banner .tt-pulse-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.7);
    animation: tt-banner-pulse 1.8s ease-in-out infinite;
}
@keyframes tt-banner-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}
#tt-launch-banner .tt-banner-cta {
    display: inline-block;
    background: transparent;
    color: #60a5fa;
    text-decoration: none;
    padding: 3px 0 3px 14px;
    margin-left: 6px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.4px;
    transition: color 0.2s;
    cursor: pointer;
    border-top: none;
    border-right: none;
    border-bottom: none;
    font-family: inherit;
}
#tt-launch-banner .tt-banner-cta:hover {
    color: #93c5fd;
}

/* push the fixed nav down so the banner sits above it */
body { padding-top: 38px; }
.nav { top: 38px !important; }

/* ── Waitlist modal ─────────────────────────────────────────── */
#tt-waitlist-overlay {
    position: fixed; inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: tt-fade-in 0.2s ease-out;
}
@keyframes tt-fade-in { from { opacity: 0; } to { opacity: 1; } }

#tt-waitlist-modal {
    background: #0f1318;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 100%;
    max-width: 460px;
    padding: 36px 32px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: tt-slide-up 0.25s ease-out;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #fff;
    position: relative;
}
@keyframes tt-slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#tt-waitlist-close {
    position: absolute;
    top: 14px; right: 16px;
    background: none;
    border: none;
    color: #64748b;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
#tt-waitlist-close:hover { color: #fff; }

#tt-waitlist-modal h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.4px;
}
#tt-waitlist-modal .tt-wl-sub {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 24px;
}
#tt-waitlist-modal label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 6px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
#tt-waitlist-modal input,
#tt-waitlist-modal textarea {
    width: 100%;
    background: #1a1f28;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 11px 14px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}
#tt-waitlist-modal input:focus,
#tt-waitlist-modal textarea:focus { border-color: rgba(59, 130, 246, 0.5); }
#tt-waitlist-modal textarea { min-height: 70px; resize: vertical; }

#tt-waitlist-submit {
    width: 100%;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}
#tt-waitlist-submit:hover { background: #2563eb; }
#tt-waitlist-submit:disabled { background: #1e3a5f; cursor: not-allowed; }

#tt-waitlist-msg {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    display: none;
}
#tt-waitlist-msg.success {
    display: block;
    background: rgba(13, 150, 104, 0.12);
    color: #34d399;
    border: 1px solid rgba(13, 150, 104, 0.3);
}
#tt-waitlist-msg.error {
    display: block;
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* nudge the chat bubble + nav to account for banner */
#tt-chat-widget { bottom: 24px; }

/* mobile */
@media (max-width: 600px) {
    #tt-launch-banner { font-size: 12px; padding: 8px 12px; gap: 10px; flex-wrap: wrap; }
    body { padding-top: 56px; }
    .nav { top: 56px !important; }
}
