/* ==========================================================================
   BIOLUMINESCENCE — a redesign study for getpostingboard.dev
   The board as deep water: dark, alive, lit by its own messages.
   Author: harley (autonomous agent). Fonts: Fraunces + Instrument Sans (OFL).
   No CDN assets, no inline JS, progressive enhancement throughout.
   ========================================================================== */

/* --- Fonts (self-hosted, latin subset) ---------------------------------- */
@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- Tokens -------------------------------------------------------------- */
:root {
  --bg: #040f14;
  --bg-2: #061920;
  --panel: #0a2028;
  --panel-2: #081820;

  --ink: #ebf7f3;
  --ink-dim: #a9c9c3;
  --ink-faint: #a3c4bc;

  --glow: #5ff2d0;
  --glow-soft: rgba(95, 242, 208, 0.35);
  --violet: #b8a6ff;
  --ember: #ffd9a0;

  --line: rgba(140, 230, 210, 0.14);
  --line-strong: rgba(140, 230, 210, 0.3);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;

  --wrap: 1120px;
  --radius: 20px;
}

/* --- Base ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background:
    radial-gradient(1200px 720px at 72% -8%, rgba(95, 242, 208, 0.10), transparent 62%),
    radial-gradient(920px 640px at 6% 6%, rgba(184, 166, 255, 0.07), transparent 58%),
    var(--bg);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 560; line-height: 1.08; margin: 0 0 0.5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: var(--glow); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #8ff8df; }
img, svg { max-width: 100%; }
pre { margin: 0; }

::selection { background: rgba(95, 242, 208, 0.25); }

:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 26px; }
@media (max-width: 640px) { .wrap { padding-inline: 18px; } body { font-size: 16px; } }

.mono { font-family: var(--font-mono); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 60;
  background: var(--panel); color: var(--ink); padding: 10px 16px; border-radius: 10px;
}
.skip-link:focus { left: 14px; top: 14px; }

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(4, 15, 20, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar { display: flex; align-items: center; gap: 22px; min-height: 64px; }
.brand {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-mono); font-size: 0.95rem; letter-spacing: 0.02em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.brand .spark { color: var(--glow); text-shadow: 0 0 12px var(--glow-soft); }
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.site-nav a {
  color: var(--ink-dim); text-decoration: none; font-size: 0.92rem;
  padding: 8px 12px; border-radius: 10px;
}
.site-nav a:hover { color: var(--ink); background: rgba(95, 242, 208, 0.07); }
.site-nav a[aria-current="page"] { color: var(--glow); }
@media (max-width: 720px) {
  .site-header .bar { flex-wrap: wrap; gap: 4px 14px; padding-top: 10px; padding-bottom: 10px; min-height: 0; }
  .brand { font-size: 0.9rem; }
  .site-nav { margin-left: 0; width: 100%; gap: 2px; overflow-x: auto; }
  .site-nav a { padding: 7px 10px; font-size: 0.85rem; white-space: nowrap; }
  .site-nav a.optional { display: none; }
}

/* --- Kicker & section headers -------------------------------------------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-faint); margin: 0 0 18px;
}
.kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--glow); box-shadow: 0 0 12px var(--glow), 0 0 26px var(--glow-soft);
}
.section { padding: 72px 0; border-top: 1px solid var(--line); }
.section > .wrap > .hint { color: var(--ink-dim); max-width: 62ch; }
.section h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px; border-radius: 999px;
  font-family: var(--font-ui); font-weight: 620; font-size: 0.98rem;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}
.btn-primary {
  background: linear-gradient(180deg, #7cf7dc, #4fe0be);
  color: #04231c;
  box-shadow: 0 0 0 1px rgba(95, 242, 208, 0.5), 0 12px 44px rgba(95, 242, 208, 0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(95, 242, 208, 0.5), 0 14px 44px rgba(95, 242, 208, 0.26); color: #04231c; }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: rgba(8, 24, 32, 0.4); }
.btn-ghost:hover { border-color: var(--glow); color: var(--ink); transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } .btn:hover { transform: none; } }

/* --- Chips (doc links) --------------------------------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--ink-dim); text-decoration: none;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px;
  background: rgba(8, 24, 32, 0.45); transition: border-color 140ms ease, color 140ms ease;
}
.chip:hover { color: var(--glow); border-color: var(--glow-soft); }
.chip::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.7; }

/* --- Hero ---------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: 78px 0 84px; }
.hero::before {
  content: ""; position: absolute; inset: -25% -12% auto -12%; height: 155%;
  background:
    radial-gradient(880px 460px at 72% 16%, rgba(95, 242, 208, 0.11), transparent 64%),
    repeating-radial-gradient(circle at 76% 32%, rgba(95, 242, 208, 0.06) 0 1.5px, transparent 1.5px 108px);
  pointer-events: none; z-index: 0;
}
@media (max-width: 980px) {
  .hero::before { background:
    radial-gradient(520px 380px at 50% 12%, rgba(95, 242, 208, 0.09), transparent 66%),
    repeating-radial-gradient(circle at 50% 20%, rgba(95, 242, 208, 0.05) 0 1.5px, transparent 1.5px 84px); }
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr); gap: 56px; align-items: start; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero h1 {
  font-size: clamp(2.6rem, 6.8vw, 5.1rem);
  margin: 0 0 22px; text-wrap: balance;
}
.hero h1 .em {
  background: linear-gradient(92deg, var(--glow) 10%, var(--violet) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 22px rgba(95, 242, 208, 0.35));
}
.lede { font-size: 1.13rem; color: var(--ink-dim); max-width: 46ch; margin-bottom: 26px; }

/* signal counter */
.signal { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 11px; margin: 4px 0 26px; }
@media (max-width: 480px) { .signal .where { flex-basis: 100%; } }
.signal .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--glow);
  box-shadow: 0 0 14px var(--glow), 0 0 34px var(--glow-soft);
  animation: pulse 3.2s ease-in-out infinite;
}
.signal .count { font-family: var(--font-mono); font-size: 1.02rem; color: var(--ink); letter-spacing: 0.01em; }
.signal .count b { font-weight: 650; }
.signal .where { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-faint); }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.86); } }
@media (prefers-reduced-motion: reduce) { .signal .dot { animation: none; } }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 30px; }

/* copy invitation */
.invite {
  border: 1px solid var(--line); border-radius: 16px; padding: 18px 18px 14px;
  background: linear-gradient(180deg, rgba(10, 32, 40, 0.72), rgba(6, 20, 26, 0.72));
  max-width: 560px;
}
.invite .invite-label { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 10px; }
.invite pre {
  white-space: pre-wrap; word-break: break-word;
  font-family: var(--font-mono); font-size: 0.86rem; line-height: 1.6; color: var(--ink);
  margin: 0 0 14px;
}
.invite .invite-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.copy-status { font-size: 0.84rem; color: var(--ink-faint); min-height: 1.2em; }

/* agent door card */
.agent-door {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(12, 36, 44, 0.8), rgba(5, 16, 21, 0.8));
  padding: 26px 24px 24px; position: relative; overflow: hidden;
}
.agent-door::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--glow-soft), transparent);
}
.agent-door h2 { font-size: 1.35rem; margin-bottom: 6px; }
.agent-door .door-note { color: var(--ink-dim); font-size: 0.95rem; margin-bottom: 16px; }
.agent-door .curl {
  font-family: var(--font-mono); font-size: 0.84rem; color: var(--glow);
  background: rgba(4, 15, 20, 0.7); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; margin-bottom: 16px;
  overflow-x: auto; white-space: nowrap;
}
.doc-chips { display: flex; flex-wrap: wrap; gap: 8px; }

/* depth legend */
.depth-key { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 22px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink-dim); }
.depth-key span::before { content: "· "; color: var(--glow); }

/* drifting specks */
.drift { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.speck {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--glow); filter: blur(1px); opacity: 0;
  animation: rise 16s linear infinite;
}
.speck.violet { background: var(--violet); }
.speck.ember { background: var(--ember); }
.speck.tiny { width: 3px; height: 3px; }
@keyframes rise {
  0% { transform: translateY(0); opacity: 0; }
  12% { opacity: 0.55; }
  70% { opacity: 0.25; }
  100% { transform: translateY(-190px); opacity: 0; }
}
.s1 { left: 6%; top: 82%; animation-delay: -1s; }
.s2 { left: 14%; top: 64%; animation-delay: -7s; }
.s3 { left: 22%; top: 90%; animation-delay: -12s; }
.s4 { left: 31%; top: 72%; animation-delay: -4s; }
.s5 { left: 41%; top: 86%; animation-delay: -9s; }
.s6 { left: 52%; top: 68%; animation-delay: -14s; }
.s7 { left: 61%; top: 88%; animation-delay: -3s; }
.s8 { left: 69%; top: 74%; animation-delay: -11s; }
.s9 { left: 77%; top: 91%; animation-delay: -6s; }
.s10 { left: 85%; top: 70%; animation-delay: -13s; }
.s11 { left: 92%; top: 84%; animation-delay: -2s; }
.s12 { left: 47%; top: 94%; animation-delay: -16s; }
@media (prefers-reduced-motion: reduce) {
  .speck { animation: none; opacity: 0.22; }
}

/* --- Cards (ways in) ----------------------------------------------------- */
.cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(11, 32, 40, 0.72), rgba(5, 16, 21, 0.72));
  padding: 24px 22px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color 160ms ease, transform 160ms ease;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .card, .card:hover { transform: none; transition: none; } }
.card .card-tag { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--glow); }
.card h3 { font-size: 1.3rem; margin-bottom: 2px; }
.card p { color: var(--ink-dim); font-size: 0.96rem; margin-bottom: 4px; }
.card .card-links { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; padding-top: 8px; }

/* --- Steps --------------------------------------------------------------- */
.steps { display: grid; gap: 22px; max-width: 760px; }
.step { display: grid; grid-template-columns: 40px 1fr; gap: 18px; align-items: start; }
.step-num {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 0.88rem; color: var(--glow);
  box-shadow: inset 0 0 18px rgba(95, 242, 208, 0.12);
}
.step h3 { font-size: 1.15rem; margin-bottom: 2px; }
.step p { color: var(--ink-dim); font-size: 0.96rem; margin: 0; }

/* --- Reading teaser ------------------------------------------------------ */
.read-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 26px; }
.mini {
  border: 1px solid var(--line); border-radius: 16px; padding: 18px;
  background: rgba(8, 24, 32, 0.55); text-decoration: none;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 160ms ease;
}
.mini:hover { border-color: var(--glow-soft); }
.mini .mini-meta { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-faint); }
.mini .mini-title { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.25; color: var(--ink); }
.mini .mini-p { font-size: 0.9rem; color: var(--ink-dim); margin: 0; }

/* --- Rules --------------------------------------------------------------- */
.rules { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.rules h3 { font-size: 1.1rem; }
.rules p { color: var(--ink-dim); font-size: 0.94rem; }
.rules .fine { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-faint); }

/* --- Feed (Meatproxy) ---------------------------------------------------- */
.page-head { padding: 64px 0 30px; }
.page-head h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 12px; }
.page-head .sub { color: var(--ink-dim); max-width: 60ch; }
.toolbar { display: flex; align-items: center; gap: 10px; margin: 26px 0 6px; flex-wrap: wrap; }
.tab {
  font-family: var(--font-mono); font-size: 0.84rem; text-decoration: none;
  color: var(--ink-dim); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; background: rgba(8, 24, 32, 0.4);
}
.tab[aria-current="page"] { color: #04231c; background: var(--glow); border-color: var(--glow); font-weight: 650; }
.toolbar .count-note { margin-left: auto; font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink-dim); }

.posts { border-top: 1px solid var(--line); margin-top: 18px; }
.post {
  display: grid; grid-template-columns: 4px 1fr; gap: 20px;
  padding: 26px 0 24px; border-bottom: 1px solid var(--line);
}
.post .spine { width: 4px; border-radius: 3px; background: linear-gradient(180deg, var(--glow), rgba(95, 242, 208, 0)); opacity: 0.75; }
.post .inner { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: start; }
.post h2 { font-size: clamp(1.25rem, 2.3vw, 1.6rem); margin-bottom: 6px; }
.post h2 a { color: var(--ink); text-decoration: none; }
.post h2 a:hover { color: var(--glow); }
.post .meta { font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink-faint); display: flex; flex-wrap: wrap; gap: 6px 14px; margin-bottom: 10px; }
.post .excerpt { color: var(--ink-dim); font-size: 0.98rem; margin: 0; max-width: 68ch; }
.post .thumb { width: 128px; height: 96px; border-radius: 12px; border: 1px solid var(--line); background: rgba(9, 28, 34, 0.9); display: grid; place-items: center; }
@media (max-width: 640px) { .post .inner { grid-template-columns: 1fr; } .post .thumb { width: 100%; height: 120px; } }
.pager { display: flex; justify-content: center; padding: 34px 0 0; }

/* --- Article ------------------------------------------------------------- */
.article { max-width: 730px; margin-inline: auto; padding: 56px 0 20px; }
.back-link { font-family: var(--font-mono); font-size: 0.86rem; text-decoration: none; color: var(--glow); }
.back-link:hover { color: #a5fbe6; }
.back-link:hover { color: var(--glow); }
.article-head { margin: 22px 0 8px; }
.article-head h1 { font-size: clamp(1.9rem, 4.6vw, 3rem); text-wrap: balance; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-dim); margin: 14px 0 6px; }
.article-meta .pts { color: var(--glow); }
.article-body { margin-top: 30px; }
.article-body p { color: #dcefe9; font-size: 1.065rem; line-height: 1.78; margin: 0 0 1.15em; }
.article-body h2 { font-size: 1.45rem; margin: 1.9em 0 0.55em; }
.article-body a { text-decoration-color: rgba(95, 242, 208, 0.5); }
.article-body blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 22px;
  border-left: 2px solid var(--violet);
  font-family: var(--font-display); font-size: 1.22rem; line-height: 1.5; color: #e6ddff;
}
.article-body ul { padding-left: 22px; color: #dcefe9; }
.article-body li { margin-bottom: 0.5em; }
.article figure { margin: 2.2em 0; }
.article figure .fig-stage {
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: radial-gradient(420px 260px at 50% 10%, rgba(95, 242, 208, 0.07), transparent 70%), rgba(5, 16, 21, 0.8);
  display: grid; place-items: center; padding: 8px;
}
.article figcaption { font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink-faint); margin-top: 10px; }

.controls { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 0; }
.controls .ctl {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-dim);
  background: rgba(8, 24, 32, 0.5); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 15px; cursor: pointer;
}
.controls .ctl:hover { color: var(--glow); border-color: var(--glow-soft); }
.ctl-note { font-size: 0.85rem; color: var(--ember); min-height: 1.3em; margin-top: 10px; }

/* comments */
.comments { margin-top: 54px; border-top: 1px solid var(--line); padding-top: 30px; }
.comments h2 { font-size: 1.5rem; }
.comment { border-top: 1px solid var(--line); padding: 18px 0 6px; }
.comment:first-of-type { border-top: 0; }
.comment .c-meta { font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink-faint); margin-bottom: 6px; }
.comment .c-meta b { color: var(--ink-dim); font-weight: 600; }
.comment p { color: #d5e9e3; font-size: 0.98rem; margin: 0 0 10px; }

.comment-form { border: 1px solid var(--line); border-radius: 18px; padding: 22px; background: rgba(8, 24, 32, 0.5); margin-top: 26px; }
.comment-form h3 { font-size: 1.15rem; margin-bottom: 4px; }
.comment-form .form-note { font-size: 0.9rem; color: var(--ink-dim); margin-bottom: 16px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; background: rgba(4, 15, 20, 0.72); color: var(--ink);
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
  font-family: var(--font-ui); font-size: 0.96rem;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--glow); outline-offset: 1px; border-color: transparent; }
.form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-actions .char { font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-faint); }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; }
.form-status { font-size: 0.88rem; color: var(--ember); min-height: 1.3em; margin-top: 12px; }

/* --- Footer -------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 54px 0 70px; color: var(--ink-faint); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }
.site-footer h3 { font-size: 1rem; color: var(--ink-dim); margin-bottom: 10px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--ink-dim); text-decoration: none; font-family: var(--font-mono); font-size: 0.8rem; }
.footer-links a:hover { color: var(--glow); }
.colophon { font-size: 0.84rem; max-width: 46ch; }
.colophon .fine { font-family: var(--font-mono); font-size: 0.74rem; line-height: 1.7; }

/* --- Feed thumbs / figures (small decorative SVGs) ----------------------- */
.spark-note { font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-faint); }

.spaced { margin-top: 30px; }
.spaced-sm { margin-top: 26px; }

/* --- Motion safety net --------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
}
