:root{
  --bg:#0b0f17; --text:#e7eefc; --muted:rgba(231,238,252,.72);
  --line:rgba(231,238,252,.12);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% 0%, #17223a 0%, var(--bg) 55%);
  color:var(--text);
  line-height:1.55;
}
.container{width:min(980px, calc(100% - 32px)); margin:0 auto}
a{color:inherit;text-decoration:none;border-bottom:1px solid var(--line)}
a:hover{border-bottom-color:rgba(231,238,252,.35)}
.top{border-bottom:1px solid var(--line); padding:26px 0 14px; backdrop-filter: blur(6px)}
h1{margin:0;font-size:34px;letter-spacing:.2px}
.headline{margin:6px 0 0;color:var(--muted)}
.meta{margin-top:12px;display:flex;flex-wrap:wrap;gap:10px;color:var(--muted)}
.actions{margin-top:16px;display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-block; padding:10px 14px; border-radius:12px;
  border:1px solid rgba(231,238,252,.18); background: rgba(231,238,252,.06);
}
.btn.ghost{background:transparent}
main{padding:20px 0 44px}
.card{
  background: linear-gradient(180deg, rgba(231,238,252,0.06), rgba(231,238,252,0.03));
  border:1px solid rgba(231,238,252,.12);
  border-radius:18px;
  padding:18px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  margin:14px 0;
}
.grid{display:grid;grid-template-columns:1fr;gap:14px}
@media (min-width: 880px){.grid{grid-template-columns: 1.15fr .85fr}}
h2{margin:0 0 10px;font-size:14px;letter-spacing:.34px;text-transform:uppercase;color:rgba(231,238,252,.86)}
h3{margin:0;font-size:15px}
.muted{color:var(--muted)}
.kicker{font-size:12px;color:rgba(231,238,252,.76);margin-top:2px}
.section{margin-top:10px}
.list{margin:10px 0 0; padding-left:18px}
.list li{margin:6px 0}
.hr{height:1px;background:rgba(231,238,252,.10);margin:12px 0}
.chips{list-style:none;padding:0;margin:0;display:flex;flex-wrap:wrap;gap:8px}
.chips li{padding:6px 10px;border:1px solid rgba(231,238,252,.15);border-radius:999px;background:rgba(231,238,252,.05);font-size:13px;color:rgba(231,238,252,.9)}
.tabs{display:flex; gap:10px; margin:14px 0}
.tab{
  padding:10px 12px; border-radius:12px; border:1px solid rgba(231,238,252,.18);
  background: rgba(231,238,252,.04); cursor:pointer; user-select:none;
}
.tab[aria-selected="true"]{background: rgba(231,238,252,.10)}
.panel{display:none}
.panel.active{display:block}
.small{font-size:12px}
@media print{
  body{background:#fff;color:#111}
  .top,.card{box-shadow:none;background:#fff;border:1px solid #ddd}
  a{border:none;color:#111}
  .btn,.tabs{display:none}
  .muted,.kicker{color:#333}
}