Definately #1. It "looks" scary but realize the optimizer will do the right thing and is expressive of intent. Also slight typo bonus should one accidently think EXISTS but type IN. #2 is acceptable but not expressive. The third option stinks in my not so humble opinion. Its too close to saying "if 'no value' exists" for comfort.
In general its important to not be scared to write code that mearly looks inefficient if it provides other benefits and does not actually effect performance.
IE the optimizer will almost always execute your complicated join/select/grouping wizardry to save a simple EXISTS/subquery the same way.
After having given yourself kudos for cleverly rewriting that nasty OR out of a join you will eventually realize the optimizer still used the same crappy execution plan to resolve the much easier to understand query with embedded OR anyway.
The moral of the story is know your platforms optimizer...try different things and see what is actually being done because the rampant knee jerks assumptions regarding 'decorative' query optimization are almost always incorrect and irrelevent from my experience.