:root {
  --bg: #08090c;
  --bg2: #0d1018;
  --bg3: #121620;
  --border: #1e2535;
  --acid: #ffb400;
  --acid-dim: rgba(255,180,0,0.12);
  --acid-mid: rgba(255,180,0,0.35);
  --text: #dde2ec;
  --text-dim: #6b7591;
  --text-mid: #9aa3bc;
  --red: #ff3c5c;
  --cyan: #00d4ff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 18px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ─── SCANLINES ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.06) 2px,
    rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
  z-index: 9998;
}

a { color: inherit; text-decoration: none; }

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,9,12,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Fragment Mono', monospace;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-bee { font-size: 1.1rem; }
.logo-pc { color: var(--text); }
.logo-sauga {
  color: var(--acid);
  text-shadow: 0 0 20px rgba(255,180,0,0.5);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

nav a {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.4rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: all 0.2s;
}

nav a:hover {
  color: var(--acid);
  border-color: var(--acid-mid);
  background: var(--acid-dim);
}

nav a.active {
  color: var(--acid);
  border-color: var(--acid-mid);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 1rem;
  transition: all 0.2s;
}

.search-btn:hover {
  border-color: var(--acid-mid);
  color: var(--acid);
  background: var(--acid-dim);
}

/* ─── TICKER ─── */
.ticker {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  height: 36px;
  display: flex;
  align-items: center;
}

.ticker-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--acid);
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.ticker-scroll-area {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  padding-left: 2rem;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-track span {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-dim);
  padding: 0 2.5rem;
}

.ticker-track span a:hover {
  color: var(--acid) !important;
}

.ticker-track span::before {
  content: '//';
  color: var(--acid);
  margin-right: 0.75rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── HERO / FEATURED ─── */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.5rem;
  align-items: start;
}

.hero-main {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg2);
  transition: border-color 0.3s;
}

.hero-main:hover { border-color: var(--acid-mid); }

.hero-image {
  width: 100%;
  aspect-ratio: 16/8;
  background: linear-gradient(135deg, #0d1a2e 0%, #0d2232 40%, #1a0d2e 100%);
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(0,212,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,180,0,0.06) 0%, transparent 50%);
}

.hero-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--red);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.hero-circuit-text {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  font-family: 'Fragment Mono', monospace;
  font-size: 0.6rem;
  color: rgba(255,180,0,0.3);
  line-height: 1.6;
  text-align: right;
}

.hero-body {
  padding: 1.75rem 2rem 2rem;
}

.hero-category {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: 'Crimson Pro', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.hero-title em {
  font-style: italic;
  color: var(--acid);
}

.hero-excerpt {
  color: var(--text-mid);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-dim);
}

.hero-meta-dot { color: var(--acid); }

/* ─── HERO SIDEBAR LIST ─── */
.hero-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg2);
}

.hero-list-header {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg3);
}

.hero-list-item {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hero-list-item:last-child { border-bottom: none; }
.hero-list-item:hover { background: rgba(255,255,255,0.02); }

.hero-list-num {
  font-family: 'Fragment Mono', monospace;
  font-size: 0.7rem;
  color: var(--acid);
  opacity: 0.6;
  min-width: 20px;
  margin-top: 3px;
}

.hero-list-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.hero-list-title {
  font-family: 'Crimson Pro', serif;
  font-size: 1.0rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.hero-list-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  color: var(--text-dim);
}

/* ─── MAIN LAYOUT ─── */
.main-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

/* ─── SECTION HEADER ─── */
.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.section-title-accent {
  width: 24px;
  height: 2px;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}

/* ─── POSTS GRID ─── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.post-card {
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  background: var(--bg2);
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  border-color: var(--acid-mid);
  transform: translateY(-2px);
}

.post-card-thumb {
  aspect-ratio: 16/8;
  position: relative;
  overflow: hidden;
}

.thumb-bg-1 { background: linear-gradient(135deg, #0d1a1a 0%, #0d2418 100%); }
.thumb-bg-2 { background: linear-gradient(135deg, #1a0d1a 0%, #2a0d1a 100%); }
.thumb-bg-3 { background: linear-gradient(135deg, #0d1218 0%, #0a1528 100%); }
.thumb-bg-4 { background: linear-gradient(135deg, #1a1200 0%, #1a1a0d 100%); }

.post-card-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
}

.thumb-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  opacity: 0.25;
}

.post-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-category {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cat-red { color: var(--red); }
.cat-cyan { color: var(--cyan); }
.cat-acid { color: var(--acid); }
.cat-purple { color: #b47fff; }

.post-card-title {
  font-family: 'Crimson Pro', serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0.6rem;
  flex: 1;
}

.post-card-excerpt {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: auto;
}

.read-more {
  color: var(--acid);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

/* ─── WIDE POST ─── */
.post-card.wide {
  grid-column: 1 / -1;
  flex-direction: row;
}

.post-card.wide .post-card-thumb {
  width: 280px;
  min-width: 280px;
  aspect-ratio: unset;
}

.page-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.page-content h1, .page-content h2, .page-content h3 {
  font-family: 'Crimson Pro', serif;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content h1 { font-size: 2rem; }
.page-content h2 { font-size: 1.6rem; }
.page-content h3 { font-size: 1.25rem; }

.page-content p { margin-bottom: 1.25rem; }

.page-content code {
  font-family: 'Fragment Mono', monospace;
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  font-size: 0.85rem;
  color: var(--acid);
}

.page-content pre {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.page-content pre code {
  background: none;
  border: none;
  padding: 0;
}

.page-content img {
  max-width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.page-content blockquote {
  border-left: 3px solid var(--acid);
  padding-left: 1.25rem;
  color: var(--text-dim);
  font-style: italic;
  margin: 1.5rem 0;
}

.page-content ul, .page-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.page-content li { margin-bottom: 0.4rem; }

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-mid);
}

.page-content thead {
  background: var(--bg3);
}

.page-content th {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acid);
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  text-align: left;
  font-weight: 700;
}

.page-content td {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  vertical-align: top;
}

.page-content tr:nth-child(even) {
  background: rgba(255,255,255,0.015);
}

.page-content tr:hover {
  background: rgba(255,180,0,0.04);
}

.page-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ─── SIDEBAR ─── */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-widget {
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  background: var(--bg2);
}

.widget-header {
  padding: 0.75rem 1.25rem;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.widget-header::before {
  content: '>';
  color: var(--acid);
  font-size: 0.7rem;
}

.widget-body { padding: 1.1rem 1.25rem; }

.cat-list { display: flex; flex-direction: column; gap: 0; }

.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.2s;
}

.cat-item:last-child { border-bottom: none; }
.cat-item:hover .cat-item-name { color: var(--acid); }

.cat-item-name {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-mid);
  transition: color 0.2s;
}

.cat-count {
  font-family: 'Fragment Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-dim);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 0.1rem 0.5rem;
  border-radius: 2px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}

.tag:hover {
  color: var(--acid);
  border-color: var(--acid-mid);
  background: var(--acid-dim);
}

.about-widget {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
}

.about-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg3), var(--border));
  border: 2px solid var(--acid-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 20px rgba(255,180,0,0.1);
}

.about-name {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.subscribe-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.subscribe-input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.55rem 0.75rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--text);
  outline: none;
  margin-bottom: 0.6rem;
  transition: border-color 0.2s;
}

.subscribe-input:focus { border-color: var(--acid-mid); }
.subscribe-input::placeholder { color: var(--text-dim); }

.subscribe-btn {
  width: 100%;
  background: var(--acid);
  border: none;
  border-radius: 3px;
  padding: 0.6rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  cursor: pointer;
  font-weight: 700;
  transition: opacity 0.2s;
}

.subscribe-btn:hover { opacity: 0.85; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: 'Fragment Mono', monospace;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.social-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--acid-mid);
  color: var(--acid);
  background: var(--acid-dim);
}

.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-link {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--acid);
  opacity: 0;
  transition: opacity 0.2s;
}

.footer-link:hover { color: var(--text); }
.footer-link:hover::before { opacity: 1; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--text-dim);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 6px var(--acid);
  display: inline-block;
  margin-right: 0.5rem;
  animation: blink 2s infinite;
}

.glitch-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(255,60,92,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  background: rgba(255,60,92,0.06);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .main-layout { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-card.wide { flex-direction: column; }
  .post-card.wide .post-card-thumb { width: 100%; aspect-ratio: 16/8; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .header-inner { flex-wrap: wrap; height: auto; padding: 0.75rem 1rem; }
  nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  nav a { font-size: 0.65rem; padding: 0.3rem 0.5rem; }
}

/* Footnotes */
.footnotes {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.footnotes hr { display: none; }
.footnotes ol {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-dim);
  padding-left: 1.2rem;
}
.footnotes ol li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.footnotes ol li p {
  margin: 0;
  display: inline;
}
.footnotes ol li a {
  color: var(--acid);
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 255, 0, 0.2);
  transition: border-color 0.2s;
}
.footnotes ol li a:hover {
  border-bottom-color: var(--acid);
}
.footnotes ol li a.footnote-backref {
  color: var(--text-dim);
  font-size: 0.75rem;
  margin-left: 0.3rem;
  border-bottom: none;
}
sup a.footnote-ref {
  color: var(--acid);
  text-decoration: none;
  font-size: 0.65rem;
  font-family: 'Space Mono', monospace;
  border-bottom: 1px solid rgba(180, 255, 0, 0.2);
}
sup a.footnote-ref:hover {
  border-bottom-color: var(--acid);
}
