I am building my own version of Arkanoid and, for learning purposes, want to experiment and try out 3D animation. In this case, I want to create animated transitions between the different possible states of the player’s paddle.
This is a rough 2D sketch of the different states the paddle can be in, as it depends on the different powerups the player collects while playing through 36 levels and five optional, bonus levels.

I actually don’t know how to start. I’m using Blender to model the different paddle states, because Unity’s Animation Window won’t let me change the position of a mesh’s individual vertices. The paddle won’t look right if I just create all the animations on Unity.
I can create the different animation clips on Blender; the question is when I have to import it. Or perhaps I’m looking too far ahead into this? And is it possible for Blender to load up the different states of the model without having to save it on different files?
What I want to do is merge the different states together into one mesh so that I don’t have to load up the different meshes every time the player collects a powerup, which can slow the game down. The game is being built for WebGL. I don’t know what sort of texture map I want to use for this, but I’m only going to figure this out when the time comes. However, since the gameplay window will be at 800 by 450 when submitted on Newgrounds, I don’t need to add too much detail to the textures for the paddles.
From watching the tutorial videos on animation, I need an animation state machine, transitions, some empty states to hold the different states of the paddle that stay as is until an action occurs such as the end of the level, and some states to play the different transition animations of the paddle. For instance, I would have a complete animation state for the paddle spawn, a transition to the paddle’s game state, the state itself which happens to be empty, and two transitions to the state where an animation plays for the paddle’s destruction, or the state where an animation plays in the paddle disappearing to the next level.
So, where do I start? I feel like this is a confusing, overwhelming start, which is why I ask.