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

body{
    background:#021328;
    color:white;
    font-family:Montserrat,sans-serif;
    overflow-x:hidden;
}

.bg-glow{
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at 20% 30%,#0f4cff40,transparent 35%),
    radial-gradient(circle at 80% 10%,#0f4cff30,transparent 25%);
    z-index:-1;
}

header{
    max-width:1400px;
    margin:auto;
    padding:40px 60px;

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

.logo{
    width:400px;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    color:white;
    text-decoration:none;
}

.hero{
    background-color: #020516;
    overflow: hidden;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    padding:40px 60px;
}

.tag{
    color:#4f86ff;
    letter-spacing:4px;
}

h1{
    font-size:80px;
    margin:20px 0;
    line-height:1;
}

h1 span{
    color:#4f86ff;
}

.hero p{
    color:#c7d3e2;
    line-height:1.8;
    font-size:20px;
}

.email-card{
    margin-top:40px;
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:25px;
    padding:30px;
}

.form{
    display:flex;
    margin-top:20px;
    gap:15px;
}

input{
    flex:1;
    background:#071c36;
    border:none;
    color:white;
    padding:18px;
    border-radius:12px;
}

button{
    border:none;
    background:#2962ff;
    color:white;
    padding:18px 28px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
}

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:700px;
    overflow:visible;
}

.circle{
    position:absolute;
    width:650px;
    height:650px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;

    top:50%;
    left:50%;

    transform:translate(-50%, -50%);

    z-index:1;
}

.hero-image img{
    position:relative;
    z-index:2;

    width:130%;
    max-width:none;

    transform:translateX(30px);
}

.highlight{
    text-align:center;
    padding:120px 20px 60px;
}

.highlight span{
    color:#4f86ff;
    letter-spacing:3px;
}

.highlight h2{
    font-size:60px;
    margin-top:20px;
}

.highlight strong{
    color:#4f86ff;
}

.cards{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

    padding:40px 60px;
}

.card{
    padding:50px;
    border-radius:25px;

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

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

    text-align:center;
}

.icon{
    font-size:50px;
}

.card h3{
    margin:20px 0;
}

.card p{
    color:#c7d3e2;
    line-height:1.8;
}

.quote{
    max-width:1400px;
    margin:50px auto;
    padding:0 60px;
}

blockquote{
    background:rgba(255,255,255,.03);
    padding:50px;
    border-radius:25px;

    font-size:32px;
    font-weight:600;
}

blockquote span{
    display:block;
    margin-top:15px;
    color:#4f86ff;
}

.cta{
    max-width:1400px;
    margin:50px auto;

    padding:40px 60px;

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

    background:rgba(255,255,255,.03);
    border-radius:25px;
}

footer{
    max-width:1400px;
    margin:auto;

    padding:80px 60px;

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

.footer-logo{
    width:220px;
}

.social{
    display:flex;
    gap:25px;
}

.social a{
    color:white;
    text-decoration:none;
}