Japt, 5555 50 bytes
MsU *MsW +McU *McW *Mc(X*McX-V
ToMP,1ToMP1/7l¹ñ@McX aUÃv *#ۉ*#7
MsU *MsW +McU *McW *Mc(X*McX-V
MsU // Take the sine of the first input and
*MsW... // multiply by the cos of the second one etc.
ToMP,1ToMP1/7l¹ñ@McX aUÃv *#ۉ*#7
T // Take 0
o // and create a range from it
MP // to π
,1/7l¹ // with resolution 1/7!.
ñ@ // Sort this range so that
McX // the cosine of a given value
aU // is closest to U, e.g. the whole trig lot
// we want to take arccosine of.
à // When that's done,
v // get the first element
*#ۉ*#7 // and multiply it by 1737, returning implicitly.
Try it online! Shaved off five bytes thanks to Oliver.
Try it online!