*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#fff;
color:#222;
}

header{
position:absolute;
top:0;
left:0;
width:100%;
padding:25px 8%;
display:flex;
justify-content:space-between;
align-items:center;
z-index:100;
}

.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo img{
width:50px;
height:50px;
border-radius:12px;
}

.logo span{
font-size:24px;
font-weight:700;
color:#222;
}

header a{
text-decoration:none;
font-weight:600;
color:#7c3aed;
}

.hero{
position:relative;
height:100vh;

background:url("../images/hero-bg.jpg");
background-size:cover;
background-position:center;

display:flex;
align-items:center;

padding:0 8%;
}

.overlay{
position:absolute;
inset:0;

background:
linear-gradient(
90deg,
rgba(255,247,253,.96) 0%,
rgba(255,247,253,.90) 35%,
rgba(255,247,253,.50) 60%,
rgba(255,247,253,.15) 100%
);
}

.hero-content{
position:relative;
z-index:2;
max-width:650px;
}

.badge{
display:inline-block;
padding:12px 20px;
background:white;
border-radius:999px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
font-weight:600;
margin-bottom:25px;
}

.hero h1{
font-size:82px;
font-weight:800;
line-height:.95;
margin-bottom:25px;
}

.hero h1 span{
background:linear-gradient(
90deg,
#ff2f92,
#7c3aed
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
font-size:20px;
line-height:1.8;
color:#555;
margin-bottom:35px;
}

.download-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn{
display:inline-block;
padding:18px 32px;
border-radius:999px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
}

.apple{
background:#111;
color:white;
}

.google{
background:linear-gradient(
90deg,
#ff2f92,
#7c3aed
);
color:white;
}

footer{
padding:30px;
text-align:center;
}

footer p{
margin-bottom:10px;
}

footer a{
text-decoration:none;
color:#7c3aed;
font-weight:600;
}

.privacy-container{
max-width:900px;
margin:auto;
padding:100px 20px;
}

.privacy-container h1{
margin-bottom:20px;
}

.privacy-container h2{
margin-top:25px;
margin-bottom:10px;
color:#7c3aed;
}

.privacy-container p{
line-height:1.8;
margin-bottom:15px;
}

@media(max-width:768px){

.hero{
justify-content:center;
text-align:center;
padding:0 20px;
}

.hero h1{
font-size:54px;
}

.download-buttons{
justify-content:center;
}

.logo span{
display:none;
}

header{
padding:20px;
}

}

.download-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
align-items:center;
}

.store-badge{
height:60px;
width:auto;
transition:.3s;
cursor:pointer;
}

.store-badge:hover{
transform:translateY(-4px) scale(1.03);
}

@media(max-width:768px){

.download-buttons{
justify-content:center;
}

.store-badge{
height:52px;
}

}