:root {
  --bg: #0a0e24;
  --chrome: #12162e;
  --text-primary: #f5f6fa;
  --text-secondary: #9099b3;
  --text-tertiary: #7d859e;
  --border: rgba(255, 255, 255, 0.12);
  --accent: #5b8def;
  --live-bg: rgba(99, 201, 140, 0.15);
  --live-text: #63c98c;
  --draft-bg: rgba(239, 159, 39, 0.15);
  --draft-text: #e0a94a;
  --mono: "SF Mono", "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;
  --sans: -apple-system, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--sans);
  line-height: 1.6;
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.crumb {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.5px solid var(--border);
}

.crumb a.home { color: var(--accent); text-decoration: none; }
.crumb a.home:hover { text-decoration: underline; }

h1 {
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 8px;
}

.subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 2rem;
  max-width: 52ch;
}

.entries {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.entry-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.entry-title a {
  font-size: 15px;
  color: var(--text-primary);
  text-decoration: none;
}

.entry-title a:hover { color: var(--accent); }

.entry-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 2px;
  max-width: 56ch;
}

.pill {
  font-family: var(--mono);
  font-size: 11px;
  padding: 1px 7px;
  border-radius: 4px;
}

.pill.live { background: var(--live-bg); color: var(--live-text); }
.pill.draft { background: var(--draft-bg); color: var(--draft-text); }

.intro {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 60ch;
}

/* Article body */
article {
  font-size: 15px;
  font-weight: 300;
  color: #c7cbd6;
  line-height: 1.8;
  letter-spacing: 0.1px;
  max-width: 60ch;
}

article h3 {
  color: #8fa3c4;
  font-size: 15px;
  font-weight: 500;
  margin: 2rem 0 0.6rem;
}

.changelog {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--border);
  font-family: var(--mono);
  font-size: 12px;
}

.changelog summary {
  cursor: pointer;
  color: var(--text-secondary);
  list-style: none;
}

.changelog .entries-log {
  margin-top: 8px;
  padding-left: 14px;
  border-left: 0.5px solid var(--border);
  color: var(--text-tertiary);
  line-height: 1.7;
}

.comments {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--border);
}

.comments-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.comments-embed {
  border: 0.5px dashed rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 1.25rem;
  font-size: 12px;
  color: #5f677e;
  font-family: var(--mono);
  text-align: center;
}
