/* ── Onboarding / Booking Shared Top Bar ─────────────────────
   Used by: onboarding, agree_rules, force_payment,
            booking/start, booking/account_step
   Brand color: #0f6f76 (Nautical Point teal)
──────────────────────────────────────────────────────────── */

.ob-topbar {
    background: #0f6f76;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.ob-brand {
    font-size: 1.15rem;
    font-weight: 900;
    color: #FF8C00;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}
.ob-brand span { color: #fff; }

.ob-secure {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ob-secure-dot {
    width: 7px;
    height: 7px;
    background: #7dd8dc;
    border-radius: 50%;
    animation: ob-blink 2s infinite;
}

/* Action-required variant (force_payment) */
.ob-secure-dot.dot-amber {
    background: #f59e0b;
    animation: ob-pulse 1.5s infinite;
}

@keyframes ob-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .3; transform: scale(1); }
}
@keyframes ob-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(1.3); }
}
