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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}


/* Navigation */

.navbar {

    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;

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

    padding: 0 7%;

    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(12px);

    z-index: 1000;

}


.logo img {

    width: 130px;
    height: auto;

}



nav {

    display: flex;
    gap: 35px;

}



nav a {

    color: white;
    text-decoration: none;

    font-size: 15px;

    transition: 0.3s;

}



nav a:hover {

    color: #d4af37;

}





/* Hero */

.hero {

    height: 100vh;
    min-height: 700px;

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

    position: relative;

    background:

    radial-gradient(
        circle at top,
        rgba(212,175,55,0.18),
        transparent 45%
    ),

    linear-gradient(
        180deg,
        #111111,
        #050505
    );

}



.hero-overlay {

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        rgba(0,0,0,.25),
        rgba(0,0,0,.85)
    );

}



.hero-content {

    position: relative;

    text-align: center;

    max-width: 900px;

    padding: 20px;

}



.hero-logo {

    width: 260px;

    margin-bottom: 35px;

}



.hero h1 {

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    line-height: 1.1;

    margin-bottom: 25px;

    letter-spacing: -2px;

}



.hero p {

    font-size: 1.25rem;

    color: #cccccc;

    max-width: 650px;

    margin: auto;

    margin-bottom: 40px;

}





/* Buttons */


.download-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}



.store-button {

    background: #ffffff;

    color: #000000;

    text-decoration: none;

    padding: 15px 28px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

}



.store-button:hover {

    transform: translateY(-3px);

    background: #d4af37;

}






/* Sections */


.section {

    padding: 100px 8%;

    max-width: 1200px;

    margin: auto;

}



.section h2 {

    text-align: center;

    font-size: 3rem;

    margin-bottom: 40px;

}



.section p {

    max-width: 850px;

    margin: auto;

    text-align: center;

    color: #c7c7c7;

    font-size: 1.15rem;

}






/* Feature Cards */


.cards {

    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

}



.card {

    background:

    linear-gradient(
        145deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.02)
    );


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

    padding: 35px 25px;

    border-radius: 20px;

    text-align: center;

    transition: .3s;

}



.card:hover {

    transform: translateY(-8px);

    border-color: #d4af37;

}



.card h3 {

    margin-bottom: 15px;

    font-size: 1.4rem;

}



.card p {

    font-size: 1rem;

}






/* Support */


.support {

    text-align:center;

}



.email {

    display:inline-block;

    margin-top:25px;

    color:#d4af37;

    font-size:1.2rem;

    text-decoration:none;

}



.email:hover {

    text-decoration:underline;

}






/* Footer */


footer {

    padding:50px 20px;

    text-align:center;

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

    color:#888;

}



.footer-links {

    display:flex;

    justify-content:center;

    gap:30px;

    margin-bottom:20px;

}



.footer-links a {

    color:#aaa;

    text-decoration:none;

}



.footer-links a:hover {

    color:#ffffff;

}





/* Responsive */


@media(max-width:900px){


    .navbar {

        padding:0 5%;

    }


    nav {

        gap:15px;

    }


    .hero-logo {

        width:200px;

    }


    .cards {

        grid-template-columns:1fr 1fr;

    }


}



@media(max-width:600px){


    .navbar {

        height:70px;

    }


    nav {

        display:none;

    }


    .hero {

        min-height:650px;

    }


    .hero h1 {

        font-size:2.5rem;

    }


    .hero p {

        font-size:1rem;

    }


    .section {

        padding:70px 5%;

    }


    .section h2 {

        font-size:2.2rem;

    }


    .cards {

        grid-template-columns:1fr;

    }


}