/* ===== ROLE MODAL ===== */
.oc-clickable { cursor: pointer; transition: filter 0.18s, transform 0.18s; }
.oc-clickable:hover { filter: brightness(1.12); transform: translateY(-2px) scale(1.03); }

.rm-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(8, 28, 46, 0.52);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}
.rm-overlay.active {
    opacity: 1;
    visibility: visible;
}

.rm-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 38px 40px 36px;
    width: min(92vw, 720px);
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.06);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.rm-overlay.active .rm-box { transform: translateY(0) scale(1); }

.rm-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.rm-close:hover { background: #e2e8f0; }

.rm-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    padding-right: 44px;
}
.rm-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    flex-shrink: 0;
}
.rm-badge {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 6px;
}
.rm-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.48rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.22;
}

.rm-goal {
    background: #f0f9ff;
    border-left: 4px solid #21b4c8;
    border-radius: 0 12px 12px 0;
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 22px;
    line-height: 1.55;
}

.rm-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.rm-list li {
    font-size: 0.98rem;
    color: #1e293b;
    background: #f8fafc;
    border-radius: 12px;
    padding: 13px 14px 13px 38px;
    position: relative;
    line-height: 1.55;
    border: 1px solid #e9f0f7;
}
.rm-list li::before {
    content: '✓';
    position: absolute;
    left: 13px;
    top: 13px;
    color: #0d9488;
    font-weight: 800;
    font-size: 0.95rem;
}
.rm-list li.soon {
    color: #94a3b8;
    font-style: italic;
}
.rm-list li.soon::before { content: '…'; color: #cbd5e1; }
