ERR_CERT_AUTHORITY_INVALIDWhat ERR_CERT_AUTHORITY_INVALID means
ERR_CERT_AUTHORITY_INVALID (Chrome network error -202) means the TLS handshake reached the certificate stage and the chain the server presented doesn't end at a root your device trusts. The connection itself worked; the identity check failed. That's different from ERR_SSL_PROTOCOL_ERROR, where the handshake breaks earlier, and from ERR_CERT_DATE_INVALID, where the certificate is expired or your clock is wrong.
There are two families of cause. Server-side: a self-signed certificate, an internal-CA certificate on a public site, or a server sending only the leaf certificate without its intermediates — clients that haven't cached those intermediates can't build the chain. Path-side: something between you and the site is terminating TLS and re-signing traffic with its own CA — corporate SSL inspection, antivirus HTTPS scanning, a captive portal, or a debugging proxy such as mitmproxy.
The issuer name on the certificate you actually received is the giveaway. Click the padlock (or use openssl) and see who signed it: a public CA points to a genuine chain problem on the server; an antivirus vendor, your employer, or an unknown name means the connection is being intercepted at that layer.