/* Cyber Threat Intel Brief — April 26, 2026 · Sunday Edition · "KEV Sprint & Covert Mesh" dossier */

:root {
  --bg-primary: #0c0608;
  --bg-secondary: #1a0a0e;
  --bg-surface: rgba(251, 191, 36, 0.04);
  --bg-elevated: rgba(244, 63, 94, 0.06);
  --text-primary: #f8f4f2;
  --text-secondary: #c4b8b4;
  --text-muted: #7a6d6a;
  --accent-red: #ff3355;
  --accent-red-dim: rgba(255, 51, 85, 0.14);
  --accent-green: #00ff41;
  --accent-green-dim: rgba(0, 255, 65, 0.08);
  --accent-gold: #fbbf24;
  --accent-gold-dim: rgba(251, 191, 36, 0.14);
  --accent-blue: #38bdf8;
  --glass: rgba(26, 10, 14, 0.72);
  --glass-border: rgba(251, 191, 36, 0.18);
  --glass-highlight: rgba(255, 255, 255, 0.05);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  padding-top: 44px;
  padding-left: max(0px, env(safe-area-inset-left));
  padding-right: max(0px, env(safe-area-inset-right));
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.065;
  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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ═══ TICKER ═══ */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 44px;
  background: linear-gradient(
    90deg,
    rgba(60, 10, 18, 0.96) 0%,
    var(--bg-primary) 40%,
    var(--bg-primary) 60%,
    rgba(60, 10, 18, 0.96) 100%
  );
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-shrink: 0;
  padding: 0 1.25rem 0 0;
  animation: ticker-scroll 62s linear infinite;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.ticker__item {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-secondary);
}

.ticker__sep {
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  background: var(--accent-red);
  opacity: 0.55;
  flex-shrink: 0;
}

.ticker__item--cve { color: var(--accent-gold); }
.ticker__item--actor { color: var(--accent-red); }
.ticker__item--advisory { color: var(--accent-blue); }
.ticker__item--op { color: var(--accent-green); }

/* ═══ HERO — full bleed dossier ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 0% 0%, rgba(255, 51, 85, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 70% 45% at 100% 10%, rgba(251, 191, 36, 0.1) 0%, transparent 48%),
    linear-gradient(168deg, #14080c 0%, var(--bg-primary) 45%, #050304 100%);
  z-index: 0;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 11px,
      rgba(251, 191, 36, 0.04) 11px,
      rgba(251, 191, 36, 0.04) 12px
    );
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.hero__scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    transparent 0%,
    rgba(255, 255, 255, 0.02) 50%,
    transparent 100%
  );
  background-size: 100% 6px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.2;
}

.hero__left {
  position: relative;
  z-index: 3;
  padding: clamp(1.5rem, 4vw, 3.25rem);
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
}

@media (max-width: 900px) {
  .hero__left {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    min-height: 42vh;
  }
}

.hero__stamp {
  font-family: var(--font-mono);
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255, 51, 85, 0.12);
  text-transform: uppercase;
  margin-bottom: 1rem;
  user-select: none;
}

.hero__right {
  position: relative;
  z-index: 3;
  padding: clamp(1.5rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 40rem;
}

.hero__kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: clamp(2.35rem, 6.5vw, 4.1rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 1.1rem;
  color: #fffaf8;
  text-shadow: 0 0 60px rgba(255, 51, 85, 0.15);
}

.hero__deck {
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.hero__deck strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero__refs {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 520px) {
  .hero__metrics {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero__metric {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 0.85rem 0.75rem;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__metric-val {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.1;
}

.hero__metric-lab {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.35;
}

.hero__egg {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: rgba(251, 191, 36, 0.22);
  z-index: 4;
  pointer-events: none;
}

/* ═══ SECTION SHELL ═══ */
.section {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section--tight {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.section__inner {
  max-width: 58rem;
  margin: 0 auto;
}

.sec-head__tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.65rem;
}

.sec-head__title {
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: #fff7f5;
}

.sec-head__rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sec-head__rule::before {
  content: '';
  flex: 0 0 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), transparent);
}

.sec-head__rule span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.sec-head__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 52rem;
}

.sec-head__lead strong {
  color: var(--text-primary);
  font-weight: 600;
}

.sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.35rem;
}

.source {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(56, 189, 248, 0.35);
  padding-bottom: 2px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.source:hover,
.source:focus-visible {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
  outline: none;
}

/* Sprint eight */
.sprint-eight {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.cve-stack {
  margin-top: 1.75rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--glass);
}

.cve-line {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
}

.cve-line:last-child {
  border-bottom: none;
}

.cve-line strong {
  color: var(--accent-gold);
  font-weight: 600;
}

.sprint-note {
  margin-top: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-green);
  line-height: 1.55;
  padding: 0.85rem 1rem;
  background: var(--accent-green-dim);
  border-radius: 6px;
  border: 1px solid rgba(0, 255, 65, 0.2);
}

/* Defender solo */
.defender-solo {
  background: var(--bg-primary);
}

.def-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 720px) {
  .def-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.def-panel {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 1.15rem 1.2rem;
}

.def-panel h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.def-panel p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.def-mono {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--accent-gold);
  margin-top: 0.65rem;
  line-height: 1.5;
}

/* Marimo */
.marimo-cell {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.marimo-grid {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .marimo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.marimo-block {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 1.1rem 1.15rem;
}

.marimo-block h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.marimo-block p {
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--text-secondary);
}

/* Edge four */
.edge-four {
  background: var(--bg-primary);
}

.edge-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .edge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.edge-tile {
  background: linear-gradient(135deg, var(--glass) 0%, rgba(26, 10, 14, 0.5) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  min-height: 88px;
}

.edge-tile span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.35rem;
}

.edge-tile strong {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-gold);
}

.edge-tile p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
  line-height: 1.45;
}

/* AA26 */
.aa26-dossier {
  background: linear-gradient(180deg, #0a1018 0%, var(--bg-primary) 100%);
}

.aa26-layout {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .aa26-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.aa26-card {
  background: var(--glass);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 8px;
  padding: 1.15rem 1.2rem;
}

.aa26-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.aa26-card p {
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--text-secondary);
}

.aa26-list {
  list-style: none;
  margin-top: 0.65rem;
}

.aa26-list li {
  font-size: 0.86rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.45;
}

.aa26-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-family: var(--font-mono);
}

/* OAuth follow */
.oauth-follow {
  background: var(--bg-secondary);
}

.oauth-chain {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.oauth-stage {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
}

.oauth-stage__n {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-red);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-red-dim);
  border-radius: 4px;
}

.oauth-stage p {
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--text-secondary);
}

.oauth-stage strong {
  color: var(--text-primary);
}

/* Iran OT */
.iran-ot {
  background: var(--bg-primary);
}

.iran-timeline {
  margin-top: 1.5rem;
  border-left: 2px solid var(--accent-red-dim);
  padding-left: 1.25rem;
}

.iran-timeline__row {
  margin-bottom: 1rem;
  position: relative;
}

.iran-timeline__row::before {
  content: '';
  position: absolute;
  left: -1.4rem;
  top: 0.35rem;
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent-red-dim);
}

.iran-timeline__date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.iran-timeline__row p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.iran-callout {
  margin-top: 0.5rem;
  padding: 0.9rem 1rem;
  background: var(--accent-red-dim);
  border-radius: 6px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 51, 85, 0.2);
}

/* HIPAA */
.hipaa-settle {
  background: linear-gradient(180deg, #0e0a12 0%, var(--bg-secondary) 100%);
}

.hipaa-table {
  margin-top: 1.5rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
}

.hipaa-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

@media (min-width: 640px) {
  .hipaa-row {
    grid-template-columns: 1fr 5.5rem 5rem;
    align-items: center;
  }
}

.hipaa-row:last-child {
  border-bottom: none;
}

.hipaa-row strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hipaa-mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-gold);
}

/* Gentlemen */
.gentlemen-sysbc {
  background: var(--bg-primary);
}

.sysbc-wrap {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .sysbc-wrap {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.sysbc-stat {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 800;
  color: var(--accent-red);
  line-height: 1;
}

.sysbc-stat span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.sysbc-copy p {
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--text-secondary);
}

.sysbc-copy p + p {
  margin-top: 0.65rem;
}

/* Axios strip */
.axios-strip {
  background: linear-gradient(180deg, #0a0810 0%, var(--bg-primary) 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.15);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

.axios-strip code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  color: var(--accent-gold);
  background: rgba(251, 191, 36, 0.08);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

/* Mosaic stats */
.stat-mosaic.section {
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem);
}

.stat-mosaic {
  background: #08050a;
}

.mosaic-inner {
  max-width: 58rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 720px) {
  .mosaic-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mosaic-cell {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mosaic-cell__n {
  font-family: var(--font-mono);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.mosaic-cell__l {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.35;
}

/* Week ahead */
.week-forward {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding-bottom: clamp(3rem, 8vh, 5rem);
}

.wf-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .wf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .wf-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wf-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 1rem 1.05rem;
  min-height: 120px;
}

.wf-card--prime {
  border-color: rgba(255, 51, 85, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 51, 85, 0.08);
}

.wf-card__date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}

.wf-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

.wf-card p {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Footer */
.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 2rem) calc(2.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--glass-border);
  text-align: center;
  background: #050304;
}

.site-footer__brand {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.site-footer__pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.88); }
}

.site-footer__regen {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.site-footer__session {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.35rem;
}

.site-footer__timestamp {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sn-wrap {
  max-width: 58rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
