What if you cut your strip in half and attached each half to a separate tiny pin. Declare the data array that holds the pixel colours for half the strip, and fool two FastLED objects into using the same array for both pins.
#include <FastLED.h>
CFastLED FastLED2;
#define NUM_LEDS 72
#define DATA_PIN_A 1
#define DATA_PIN_B 2
// Define the array of leds
CRGB leds[NUM_LEDS];
void setup() {
...
FastLED.addLeds<WS2812,DATA_PIN_A,RGB>(leds,NUM_LEDS);
FastLED2.addLeds<WS2812,DATA_PIN_B,RGB>(leds,NUM_LEDS);
}
void loop() {
...
//Update LEDs 0 to 71 in leds[] array
...
FastLED.show();
...
//Update LEDs 72 to 143 using indexes 0 to 71 in leds[] array
...
FastLED2.show();
...
}