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

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

.noise{
    position:fixed;
    inset:0;
    background-image:url("https://grainy-gradients.vercel.app/noise.svg");
    opacity:.03;
    pointer-events:none;
}

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:100;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
    backdrop-filter:blur(15px);
}

.logo{
    font-size:24px;
    font-weight:900;
    letter-spacing:3px;
}

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

nav a{
    color:#fff;
    text-decoration:none;
    opacity:.8;
}

.nav-btn{
    padding:12px 24px;
    border:none;
    border-radius:50px;
    background:#fff;
    font-weight:700;
    cursor:pointer;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
    position:relative;
}

.hero-content{
    max-width:650px;
    z-index:2;
}

.badge{
    display:inline-block;
    padding:12px 20px;
    border-radius:100px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    margin-bottom:30px;
}

h1{
    font-size:92px;
    line-height:1;
    font-weight:900;
}

h1 span{
    background:linear-gradient(
        90deg,
        #00D4FF,
        #7C3AED,
        #5B5FFF
    );
    -webkit-background-clip:text;
    color:transparent;
}

.hero p{
    margin-top:30px;
    font-size:22px;
    color:#bbb;
    max-width:550px;
    line-height:1.6;
}

.buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.primary{
    padding:18px 34px;
    border:none;
    border-radius:50px;
    background:linear-gradient(
        90deg,
        #5B5FFF,
        #7C3AED
    );
    color:white;
    font-weight:700;
    cursor:pointer;
}

.secondary{
    padding:18px 34px;
    border-radius:50px;
    background:transparent;
    border:1px solid rgba(255,255,255,.15);
    color:white;
    cursor:pointer;
}

.stats{
    display:flex;
    gap:60px;
    margin-top:80px;
}

.stats h3{
    font-size:40px;
}

.stats span{
    color:#999;
}

.phones{
    position:relative;
    width:550px;
    height:700px;
}

.phone{
    position:absolute;
    width:280px;
    height:560px;
    border-radius:45px;
    padding:14px;
    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.15),
        rgba(255,255,255,.02)
    );

    backdrop-filter:blur(20px);

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

    box-shadow:
    0 20px 100px rgba(91,95,255,.3);
}

.screen{
    width:100%;
    height:100%;
    border-radius:32px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.fintech{
    background:
    linear-gradient(
        135deg,
        #00D4FF,
        #5B5FFF
    );
}

.fitness{
    background:
    linear-gradient(
        135deg,
        #7C3AED,
        #ff0080
    );
}

.screen h4{
    font-size:40px;
    margin-bottom:10px;
}

.screen p{
    color:white;
    font-size:24px;
}

.phone1{
    top:40px;
    left:0;
    transform:rotate(-12deg);
}

.phone2{
    right:0;
    top:120px;
    transform:rotate(12deg);
}

.gradient{
    position:absolute;
    border-radius:50%;
    filter:blur(150px);
}

.gradient1{
    width:500px;
    height:500px;
    background:#5B5FFF;
    top:-100px;
    right:-100px;
}

.gradient2{
    width:450px;
    height:450px;
    background:#00D4FF;
    bottom:-100px;
    left:-100px;
}

@media(max-width:1200px){

.hero{
    flex-direction:column;
    text-align:center;
    padding-top:150px;
}

h1{
    font-size:60px;
}

.phones{
    margin-top:100px;
    transform:scale(.8);
}
}

@media(max-width:768px){

nav{
    display:none;
}

h1{
    font-size:46px;
}

.hero p{
    font-size:18px;
}

.stats{
    justify-content:center;
    gap:25px;
}

.phones{
    width:100%;
    transform:scale(.6);
}
}