This page has a useful explanation of what this type of model summary shows.
As @Axeman said in a comment, the coefficients are for different hypotheses. In particular, the "significance" of an Intercept is whether its value is "significantly" different from 0. Simple recoding of the same data in a way that doesn't fundamentally change the underlying model can change that "significance" substantially.
For example, people sometimes "center" variables in regression to have mean values of 0, by subtracting the mean value of each variable from the individual values. That provides the same association between outcome and predictor (what's usually of primary interest), but makes the Intercept here completely "insignificant":
summary(lm(I(dist-mean(dist))~I(speed-mean(speed)),data=cars))
#
# Call:
# lm(formula = I(dist - mean(dist)) ~ I(speed - mean(speed)), data = cars)
#
# Residuals:
# Min 1Q Median 3Q Max
# -29.069 -9.525 -2.272 9.215 43.201
#
# Coefficients:
# Estimate Std. Error t value Pr(>|t|)
# (Intercept) 1.397e-14 2.175e+00 0.000 1
# I(speed - mean(speed)) 3.932e+00 4.155e-01 9.464 1.49e-12
# ---
#
# Residual standard error: 15.38 on 48 degrees of freedom
# Multiple R-squared: 0.6511, Adjusted R-squared: 0.6438
# F-statistic: 89.57 on 1 and 48 DF, p-value: 1.49e-12
This gets even more confusing when there are interaction terms in a model, as then even the apparent "significance" of an individual predictor in a display like this can change when you center another predictor with which it interacts. Be very careful when interpreting individual coefficient p values from this type of model summary.
This particular example happens to show an important reason for not immediately jumping to centering. Think about the data: they are for stopping distances (in feet) for cars that were originally going at different speeds (in miles per hour). The Intercept is not only "significantly" different from 0: it's negative. That means that, if you were going 0 miles per hour, you would go backward more than 17 feet when you applied the brake! There clearly is a problem with the way that the model represents reality. You might not have seen that if you just centered all the variables to start.
{}tool to make it readable. There usually are multiple coefficients reported for a model, and typically one worries first whether the model as a whole is significantly different from a model with no predictors. The p values for differences of individual coefficients from 0 can be misleading, particularly when there are interaction terms in the model. – EdM May 19 '23 at 18:31