:root{
  --bg:#0b0f14;
  --panel:#101824;
  --text:#e9eef7;
  --muted:#aeb8c7;
  --accent:#ffffff;
  --border:rgba(255,255,255,.10);
  --shadow: 0 12px 30px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(900px 500px at 20% 10%, rgba(255,255,255,.06), transparent 55%),
              radial-gradient(700px 400px at 80% 30%, rgba(255,255,255,.05), transparent 50%),
              linear-gradient(180deg, #070a0f 0%, var(--bg) 45%, #070a0f 100%);
  color:var(--text);
  line-height:1.6;
}
a{color:var(--text); text-decoration:none}
a:hover{text-decoration:underline}
.container{
  max-width:1100px;
  margin:0 auto;
  padding:32px 18px 60px;
}
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 18px;
  border:1px solid var(--border);
  background: rgba(16,24,36,.55);
  backdrop-filter: blur(10px);
  border-radius:20px;
  box-shadow: var(--shadow);
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:240px;
}
.brand img{
  width:64px;height:64px;border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  padding:8px;
}
.brand .title{
  display:flex; flex-direction:column;
}
.brand .title strong{font-size:16px; letter-spacing:.3px}
.brand .title span{font-size:12px; color:var(--muted)}
.actions{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.btn:hover{background: rgba(255,255,255,.08)}
.hero{
  margin-top:26px;
  padding:26px 20px;
  border-radius:22px;
  border:1px solid var(--border);
  background: rgba(16,24,36,.45);
  box-shadow: var(--shadow);
}
.hero h1{margin:0 0 6px; font-size:34px; letter-spacing:.2px}
.hero p.lead{margin:0; color:var(--muted); max-width:78ch}
.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  margin-top:18px;
}
@media (max-width: 900px){
  .grid{grid-template-columns: 1fr}
  .header{flex-direction:column; align-items:flex-start}
  .actions{justify-content:flex-start}
}
.card{
  padding:22px 20px;
  border-radius:22px;
  border:1px solid var(--border);
  background: rgba(16,24,36,.38);
  box-shadow: var(--shadow);
}
.card h2{margin:0 0 10px; font-size:18px}
.card h3{margin:18px 0 10px; font-size:15px}
.card p{margin:0 0 12px; color:var(--text)}
.card p.muted{color:var(--muted)}
.kv{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap:10px;
  padding:12px 0;
  border-top:1px dashed rgba(255,255,255,.12);
}
.kv:first-child{border-top:none; padding-top:0}
.kv dt{color:var(--muted)}
.kv dd{margin:0}
.footer{
  margin-top:22px;
  color:var(--muted);
  font-size:12px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.badge{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:12px;
}
