You can list the major areas where you need to make decisions.
LED strips.
Power Source.
Connecting.
Controllers.
Programming.
Of these the LED strips and power source have many options available, and making changes as the project develops is relatively easy. Connecting it all together might or might not be within your skill set, but is not a difficult skill to acquire. Remember to include any equipment (soldering station, crimping tools, etc) in your budget. The last two are where the options vary widely in terms of functionality available and the effort required to implement.
So for starting with a small test rig it doesn’t matter much what you choose - a ESP32 dev board, 1m WS2812b strip, a 5V 2A adapter, a breadboard and jumper wires is enough. You can install WLED and play with it, or modify example sketches for custom effects
Off-the-shelf controllers will be easy to implement (requiring some setup, but no programming as such) but will only provide a limited range of usable effects. Once you have determined exactly what your effects are going to be, you can look for controllers that would be suitable. I would expect that some of the simpler effects would have suitable controllers available at very low prices, but note that there is not much standardization in effect names (what exactly is the difference between meteor and icicle?) and you might have to buy a number of controllers to see what their effects actually are and whether they match what you want. It is possible that preconfigured controller/LED strip packages will meet some of your requirements.
Custom effects will be where it gets a lot more difficult.
Very simple 8-bit microcontrollers can be used for individual strips. They are very small, low power and readily available. But they have limited memory and programming is probably at either the assembly language or C level.
Arduino Nano/Pro or ESP32C3 represent one step up. Still small, more memory, (and more power), programming is in C++ and there is a range of very good libraries available.
More complex MCUs such as RP2040 can be programmed with higher-level languages, such as C++ or Python and will control multiple strips (but that means more complex interconnections). They consume more power and create more heat. Good libraries are available. These MCU (and most ESP32) will also support WLED, which provides a very comprehensive development environment, but it is very far from a beginner’s GUI.
In fact, if you can find a beginner’s GUI for effect development then that might be a better starting point, as that will suggest the most suitable hardware. I don’t know of anything that is available.
A very good place to start investigating exactly what is involved in making large LED strings work is bigclivedotcom - YouTube, especially the Christmas Tree episodes (but note that he completely skips over programming the controllers) and the reviews of cheap preconfigured strings with their own controllers.