/* ═══════════════════════════════════════════════════════════
   ONBOARDING NAVBAR — Automated Worx
   Minimal logo + step indicator for onboarding flow
   Used on: onboard-signup, onboard-profile, onboard-agents,
            onboard-integrations, onboard-deploy,
            onboard-referral, onboard-verify-email
   ═══════════════════════════════════════════════════════════ */

/* ══ ISOLATION: prevent page styles from leaking in ═════ */
.navbar-onboard,
.navbar-onboard *,
.navbar-onboard *::before,
.navbar-onboard *::after {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    letter-spacing: normal;
    text-transform: none;
    font-style: normal;
    box-sizing: border-box;
}
.navbar-onboard a           { text-decoration: none; outline: none; }

.navbar-onboard {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 56px;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(14, 242, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.no-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
}

/* ── Brand ───────────────────────────────────────────── */
.no-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.95rem;
}

.no-brand img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.no-brand-text {
    background: linear-gradient(135deg, #0ef 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Step indicator ──────────────────────────────────── */
.no-steps {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.no-step {
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: rgba(14, 242, 255, 0.12);
    transition: background 0.3s;
}

.no-step.done {
    background: #0ef;
}

.no-step.current {
    background: linear-gradient(90deg, #0ef, #3b82f6);
    width: 32px;
}

/* ── Back link ───────────────────────────────────────── */
.no-back {
    color: #64748b;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.no-back:hover {
    color: #94a3b8;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 480px) {
    .no-brand-text {
        display: none;
    }
}
