Actors 101

Nope, parallelism exists not only in task groups. Every actor can execute code in parallel with other actors, also Task.detached implies parallel execution. A single Task.detached already runs in parallel with your current actor.

Concurrency = parallelism, at least in Swift and therefore actors should not be taken lightly.