Multiple text-domains per single plugin – admin and frontend

Is it worth having two plugin textdomains – one for admin area strings and
another one for “frontend”?

In theory yes

Does it break any guidelines (the plugin is public)?

glotpress which drives the wordpress.org translation section is unlikely to ave any of it. For it you have to use only one text domain which is the same as the slug of the plugin IIRC.
Poedit and other software which basically do a string match on things like __() are not going to detect the different text domains and generate different .pot/.po files for both of them. Most likely a translator which uses such a tool will get everything combined.

Will it improve/simplify translator experience?

No, it will make it harder

Is it worth in terms of performance?

Unlikely. Last time I checked 50% of wordpress users use english, and for them it just makes no difference. For the others, it just doesn’t sound like a big enough difference (this depends on the language it is being translated to as the biggest issue is memory consuption, and for languages like german you are likely to consume more memory as string are usually longer), and people that actually care about performance will use page caching in any case.

WordPress translation performance sucks, and did suck for years. Until there is a better infrastructure it is just pointless to fight the flow. What you can do, is to think again why do you need a translation for the front end in the first place. Can’t you just let the user customize the relevant strings instead of sending him to figure out how to do plugin translations?