/* ───────────── tokens ───────────── */
:root {
  --bg:        #0e0c0a;
  --bg-1:      #15120e;
  --bg-2:      #1c1813;
  --line:      #2a241c;
  --line-2:    #3a3327;
  --fg:        #ece4d2;
  --fg-1:      #c8bfa9;
  --mute:      #807868;
  --mute-2:    #5a5347;
  --accent:    oklch(0.80 0.135 75);
  --accent-d:  oklch(0.62 0.135 75);
  --accent-bg: oklch(0.80 0.135 75 / 0.12);
  --good:      oklch(0.78 0.13 145);
  --warn:      oklch(0.80 0.13 75);
  --idle:      oklch(0.55 0.01 75);
  --serif:     "Geist", ui-sans-serif, system-ui, sans-serif;
  --mono:      "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --col:       1080px;
  --gutter:    32px;
}
html.light {
  --bg:        #f5f1e8;
  --bg-1:      #ede7d8;
  --bg-2:      #e3dcc8;
  --line:      #d3cab5;
  --line-2:    #b9af96;
  --fg:        #1a1712;
  --fg-1:      #3a342a;
  --mute:      #6b6452;
  --mute-2:    #8e8674;
  --accent:    oklch(0.55 0.135 60);
  --accent-d:  oklch(0.45 0.135 60);
  --accent-bg: oklch(0.55 0.135 60 / 0.10);
}

/* ───────────── reset ───────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ───────────── layout ───────────── */
.shell { max-width: var(--col); margin: 0 auto; padding: 0 var(--gutter); }
section { border-top: 1px solid var(--line); }
section:first-of-type { border-top: 0; }

/* ───────────── nav ───────────── */
.nav {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(8px);
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  font-family: var(--mono);
  font-size: 13px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 500; letter-spacing: -0.01em; }
.brand-mark {
  width: 26px; height: 26px;
  display: block;
  flex: 0 0 26px;
}
.brand-mark .wire { stroke: var(--mute-2); stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; fill: none; }
.brand-mark .face { fill: var(--accent); }
.vault-mark { display: block; }
.vault-mark .wire { stroke: currentColor; stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; fill: none; opacity: 0.45; }
.vault-mark .face { fill: var(--accent); }
.brand-name { letter-spacing: 0.04em; }
.brand-tag {
  color: var(--mute);
  border-left: 1px solid var(--line-2);
  padding-left: 10px;
  margin-left: 4px;
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--mute); transition: color 120ms; }
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  color: var(--fg);
  font-size: 12.5px;
  transition: border-color 120ms, background 120ms;
}
.nav-cta:hover { border-color: var(--accent); background: var(--accent-bg); }

/* ───────────── hero ───────────── */
.hero { padding: 96px 0 88px; position: relative; overflow: hidden; }
.hero-tag {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: ""; width: 6px; height: 6px; background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}
.hero-lede {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-1);
  margin: 0 0 40px;
  text-wrap: pretty;
}
.hero-install {
  margin: 28px 0 32px;
  max-width: 720px;
}
.hero-install-row {
  display: flex; align-items: stretch;
  border: 1px solid var(--line);
  background: var(--bg-1);
  font-family: var(--mono);
}
.hero-install-row code {
  flex: 1;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--fg);
  background: transparent;
  border: none;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.hero-install-row code::before { content: "$ "; color: var(--mute); }
.hero-install-row .copy-btn {
  flex-shrink: 0;
  padding: 0 18px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--line);
  color: var(--mute);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 140ms;
}
.hero-install-row .copy-btn:hover { color: var(--accent); }
.hero-install-note {
  margin: 10px 2px 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
}
.hero-install-note code {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 1px 6px;
  font-size: 11.5px;
}
.hero-install-note a { color: var(--mute); text-decoration: underline; text-decoration-color: var(--line-2); }
.hero-install-note a:hover { color: var(--accent); text-decoration-color: var(--accent); }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  font-family: var(--mono);
  font-size: 13px;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  transition: all 140ms;
}
.btn-primary {
  background: var(--accent);
  color: #1a1408;
  border-color: var(--accent);
  font-weight: 500;
}
.btn-primary:hover { background: var(--accent-d); border-color: var(--accent-d); }
.btn:not(.btn-primary):hover { border-color: var(--accent); color: var(--accent); }
.btn .arrow { transition: transform 140ms; }
.btn:hover .arrow { transform: translateX(2px); }

.hero-meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 64px;
  font-family: var(--mono);
  font-size: 12px;
}
.hero-meta > div {
  background: var(--bg);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-meta dt { color: var(--mute); text-transform: uppercase; letter-spacing: 0.1em; font-size: 10.5px; }
.hero-meta dd { margin: 0; color: var(--fg); font-size: 13.5px; }

/* ───────────── thesis ───────────── */
.thesis { padding: 88px 0; position: relative; }
.kicker {
  font-family: var(--mono); font-size: 11px;
  color: var(--mute); text-transform: uppercase; letter-spacing: 0.18em;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.kicker::before, .kicker::after {
  content: ""; flex: 0 0 24px; height: 1px; background: var(--line-2);
}
.kicker::after { flex: 1; }
.kicker.center::before, .kicker.center::after { flex: 1; }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 780px;
  text-wrap: balance;
}
.section-lede {
  font-size: 16px;
  color: var(--fg-1);
  max-width: 680px;
  margin: 0 0 56px;
  line-height: 1.6;
  text-wrap: pretty;
}

.thesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.thesis-pair {
  display: flex; flex-direction: column; gap: 28px;
}
.thesis-card {
  border: 1px solid var(--line);
  padding: 28px;
  position: relative;
}
.thesis-card.assumed::before {
  content: "ASSUMED"; position: absolute; top: -1px; left: 28px;
  transform: translateY(-50%);
  background: var(--bg);
  color: var(--mute);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  padding: 0 8px;
}
.thesis-card.shipped::before {
  content: "WHAT HPCC SHIPS"; position: absolute; top: -1px; left: 28px;
  transform: translateY(-50%);
  background: var(--bg);
  color: var(--accent);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  padding: 0 8px;
}
.thesis-card.shipped { border-color: var(--accent); }
.thesis-card h3 {
  font-family: var(--mono); font-size: 12px;
  color: var(--mute); text-transform: uppercase; letter-spacing: 0.1em;
  margin: 0 0 14px;
}
.thesis-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
}
.thesis-card.assumed p { color: var(--fg-1); }
.thesis-card .hl {
  background: var(--accent-bg);
  color: var(--accent);
  padding: 1px 4px;
  border-bottom: 1px solid var(--accent);
}

.thesis-quote {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mute);
  line-height: 1.7;
  border-left: 2px solid var(--line-2);
  padding: 4px 0 4px 20px;
}
.thesis-quote em { color: var(--fg); font-style: normal; }

/* ───────────── comparison ───────────── */
.compare { padding: 88px 0; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table thead th {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mute);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 12px;
}
.compare-table thead th.us {
  color: var(--accent);
}
.compare-table tbody th {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--fg);
  width: 200px;
  letter-spacing: 0.02em;
}
.compare-table td.us {
  background: var(--accent-bg);
  border-left: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  color: var(--fg);
}
.compare-table tr:last-child td.us { border-bottom-color: var(--accent); }
.compare-table tr:first-child td.us { border-top: 1px solid var(--accent); }
.compare-table td {
  color: var(--fg-1);
  font-size: 13.5px;
}
.compare-table .badge {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid currentColor;
  margin-bottom: 6px;
}
.b-none { color: var(--mute-2); }
.b-soft { color: var(--mute); }
.b-strong { color: var(--accent); }

/* ───────────── features ───────────── */
.features { padding: 88px 0; background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feat {
  background: var(--bg-1);
  padding: 32px 28px 36px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: background 140ms;
}
.feat:hover { background: var(--bg-2); }
.feat-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--mute-2); letter-spacing: 0.1em;
}
.feat h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 18px; line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--fg);
}
.feat p {
  margin: 0;
  font-size: 13.5px; line-height: 1.55;
  color: var(--fg-1);
}
.feat code, .feat .mono {
  font-family: var(--mono); font-size: 12.5px;
  color: var(--accent);
  background: transparent;
}

/* ───────────── architecture ───────────── */
.arch { padding: 88px 0; }
.arch-stage {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 48px 32px 32px;
  position: relative;
}
.arch-svg { width: 100%; height: auto; display: block; }
.arch-legend {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px;
  color: var(--mute);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}
.arch-legend span { display: inline-flex; align-items: center; gap: 8px; }
.arch-legend .sw { width: 14px; height: 2px; }

/* ───────────── audit ───────────── */
.audit { padding: 88px 0; background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audit-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.audit-row {
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: var(--mono);
  font-size: 12.5px;
  overflow: hidden;
}
.audit-row .ar-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  color: var(--mute);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.audit-row .ar-head .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--good);
  margin-right: 8px;
  box-shadow: 0 0 8px var(--good);
}
.audit-row .ar-body {
  padding: 18px 14px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6px 16px;
  font-size: 12.5px;
}
.audit-row dt { color: var(--mute); }
.audit-row dd { margin: 0; color: var(--fg); word-break: break-all; }
.audit-row dd .hl { color: var(--accent); }
.audit-foot {
  border-top: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 11px;
  color: var(--mute);
  display: flex; justify-content: space-between;
}

.explain {
  font-family: var(--mono); font-size: 13px;
  background: var(--bg);
  border: 1px solid var(--line);
  margin-top: 24px;
}
.explain-head {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--mute); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.explain-body { padding: 14px; line-height: 1.65; }
.explain-body .prompt { color: var(--accent); }
.explain-body .ok { color: var(--good); }
.explain-body .miss { color: var(--warn); }
.explain-body .dim { color: var(--mute); }
/* ───────────── maintainer ───────────── */
.maint { padding: 72px 0 80px; }
.signoff {
  border: 1px solid var(--line);
  padding: 28px 32px;
  background: var(--bg-1);
  font-family: var(--mono);
  position: relative;
}
.signoff::before {
  content: "$ git log -1 --format=fuller";
  position: absolute; top: -1px; left: 24px;
  transform: translateY(-50%);
  background: var(--bg);
  color: var(--mute);
  font-size: 10.5px; letter-spacing: 0.1em;
  padding: 0 8px;
}
.signoff-line {
  display: flex; gap: 8px; flex-wrap: wrap;
  align-items: baseline;
  font-size: 14px;
  margin-bottom: 14px;
}
.so-key { color: var(--mute); }
.so-name { color: var(--fg); font-weight: 500; }
.so-mid { color: var(--mute); }
.so-mid a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 120ms; }
.so-mid a:hover { border-bottom-color: var(--accent); }
.signoff-bio {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-1);
  margin: 0 0 18px;
  max-width: 640px;
}
.signoff-bio em { color: var(--fg); font-style: italic; }
.signoff-bio a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.signoff-meta {
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 11px;
  color: var(--mute-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

/* ───────────── footer ───────────── */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 56px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
}
.foot-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px;
}
.foot-ascii {
  white-space: pre;
  line-height: 1.2;
  color: var(--mute-2);
  font-size: 10.5px;
}
.foot-meta { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.foot-meta a { color: var(--mute); transition: color 120ms; }
.foot-meta a:hover { color: var(--accent); }

/* ───────────── tweaks ───────────── */
.tweaks {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  width: 280px;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  font-family: var(--mono); font-size: 12px;
  display: none;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.tweaks[data-open="true"] { display: block; }
.tweaks-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--mute);
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px;
}
.tweaks-head button { color: var(--mute); font-size: 14px; line-height: 1; }
.tweaks-head button:hover { color: var(--fg); }
.tw-row {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.tw-row:last-child { border-bottom: 0; }
.tw-label { color: var(--mute); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.tw-swatches { display: flex; gap: 6px; }
.tw-sw {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--line-2);
  cursor: pointer;
  transition: transform 120ms;
}
.tw-sw:hover { transform: scale(1.08); }
.tw-sw[aria-selected="true"] { box-shadow: 0 0 0 2px var(--bg-1), 0 0 0 3px var(--fg); }
.tw-segment { display: flex; border: 1px solid var(--line-2); }
.tw-segment button {
  flex: 1; padding: 6px 0; font-size: 11px;
  color: var(--mute);
  border-right: 1px solid var(--line-2);
}
.tw-segment button:last-child { border-right: 0; }
.tw-segment button[aria-selected="true"] { background: var(--accent); color: #1a1408; }

@media (max-width: 920px) {
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .thesis-grid { grid-template-columns: 1fr; gap: 32px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .audit-block { grid-template-columns: 1fr; }
  .compare-table tbody th { width: 140px; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .hero { padding: 64px 0 56px; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 12px 10px; font-size: 12.5px; }
  .compare-table tbody th { width: 100px; font-size: 11.5px; }
  .tweaks { right: 12px; bottom: 12px; width: calc(100vw - 24px); max-width: 280px; }
}

/* ───────────── blog ───────────── */
.blog-index { padding: 96px 0 88px; }
.blog-list { list-style: none; padding: 0; margin: 48px 0 0; border-top: 1px solid var(--line); }
.blog-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.blog-item time {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-item h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.blog-item h2 a { color: var(--fg); transition: color 120ms; }
.blog-item h2 a:hover { color: var(--accent); }
.blog-item p { margin: 0; color: var(--fg-1); font-size: 14.5px; line-height: 1.55; }
.blog-empty {
  padding: 48px 0;
  text-align: center;
  color: var(--mute);
  font-family: var(--mono);
  font-size: 13px;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-top: 48px;
}

.post { padding: 96px 0 96px; }
.post-head { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.post-head time {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.post-head h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 16px 0 0;
  text-wrap: balance;
}
.post-body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--fg-1);
  max-width: 720px;
}
.post-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 48px 0 14px;
}
.post-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  color: var(--fg);
  margin: 32px 0 10px;
}
.post-body p { margin: 0 0 18px; }
.post-body a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.post-body code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 1px 6px;
  color: var(--fg);
}
.post-body pre {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 16px 18px;
  overflow-x: auto;
  line-height: 1.6;
  margin: 24px 0;
}
.post-body pre code { background: transparent; border: 0; padding: 0; font-size: 13px; }
.post-body blockquote {
  border-left: 2px solid var(--accent);
  margin: 24px 0;
  padding: 4px 0 4px 18px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--mute);
}
.post-body ul, .post-body ol { margin: 0 0 18px; padding-left: 22px; }
.post-body li { margin-bottom: 6px; }
.post-foot {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
}
.post-foot a { color: var(--accent); }
