*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{
background:#000000;
color:white;
line-height:1.6;
font-family:'D-DIN', sans-serif;
}


header{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 10%;
background:transparent;
z-index:1000;
}



.logo{
font-size:18px;
letter-spacing:3px;
font-weight:600;
color:white;
font-family:'MuseoModerno', sans-serif;
text-decoration:none;
cursor:pointer;
}


nav a{
color:white;
text-decoration:none;
margin-left:30px;
font-size:14px;
opacity:0.8;
}

nav a:hover{
opacity:1;
}


.hero{
position:relative;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
overflow:hidden;
}

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
z-index:1;
}

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-1;
}

.hero-content{
position:relative;
z-index:2;
padding:20px;
}

.hero h1{
font-size:64px;
letter-spacing:6px;
margin-bottom:20px;
font-family:'MuseoModerno', sans-serif;

}

.hero p{
max-width:600px;
opacity:0.85;
margin-bottom:40px;
margin-left:auto;
margin-right:auto;
}



.button{
border:1px solid white;
padding:14px 32px;
text-decoration:none;
color:white;
transition:0.3s;
}

.button:hover{
background:white;
color:black;
}

.robot{
width:380px;
margin-top:60px;
opacity:0.9;
}

section{
padding:120px 10%;
text-align:center;
}

h2{
font-size:32px;
margin-bottom:20px;
letter-spacing:2px;
font-family:'MuseoModerno', sans-serif;

}

.section-text{
max-width:700px;
margin:auto;
opacity:0.7;
}

.features{
margin-top:60px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.feature{
opacity:0.8;
}

.feature h3{
margin-bottom:10px;
font-family: 'D-DIN Exp', sans-serif;

}

.founder{
margin-top:40px;
opacity:0.8;
}

footer{
text-align:center;
padding:60px 20px;
opacity:0.5;
font-size:14px;
}

@media(max-width:800px){

.hero h1{
font-size:40px;
}

.robot{
width:260px;
}

}

 h2, h3{
font-family: 'D-DIN Exp', sans-serif;


letter-spacing:2px;
}