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

body{
    font-family:'Manrope',sans-serif;
    background:#ffffff;
    color:#111111;
    overflow-x:hidden;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:40px;
}

header{
    text-align:center;
    margin-bottom:80px;
}

.logo{
    max-width:300px;
}

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    min-height:60vh;
}

.hero-content{
    flex:1;
}

.hero-content h1{
    font-size:4rem;
    line-height:1;
    margin-bottom:25px;
    font-weight:800;
}

.hero-content p{
    font-size:1.2rem;
    line-height:1.8;
    max-width:600px;
    color:#555;
    margin-bottom:40px;
}

.download-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    padding:16px 26px;
    border-radius:18px;
    text-decoration:none;
    font-weight:700;
    transition:.25s;
}

.btn-ios{
    background:#111;
    color:white;
}

.btn-android{
    background:#f4f4f4;
    color:#111;
}

.btn:hover{
    transform:translateY(-3px);
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:420px;
    border-radius:40px;
    box-shadow:
        0 30px 80px rgba(0,0,0,.15);
}

footer{
    margin-top:120px;
    text-align:center;
    border-top:1px solid #eee;
    padding-top:40px;
}

.footer-contact h3{
    margin-bottom:10px;
}

.footer-contact a{
    color:#111;
    text-decoration:none;
}

.footer-links{
    margin-top:25px;
}

.footer-links a{
    color:#777;
    text-decoration:none;
    margin:0 15px;
}

.copyright{
    margin-top:25px;
    color:#999;
    font-size:.9rem;
}

.background-glow{
    position:fixed;
    border-radius:50%;
    filter:blur(120px);
    opacity:.18;
    z-index:-1;
}

.glow-1{
    width:500px;
    height:500px;
    background:#ff5ca8;
    top:-150px;
    left:-150px;
}

.glow-2{
    width:500px;
    height:500px;
    background:#7f5cff;
    bottom:-150px;
    right:-150px;
}

@media(max-width:900px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .download-buttons{
        justify-content:center;
    }

    .hero-content h1{
        font-size:3rem;
    }
}