*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:#FFFFFF;
    overflow-x:hidden;
    min-height:100vh;

    background:
        radial-gradient(circle at 80% 20%,
            rgba(0,77,239,.45) 0%,
            rgba(0,77,239,.18) 25%,
            transparent 50%),

        linear-gradient(
            135deg,
            #071A36 0%,
            #0B2147 45%,
            #004DEF 100%
        );

}

/* Blue glow */

body::before{

    content:"";

    position:fixed;

    left:-300px;
    bottom:-300px;

    width:700px;
    height:700px;

    background:#004DEF;

    opacity:.15;

    border-radius:50%;

    filter:blur(170px);

    z-index:-1;

}

/* Container */

.container{

    width:min(1200px,90%);
    margin:auto;

}

/* Header */

header{

    padding:35px 0;

}

.nav{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

/* Logo */

.brand{

    display:flex;
    align-items:center;
    gap:15px;

}

.brand img{

    width:42px;

}

.brand span{

    font-size:28px;
    font-weight:700;
    color:white;

}

/* Links */

.links{

    display:flex;
    gap:40px;

}

.links a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

.links a:hover{

    color:white;

}

/* Hero */

.hero{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    min-height:85vh;

}

/* Left */

.left{

    max-width:650px;

}

/* Badge */

.beta{

    display:inline-block;

    padding:12px 24px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    border-radius:999px;

    color:white;

    font-size:14px;

    font-weight:600;

    margin-bottom:35px;

}

/* Heading */

h1{

    font-size:84px;

    font-weight:700;

    line-height:1;

    letter-spacing:-2px;

    margin-bottom:35px;

    color:white;

}

/* Paragraph */

p{

    font-size:22px;

    line-height:1.8;

    font-weight:400;

    color:rgba(255,255,255,.78);

    margin-bottom:50px;

}

/* Button */

.button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 40px;

    border-radius:999px;

    background:white;

    color:#004DEF;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.button:hover{

    transform:translateY(-5px);

    box-shadow:0 30px 60px rgba(0,0,0,.45);

}

/* Right */

.right{

    display:flex;

    justify-content:center;

    align-items:center;

}

.right img{

    width:500px;

    animation:float 6s ease-in-out infinite;

    filter:drop-shadow(0 50px 80px rgba(0,0,0,.45));

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}

/* Tablet */

@media(max-width:1100px){

.hero{

grid-template-columns:1fr;

text-align:center;

padding-top:40px;

}

.left{

margin:auto;

}

.right{

order:-1;

margin-bottom:40px;

}

.right img{

width:340px;

}

h1{

font-size:58px;

}

p{

font-size:20px;

}

.links{

display:none;

}

}

/* Mobile */

@media(max-width:768px){

.container{

width:92%;

}

.brand span{

font-size:24px;

}

.brand img{

width:38px;

}

h1{

font-size:46px;

letter-spacing:-1px;

}

p{

font-size:18px;

}

.button{

width:100%;

}

.right img{

width:280px;

}

}