/* Infiniterb — black/white duality, one red accent */
:root {
  --bg: #0a0a0c;
  --bg-soft: #121215;
  --ink: #f2efe8;
  --muted: #a09c93;
  --faint: #6b6862;
  --red: #ff3b30;
  --line: rgba(242, 239, 232, 0.14);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--red); color: #fff; }

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- nav ---------- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}
.brand span {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 15px;
}
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { border-bottom: 1px solid var(--red); padding-bottom: 2px; }

/* ---------- hero ---------- */
.hero {
  text-align: center;
  padding: 9vh 0 6vh;
}
.wordmark {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(3.4rem, 13vw, 8.5rem);
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
}
.erb-red { color: var(--red); }
.tagline {
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 14px;
}
.tagline .heart { color: var(--red); }

/* ---------- mission ---------- */
.mission {
  padding: 6vh 0;
  text-align: center;
}
.kicker {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 26px;
  padding-left: 0.3em;
}
.mission p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  line-height: 1.85;
  font-weight: 300;
}
.mission p + p { margin-top: 1.2em; }
.mission .dark { color: var(--muted); }
.mission .light { color: var(--ink); }
.mission .heart { color: var(--red); font-style: normal; }

/* ---------- daily erb ---------- */
.daily {
  padding: 4vh 0 7vh;
}
.erb-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
  background: var(--bg-soft);
  position: relative;
}
.erb-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.erb-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 22px;
  padding-left: 0.3em;
}
.erb-label .heart { color: var(--red); }
#erb-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  line-height: 1.6;
}
#erb-source {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
}
#erb-date {
  margin-top: 8px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- section cards ---------- */
.sections { padding: 2vh 0 8vh; }
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px 28px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s, border-color 0.25s;
  background: transparent;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 59, 48, 0.45);
}
.card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.card h3 .arrow {
  color: var(--red);
  font-family: var(--sans);
  margin-left: 6px;
}
.card p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.card .soon {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 4px 12px 4px 14px;
}

/* ---------- poem sheets ---------- */
.page-head { padding: 6vh 0 3vh; text-align: center; }
.page-head h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: 0.06em;
}
.page-head p { color: var(--muted); margin-top: 12px; font-size: 15px; }
.poem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 30px 26px;
  padding: 4vh 0 9vh;
}
.sheet {
  width: 100%;
  cursor: pointer;
  text-align: left;
  font-family: "Caveat", cursive;
  color: #2b2114;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="240" height="240"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="240" height="240" filter="url(%23n)" opacity="0.07"/></svg>'),
    radial-gradient(ellipse 220px 160px at 18% 8%, rgba(146, 104, 44, 0.14), transparent 70%),
    radial-gradient(ellipse 260px 190px at 88% 85%, rgba(146, 104, 44, 0.12), transparent 70%),
    radial-gradient(ellipse 160px 120px at 75% 18%, rgba(120, 84, 36, 0.10), transparent 70%),
    linear-gradient(175deg, #f0e2c0 0%, #e7d3a4 55%, #dec08b 100%);
  border-radius: 5px 20px 7px 24px / 20px 7px 24px 9px;
  padding: 30px 26px 24px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  box-shadow:
    inset 0 0 45px rgba(112, 66, 20, 0.30),
    inset 0 0 9px rgba(112, 66, 20, 0.28),
    0 20px 45px rgba(0, 0, 0, 0.55),
    0 3px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sheet:nth-child(odd) { transform: rotate(-0.8deg); }
.sheet:nth-child(even) { transform: rotate(0.7deg); }
.sheet:hover, .sheet:focus-visible {
  transform: rotate(0deg) translateY(-7px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 59, 48, 0.35);
  outline: none;
}
.sheet-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.15;
}
.sheet-title::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--red);
  margin: 12px 0 16px;
}
.sheet-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7c5f36;
  margin: -8px 0 14px;
}
.sheet-tease {
  font-size: 1.32rem;
  line-height: 1.55;
  font-weight: 500;
  color: #33270f;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 98%);
  mask-image: linear-gradient(180deg, #000 55%, transparent 98%);
}
.sheet-open {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- full-screen poem reader ---------- */
.reader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.reader.open { opacity: 1; pointer-events: auto; }
.reader-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.reader-paper {
  position: relative;
  margin: auto;
  width: min(92vw, 700px);
  max-height: 88vh;
  overflow-y: auto;
  font-family: "Caveat", cursive;
  color: #2b2114;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="240" height="240"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="240" height="240" filter="url(%23n)" opacity="0.06"/></svg>'),
    radial-gradient(ellipse 320px 220px at 12% 6%, rgba(146, 104, 44, 0.12), transparent 70%),
    radial-gradient(ellipse 380px 260px at 90% 90%, rgba(146, 104, 44, 0.10), transparent 70%),
    linear-gradient(175deg, #f2e5c4 0%, #e9d6a8 60%, #e0c48f 100%);
  border-radius: 4px 18px 6px 22px / 18px 6px 22px 8px;
  padding: clamp(30px, 6vw, 60px);
  box-shadow:
    inset 0 0 70px rgba(112, 66, 20, 0.28),
    inset 0 0 10px rgba(112, 66, 20, 0.25),
    0 50px 140px rgba(0, 0, 0, 0.75);
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 95, 54, 0.6) transparent;
}
.reader-paper::-webkit-scrollbar { width: 10px; }
.reader-paper::-webkit-scrollbar-track { background: transparent; }
.reader-paper::-webkit-scrollbar-thumb {
  background: rgba(124, 95, 54, 0.55);
  border-radius: 6px;
}
.reader-paper.wide { width: min(94vw, 980px); }
.reader-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.9rem;
  line-height: 1;
  padding: 8px;
  color: #7c5f36;
}
.reader-close:hover { color: var(--red); }
.reader-paper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
  padding-right: 40px;
}
.reader-meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7c5f36;
  margin-bottom: 30px;
}
.reader-paper .stanza { margin-bottom: 1.4em; }
.reader-paper .stanza p {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.6;
}
.reader-paper h4 {
  font-weight: 600;
  font-size: 1.4rem;
  color: #5a4527;
  margin: 1.6em 0 0.5em;
}
.reader-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.edition {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #9c3a2a;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(60, 40, 15, 0.25);
}
.reader-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(60, 40, 15, 0.25);
}
.reader-nav button {
  background: none;
  border: 1px solid rgba(60, 40, 15, 0.35);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  font-size: 1.15rem;
  color: #2b2114;
  transition: border-color 0.2s, color 0.2s;
}
.reader-nav button:hover { border-color: var(--red); color: var(--red); }
#reader-count {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #7c5f36;
}
@media (max-width: 640px) {
  .reader-columns { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- coming soon ---------- */
.soon-page {
  text-align: center;
  padding: 10vh 0 12vh;
}
.soon-page .mark {
  font-size: 2.4rem;
  color: var(--red);
  margin-bottom: 24px;
}
.soon-page h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: 18px;
}
.soon-page p {
  color: var(--muted);
  max-width: 34em;
  margin: 0 auto 1em;
  font-size: 1.02rem;
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 54px;
  text-align: center;
}
footer .f-mark { color: var(--red); font-size: 1.1rem; }
footer p {
  color: var(--faint);
  font-size: 13px;
  margin-top: 12px;
  letter-spacing: 0.06em;
}
footer .f-nav { margin-top: 18px; display: flex; gap: 22px; justify-content: center; }
footer .f-nav a { color: var(--muted); text-decoration: none; font-size: 13px; }
footer .f-nav a:hover { color: var(--ink); }

@media (max-width: 600px) {
  .cards { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
}

/* ---------- homepage: logo + daily stack ---------- */
.logo-daily {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: 4vh 0 6vh;
}
.logo-large {
  width: 100%;
  max-width: 430px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 120px rgba(255, 59, 48, 0.10);
  justify-self: center;
}
.daily-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}
@media (max-width: 760px) {
  .logo-daily { grid-template-columns: 1fr; }
  .logo-large { max-width: 300px; }
}

/* ---------- Daily Erb AI card (futuristic mini) ---------- */
.ai-daily-card {
  border: 1px solid rgba(255, 59, 48, 0.30);
  border-radius: 10px;
  padding: 24px 26px;
  background:
    repeating-linear-gradient(0deg, transparent 0 26px, rgba(255, 255, 255, 0.022) 26px 27px),
    linear-gradient(180deg, #0d0d13 0%, #0a0a0f 100%);
  box-shadow: 0 0 28px rgba(255, 59, 48, 0.10), inset 0 0 40px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}
.ai-daily-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: ai-pulse 2.2s ease-in-out infinite;
  flex: none;
}
@keyframes ai-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.ai-type {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}
.ai-dtitle {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.ai-dquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  line-height: 1.6;
}
.ai-ddate {
  margin-top: 14px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ai-dthumb {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
  margin-bottom: 12px;
}
.ai-loading { color: var(--faint); font-size: 0.9rem; }
.ai-daily-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}
.ai-daily-link:hover { text-decoration: underline; }

/* ---------- tag filter chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 2vh 0 1vh;
}
.chip {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--red); color: var(--ink); }
.chip.active { background: var(--red); border-color: var(--red); color: #fff; }
.sheet-tags { display: flex; gap: 6px; margin-bottom: 10px; }
.stag {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(255, 59, 48, 0.4);
  border-radius: 999px;
  padding: 3px 10px;
}

/* ---------- infinitERB AI archive page ---------- */
.ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 2vh 0 3vh;
}
.ai-chip {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s ease;
}
.ai-chip:hover { border-color: var(--red); color: var(--ink); }
.ai-chip.active { background: rgba(255, 59, 48, 0.15); border-color: var(--red); color: var(--red); }
.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
  padding: 1vh 0 8vh;
}
.ai-card {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 22px;
  cursor: pointer;
  background: linear-gradient(180deg, #0e0e14 0%, #09090d 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}
.ai-card::before {
  content: "";
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.7), transparent);
}
.ai-card:hover, .ai-card:focus-visible {
  border-color: rgba(255, 59, 48, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 59, 48, 0.12);
  outline: none;
}
.ai-card-type {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.ai-card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}
.ai-card-thumb {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}
.ai-card-tease {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  font-style: italic;
  font-family: var(--serif);
}
.ai-card-date {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--faint);
  margin-top: auto;
  padding-top: 8px;
}
.ai-card-open {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}


/* ---------- infinitERB AI full-screen reader ---------- */
.ai-reader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.ai-reader.open { opacity: 1; pointer-events: auto; }
.ai-reader-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ai-reader-panel {
  position: relative;
  margin: auto;
  width: min(92vw, 680px);
  max-height: 88vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 59, 48, 0.35);
  border-radius: 14px;
  background:
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(255, 255, 255, 0.025) 34px 35px),
    linear-gradient(180deg, #0d0d13 0%, #09090d 100%);
  box-shadow: 0 0 60px rgba(255, 59, 48, 0.15), inset 0 0 80px rgba(0, 0, 0, 0.5);
  padding: clamp(30px, 6vw, 56px);
}
.ai-reader-panel::-webkit-scrollbar { width: 10px; }
.ai-reader-panel::-webkit-scrollbar-track { background: transparent; }
.ai-reader-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 59, 48, 0.35);
  border-radius: 6px;
}
.ai-reader-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.9rem;
  line-height: 1;
  padding: 8px;
  color: var(--muted);
}
.ai-reader-close:hover { color: var(--red); }
.ai-reader-panel h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  margin-bottom: 20px;
  padding-right: 40px;
}
.ai-reader-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.12rem;
  line-height: 1.9;
  white-space: pre-line;
  color: #d8d4cc;
}
#ai-reader-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}
.ai-reader-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
}
.ai-reader-nav button {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.1rem;
}
.ai-reader-nav button:hover { border-color: var(--red); color: var(--red); }
.ai-reader-nav span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--faint);
}
