:root {
    --bg: #0f1114;
    --surface: #171a20;
    --border: #2a3038;
    --text: #e8eaed;
    --muted: #9aa3ad;
    --accent: #c9a227;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: "Source Sans 3", system-ui, sans-serif;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text);
    background: var(--bg);
}
.wrap {
    max-width: 38rem;
    margin: 0 auto;
    padding: 2rem 1.25rem 3rem;
}
.back {
    margin: 0 0 1.5rem;
}
.back a {
    color: var(--muted);
    text-decoration: none;
}
.back a:hover { color: var(--text); }
h1 {
    font-family: "Crimson Pro", Georgia, serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--accent);
    margin: 0 0 1.25rem;
    letter-spacing: 0.02em;
}
.prose p {
    margin: 0 0 1rem;
    color: var(--muted);
}
.prose a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.prose a:hover {
    text-decoration: underline;
}
.prose h3 {
    font-family: "Crimson Pro", Georgia, serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text);
    margin: 1.5rem 0 0.5rem;
}
.prose h3:first-child {
    margin-top: 0;
}
.prose .package-file {
    display: block;
    width: fit-content;
    margin: 0 0 0.75rem;
}
.prose .release-notes-title {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin: 0.75rem 0 0.35rem;
}
.prose ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    color: var(--muted);
}
.prose li {
    margin-bottom: 0.35rem;
}
