:root{
  --bg:#0b0f14;
  --fg:#e6e9ef;
  --muted:#9aa3b2;
  --accent:#c9a24d;
  --card:#0f1620;
  --border:rgba(201,162,77,.22);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:radial-gradient(1200px 700px at 20% -10%, rgba(201,162,77,.08), transparent 60%),
             radial-gradient(900px 600px at 110% 0%, rgba(154,163,178,.06), transparent 55%),
             var(--bg);
  color:var(--fg);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Helvetica,Arial,sans-serif;
}
.wrap{max-width:860px;margin:64px auto;padding:0 18px}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)), var(--card);
  border:1px solid rgba(255,255,255,.06);
  border-top:1px solid var(--border);
  border-radius:18px;
  padding:28px 22px;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}
.top{display:flex;align-items:center;gap:14px;margin-bottom:14px}
.logo{
  width:44px;height:44px;border-radius:12px;overflow:hidden;flex:0 0 auto;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
}
.logo img{width:100%;height:100%;object-fit:cover}
h1{font-size:18px;letter-spacing:.02em;margin:0;font-weight:650}
.subtitle{margin:6px 0 0 0;font-size:13px;color:var(--muted)}
hr{
  border:0;height:1px;
  background:linear-gradient(90deg, transparent, rgba(201,162,77,.35), transparent);
  margin:18px 0;
}
p{font-size:15px;line-height:1.75;margin:0 0 14px 0}
.muted{color:var(--muted)}
.accent{color:var(--accent)}
.badges{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0 4px 0}
.badge{
  font-size:12px;color:var(--muted);
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
}
.contact{
  margin-top:16px;padding:14px 14px;border-radius:14px;
  border:1px solid var(--border);
  background:rgba(201,162,77,.06);
}
a{color:var(--fg);text-decoration:none;border-bottom:1px dotted rgba(230,233,239,.35)}
a:hover{border-bottom-color:var(--accent)}
footer{margin-top:18px;font-size:12.5px;color:var(--muted)}
@media (max-width:520px){
  .wrap{margin:34px auto}
  .card{padding:22px 16px}
}