The geometry
Linear regression fits a hyperplane through the cloud of points. The coefficients are the per-unit change in the target attributable to each feature, holding the others constant. The intercept is the predicted target when all features are zero. With centered features the intercept is the mean of the target.
Why it still matters
Linear regression is the fastest baseline you can ship, the easiest to explain to a non-technical stakeholder, and the most stable under feature drift. Treat it as the floor of your performance: any fancier model must beat it on the metric you care about by a margin that justifies the maintenance cost.
Reading coefficients honestly
Coefficients are correlational, not causal. A positive coefficient on "days_since_signup" does not mean making customers older causes them to churn; it means among customers with similar other features, older ones happen to churn more. Multicollinearity scrambles individual coefficients while the prediction stays good.