:root{
  --bg:#0b0f17;
  --card:#101827;
  --text:#e7eefc;
  --muted:#a6b3cc;
  --accent:#6aa8ff;
  --border:rgba(255,255,255,.08);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;background:var(--bg);color:var(--text);}

a{color:inherit;text-decoration:none}
.container{max-width:1000px;margin:0 auto;padding:24px}

.nav{display:flex;align-items:center;justify-content:space-between;gap:16px}
.brand{font-weight:700;letter-spacing:.2px}
.links{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.links a{opacity:.9}
.links a:hover{opacity:1}

.btn{display:inline-block;padding:10px 14px;border-radius:12px;border:1px solid var(--border);background:rgba(255,255,255,.06)}
.btn:hover{background:rgba(255,255,255,.10)}
.btn.secondary{background:transparent}

.hero{padding:40px 0 16px}
.hero h1{font-size:44px;line-height:1.1;margin:10px 0}
.hero p{max-width:680px;color:var(--muted);font-size:18px}
.accent{color:var(--accent)}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

.section{padding:26px 0}
.section h2{margin:0 0 14px;font-size:22px}

.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media (max-width:900px){.grid{grid-template-columns:1fr}}

.card{display:block;background:var(--card);border:1px solid var(--border);border-radius:18px;padding:16px;transition:transform .12s ease, background .12s ease}
.card:hover{transform:translateY(-2px);background:rgba(255,255,255,.06)}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted)}

.tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.tags span{font-size:12px;color:var(--muted);border:1px solid var(--border);padding:4px 8px;border-radius:999px}

.bullets{margin:10px 0 0 18px;color:var(--muted)}
.footer{border-top:1px solid var(--border);margin-top:30px}
.footer-inner{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap}
.muted{color:var(--muted)}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-text {
  flex: 1;
}

.hero-photo {
  flex-shrink: 0;
}

.hero-photo img {
  width: 100px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddd;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-photo img {
    width: 130px;
    height: 130px;
  }
}

