/**
 * Social proof toast — matches live "Recent activity" card (image reference).
 * Subtle, real-data only; non-blocking.
 */
.wr-proof-toast {
    position: fixed;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 100;
    min-width: 260px;
    max-width: min(340px, calc(100vw - 2.5rem));
    pointer-events: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.38s ease, transform 0.38s ease;
}

.wr-proof-toast--visible {
    opacity: 1;
    transform: translateY(0);
}

.wr-proof-toast__inner {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.9rem 1.05rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.1);
}

.wr-proof-toast__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 0.28rem;
    border-radius: 50%;
    background: #2563eb;
}

.wr-proof-toast__body {
    min-width: 0;
    flex: 1;
}

.wr-proof-toast__eyebrow {
    margin: 0 0 0.28rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    line-height: 1.2;
}

.wr-proof-toast__text {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #334155;
    font-weight: 500;
}

.wr-proof-toast__ago {
    margin: 0.35rem 0 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 0.75rem;
    line-height: 1.3;
    color: #94a3b8;
}

@media (max-width: 767px) {
    .wr-proof-toast {
        left: 0.85rem;
        right: 0.85rem;
        bottom: 0.85rem;
        min-width: 0;
        max-width: none;
    }
}
