A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Not sure why you want to go for the complicated REDUCE/LAMBDA method, but that's your choice of course.
You also need to exclude CHAR(32) and CHAR(45) for space and hyphen.
This one should work:
=LET(
start, SEARCH("/",C3)+1,
t, MID(C3,start,LEN(C3)-start),
REDUCE(t, VSTACK(CHAR({32;45}),CHAR(SEQUENCE(26,,97,1))),LAMBDA(x,y, SUBSTITUTE( LOWER(x ),y,"") ))
)