Nice one, really helpful!
Minor nit: the input on mobile auto-capitalizes, so a link starts with "Www" which I find mildly annoying. You could force the input field all lowercase with
<input type="text" autocapitalize="none" >
which tells modern browsers not to do this.
thanks!