<style>

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

body{
background:#ffffff;
color:#0f172a;
overflow-x:hidden;
}

/* NEURAL NETWORK BACKGROUND */

canvas{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;
}

/* HERO */

.hero{
min-height:25vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:10px;
}

.hero h1{
font-size:72px;
font-weight:700;
background:linear-gradient(90deg,#2563eb,#06b6d4);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
margin-bottom:20px;
}

.hero p{
max-width:750px;
font-size:20px;
opacity:.75;
}

/* GLASS CARDS */

.section{
max-width:1200px;
margin:auto;
padding:30px 20px;
}

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

.card{
background:rgba(255,255,255,.8);
backdrop-filter:blur(20px);
padding:35px;
border-radius:18px;
border:1px solid rgba(0,0,0,.05);
box-shadow:0 20px 60px rgba(0,0,0,.08);
transition:.4s;
}

.card:hover{
transform:translateY(-12px);
box-shadow:0 30px 70px rgba(37,99,235,.25);
}

.card i{
font-size:32px;
color:#2563eb;
margin-bottom:15px;
}

.card ul{
padding-left:18px;
}

.card li{
margin-bottom:8px;
}

/* RESEARCH STATS */

.stats{
display:flex;
justify-content:center;
gap:100px;
flex-wrap:wrap;
margin-top:120px;
}

.stat{
text-align:center;
}

.stat h2{
font-size:56px;
color:#2563eb;
font-weight:700;
}

.stat p{
opacity:.6;
}

/* APPLE STYLE TIMELINE */

.timeline{
max-width:1000px;
margin:auto;
padding:160px 20px;
position:relative;
}

.timeline::before{
content:"";
position:absolute;
left:50%;
top:0;
bottom:0;
width:3px;
background:linear-gradient(#2563eb,#06b6d4);
transform:translateX(-50%);
opacity:.25;
}

.step{
display:flex;
align-items:center;
margin-bottom:120px;
position:relative;
}

.step:nth-child(even){
flex-direction:row-reverse;
}

.marker{
width:70px;
height:70px;
background:linear-gradient(135deg,#2563eb,#06b6d4);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:26px;
position:absolute;
left:50%;
transform:translateX(-50%);
box-shadow:0 0 0 12px rgba(37,99,235,.15);
}

.timeline-card{
width:42%;
background:white;
padding:30px;
border-radius:16px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.timeline-card h3{
color:#2563eb;
margin-bottom:10px;
}

/* CTA */

.cta{
text-align:center;
padding:1px 20px;
}

.deadline{
font-size:32px;
color:#d97706;
font-weight:600;
margin:20px 0;
}

.btn{
display:inline-block;
padding:18px 50px;
border-radius:40px;
background:linear-gradient(90deg,#2563eb,#06b6d4);
color:white;
text-decoration:none;
font-weight:600;
font-size:18px;
transition:.3s;
}

.btn:hover{
transform:scale(1.05);
box-shadow:0 0 30px rgba(37,99,235,.4);
}

.note{
margin-top:20px;
opacity:.6;
}

/* MOBILE */

@media(max-width:768px){

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

.timeline::before{
left:30px;
}

.marker{
left:30px;
}

.step{
flex-direction:row !important;
}

.timeline-card{
width:80%;
margin-left:90px;
}

}

/* FUNDING HERO */

.funding-hero{

padding:160px 20px;
text-align:center;

background:linear-gradient(180deg,#ffffff,#f8fbff);

}

.funding-hero h2{

font-size:46px;
margin-bottom:20px;

}

.funding-amount{

font-size:72px;
font-weight:700;

background:linear-gradient(90deg,#2563eb,#06b6d4);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

margin-bottom:20px;

}

.funding-hero p{

max-width:700px;
margin:auto;
opacity:.7;
font-size:18px;

}


/* FUNDING GRID */

.funding-section{

max-width:1200px;
margin:auto;
padding:120px 20px;

}

.funding-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

}


/* FUND CARD */

.fund-card{

background:white;

padding:40px;

border-radius:18px;

box-shadow:0 25px 60px rgba(0,0,0,.08);

border:1px solid rgba(0,0,0,.05);

text-align:center;

transition:.4s;

}

.fund-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 70px rgba(37,99,235,.25);

}

.fund-card i{

font-size:34px;

color:#2563eb;

margin-bottom:14px;

}

.fund-card h3{

margin-bottom:10px;

}

.fund-card p{

opacity:.7;

}

</style>
