:root {
  --bg: #0f1218;
  --surface: #171c25;
  --text: #f3f2ef;
  --muted: #c8cdd8;
  --border: #2a3240;
  --accent: #f0b44a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  background: linear-gradient(180deg, #151922 0%, #0f1218 100%);
  color: var(--text);
}
main { width: min(900px, calc(100% - 2rem)); margin: 2rem auto 3rem; }
.card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(17,24,33,.88), rgba(12,18,25,.95));
}
h1 { margin: 0; font-family: Sora, system-ui, sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-family: Sora, system-ui, sans-serif; margin-top: 1.4rem; }
p, li { color: var(--muted); line-height: 1.55; }
a { color: var(--accent); text-decoration: none; }
ul { padding-left: 1.1rem; }
.top { margin-bottom: 1rem; display: flex; justify-content: space-between; gap: .6rem; flex-wrap: wrap; }
.badge { border: 1px solid var(--border); border-radius: 999px; padding: .3rem .7rem; font-size: .875rem; }
