/* ==========================================================================
   pradox.de — main stylesheet
   Dark theme, yellow accent, self-hosted JetBrains Mono only.
   Pfad-1-konform: rein private, nicht-gewerbliche Webseite.
   ========================================================================== */

/* ---------- Self-hosted terminal font ---------- */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/JetBrainsMono-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/JetBrainsMono-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/JetBrainsMono-Bold.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */
:root {
  --bg: #0a0a0a;
  --bg-elev: #111113;
  --bg-elev-2: #161618;
  --surface: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f4;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --accent: #facc15;
  --accent-soft: #fde047;
  --accent-glow: rgba(250, 204, 21, 0.18);
  --danger: #ef4444;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --shadow-1: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 8px 24px rgba(0, 0, 0, 0.4);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, 'Liberation Mono', monospace;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

img, svg, canvas { max-width: 100%; display: block; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Links / focus / selection ---------- */
a { color: var(--accent); text-decoration: none; }
a:hover, a:focus-visible {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

::selection { background: var(--accent); color: #111; }

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute;
  left: -10000px;
  top: 8px;
  background: var(--accent);
  color: #111;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 700;
  z-index: 100;
}
.skip-link:focus { left: 8px; text-decoration: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Background canvas ---------- */
#neural-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1200px 800px at 70% -10%, rgba(250, 204, 21, 0.08), transparent 60%),
    radial-gradient(900px 600px at 0% 30%, rgba(250, 204, 21, 0.04), transparent 70%),
    var(--bg);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--bg) 75%, transparent);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ---------- Brand mark + breathing pulse ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}
.brand:hover { text-decoration: none; color: var(--text); }

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #111;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 0 6px 18px var(--accent-glow);
  animation: pradox-breathe 4s ease-in-out infinite;
}
.brand-mark img {
  display: block;
  width: 20px;
  height: 20px;
}

.brand-name { font-size: 1.05rem; }
.brand-dot { color: var(--accent); }

@keyframes pradox-breathe {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.3),
      0 6px 18px rgba(250, 204, 21, 0.18);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.3),
      0 8px 28px rgba(250, 204, 21, 0.36);
    transform: scale(1.04);
  }
}

/* ---------- Language toggle (DE · EN) ---------- */
.lang-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.lang-nav a {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.lang-nav a:hover,
.lang-nav a:focus-visible {
  color: var(--text);
  border-color: var(--border-strong);
  text-decoration: none;
}
.lang-nav a[aria-current="true"] {
  color: var(--accent);
  font-weight: 700;
}
.lang-nav span {
  color: var(--text-dim);
  user-select: none;
}

/* ---------- Hero (Pfad-1, schlank) ---------- */
.hero {
  position: relative;
  padding: clamp(64px, 12vw, 140px) 0 clamp(48px, 8vw, 96px);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  font-weight: 700;
}
.hero .lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  max-width: 64ch;
  margin: 0 0 20px;
}
.hero p {
  color: var(--text);
  max-width: 64ch;
  margin: 0 0 16px;
}
.hero a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.hero a:hover,
.hero a:focus-visible {
  color: var(--accent-soft);
  text-decoration-thickness: 2px;
}

.hero-sections-label {
  margin: 28px 0 12px !important;
  color: var(--text-muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-sections {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 64ch;
}
.hero-sections li {
  position: relative;
  padding: 14px 18px 14px 22px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.5;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.hero-sections li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
}
.hero-sections li:hover {
  border-color: var(--border-strong);
  background: var(--bg-elev-2);
}
.hero-sections strong {
  color: var(--text);
  margin-right: 8px;
  font-weight: 700;
}

/* ---------- Legal pages ---------- */
.legal-page #neural-bg { opacity: 0.4; }

.legal { padding: 64px 0 96px; }
.legal-head { margin-bottom: 40px; max-width: 760px; }
.legal-head h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 8px 0 12px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.legal section { margin: 32px 0; max-width: 820px; }
.legal h2 {
  font-size: 1.25rem;
  margin: 24px 0 12px;
  color: var(--text);
  letter-spacing: -0.01em;
  font-weight: 700;
}
.legal p,
.legal li { color: var(--text-muted); }
.legal ul { padding-left: 20px; }
.legal ul li { margin: 4px 0; }

/* Small uppercase label used above legal-page H1 (e.g. "Deutsch") */
.eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  margin-top: 40px;
  background: color-mix(in oklab, var(--bg) 92%, black);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.footer-inner p { margin: 0; }
.footer-inner a { color: var(--text-muted); }
.footer-inner a:hover,
.footer-inner a:focus-visible { color: var(--accent); }

/* ---------- Utility text ---------- */
.muted { color: var(--text-muted); }
.small { font-size: 0.86rem; }

/* ---------- Border-trace FX (opt-in via data-trace) ----------
   The .border-trace SVG overlay is inserted at runtime by border-trace.js
   on elements carrying [data-trace="1"]. The path is a rounded rectangle
   matching the host's box; stroke is hidden via dashoffset until activation.
   Activation toggle: [data-trace-active="1"] on the host. */
[data-trace="1"] {
  position: relative;
}
.border-trace {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 2;
}
.border-trace path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--trace-len, 1000);
  stroke-dashoffset: var(--trace-len, 1000);
  transition: stroke-dashoffset 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-trace-active="1"] .border-trace path {
  stroke-dashoffset: 0;
}

/* ---------- Cookie banner (reserved, currently unused) ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  background: var(--bg-elev-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  padding: 18px;
}
.cookie-inner {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 720px) {
  .cookie-inner { grid-template-columns: 1fr auto; gap: 24px; }
}
.cookie-banner h2 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--text);
}
.cookie-banner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ---------- Mobile tweaks ---------- */
@media (max-width: 560px) {
  .nav { padding: 12px 16px; gap: 12px; }
  .container { padding: 0 16px; }
  .lang-nav a { padding: 5px 8px; }
}

/* ============================================================
   Pfad-1 home page additions — sections, cards, buttons, news
   ============================================================ */

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-elev); }
.section-cta { padding: 80px 0; text-align: center; background: var(--bg-elev-2); }
.section-head { max-width: 760px; margin: 0 0 32px; }
.section-head h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem); margin: 8px 0 12px; color: var(--text); }
.section-head p { color: var(--text-muted); margin: 0; }

/* Hero accent + lede */
.hero .accent { color: var(--accent); }
.hero .lede,
.hero .lead { color: var(--text-muted); max-width: 720px; font-size: 1.05rem; line-height: 1.6; margin: 16px 0 24px; }
.hero h1 { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn:hover, .btn:focus-visible { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent-soft); border-color: var(--accent-soft); color: #0a0a0a; }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 8px 0 28px; }

/* Hero meta strip (alias for hero-sections) */
.hero-meta { display: grid; gap: 12px; padding: 0; margin: 24px 0 0; list-style: none; }
.hero-meta li { display: flex; flex-direction: column; padding: 12px 14px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.hero-meta strong { color: var(--text); font-size: 0.95rem; }
.hero-meta span { color: var(--text-muted); font-size: 0.86rem; }
@media (min-width: 720px) { .hero-meta { grid-template-columns: repeat(3, 1fr); } }

/* Cards + grid */
.grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.card:hover { border-color: var(--border-strong); transform: translateY(-1px); }
.card h3 { margin: 0; font-size: 1.05rem; color: var(--text); }
.card p { margin: 0; color: var(--text-muted); font-size: 0.94rem; line-height: 1.55; }
.card a { color: var(--accent); text-decoration: none; }
.card a:hover { text-decoration: underline; }
.card-meta { font-size: 0.82rem; color: var(--text-dim); }

/* News list */
.news-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.news-list li {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  gap: 4px;
}
.news-list a { color: var(--text); text-decoration: none; font-weight: 600; }
.news-list a:hover { color: var(--accent); }
.news-list .news-meta { font-size: 0.82rem; color: var(--text-dim); }

/* Social links */
.social-links { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.social-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.15s var(--ease), color 0.15s var(--ease);
}
.social-links a:hover { color: var(--accent); border-color: var(--accent); }

/* Primary nav (alias structure) */
.primary-nav, .nav-list {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.primary-nav a, .nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.94rem;
}
.primary-nav a:hover, .nav-list a:hover,
.primary-nav a:focus-visible, .nav-list a:focus-visible { color: var(--accent); }
.nav-cta { color: var(--accent) !important; }

/* Footer (extends footer-inner) */
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-meta { font-size: 0.85rem; color: var(--text-dim); }

/* Section CTA */
.section-cta h2 { color: var(--text); margin: 0 0 12px; }
.section-cta p { color: var(--text-muted); max-width: 640px; margin: 0 auto 24px; }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }

/* Two-col / steps */
.two-col { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 14px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.step-num { font-weight: 800; color: var(--accent); align-self: start; min-width: 28px; }
.steps h3 { margin: 0 0 4px; font-size: 1rem; color: var(--text); }
.steps p { margin: 0; color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }

/* ============================================================
   Splash language switcher (root /index.html)
   ============================================================ */
body.splash { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 24px; }
.splash-card {
  width: min(440px, 100%);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  text-align: center;
  box-shadow: var(--shadow-1);
}
.splash-brand { font-size: 1.4rem; font-weight: 800; margin: 0 0 6px; }
.splash-brand .brand-dot { color: var(--accent); }
.splash p { color: var(--text-muted); margin: 8px 0 24px; }
.splash-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.splash-foot { margin-top: 24px; font-size: 0.82rem; color: var(--text-dim); }
.splash-foot a { color: var(--text-muted); text-decoration: none; }
.splash-foot a:hover { color: var(--accent); }

/* ---------- About-Layout (Foto + Text nebeneinander) ---------- */
.about-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 720px) {
  .about-layout {
    grid-template-columns: 240px 1fr;
    gap: 48px;
  }
}
.about-photo {
  margin: 0;
  text-align: center;
}
.about-photo img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
}
.about-photo figcaption {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 0.85rem;
  font-style: italic;
}
.about-text h3 {
  margin: 24px 0 8px;
  color: var(--text);
  font-size: 1.05rem;
}
.about-text h3:first-child { margin-top: 0; }
.about-text p {
  color: var(--text-muted);
  margin: 0 0 12px;
}
.about-text em {
  color: var(--text-dim);
  font-style: italic;
}

/* ==========================================================================
   Tag filter (News + Projects index)
   ========================================================================== */
.tag-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1.5rem;
  padding: 0;
}
.tag-filter-btn {
  background: transparent;
  color: var(--fg, #e4e4e4);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.tag-filter-btn:hover {
  border-color: var(--accent, #6df);
}
.tag-filter-btn[aria-pressed="true"] {
  background: var(--accent, #6df);
  color: var(--bg, #0a0a0a);
  border-color: var(--accent, #6df);
}
.news-card[hidden],
.project-card[hidden] {
  display: none !important;
}

/* ==========================================================================
   News + Project Cards — vereinheitlichtes Layout
   ========================================================================== */
.news-card,
.project-card {
  margin: 1.5rem 0 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.news-card .card-body,
.project-card .card-body {
  display: block;
  color: var(--text);
}
.news-card .card-body:hover,
.project-card .card-body:hover {
  color: var(--text);
}
.news-card .card-body:hover h2,
.project-card .card-body:hover h2 {
  color: var(--accent);
}
.news-card h2,
.project-card h2 {
  color: var(--text);
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  line-height: 1.3;
}
.news-card .excerpt,
.project-card .excerpt {
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.55;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.card-meta .tags,
.card-meta .date,
.card-meta .source {
  color: var(--text-muted);
}
.card-links {
  margin: 0.5rem 0 0;
}
.github-pille {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
}
.github-pille:hover {
  background: var(--accent);
  color: var(--bg);
}
.news-card .card-body img,
.project-card .card-body img {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 0 1rem;
}
/* Bilder im Body von Detail-Seiten oder Markdown-Inhalt */
main .container img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* ==========================================================================
   Project Status Badges (alpha/beta/stable/archived + public/private source)
   ========================================================================== */
.status-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 0 0 0.75rem;
}
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  line-height: 1.2;
}
.badge-status.status-alpha {
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.08);
}
.badge-status.status-beta {
  color: var(--accent);
  border-color: rgba(250, 204, 21, 0.4);
  background: rgba(250, 204, 21, 0.08);
}
.badge-status.status-stable {
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.08);
}
.badge-status.status-archived {
  color: var(--text-dim);
  border-color: var(--border);
  background: transparent;
}
.badge-source.source-public {
  color: var(--text-muted);
  border-color: var(--border-strong);
}
.badge-source.source-private {
  color: var(--text-dim);
  border-color: var(--border);
}
