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

body{
font-family:'Sora',sans-serif;
background:#ffffff;
color:#222;
}

.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
}

.hero-video video{
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
rgba(0,0,0,0.75),
rgba(0,0,0,0.55)
);
z-index:2;
}

.hero-content{
position:relative;
z-index:3;
max-width:900px;
padding:20px;
color:#fff;
}

.hero-content h1{
font-size:48px;
font-weight:600;
margin-bottom:20px;
line-height:1.2;
letter-spacing:-0.5px;
}

.hero-content p{
font-size:20px;
margin-bottom:35px;
opacity:0.9;
font-weight:300;
}

.hero-cta{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:40px;
}

.btn-primary{
background:#5F1BF2;
color:white;
padding:16px 32px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:0.3s;
box-shadow:0 10px 25px rgba(95,27,242,0.4);
}

.btn-primary:hover{
background:#7D4EBF;
transform:translateY(-3px);
}

.btn-secondary{
border:2px solid #F2CE1B;
color:#F2CE1B;
padding:16px 32px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.btn-secondary:hover{
background:#F2CE1B;
color:#000;
}

.highlight{
background:linear-gradient(90deg,#F2CE1B,#ffffff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

@media(max-width:768px){

.hero{
padding:40px 20px;
height:auto;
min-height:100vh;
}

.hero-content{
max-width:100%;
padding:10px;
}

.hero-badge{
font-size:12px;
padding:6px 14px;
margin-bottom:16px;
}

.hero-content h1{
font-size:28px;
line-height:1.25;
letter-spacing:-0.3px;
margin-bottom:16px;
}

.hero-content p{
font-size:16px;
line-height:1.5;
margin-bottom:24px;
padding:0 10px;
}

.hero-cta{
flex-direction:column;
gap:14px;
margin-bottom:30px;
}

.btn-primary,
.btn-secondary{
width:100%;
font-size:15px;
padding:14px 18px;
}

}