/* =============================================
   Revenue Sites Pro — Ghost Theme
   Warm Stone + Violet · 2026
   ============================================= */

/* --- Ghost Card Width Classes (required by GScan) ---------- */

.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: auto calc(50% - 50vw);
  transform: translateX(calc(50vw - 50%));
}

.kg-width-full {
  position: relative;
  width: 100vw;
  margin: auto calc(50% - 50vw);
}

/* Ghost card base */
.kg-card { margin: 2em 0; }
.kg-image { max-width: 100%; border-radius: 12px; }
.kg-gallery-container { display: flex; flex-direction: column; }
.kg-gallery-row { display: flex; flex-direction: row; justify-content: center; }
.kg-gallery-image img { display: block; margin: 0; width: 100%; height: 100%; object-fit: cover; }
.kg-bookmark-card { width: 100%; }
.kg-bookmark-container {
  display: flex;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.kg-bookmark-content { padding: 16px 20px; flex: 1; }
.kg-bookmark-title { font-weight: 600; font-size: 14px; color: var(--slate-900); }
.kg-bookmark-description { font-size: 13px; color: var(--slate-500); margin-top: 4px; }
.kg-bookmark-metadata { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.kg-bookmark-icon { width: 16px; height: 16px; }
.kg-bookmark-publisher,
.kg-bookmark-author { font-size: 11px; color: var(--slate-400); font-family: 'JetBrains Mono', monospace; }
.kg-bookmark-thumbnail { width: 140px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.kg-callout-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--violet-dim);
  border-left: 3px solid var(--violet);
}
.kg-callout-emoji { font-size: 20px; line-height: 1.4; }
.kg-callout-text { font-size: 15px; line-height: 1.7; color: var(--slate-700); }
.kg-toggle-card { border-radius: 12px; border: 1px solid var(--border); background: var(--white-card); overflow: hidden; }
.kg-toggle-heading { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--slate-900); }
.kg-toggle-content { padding: 0 18px 14px; font-size: 14px; color: var(--slate-500); line-height: 1.7; }

/* --- Reset & Base ---------------------------------------- */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #F6F5F2;
  color: #0f172a;
  line-height: 1.6;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Design Tokens --------------------------------------- */

:root {
  --gh-font-heading: 'Inter', system-ui, sans-serif;
  --gh-font-body:    'Inter', system-ui, sans-serif;
  --stone:       #F6F5F2;
  --stone-dark:  #EEECEA;
  --violet:      #7C3AED;
  --violet-dim:  rgba(124,58,237,0.12);
  --violet-glow: rgba(124,58,237,0.22);
  --slate-900:   #0f172a;
  --slate-700:   #334155;
  --slate-500:   #64748b;
  --slate-400:   #94a3b8;
  --border:      rgba(0,0,0,0.08);
  --border-lg:   rgba(0,0,0,0.07);
  --white-card:  rgba(255,255,255,0.80);
  --radius-lg:   16px;
  --radius-xl:   20px;
  --max-w:       1400px;
  --max-content: 720px;
}

/* --- Utility --------------------------------------------- */

.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7C3AED;
  opacity: 0.85;
  display: block;
  margin-bottom: 12px;
}

/* =============================================
   NAVBAR
   ============================================= */

.rsp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.25s ease, border-color 0.25s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.rsp-nav.scrolled {
  background: rgba(246,245,242,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-lg);
}

.rsp-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .rsp-nav__inner { padding: 0 48px; }
}

/* Brand */
.rsp-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.rsp-nav__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--violet);
  box-shadow: 0 0 16px var(--violet-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.rsp-nav__name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--slate-900);
}

.rsp-nav__name-muted { color: var(--slate-400); }

/* Desktop links */
.rsp-nav__links {
  display: none;
  align-items: center;
  gap: 28px;
}

@media (min-width: 768px) {
  .rsp-nav__links { display: flex; }
}

.rsp-nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-500);
  transition: color 0.15s ease;
}

.rsp-nav__link:hover,
.rsp-nav__link--active { color: var(--slate-900); }

/* CTA */
.rsp-nav__cta-wrap {
  display: none;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .rsp-nav__cta-wrap { display: flex; }
}

.rsp-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  background: var(--violet);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 16px var(--violet-glow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.rsp-nav__cta:hover {
  transform: scale(1.02);
  box-shadow: 0 0 24px rgba(124,58,237,0.35);
  color: #fff;
}

.rsp-nav__cta--full { width: 100%; justify-content: center; }

/* Mobile toggle */
.rsp-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-700);
  padding: 4px;
}

@media (min-width: 768px) {
  .rsp-nav__toggle { display: none; }
}

/* Mobile drawer */
.rsp-nav__mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border-lg);
  background: rgba(246,245,242,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 24px;
  gap: 4px;
}

.rsp-nav__mobile.open { display: flex; }

.rsp-nav__mobile-link {
  display: block;
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-500);
  transition: background 0.15s ease, color 0.15s ease;
}

.rsp-nav__mobile-link:hover {
  background: rgba(0,0,0,0.04);
  color: var(--slate-900);
}

.rsp-nav__mobile-cta {
  padding-top: 12px;
}

/* =============================================
   BLOG LISTING
   ============================================= */

.blog-listing {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 104px 24px 80px;
}

@media (min-width: 1024px) {
  .blog-listing { padding: 112px 48px 96px; }
}

/* Header */
.blog-listing__header {
  max-width: 640px;
  margin-bottom: 56px;
}

.blog-listing__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.blog-listing__subtitle {
  font-size: 16px;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 540px;
}

/* Grid */
.blog-listing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

/* Empty state */
.blog-listing__empty {
  text-align: center;
  padding: 80px 0;
  color: var(--slate-400);
  font-size: 15px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.pagination a,
.pagination .page-number {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--slate-500);
  transition: all 0.15s ease;
  background: var(--white-card);
}

.pagination a:hover {
  border-color: rgba(124,58,237,0.3);
  color: var(--violet);
}

/* =============================================
   POST CARD
   ============================================= */

.post-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--white-card);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}

.post-card--featured {
  box-shadow: 0 4px 20px var(--violet-dim);
}

/* Image */
.post-card__image-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  flex-shrink: 0;
}

.post-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.post-card:hover .post-card__image {
  transform: scale(1.03);
}

.post-card__featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--violet);
  padding: 4px 8px;
  border-radius: 6px;
}

/* Body */
.post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 24px 24px;
  gap: 8px;
}

/* Tag */
.post-card__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.post-card__tag:hover { opacity: 1; }

/* Title */
.post-card__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--slate-900);
  flex: 1;
}

.post-card__title a {
  color: inherit;
  transition: color 0.15s ease;
}

.post-card__title a:hover { color: var(--violet); }

.post-card__title--sm { font-size: 15px; }

/* Excerpt */
.post-card__excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--slate-500);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta */
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.post-card__date,
.post-card__read-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--slate-400);
}

.post-card__sep {
  font-size: 10px;
  color: var(--slate-400);
}

/* Small variant */
.post-card--sm .post-card__body { padding: 16px 20px 20px; }
.post-card--sm .post-card__image-wrap { aspect-ratio: 16/9; }

/* =============================================
   POST PAGE
   ============================================= */

.post-page {
  padding-top: 68px;
}

/* Header */
.post-header {
  background: var(--stone);
  border-bottom: 1px solid var(--border-lg);
  padding: 48px 24px 40px;
}

.post-header__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.post-header__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate-500);
  margin-bottom: 20px;
  transition: color 0.15s ease;
}

.post-header__back:hover { color: var(--slate-900); }

.post-header__tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  opacity: 0.85;
  margin-bottom: 14px;
  transition: opacity 0.15s ease;
}

.post-header__tag:hover { opacity: 1; }

.post-header__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.post-header__excerpt {
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-500);
  margin-bottom: 20px;
  max-width: 600px;
}

.post-header__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.post-header__author,
.post-header__date,
.post-header__read-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate-400);
}

.post-header__author { color: var(--slate-500); font-weight: 500; }

.post-header__sep {
  font-size: 11px;
  color: var(--slate-400);
}

/* Feature image */
.post-feature-image {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .post-feature-image { padding: 0 48px; }
}

.post-feature-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  margin-top: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

.post-feature-image__caption {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--slate-400);
  margin-top: 10px;
}

/* Post content */
.post-content {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 48px 24px 16px;
}

/* Ghost content typography */
.gh-content > * + * { margin-top: 1.5em; }

.gh-content h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--slate-900);
  margin-top: 2.5em;
  margin-bottom: 0.6em;
}

.gh-content h3 {
  font-size: clamp(17px, 2.5vw, 21px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.gh-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-700);
  margin-top: 1.8em;
}

.gh-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate-700);
}

.gh-content strong { font-weight: 700; color: var(--slate-900); }
.gh-content em { font-style: italic; }

.gh-content a {
  color: var(--violet);
  border-bottom: 1px solid rgba(124,58,237,0.25);
  transition: border-color 0.15s ease;
}

.gh-content a:hover { border-bottom-color: var(--violet); }

.gh-content ul,
.gh-content ol {
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate-700);
}

.gh-content li + li { margin-top: 6px; }

.gh-content blockquote {
  border-left: 3px solid var(--violet);
  padding: 16px 20px;
  background: var(--violet-dim);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--slate-700);
  font-size: 16px;
  line-height: 1.7;
}

.gh-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  background: rgba(0,0,0,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--slate-900);
}

.gh-content pre {
  background: var(--slate-900);
  border-radius: 12px;
  padding: 20px 24px;
  overflow-x: auto;
}

.gh-content pre code {
  background: none;
  padding: 0;
  color: #e2e8f0;
  font-size: 13px;
  line-height: 1.7;
}

.gh-content img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.gh-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5em 0;
}

.gh-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.gh-content th {
  background: rgba(0,0,0,0.04);
  font-weight: 600;
  font-size: 12px;
  text-align: left;
  padding: 10px 14px;
  color: var(--slate-700);
  border-bottom: 1px solid var(--border);
}

.gh-content td {
  padding: 10px 14px;
  color: var(--slate-700);
  border-bottom: 1px solid var(--border);
}

.gh-content tr:last-child td { border-bottom: none; }

/* Post footer */
.post-footer {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 24px 64px;
}

.post-footer__divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.post-footer__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.post-footer__tags-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.post-footer__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white-card);
  color: var(--slate-500);
  transition: all 0.15s ease;
}

.post-footer__tag:hover {
  border-color: rgba(124,58,237,0.3);
  color: var(--violet);
}

.post-footer__cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.post-footer__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white-card);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-600);
  transition: all 0.15s ease;
}

.post-footer__back-btn:hover {
  border-color: rgba(0,0,0,0.15);
  color: var(--slate-900);
}

.post-footer__proposal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  background: var(--violet);
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 16px var(--violet-glow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.post-footer__proposal-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 24px rgba(124,58,237,0.35);
  color: #fff;
}

/* Related posts */
.related-posts {
  background: var(--stone-dark);
  border-top: 1px solid var(--border-lg);
  padding: 56px 24px;
}

@media (min-width: 1024px) {
  .related-posts { padding: 64px 48px; }
}

.related-posts__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

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

/* =============================================
   FOOTER
   ============================================= */

.rsp-footer {
  background: var(--stone-dark);
}

.rsp-footer__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
}

.rsp-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .rsp-footer__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 48px 32px;
  }
}

/* Brand col */
.rsp-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rsp-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rsp-footer__logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
}

.rsp-footer__name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #1e293b;
}

.rsp-footer__copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--slate-400);
}

.rsp-footer__socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rsp-footer__social {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-500);
  transition: all 0.15s ease;
}

.rsp-footer__social:hover {
  background: var(--violet-dim);
  border-color: rgba(124,58,237,0.3);
  color: var(--violet);
}

/* Nav col */
.rsp-footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .rsp-footer__nav-col { align-items: flex-end; }
}

.rsp-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

@media (min-width: 1024px) {
  .rsp-footer__nav { justify-content: flex-end; }
}

.rsp-footer__nav-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate-500);
  transition: color 0.15s ease;
}

.rsp-footer__nav-link:hover { color: #1e293b; }

.rsp-footer__nav-link--accent {
  color: rgba(124,58,237,0.70);
}

.rsp-footer__nav-link--accent:hover { color: var(--violet); }

/* Legal row */
.rsp-footer__legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rsp-footer__legal-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-400);
  transition: color 0.15s ease;
}

.rsp-footer__legal-link:hover { color: var(--slate-700); }

/* Status indicator */
.rsp-footer__status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rsp-footer__status-dot {
  position: relative;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
}

.rsp-footer__status-dot::before,
.rsp-footer__status-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #10b981;
}

.rsp-footer__status-dot::before {
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
  opacity: 0.6;
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.rsp-footer__status-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--slate-400);
}
