@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#070b17;
    color:white;
    overflow-x:hidden;
}

header{
    width:100%;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:absolute;
    top:0;
    left:0;
    z-index:10;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:28px;
    font-weight:700;
}

.logo-icon{
    width:46px;
    height:46px;
    border-radius:14px;
    background:linear-gradient(135deg,#00e5ff,#4f46e5);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:800;
    box-shadow:0 0 25px rgba(0,229,255,.5);
}

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

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
    opacity:.8;
}

nav a:hover{
    opacity:1;
    color:#00e5ff;
}

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

.hero-content{
    max-width:850px;
    z-index:5;
}

.hero h1{
    font-size:70px;
    line-height:1.15;
    font-weight:800;
}

.hero h1 span{
    color:#00e5ff;
}

.hero p{
    margin:35px auto;
    color:#bfc7d6;
    font-size:18px;
    line-height:1.8;
    max-width:720px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn{
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
    font-weight:600;
}

.primary{
    background:#00e5ff;
    color:#000;
}

.primary:hover{
    transform:translateY(-4px);
    box-shadow:0 0 35px rgba(0,229,255,.5);
}

.secondary{
    border:2px solid #00e5ff;
    color:#00e5ff;
}

.secondary:hover{
    background:#00e5ff;
    color:black;
}

.glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:.45;
}

.glow1{
    width:450px;
    height:450px;
    background:#00e5ff;
    top:-150px;
    left:-100px;
}

.glow2{
    width:500px;
    height:500px;
    background:#4f46e5;
    bottom:-220px;
    right:-120px;
}

@media(max-width:900px){

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

header{
    flex-direction:column;
    gap:20px;
}

nav{
    gap:20px;
}

.buttons{
    flex-direction:column;
}
} 
.founders{
    padding:100px 8%;
    background:#0b1120;
    text-align:center;
}

.founders h2{
    font-size:42px;
    margin-bottom:15px;
}

.subtitle{
    color:#9ca3af;
    max-width:650px;
    margin:0 auto 60px;
    line-height:1.8;
}

.founders-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.founder-card{
    background:#111827;
    padding:35px 20px;
    border-radius:20px;
    transition:.35s;
    border:1px solid rgba(255,255,255,.05);
}

.founder-card:hover{
    transform:translateY(-8px);
    border-color:#00e5ff;
    box-shadow:0 0 30px rgba(0,229,255,.15);
}

.avatar{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#00e5ff,#4f46e5);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    font-weight:700;
    color:white;
    margin-bottom:20px;
}

.founder-card h3{
    font-size:22px;
    margin-bottom:8px;
}

.founder-card span{
    color:#00e5ff;
    font-weight:500;
}