Yes you can buy faster hardware. Compared to the area of science I came from your new chip is molasses.
If it isn't a flash ADC in the GHz range it's slow. Big experiments also handle incredible amounts of data.
The Atlas experiment at CERN discovered the Higgs Boson. Atlas digitizes 40,000,000 events per second and each event has 1.6 MB of raw data. That's 64,000,000,000,000 bytes per second.
This data is processed by fast hardware in real time and most is discarded. Atlas only records 320 MB/sec, one event in 200,000.
The first level processing has 72 racks like this:

I record 100 KB/sec in my sketch, a factor of 3,200 less.
All of this little use to the average hobbyist. I find few takers for my fast AVR logging programs.
The typical email I get asking about fast logging is for something like an accelerometer with three channels at 1000 samples per second. Most hobbyists don't realize that digitizing all channels of an event at the same time and at precise time intervals is key to good data.
Here many of the STM32 chips have something to offer. Some of the STM32 chips have three ADCs that can be trigger at the same time.
The single ADC in AVR chips make it impossible to digitize multiple channels properly. You can use several self-clocking external ADCs to do much better.
I like playing with the AVR because it is a challenge to do good measurements. I did a lot of work on this sketch to reduce jitter and signal to noise.
I start the ADC on a timer compare event, not an interrupt. I make sure the timer triggers at a multiple of the ADC clock period. This reduces time jitter. I use DIDR to disconnect the pin's digital input. An analog input floats all over the place, and causing the digital input to constantly toggle high and low. This creates excessive noise near the ADC.