/* ─────────────────────────────────────────────
   PluginShield — Shared Design System
   Font: Bricolage Grotesque + DM Sans
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=DM+Mono:wght@400;500&display=swap');

/* ── Reset & Base ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

:root {
  --blue:        #0057FF;
  --blue-dark:   #0042CC;
  --blue-light:  #EBF1FF;
  --blue-glow:   rgba(0, 87, 255, 0.18);
  --navy:        #070E1A;
  --navy-mid:    #0B1930;
  --navy-border: rgba(255,255,255,0.08);
  --white:       #FFFFFF;
  --off-white:   #F7F9FF;
  --text:        #0D1421;
  --text-muted:  #556080;
  --text-faint:  #8C99B5;
  --border:      #E2E8F4;
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(10,20,50,.06), 0 1px 2px rgba(10,20,50,.04);
  --shadow:      0 4px 16px rgba(10,20,50,.08), 0 1px 4px rgba(10,20,50,.05);
  --shadow-lg:   0 20px 60px rgba(10,20,50,.12), 0 4px 16px rgba(10,20,50,.06);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --max-w:        1160px;
  --nav-h:        68px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.display-sm {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.body-lg  { font-size: 1.125rem; line-height: 1.7; }
.body-md  { font-size: 1rem; line-height: 1.65; }
.body-sm  { font-size: 0.875rem; line-height: 1.6; }
.label    { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.mono     { font-family: var(--font-mono); font-size: 0.875rem; }

/* ── Layout ─────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Navigation ─────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(7, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--navy-border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav__logo-icon {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 20px var(--blue-glow);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav__link {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color .15s, background .15s;
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav__link.active { color: #fff; }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .18s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 0 var(--blue-glow), var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 0 24px var(--blue-glow), var(--shadow);
  transform: translateY(-1px);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius-sm); }
.btn-sm { padding: 7px 14px; font-size: 0.8rem; }

/* ── Badge / Chip ────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.chip-blue  { background: var(--blue-light); color: var(--blue); }
.chip-navy  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.12); }
.chip-green { background: #ECFDF5; color: #059669; }
.chip-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── Cards ───────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-dark {
  background: var(--navy-mid);
  border-color: var(--navy-border);
  color: #fff;
}

/* ── Hero (dark) ─────────────────────────────── */
.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 0 96px;
}
/* Dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Blue radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0,87,255,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow { margin-bottom: 20px; }
.hero__headline { color: #fff; margin-bottom: 20px; }
.hero__headline span { color: var(--blue); }
.hero__sub { color: rgba(255,255,255,0.6); max-width: 540px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero__proof { margin-top: 52px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero__proof-stat { display: flex; flex-direction: column; }
.hero__proof-stat strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; }
.hero__proof-stat span  { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 1px; }
.hero__proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* ── Section headers ─────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header .eyebrow { color: var(--blue); margin-bottom: 12px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { color: var(--text-muted); }

/* ── Feature grid ────────────────────────────── */
.feature-grid { display: grid; gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.feature-grid-2 { grid-template-columns: 1fr 1fr; }
.feature-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.feature-item { background: var(--white); padding: 36px 32px; }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.feature-item h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-item p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ── Steps ───────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 22px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.step { padding: 0 24px; text-align: center; position: relative; }
.step-num {
  width: 44px; height: 44px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 7px var(--border);
}
.step h3 { font-family: var(--font-display); font-weight: 700; margin-bottom: 8px; font-size: 1rem; }
.step p   { color: var(--text-muted); font-size: 0.875rem; }

/* ── Comparison table ────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--border);
  background: var(--off-white);
}
.compare-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.compare-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.compare-table th.highlight { background: var(--blue-light); color: var(--blue); }
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  vertical-align: middle;
}
.compare-table td:first-child { font-weight: 500; color: var(--text); }
.compare-table td.highlight   { background: #FAFCFF; }
.compare-table tr:last-child td { border-bottom: none; }
.check { color: var(--blue); font-size: 1rem; }
.cross { color: #CBD5E1; font-size: 1rem; }

/* ── Pricing cards ───────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: box-shadow .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pricing-name  { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; margin-bottom: 6px; }
.pricing-desc  { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pricing-price strong { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; letter-spacing: -0.04em; }
.pricing-price span { color: var(--text-muted); font-size: 0.875rem; }
.pricing-per   { font-size: 0.8rem; color: var(--text-faint); margin-bottom: 28px; }
.pricing-cta   { width: 100%; margin-bottom: 28px; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--text-muted);
}
.pricing-feature .icon { flex-shrink: 0; margin-top: 1px; font-size: 0.9rem; }
.pricing-feature.included { color: var(--text); }
.pricing-feature.excluded { opacity: 0.4; }

/* ── Testimonial / quote ─────────────────────── */
.quote-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 32px;
  font-family: var(--font-display);
  font-size: 160px;
  font-weight: 800;
  color: rgba(0,87,255,0.15);
  line-height: 1;
  pointer-events: none;
}

/* ── CTA band ────────────────────────────────── */
.cta-band {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,87,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }

/* ── Footer ──────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 56px 0 40px;
  border-top: 1px solid var(--navy-border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand { }
.footer__brand p { font-size: 0.875rem; line-height: 1.65; margin-top: 10px; max-width: 240px; }
.footer__col h4 { color: rgba(255,255,255,0.85); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 14px; }
.footer__col a  { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.45); padding: 4px 0; transition: color .15s; }
.footer__col a:hover { color: rgba(255,255,255,0.85); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--navy-border);
  font-size: 0.8rem;
}

/* ── Docs sidebar layout ─────────────────────── */
.docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: calc(100vh - var(--nav-h));
  align-items: start;
}
.docs-sidebar {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  padding: 32px 0;
  border-right: 1px solid var(--border);
}
.docs-sidebar-group { margin-bottom: 24px; padding: 0 20px; }
.docs-sidebar-group h5 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 6px; }
.docs-sidebar a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.docs-sidebar a:hover { color: var(--text); background: var(--off-white); }
.docs-sidebar a.active { color: var(--blue); background: var(--blue-light); font-weight: 500; }
.docs-content { padding: 48px 56px; max-width: 760px; }
.docs-content h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 12px; }
.docs-content h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; margin: 40px 0 12px; }
.docs-content h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin: 28px 0 8px; }
.docs-content p  { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.docs-content ul { margin: 0 0 16px 1.4em; }
.docs-content ul li { color: var(--text-muted); margin-bottom: 6px; font-size: 0.95rem; line-height: 1.65; }
.docs-content a  { color: var(--blue); text-decoration: underline; text-decoration-color: rgba(0,87,255,0.3); }
.docs-content a:hover { text-decoration-color: var(--blue); }
.docs-content code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  color: var(--blue-dark);
}
.docs-content pre {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
  overflow-x: auto;
}
.docs-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  line-height: 1.7;
}
.callout {
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
}
.callout-blue  { background: var(--blue-light); border-left: 3px solid var(--blue); }
.callout-green { background: #ECFDF5; border-left: 3px solid #059669; }
.callout-yellow { background: #FFFBEB; border-left: 3px solid #D97706; }
.callout p { margin: 0; color: var(--text); }
.callout-icon { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

/* ── Utility ─────────────────────────────────── */
.text-blue   { color: var(--blue); }
.text-muted  { color: var(--text-muted); }
.text-faint  { color: var(--text-faint); }
.text-white  { color: #fff; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.bg-off      { background: var(--off-white); }
.bg-navy     { background: var(--navy); }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.flex  { display: flex; }
.items-center { align-items: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }

/* ── Animations ──────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fade-up .5s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid > :last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .docs-content { padding: 32px 32px; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .hero { padding: 72px 0 64px; }
  .section { padding: 64px 0; }
  .feature-grid-2, .feature-grid-3 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid > :last-child { grid-column: auto; max-width: none; }
  .compare-table th:not(:first-child):not(.highlight):not(:last-child),
  .compare-table td:not(:first-child):not(.highlight):not(:last-child) { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-band { padding: 40px 24px; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { display: none; }
  .docs-content { padding: 24px 20px; }
}

/* ── Additions for new features ──────────────── */
.mb-32 { margin-bottom: 32px; }
.feature-grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

/* Risk score badge */
.risk-badge { display:inline-flex; align-items:center; gap:6px; padding:4px 10px; border-radius:99px; font-size:0.78rem; font-weight:700; }
.risk-1 { background:#DCFCE7; color:#15803D; }
.risk-2 { background:#ECFDF5; color:#059669; }
.risk-3 { background:#FEF3C7; color:#B45309; }
.risk-4 { background:#FFEDD5; color:#C2410C; }
.risk-5 { background:#FEE2E2; color:#B91C1C; }

/* Conflict DB community row */
.crowd-row { display:flex; align-items:center; justify-content:space-between; padding:10px 14px; border-radius:8px; background:var(--off-white); border:1px solid var(--border); font-size:0.875rem; }
.crowd-row:hover { background:#fff; box-shadow:var(--shadow-sm); }
.crowd-count { font-family:var(--font-display); font-weight:800; color:var(--blue); font-size:1rem; }

/* Changelog */
.changelog-entry { border-left:3px solid var(--border); padding:0 0 40px 28px; position:relative; }
.changelog-entry::before { content:''; position:absolute; left:-7px; top:4px; width:12px; height:12px; border-radius:50%; background:var(--blue); border:2px solid #fff; box-shadow:0 0 0 2px var(--blue); }
.changelog-entry:last-child { border-left-color:transparent; }
.changelog-version { font-family:var(--font-display); font-weight:800; font-size:1.05rem; margin-bottom:4px; }
.changelog-date { font-size:0.8rem; color:var(--text-faint); margin-bottom:16px; }
.changelog-tag { display:inline-flex; align-items:center; padding:2px 8px; border-radius:4px; font-size:0.72rem; font-weight:700; margin-right:6px; margin-bottom:4px; }
.tag-new { background:#EFF6FF; color:#1D4ED8; }
.tag-pro { background:#F5F3FF; color:#6D28D9; }
.tag-free { background:#ECFDF5; color:#059669; }
.tag-fix { background:#FFF7ED; color:#C2410C; }
