The reason for the first result is that the getClass method has the following signature in Java
public final Class<?> getClass()
which Scala inherits. While we know that if we call getClass on an reference of type T the signature could be
public final Class<? extends T> getClass()
the compiler does not. You could imagine some language extension to provide a special type that represents the static type of the receiver that would enable
public final Class<? extends Receiver> getClass()
or some sort of special casing in the compiler for getClass. It seems in fact that Snoracle Java indeed special cases getClass but I'm not sure it's required by the Java Language Specification. However, if you have a reference of some particular static type T, there's no reason you couldn't do the equivalent T.class (java) or classOf[T] (scala). In other words such an extension would not bring any greater expressive power but would complicate the implementation of the language.
As for the "compile time cast" versus the "'static' cast", there's really no difference there. It would be correct for a compiler to desugar x.asInstanceOf[T] to classOf[T].cast(x).
Any language with subtyping is going to have a possibility that the statically known type of a reference is less specific than the type of the value to which it refers. Languages with static type systems that do not have subtyping usually do not have a concept of runtime types as there is only one actual type that inhabits a given type name. In these languages types are erased at runtime, much the same way that type parameters are erased on the JVM.
I hope this helps your understanding of static types of references as compared to runtime type of values.