:root{
  --bg:#0b0f1a;
  --card:#111827;
  --muted:#9ca3af;
  --text:#e5e7eb;
  --accent:#60a5fa;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% 0%, #111827 0%, var(--bg) 60%);
  color: var(--text);
  line-height:1.45;
}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:1000px;margin:0 auto;padding:24px}
.hero{
  display:flex;flex-wrap:wrap;gap:18px;align-items:center;
  padding:28px 22px;border:1px solid rgba(255,255,255,.08);
  border-radius:18px;background: rgba(17,24,39,.6);
  backdrop-filter: blur(6px);
}
.hero h1{margin:0;font-size:34px;letter-spacing:.2px}
.hero p{margin:8px 0 0;color:var(--muted);max-width:60ch}
.badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.badge{
  font-size:12px;color:#cbd5e1;border:1px solid rgba(255,255,255,.10);
  padding:6px 10px;border-radius:999px;background: rgba(0,0,0,.25);
}
.ctas{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.btn{
  display:inline-block;padding:10px 14px;border-radius:10px;
  border:1px solid rgba(255,255,255,.12);background: rgba(0,0,0,.25);
  color:var(--text);
}
.btn.primary{background: rgba(96,165,250,.18);border-color: rgba(96,165,250,.35)}
.section{margin-top:22px}
.grid{display:grid;grid-template-columns:repeat(12,1fr);gap:14px}
.card{
  grid-column: span 6;
  padding:16px;border-radius:16px;background: rgba(17,24,39,.65);
  border:1px solid rgba(255,255,255,.08);
}
.card h2{margin:0 0 6px;font-size:18px}
.card p{margin:0;color:var(--muted)}
.photos{
  grid-column: span 12;
  display:grid;grid-template-columns:repeat(4,1fr);gap:12px;
}
.photo{
  border-radius:16px;overflow:hidden;border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}
.photo img{display:block;width:100%;height:220px;object-fit:cover}
.footer{margin:24px 0 10px;color:var(--muted);font-size:13px}
@media (max-width: 900px){
  .card{grid-column:span 12}
  .photos{grid-template-columns:repeat(2,1fr)}
  .photo img{height:200px}
}
@media (max-width: 520px){
  .photos{grid-template-columns:1fr}
  .photo img{height:220px}
}
