@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');
:root {
  --bg: #0c0a10;
  --card: #1e1a28;
  --mauve: #c084fc;
  --pink: #f472b6;
  --muted: #c4b5d8;
  --text: #f8f1ff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #0c0a10 0%, #15101c 100%);
  line-height: 1.65;
}
a { color: var(--mauve); text-decoration: none; }
a:hover { color: var(--pink); text-decoration: underline; }
.wrap { max-width: 820px; margin: 0 auto; padding: 1.25rem 1rem 3rem; }
header.bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem 0 1.25rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .65rem; color: var(--text); text-decoration: none; }
.brand:hover { text-decoration: none; color: var(--text); }
.brand img { width: 40px; height: 40px; border-radius: .75rem; object-fit: cover; }
.brand span { font-family: Poppins, Inter, sans-serif; font-weight: 700; font-size: 1.1rem; }
nav.links { display: flex; flex-wrap: wrap; gap: .5rem .85rem; font-size: .75rem; }
h1 {
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.65rem; margin: 0 0 .35rem; letter-spacing: -.02em;
}
.meta { color: var(--muted); font-size: .8rem; margin-bottom: 1.5rem; }
.card {
  background: rgba(30,26,40,.9);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.25rem;
  padding: 1.25rem 1.35rem 1.5rem;
}
h2 { font-size: 1.05rem; color: var(--pink); margin: 1.4rem 0 .55rem; }
h2:first-child { margin-top: .25rem; }
h3 { font-size: .95rem; color: var(--mauve); margin: 1rem 0 .4rem; }
p, li { font-size: .92rem; color: #e8dff5; }
ul { padding-left: 1.2rem; }
li { margin: .3rem 0; }
.note {
  font-size: .8rem; color: var(--muted);
  border-left: 3px solid var(--mauve);
  padding: .55rem .75rem; margin: 1rem 0;
  background: rgba(192,132,252,.08); border-radius: 0 .5rem .5rem 0;
}
footer.foot {
  margin-top: 2rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .75rem; color: var(--muted); text-align: center;
}
@media (max-width: 600px) {
  h1 { font-size: 1.35rem; }
  header.bar { flex-direction: column; align-items: flex-start; }
}
