can i clean the int’s up like the Text window with a open and close menu?
You can write a custom inspector and format the UI anyway you want. including adding hideable panels.
https://unity3d.com/learn/tutorials/modules/intermediate/editor/building-custom-inspector
A custom inspector or property drawer works.
You can also get some hacky organisation by putting your data into separate serialisable classes or structs. Its probably bad practice doing it this way.
I don’t think it’s hacky – it sounds like a first step towards refactoring into a more component based design. Eventually you will want to move some methods into your new classes to improve the encapsulation.