:root{
  --bg:#0f172a;
  --bg2:#111827;
  --card:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.12);
  --text:#f8fafc;
  --muted:#94a3b8;
  --primary:#3b82f6;
  --secondary:#06b6d4;
  --success:#22c55e;
  --warning:#f59e0b;
  --radius:18px;
  --shadow:0 20px 40px rgba(0,0,0,.35);
  --container:1200px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
 font-family:'Inter',system-ui,sans-serif;
 color:var(--text);
 background:linear-gradient(135deg,var(--bg),var(--bg2));
 line-height:1.6;
 overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
.container{width:min(92%,var(--container));margin:auto}
header{
 position:sticky;top:0;z-index:50;
 backdrop-filter:blur(16px);
 background:rgba(15,23,42,.65);
 border-bottom:1px solid rgba(255,255,255,.06)
}
.nav-container{
 display:flex;justify-content:space-between;
 align-items:center;padding:18px 0
}
.logo{display:flex;gap:.6rem;font-weight:800;font-size:1.2rem}
.logo-icon{
 width:36px;height:36px;border-radius:12px;
 display:grid;place-items:center;
 background:linear-gradient(135deg,var(--primary),var(--secondary))
}
nav{display:flex;gap:2rem;align-items:center}
nav a{color:#dbeafe}
nav a:hover{color:#fff}
.menu-btn{display:none;background:none;border:0;color:#fff;font-size:1.6rem}
.github-btn{
 padding:.7rem 1rem;border-radius:999px;
 background:var(--primary)
}
.hero{padding:90px 0}
.hero-grid{
 display:grid;
 grid-template-columns:1.1fr .9fr;
 gap:3rem;align-items:center
}
.badge{
 display:inline-block;
 padding:.45rem .9rem;
 border-radius:999px;
 background:rgba(59,130,246,.18);
 border:1px solid rgba(59,130,246,.3);
 margin-bottom:1rem
}
.hero h1{
 font-size:clamp(2.4rem,5vw,4.5rem);
 line-height:1.05;margin-bottom:1rem
}
.hero h1 span{
 background:linear-gradient(90deg,#60a5fa,#22d3ee);
 -webkit-background-clip:text;
 -webkit-text-fill-color:transparent
}
.hero p{color:var(--muted);max-width:650px}
.hero-buttons{
 display:flex;gap:1rem;
 margin:2rem 0;
 flex-wrap:wrap
}
.btn{
 display:inline-flex;
 align-items:center;
 justify-content:center;
 padding:.95rem 1.4rem;
 border-radius:14px;
 font-weight:700;
 transition:.25s
}
.primary{background:var(--primary);color:#fff}
.secondary{
 background:rgba(255,255,255,.08);
 border:1px solid var(--border)
}
.outline{
 border:1px solid var(--primary);
 color:#93c5fd
}
.btn:hover{
 transform:translateY(-2px);
 box-shadow:0 12px 28px rgba(59,130,246,.3)
}
.hero-points{
 display:grid;
 grid-template-columns:repeat(2,minmax(150px,1fr));
 gap:.8rem;
 list-style:none;
 color:#d1d5db
}
.glass-card,.project-card,.feature,.timeline-item{
 background:var(--card);
 backdrop-filter:blur(18px);
 border:1px solid var(--border);
 border-radius:var(--radius);
 box-shadow:var(--shadow)
}
.glass-card{padding:2rem}
.progress{
 margin:1rem 0;height:10px;
 border-radius:999px;
 background:rgba(255,255,255,.08)
}
.progress-bar{
 width:72%;
 height:100%;
 border-radius:999px;
 background:linear-gradient(90deg,var(--primary),var(--secondary))
}
.status-list{display:grid;gap:.8rem}
.dot{
 display:inline-block;
 width:10px;height:10px;border-radius:50%;
 margin-right:.5rem
}
.green{background:var(--success)}
.blue{background:var(--primary)}
.orange{background:var(--warning)}
.section{padding:80px 0}
.section-title{text-align:center;margin-bottom:3rem}
.section-title h2{font-size:2.2rem;margin-bottom:.5rem}
.section-title p{color:var(--muted)}
.project-card{
 display:flex;
 justify-content:space-between;
 gap:2rem;
 padding:2rem;
 flex-wrap:wrap
}
.project-left{
 display:flex;
 gap:1.5rem;
 flex:1
}
.project-icon{
 width:70px;height:70px;
 border-radius:18px;
 display:grid;place-items:center;
 background:linear-gradient(135deg,var(--primary),var(--secondary));
 font-size:2rem
}
.tags{display:flex;gap:.7rem;flex-wrap:wrap;margin-top:1rem}
.tags span{
 padding:.45rem .8rem;
 border-radius:999px;
 background:rgba(255,255,255,.08);
 color:#cbd5e1
}
.project-actions{
 display:flex;
 gap:1rem;
 flex-wrap:wrap;
 align-items:center
}
.features{
 display:grid;
 grid-template-columns:repeat(4,1fr);
 gap:1.5rem
}
.feature{
 padding:2rem;
 text-align:center;
 transition:.3s
}
.feature:hover{
 transform:translateY(-6px)
}
.feature .icon{
 font-size:2rem;
 margin-bottom:1rem
}
.timeline{
 display:grid;
 grid-template-columns:repeat(3,1fr);
 gap:1.2rem
}
.timeline-item{
 padding:1.5rem;
 font-weight:600
}
.timeline-item span{
 display:block;
 color:#60a5fa;
 font-size:2rem;
 margin-bottom:.5rem
}
.stats{
 padding:70px 0;
 background:rgba(255,255,255,.03)
}
.stats-grid{
 display:grid;
 grid-template-columns:repeat(4,1fr);
 text-align:center;
 gap:1rem
}
.stats h2{
 font-size:3rem;
 color:#60a5fa
}
.stats p{color:var(--muted)}
.cta{
 padding:90px 0;
 text-align:center
}
.large{font-size:1.1rem;padding:1rem 2rem}
footer{
 border-top:1px solid rgba(255,255,255,.08);
 padding:40px 0 20px
}
.footer-grid{
 display:flex;
 justify-content:space-between;
 flex-wrap:wrap;
 gap:2rem
}
.footer-links{
 display:flex;
 gap:1.5rem
}
.copyright{
 margin-top:2rem;
 text-align:center;
 color:var(--muted)
}
.background-grid{
 position:fixed;inset:0;
 background-image:
 linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
 linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
 background-size:40px 40px;
 z-index:-3
}
.blob{
 position:fixed;
 border-radius:50%;
 filter:blur(90px);
 opacity:.35;
 z-index:-2;
 animation:float 14s ease-in-out infinite
}
.blob1{width:320px;height:320px;background:#2563eb;left:-80px;top:80px}
.blob2{width:280px;height:280px;background:#06b6d4;right:-60px;top:220px}
.blob3{width:260px;height:260px;background:#7c3aed;left:40%;bottom:-100px}
.cursor-glow{
 position:fixed;
 width:180px;height:180px;
 border-radius:50%;
 background:radial-gradient(circle,rgba(59,130,246,.18),transparent 70%);
 pointer-events:none;
 z-index:-1;
 transform:translate(-50%,-50%)
}
@keyframes float{
 50%{transform:translateY(-25px) translateX(20px)}
}
@media (max-width:992px){
 .hero-grid,.features,.timeline,.stats-grid{
   grid-template-columns:1fr 1fr
 }
 .hero-grid{grid-template-columns:1fr}
}
@media (max-width:768px){
 nav{display:none}
 .menu-btn{display:block}
 .features,.timeline,.stats-grid{
   grid-template-columns:1fr
 }
 .hero-points{grid-template-columns:1fr}
 .footer-grid,.project-card{
   flex-direction:column
 }
 .hero{padding:70px 0}
}
@media (prefers-reduced-motion:reduce){
 *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}