:root{
  --bg:#0b1020;
  --card:#111a33;
  --text:#e9eeff;
  --muted:#b7c1ff;
  --line:rgba(255,255,255,.08);
  --accent:#6ee7ff;
  --accent2:#a78bfa;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto;
  background:linear-gradient(180deg,#070a14,var(--bg));
  color:var(--text);
}

/* HERO */
.home-hero{
  padding:80px 20px 60px;
  text-align:center;
}

.home-title{
  font-size:38px;
  margin-bottom:12px;
  font-weight:800;
}

.home-sub{
  max-width:720px;
  margin:0 auto;
  color:var(--muted);
  line-height:1.6;
}

/* LAYOUT */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:30px 20px 60px;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.card-link{
  text-decoration:none;
  color:inherit;
}

.card{
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.card-content{
  padding:18px;
}

.card-content h2{
  margin:0 0 8px;
  font-size:20px;
  color:var(--accent);
}

.card-content p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:var(--muted);
}

/* FOOTER */
.home-footer{
  text-align:center;
  padding:20px;
  font-size:13px;
  color:var(--muted);
  border-top:1px solid var(--line);
}
