/* In-house agent / writer invitations — subtle, non-intrusive */
.smarteek-inhouse-promos {
    pointer-events: none;
    z-index: 1040;
}
.smarteek-inhouse-promos--form-active .smarteek-promo-login-nudge,
.smarteek-inhouse-promos--form-active .smarteek-promo-corner {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(16px) !important;
}
.smarteek-inhouse-promos a,
.smarteek-inhouse-promos button {
    pointer-events: auto;
}

.smarteek-promo-login-nudge {
    position: fixed;
    bottom: 1.25rem;
    right: 1rem;
    left: auto;
    max-width: min(320px, calc(100vw - 5.5rem));
    padding: 1rem 2.25rem 1rem 1rem;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.96), rgba(37, 99, 235, 0.94));
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.22);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    z-index: 1042;
}
.smarteek-promo-login-nudge.smarteek-promo--visible {
    opacity: 1;
    transform: translateY(0);
}
.smarteek-promo-login-nudge .smarteek-promo-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    opacity: 0.85;
}
.smarteek-promo-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
}
.smarteek-promo-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}
.smarteek-promo-text {
    opacity: 0.92;
    margin: 0;
}

.smarteek-promo-corner {
    position: fixed;
    right: 1rem;
    left: auto;
    bottom: 5.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: min(260px, calc(100vw - 2rem));
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 1041;
}
.smarteek-promo-corner--visible {
    opacity: 1;
    transform: translateX(0);
}
.smarteek-promo-corner--idle {
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
}
.smarteek-promo-corner--paused {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.smarteek-promo-corner-dismiss {
    align-self: flex-end;
    border: 0;
    background: rgba(15, 23, 42, 0.35);
    color: #fff;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
}
.smarteek-promo-corner-dismiss:hover {
    opacity: 1;
}

.smarteek-promo-chip {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
    text-decoration: none;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
    font-size: 0.8rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.smarteek-promo-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
    color: #0f172a;
}
.smarteek-promo-chip i {
    font-size: 1.25rem;
    flex-shrink: 0;
}
.smarteek-promo-chip--agent i { color: #7c3aed; }
.smarteek-promo-chip--writer i { color: #2563eb; }
.smarteek-promo-chip span {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.smarteek-promo-chip small {
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 400;
}

.smarteek-promo-login-nudge .btn-promo-cta {
    font-size: 0.78rem;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .smarteek-promo-corner {
        bottom: 5rem;
        right: 0.65rem;
        left: auto;
        max-width: calc(100vw - 4.5rem);
    }
    .smarteek-promo-login-nudge {
        right: 0.65rem;
        left: auto;
        bottom: 1rem;
        max-width: calc(100vw - 4.5rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .smarteek-promo-login-nudge,
    .smarteek-promo-corner,
    .smarteek-promo-chip {
        transition: none;
    }
}
