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

body{
    font-family:'Inter',sans-serif;
    min-height:100vh;
    overflow:hidden;
    background:#080814;
    color:white;
}

.background{
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at top left,#7d4cff55,transparent 35%),
        radial-gradient(circle at top right,#2b8cff55,transparent 35%),
        radial-gradient(circle at bottom left,#ff5cc855,transparent 25%),
        #080814;
}

.container{
    position:relative;
    z-index:2;
    display:flex;
    min-height:100vh;
}

.card{
    width:320px;
    margin:24px;
    padding:32px;
    border-radius:28px;
    background:rgba(20,20,30,0.78);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    flex-direction:column;
}

.logo{
    width:64px;
    height:64px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    background:black;
    margin-bottom:28px;
}

h1{
    font-size:52px;
    line-height:0.95;
    margin-bottom:20px;
}

.subtitle{
    color:#b8bfd6;
    line-height:1.6;
    margin-bottom:32px;
}

.buttons{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-bottom:auto;
}

.btn{
    text-decoration:none;
    color:white;
    padding:14px;
    border-radius:14px;
    text-align:center;
    border:1px solid rgba(141,92,255,0.7);
    transition:0.2s ease;
}

.btn:hover{
    transform:translateY(-2px);
    background:rgba(141,92,255,0.15);
}

.store-icons{
    display:flex;
    gap:14px;
    margin-top:40px;
}

.icon{
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid #68a8ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    font-size:20px;
}

.hero{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px;
}

.hero-content{
    max-width:760px;
}

.tag{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(141,92,255,0.2);
    color:#d7c8ff;
    font-size:13px;
    letter-spacing:1px;
}

.hero h2{
    font-size:72px;
    line-height:1;
    margin-bottom:24px;
}

.hero p{
    color:#b8bfd6;
    font-size:20px;
    line-height:1.7;
    max-width:640px;
    margin-bottom:32px;
}

.hero-buttons{
    display:flex;
    gap:16px;
}

.primary,.secondary{
    text-decoration:none;
    padding:16px 24px;
    border-radius:16px;
    font-weight:600;
}

.primary{
    background:linear-gradient(135deg,#8d5cff,#4ca3ff);
    color:white;
}

.secondary{
    border:1px solid rgba(255,255,255,0.2);
    color:white;
}

@media(max-width:1000px){

    body{
        overflow:auto;
    }

    .container{
        flex-direction:column;
    }

    .card{
        width:auto;
        margin:18px;
    }

    .hero{
        padding:24px;
        align-items:flex-start;
    }

    .hero h2{
        font-size:48px;
    }

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

    .hero-buttons{
        flex-direction:column;
    }
}
