/* ══════════════════════════════════════════
   2026 OFFER CHIP — scoped styles
══════════════════════════════════════════ */

/* ---------- Chip ---------- */
.nxo-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.25);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: #2563eb;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.nxo-chip:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 20px -10px rgba(37, 99, 235, 0.35);
}
.nxo-chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2563eb;
    flex-shrink: 0;
    animation: nxo-pulse 2.2s ease-in-out infinite;
}
@keyframes nxo-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0); }
}
.nxo-chip-arrow {
    transition: transform 0.15s ease;
}
.nxo-chip:hover .nxo-chip-arrow {
    transform: translateX(2px);
}

/* ---------- Modal ---------- */
.nxo-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.nxo-modal[hidden] {
    display: none;
}
.nxo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
}
.nxo-modal-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    text-align: center;
    background: linear-gradient(155deg, #ffffff 0%, #f6f6f8 100%);
    border-radius: 24px;
    padding: 40px 32px 32px;
    box-shadow: 0 40px 80px -30px rgba(15, 23, 42, 0.45);
    animation: nxo-pop 0.25s ease both;
}
@keyframes nxo-pop {
    from { opacity: 0; transform: scale(0.96) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.nxo-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #f0f0f2;
    color: var(--text-muted, #667085);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.nxo-modal-close:hover {
    background: #e6e6ea;
    color: var(--text, #111);
}
.nxo-modal-close svg {
    width: 16px;
    height: 16px;
}
.nxo-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    color: #fff;
    box-shadow: 0 10px 20px -8px rgba(37, 99, 235, 0.5);
    margin: 0 auto 18px;
}
.nxo-modal-icon svg {
    width: 26px;
    height: 26px;
}
.nxo-modal-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
    margin: 0 0 8px;
}
.nxo-modal-card h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}
.nxo-modal-body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted, #667085);
    margin: 0 0 26px;
}
.nxo-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nxo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.nxo-btn-primary {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    color: #fff;
    box-shadow: 0 12px 24px -12px rgba(37, 99, 235, 0.55);
}
.nxo-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px -12px rgba(37, 99, 235, 0.6);
}
.nxo-btn-ghost {
    background: transparent;
    color: var(--text-muted, #667085);
}
.nxo-btn-ghost:hover {
    color: var(--text, #111);
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
    .nxo-modal-card {
        padding: 32px 24px 26px;
        border-radius: 20px;
    }
}