:root {
  --bg: #070b10;
  --bg-2: #0d141c;
  --panel: #101820;
  --line: #1c2c38;
  --text: #d7eef5;
  --muted: #7ea3b0;
  --cyan: #2ee9ff;
  --cyan-dim: #1498aa;
  --danger: #ff6b7a;
  --neon: #39ff14;
  --left: 36px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

.header-bar {
  background: #05080c;
  border-bottom: 1px solid var(--line);
  padding: 12px var(--left);
}
.header-bar-inner {
  max-width: var(--max);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header-brand {
  color: var(--cyan);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}
.header-brand:hover { text-decoration: none; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.pill {
  display: inline-block;
  border: 1px solid var(--neon);
  color: var(--neon);
  background: transparent;
  padding: 5px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
a.pill:hover {
  background: rgba(57, 255, 20, 0.12);
  color: #9dff7a;
  text-decoration: none;
}
.pill-time { min-width: 210px; text-align: center; }

.site-wrap {
  max-width: var(--max);
  margin: 0;
  padding: 22px var(--left) 64px;
}

.banner {
  border: 0;
  background: transparent;
  padding: 8px 0 18px;
  box-shadow: none;
}
.banner h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--cyan);
}
.banner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 18px 20px;
}

.sidebar {
  position: sticky;
  top: 16px;
  background: transparent;
  border: 0;
  padding: 4px 0 0;
}
.sidebar h2 {
  margin: 18px 0 8px;
  font-size: 13px;
  color: var(--cyan);
  text-transform: lowercase;
  letter-spacing: 0.06em;
}
.sidebar h2:first-child { margin-top: 0; }
.sidebar p { margin: 0 0 8px; }
.sidebar img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
  margin-bottom: 8px;
}

.entry h2, .admin h2 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--cyan);
  text-transform: lowercase;
}

.meta {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 12px;
}

.entry { margin-bottom: 16px; }
.entry h2 {
  font-size: 24px;
  text-transform: none;
  line-height: 1.25;
}
.entry-body { line-height: 1.7; font-size: 17px; max-width: 70ch; }
.entry-body p { margin: 0 0 12px; }
.entry-body img { max-width: 100%; height: auto; border: 1px solid var(--line); }
.entry-foot {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  color: var(--muted);
  font-size: 13px;
}

.mood { color: var(--cyan); }

.tags { margin: 10px 0 0; }
.tag {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 2px 8px;
  border: 1px solid var(--cyan-dim);
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.form label {
  display: block;
  margin: 12px 0 6px;
  color: var(--cyan-dim);
  font-size: 13px;
}
.form input[type="text"],
.form input[type="password"],
.form select,
.form textarea {
  width: 100%;
  max-width: 720px;
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 10px;
  font: inherit;
}
.form textarea { min-height: 260px; font-family: ui-monospace, monospace; font-size: 14px; }

.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  border: 1px solid var(--cyan-dim);
  background: #082228;
  color: var(--cyan);
  padding: 8px 14px;
  cursor: pointer;
  font: inherit;
}
.btn:hover { background: #0c333d; text-decoration: none; }
.btn.danger { border-color: var(--danger); color: var(--danger); }

.flash {
  background: #0c2a24;
  border: 1px solid var(--cyan-dim);
  color: var(--cyan);
  padding: 8px 12px;
  margin-bottom: 12px;
}
.error { color: var(--danger); }
.hint { color: var(--muted); font-size: 13px; }

.preview {
  min-height: 160px;
  border: 1px dashed var(--line);
  padding: 12px;
  background: #0a1218;
  max-width: 720px;
}

.table { width: 100%; border-collapse: collapse; }
.table td, .table th {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.qr {
  display: block;
  width: 220px;
  height: 220px;
  background: white;
  padding: 8px;
  margin: 10px 0;
}

@media (max-width: 800px) {
  :root { --left: 16px; }
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 8px; }
  .header-bar-inner { flex-wrap: wrap; }
}

.issue {
  border: 1px solid var(--line);
  padding: 10px;
  margin: 0 0 10px;
  background: #0a1218;
  max-width: 720px;
}

.pill-danger {
  border-color: var(--danger);
  color: var(--danger);
}
button.pill {
  cursor: pointer;
  font: inherit;
}
a.pill.pill-danger:hover,
button.pill-danger:hover {
  background: rgba(255, 107, 122, 0.12);
  color: #ff8b97;
}

.title-input {
  width: 100%;
  max-width: none;
  font-size: 28px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  padding: 8px 0 12px;
  margin: 0 0 14px;
  font-family: Georgia, serif;
}
.editor-toolbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 0 10px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.toolbar-tabs { margin-left: auto; display: flex; gap: 6px; }
.tab-on {
  background: rgba(57, 255, 20, 0.14);
}
.editor-page {
  min-height: 420px;
  max-width: 720px;
  background: #0c1218;
  border: 1px solid var(--line);
  padding: 28px 32px;
  line-height: 1.7;
  font-size: 18px;
  outline: none;
}
.editor-page:focus { border-color: var(--cyan-dim); }
.editor-page h1, .editor-page h2, .editor-page h3 { color: var(--cyan); }
.editor-page img { max-width: 100%; height: auto; }
.editor-page blockquote {
  border-left: 3px solid var(--cyan-dim);
  margin: 0 0 12px;
  padding: 0 0 0 12px;
  color: var(--muted);
}
.source-box {
  min-height: 420px;
  max-width: 720px;
}
.details-box {
  max-width: 720px;
  margin: 18px 0;
  border: 1px solid var(--line);
  padding: 8px 12px;
}
.details-box summary { cursor: pointer; color: var(--cyan); }
.editor-actions { margin-top: 16px; }

.office { max-width: 980px; }
.office-menubar,
.office-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  background: #1a222b;
  border: 1px solid #2a3640;
  padding: 4px 6px;
}
.office-menubar { border-bottom: 0; }
.office-toolbar { margin-bottom: 16px; }
.office-menubar a,
.office-menubar button,
.office-toolbar button {
  appearance: none;
  background: transparent;
  border: 1px solid transparent;
  color: #d7eef5;
  padding: 5px 9px;
  font: 13px "Segoe UI", "Liberation Sans", sans-serif;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
}
.office-menubar a:hover,
.office-menubar button:hover,
.office-toolbar button:hover {
  background: #2a3640;
  text-decoration: none;
}
.office-toolbar button.tab-on { background: #2f4a3a; }
.office-danger { color: var(--danger) !important; }
.office-sep {
  width: 1px;
  height: 18px;
  background: #3a4a55;
  margin: 0 6px;
}
.paper-wrap {
  background: #141a20;
  padding: 20px 12px 28px;
}
.paper {
  width: min(720px, 100%);
  margin: 0 auto;
  background: #f7f4ee;
  color: #1a1a1a;
  min-height: 640px;
  padding: 48px 56px 72px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.paper-title {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d7d1c6;
  background: transparent;
  color: #111;
  font: 32px Georgia, "Times New Roman", serif;
  padding: 0 0 10px;
  margin: 0 0 18px;
}
.paper-title::placeholder { color: #9a948a; }
.paper-body {
  min-height: 480px;
  outline: none;
  font: 18px/1.7 Georgia, "Times New Roman", serif;
  color: #1a1a1a;
}
.paper-body h1, .paper-body h2, .paper-body h3 { color: #111; margin: 0 0 12px; }
.paper-body a { color: #0b57d0; }
.paper-body img { max-width: 100%; height: auto; }
.paper-body blockquote {
  border-left: 3px solid #c4b8a4;
  margin: 0 0 12px;
  padding: 0 0 0 12px;
  color: #555;
}
.paper-source {
  width: 100%;
  min-height: 480px;
  background: #f7f4ee;
  color: #1a1a1a;
  border: 0;
  font: 15px/1.5 ui-monospace, monospace;
}

.paper-wrap {
  background: #0b1016;
  padding: 20px 12px 28px;
}
.paper {
  width: min(720px, 100%);
  margin: 0 auto;
  background: #121a22;
  color: #d7eef5;
  min-height: 640px;
  padding: 48px 56px 72px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  border: 1px solid #1c2c38;
}
.paper-title {
  width: 100%;
  max-width: none;
  border: 0 !important;
  border-bottom: 1px solid #1c2c38 !important;
  background: transparent !important;
  color: #2ee9ff !important;
  font: 32px Georgia, "Times New Roman", serif;
  padding: 0 0 10px;
  margin: 0 0 18px;
}
.paper-title::placeholder { color: #5e7b86; }
.paper-body {
  min-height: 480px;
  outline: none;
  font: 18px/1.7 Georgia, "Times New Roman", serif;
  color: #d7eef5;
}
.paper-body h1, .paper-body h2, .paper-body h3 { color: #2ee9ff; margin: 0 0 12px; }
.paper-body a { color: #2ee9ff; }
.paper-body img { max-width: 100%; height: auto; }
.paper-body blockquote {
  border-left: 3px solid #1498aa;
  margin: 0 0 12px;
  padding: 0 0 0 12px;
  color: #7ea3b0;
}
.paper-source {
  width: 100%;
  max-width: none;
  min-height: 480px;
  background: #121a22 !important;
  color: #d7eef5 !important;
  border: 0 !important;
  font: 15px/1.5 ui-monospace, monospace;
}

.office-toolbar button {
  width: 32px;
  height: 28px;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.office-toolbar button#tabwrite,
.office-toolbar button#tabsource {
  width: auto;
  padding: 4px 8px;
}
.office-toolbar svg {
  width: 16px;
  height: 16px;
  fill: #d7eef5;
  display: block;
}
.office-toolbar button:hover svg { fill: #2ee9ff; }
.office-toolbar button.tab-on svg { fill: #39ff14; }

.wordcount { margin-left: auto; color: #7ea3b0; font: 12px "Segoe UI", sans-serif; padding: 0 8px; }
.citebox {
  max-width: 720px;
  background: #101820;
  border: 1px solid #1c2c38;
  padding: 12px;
  margin: 0 0 12px;
}
.citebox label { display: block; margin: 8px 0; color: #7ea3b0; font-size: 13px; }
.citebox input, .citebox select { width: 100%; }
.paper-body .fn-ref { color: #2ee9ff; font-size: 0.75em; }
.paper-body .footnotes {
  margin-top: 28px;
  padding-top: 12px;
  border-top: 1px solid #1c2c38;
  font-size: 0.92em;
  color: #7ea3b0;
}
.entry-body .footnote, .entry-body .footnotes { color: #7ea3b0; font-size: 0.92em; }

.lede {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
}
.layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: 16px;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.sidebar p { margin: 0 0 8px; }
.side-name { color: var(--text); font-weight: bold; }
.side-label {
  margin: 18px 0 6px;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}
.entry {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0 0 28px;
  margin: 0 0 28px;
}
.entry h2 {
  margin: 0 0 6px;
  font-size: 26px;
  text-transform: none;
  color: var(--cyan);
}
.entry h2 a { color: var(--cyan); text-decoration: none; }
.entry h2 a:hover { text-decoration: underline; }
.entry-body {
  line-height: 1.75;
  font-size: 17px;
  max-width: 68ch;
}
.entry-body blockquote {
  border-left: 3px solid var(--cyan-dim);
  margin: 0 0 14px;
  padding: 0 0 0 14px;
  color: var(--muted);
}
.entry-body img { max-width: 100%; height: auto; }
.entry-body .footnotes,
.entry-body .footnote {
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92em;
}
.entry-foot {
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
  color: var(--muted);
  font-size: 13px;
}
.quiet-actions a,
.text-btn {
  background: none;
  border: 0;
  color: var(--muted);
  padding: 0;
  margin-right: 12px;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}
.quiet-actions a:hover,
.text-btn:hover { color: var(--cyan); }
.danger-text { color: var(--muted); }
.danger-text:hover { color: var(--danger); }
.tag {
  border-color: var(--line);
}

.entry {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 22px 24px 18px;
  margin: 0 0 18px;
}
.pager { margin: 8px 0 24px; }
.pill-off {
  opacity: 0.35;
  pointer-events: none;
}

.entry {
  background: #121a22;
  border: 1px solid #24313c;
  border-radius: 12px;
  padding: 22px 24px 18px;
  margin: 0 0 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}
.entry h2 { letter-spacing: 0.01em; }

.wx-row { display: flex; flex-wrap: wrap; gap: 10px; }
.wx-card {
  width: 140px;
  background: #0e161d;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
}
.wx-now { display: flex; gap: 12px; align-items: center; margin: 12px 0; }
.wx-alerts { margin: 12px 0; }
.wx-alert {
  border: 1px solid #6b3a22;
  background: #1a100c;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 0 0 10px;
}
.radar-text { max-width: 68ch; line-height: 1.6; }
.wx-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1c2c38;
  position: relative;
}
.wx-sunny { background: radial-gradient(circle at 50% 50%, #ffd56a, #c47b12 70%); }
.wx-partly { background: radial-gradient(circle at 30% 30%, #ffd56a 0 28%, #4d6470 40%, #2a3b46 70%); }
.wx-cloudy { background: linear-gradient(#6d8190, #3a4a55); }
.wx-rain { background: linear-gradient(#3a4a55, #1b3a55); }
.wx-tstorm { background: linear-gradient(#2a3340, #5b3ea1); }
.wx-snow { background: linear-gradient(#d7eef5, #7ea3b0); }
.wx-fog { background: linear-gradient(#7ea3b0, #3a4a55); }
.wx-wind { background: linear-gradient(#1498aa, #0d141c); }
.wx-unknown { background: #1c2c38; }

.wx-hero { display: flex; gap: 18px; align-items: center; margin-bottom: 16px; }
.wx-hero-icon { width: 96px; height: 96px; image-rendering: auto; }
.wx-temp { font-size: 34px; margin: 6px 0; color: var(--text); }
.wx-temp span { font-size: 18px; color: var(--muted); }
.wx-row { display: flex; flex-wrap: wrap; gap: 10px; }
.wx-card {
  width: 132px;
  background: #121a22;
  border: 1px solid #24313c;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}
.wx-card img { width: 52px; height: 52px; }
.wx-card-temp { font-size: 20px; margin: 4px 0; }
.wx-card-slim { width: 88px; }
.wx-radar {
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.wx-alert {
  border: 1px solid #8a4b2a;
  background: #1a100c;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 0 0 10px;
}
.radar-text { max-width: 68ch; line-height: 1.65; }

.entry-body img, .paper-body img { cursor: zoom-in; }
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.82);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: min(96vw, 1400px);
  max-height: 94vh;
  border: 1px solid #24313c;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  cursor: zoom-out;
}

.site-rail {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 220px;
  background: #080c11;
  border-right: 1px solid #1c2c38;
  padding: 22px 16px 28px;
  overflow-y: auto;
  z-index: 50;
}
.rail-brand {
  display: block;
  color: var(--cyan);
  font-family: "Segoe UI", "Liberation Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.rail-brand:hover { text-decoration: none; color: #7af6ff; }
.rail-sub { color: var(--muted); font-size: 12px; margin: 4px 0 18px; letter-spacing: 0.06em; }
.rail-label {
  margin: 18px 0 6px;
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rail-link {
  display: block;
  color: #9eb8c2;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Segoe UI", "Liberation Sans", sans-serif;
}
.rail-link:hover { background: #121a22; color: var(--cyan); text-decoration: none; }
.rail-link.on { background: #102028; color: var(--cyan); }
.rail-about {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #1c2c38;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.rail-about img { max-width: 100%; height: auto; border-radius: 8px; margin-bottom: 8px; }
.header-bar, .site-wrap { margin-left: 220px; }
.layout { grid-template-columns: minmax(0, 1fr); }
@media (max-width: 800px) {
  .site-rail { position: static; width: auto; height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .header-bar, .site-wrap { margin-left: 0; }
}

.header-bar {
  padding: 10px 20px;
}
.header-bar-inner {
  max-width: none;
}
.station-id, .station-clocks {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Segoe UI", "Liberation Sans", sans-serif;
  font-size: 13px;
  color: #c5dbe3;
  letter-spacing: 0.04em;
}
.station-id span:first-child {
  color: var(--cyan);
  font-weight: 700;
}
.station-place { color: var(--muted); }
.station-id .sep, .station-clocks .sep {
  width: 1px;
  height: 14px;
  background: #2a3b46;
}
.station-clocks strong {
  color: var(--text);
  font-weight: 600;
  margin-left: 6px;
}

.rail-nav { margin-top: 36px; }

.rail-brand {
  display: block;
  text-align: center;
  color: var(--cyan);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 18px 0 8px;
}
.rail-sub { text-align: center; margin: 0 0 16px; }
.rail-about {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
  text-align: center;
}
.rail-nav {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #1c2c38;
}

.rail-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  text-decoration: none;
  padding: 16px 0 10px;
}
.rail-brand span {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
}
.rail-brand:hover { color: #7af6ff; text-decoration: none; }
.orthodox-cross {
  width: 28px;
  height: 42px;
  color: var(--cyan);
  display: block;
}

.orthodox-cross {
  filter:
    drop-shadow(0 0 4px #2ee9ff)
    drop-shadow(0 0 10px rgba(46, 233, 255, 0.55));
}
.rail-about p {
  text-align: center;
  color: #8aa8b3;
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.entry { width: 90%; max-width: 90%; }

.settings-card { width: min(720px, 90%); max-width: 720px; }
.settings-card h3 { margin-top: 0; color: var(--cyan); }

.dash-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-family: "Segoe UI", "Liberation Sans", sans-serif;
  letter-spacing: 0.08em;
}
.dash-bar a {
  color: #8aa8b3;
  text-decoration: none;
  padding: 4px 2px;
}
.dash-bar a.on, .dash-bar a:hover { color: var(--cyan); }
.dash-dot { color: #2a3b46; }

.wx-row-center { justify-content: center; }

.roadmap .road-progress { margin: 1rem 0 1.5rem; }
.roadmap .road-progress-top { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--muted); }
.roadmap .road-bar { height: 8px; background: #123; border-radius: 99px; overflow: hidden; margin-top: 0.4rem; }
.roadmap .road-bar i { display: block; height: 100%; background: var(--cyan); }
.roadmap .road-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.roadmap .road-list li { display: flex; gap: 0.6rem; align-items: flex-start; padding: 0.28rem 0; }
.roadmap .pill { flex: 0 0 4.6rem; text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; border-radius: 6px; padding: 0.15rem 0.3rem; }
.roadmap .pill.done { background: #14532d; color: #86efac; }
.roadmap .pill.planned { background: #1f2937; color: #cbd5e1; }
.roadmap .pill.parked { background: #3b0764; color: #e9d5ff; }
.roadmap .pill.rejected { background: #7f1d1d; color: #fecaca; }
