:root {
  /* Neon theme */
  --bg: #030312;
  --bg-elevated: #0b0820;
  --bg-alt: #05021a;
  --border-subtle: #272341;

  --accent: #38e8ff;          /* neon blue */
  --accent-soft: rgba(56, 232, 255, 0.2);
  --accent-strong: #c66bff;   /* neon purple */

  --text: #edf1ff;
  --text-muted: #9ea2cf;

  --danger: #ff3366;
  --info: #3ba3ff;

  /* Severity colours */
  --sev-critical-bg: rgba(192, 0, 255, 0.18);   /* neon purple */
  --sev-critical-border: #ff50cb;
  --sev-critical-text: #f28dff;

  --sev-high-bg: rgba(255, 40, 40, 0.22);     /* neon red */
  --sev-high-border: #ff3366;
  --sev-high-text: #ff7b92;

  --sev-medium-bg: rgba(255, 160, 0, 0.22);   /* neon orange */
  --sev-medium-border: #ffb347;
  --sev-medium-text: #ffd28a;

  --sev-low-bg: rgba(0, 210, 120, 0.22);      /* neon green */
  --sev-low-border: #00e393;
  --sev-low-text: #7bffbf;

  --sev-info-bg: rgba(140, 140, 140, 0.18);   /* neutral grey */
  --sev-info-border: #a5a5b5;
  --sev-info-text: #d0d0e0;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.7);
  --shadow-subtle: 0 10px 28px rgba(0, 0, 0, 0.55);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at top left, #47195c69 0, transparent 50%),
    radial-gradient(circle at top right, #0d2a5a 0, transparent 55%),
    radial-gradient(circle at bottom, #05010c 0, #010008 60%);
  color: var(--text);
  font-family: var(--font-sans);
}

a {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

.section {
  padding: 3.3rem 0;
}

.section-alt {
  padding: 3.3rem 0;
  background:
    radial-gradient(circle at top left, rgba(71, 42, 136, 0.6) 0, transparent 55%),
    radial-gradient(circle at bottom right, rgba(16, 75, 136, 0.45) 0, transparent 50%),
    linear-gradient(135deg, #040016, #02000f);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.8rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(8, 4, 34, 0.96),
    rgba(8, 4, 34, 0.82)
  );
  border-bottom: 1px solid rgba(56, 232, 255, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo-wrap {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0, var(--accent), transparent 55%),
    radial-gradient(circle at 80% 100%, var(--accent-strong), transparent 55%);
  box-shadow:
    0 0 18px rgba(56, 232, 255, 0.6),
    0 0 26px rgba(198, 107, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* simple Cerberus tri-head mark */
.brand-logo-cerberus {
  width: 80%;
  height: 80%;
}
.brand-logo-cerberus svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-text h1 {
  margin: 0;
  font-size: 1.05rem;
}

.brand-text p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.1rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-strong));
  transition: width 0.18s ease-out;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  padding: 3.2rem 0 2.8rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: stretch;
}

.hero h2 {
  margin: 0 0 0.4rem;
  font-size: 2rem;
}

.hero-tagline {
  margin: 0;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-meta {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-meta span {
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(128, 122, 201, 0.9);
  background: rgba(9, 7, 36, 0.85);
}

.hero-card {
  background:
    radial-gradient(circle at top left, rgba(120, 91, 255, 0.35) 0, transparent 65%),
    radial-gradient(circle at bottom right, rgba(56, 232, 255, 0.28) 0, transparent 60%),
    linear-gradient(145deg, rgba(16, 9, 60, 0.98), rgba(8, 8, 35, 0.98));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(98, 93, 201, 0.7);
  box-shadow: var(--shadow-soft);
}

.hero-card h3 {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.hero-card-main {
  margin-top: 0.7rem;
}

.hero-card-main h4 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.hero-card-main p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-card-meta {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-card-meta span {
  display: inline-flex;
  gap: 0.25rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.16s ease-out, transform 0.12s ease-out,
    box-shadow 0.16s ease-out;
}

.btn-primary {
  background: rgba(56, 232, 255, 0.144);
  border-color: rgba(56, 232, 255, 0.9);
  color: rgba(56, 232, 255, 0.9),
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 24px rgba(56, 232, 255, 0.9),
    0 0 32px rgba(198, 107, 255, 0.9);
}

.btn-ghost {
  background: rgba(10, 7, 40, 0.9);
  border-color: rgba(98, 93, 201, 0.7);
  color: var(--accent);
}

.btn-ghost:hover {
  background: rgba(56, 232, 255, 0.08);
}

/* FILTER BAR */

.filter-bar {
  margin-bottom: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 768px) {
  .filter-bar {
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr) minmax(0, 1.4fr);
    align-items: center;
  }
}

.filter-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(9, 6, 37, 0.96);
  border-radius: var(--radius-md);
  border: 1px solid rgba(118, 111, 207, 0.9);
  padding: 0.4rem 0.6rem;
}

.filter-search input {
  border: none;
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  width: 100%;
}

.filter-search input:focus {
  outline: none;
}

.filter-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.filter-select-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

select {
  background: rgba(9, 6, 37, 0.96);
  border-radius: var(--radius-md);
  border: 1px solid rgba(118, 111, 207, 0.9);
  padding: 0.4rem 0.6rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(56, 232, 255, 0.4);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.78rem;
}

.chip {
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(118, 111, 207, 0.9);
  background: rgba(11, 9, 43, 0.96);
  color: var(--text-muted);
}

/* THREAT LIST / CARDS */

.threat-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.threat-card {
  background:
    radial-gradient(circle at top left, rgba(118, 111, 207, 0.2) 0, transparent 60%),
    linear-gradient(145deg, rgba(11, 9, 43, 0.98), rgba(5, 4, 26, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(118, 111, 207, 0.75);
  box-shadow: var(--shadow-subtle);
  padding: 1.1rem 1.1rem 0.3rem;
}

.threat-header {
  display: grid;
  gap: 0.7rem;
  align-items: center;
}

@media (min-width: 780px) {
  .threat-header {
    grid-template-columns: minmax(0, 2.4fr) auto;
  }
}

.threat-mainline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
  align-items: baseline;
}

.threat-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.threat-type {
  font-size: 0.78rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 232, 255, 0.6);
  background: rgba(56, 232, 255, 0.12);
  color: var(--accent);
}

.threat-severity {
  font-size: 0.78rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* severity via data-attribute */
.threat-severity[data-severity="Critical"] {
  background: var(--sev-critical-bg);
  border: 1px solid var(--sev-critical-border);
  color: var(--sev-critical-text);
  box-shadow: 0 0 16px rgba(192, 0, 255, 0.4);
}

.threat-severity[data-severity="High"] {
  background: var(--sev-high-bg);
  border: 1px solid var(--sev-high-border);
  color: var(--sev-high-text);
  box-shadow: 0 0 16px rgba(255, 51, 102, 0.45);
}

.threat-severity[data-severity="Medium"] {
  background: var(--sev-medium-bg);
  border: 1px solid var(--sev-medium-border);
  color: var(--sev-medium-text);
  box-shadow: 0 0 16px rgba(255, 179, 71, 0.4);
}

.threat-severity[data-severity="Low"] {
  background: var(--sev-low-bg);
  border: 1px solid var(--sev-low-border);
  color: var(--sev-low-text);
  box-shadow: 0 0 16px rgba(0, 227, 147, 0.45);
}

.threat-severity[data-severity="Informational"],
.threat-severity[data-severity="Info"] {
  background: var(--sev-info-bg);
  border: 1px solid var(--sev-info-border);
  color: var(--sev-info-text);
}

.threat-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

.threat-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.threat-summary {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  max-width: 48rem;
}

details {
  margin-top: 0.7rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(39, 35, 65, 0.9);
}

summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.86rem;
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "▶";
  font-size: 0.7rem;
  transform: translateY(1px);
}

details[open] summary::before {
  content: "▼";
}

.threat-body {
  margin-top: 0.7rem;
  display: grid;
  gap: 1.3rem;
}

@media (min-width: 860px) {
  .threat-body {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr) minmax(0, 1.4fr);
  }
}

.threat-section-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
}

/* GENERIC LISTS / CODE */

.bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  line-height: 1.55;
}

.bullet-list li + li {
  margin-top: 0.15rem;
}

.code-block {
  background: #04021b;
  border-radius: var(--radius-md);
  border: 1px solid rgba(118, 111, 207, 0.9);
  padding: 0.7rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.8rem;
  line-height: 1.5;
  overflow-x: auto;
}

/* TAG PILL */

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 163, 255, 0.85);
  background: rgba(59, 163, 255, 0.16);
  color: var(--info);
  font-size: 0.75rem;
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
}

/* TOP FINDINGS GRID (HOME) */

.top-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 780px) {
  .top-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.top-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(118, 111, 207, 0.3) 0, transparent 55%),
    linear-gradient(150deg, rgba(13, 9, 55, 0.98), rgba(7, 5, 30, 0.98));
  border: 1px solid rgba(118, 111, 207, 0.8);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.top-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.top-card .top-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.top-card .top-summary {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.top-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ABOUT / METHOD */

.about-grid {
  display: grid;
  gap: 1.7rem;
}

@media (min-width: 820px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.5fr);
  }
}

.about-card {
  background:
    radial-gradient(circle at top left, rgba(118, 111, 207, 0.3) 0, transparent 60%),
    linear-gradient(145deg, rgba(10, 7, 43, 0.98), rgba(5, 5, 28, 0.98));
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(118, 111, 207, 0.7);
  box-shadow: var(--shadow-subtle);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-card h3 {
  margin-top: 0;
  font-size: 1rem;
  color: var(--text);
}

.about-card ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(39, 35, 65, 0.9);
  background: rgba(6, 4, 28, 0.98);
  padding: 1.2rem 0 1.6rem;
  text-align: center;
}

.site-footer p {
  margin: 0.1rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 0.3rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- Threat list layout --- */

.threat-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* --- Threat card --- */

.threat-card {
  background: radial-gradient(circle at top left, rgba(70,188,236,0.07), transparent 55%),
              #05070e;
  border-radius: 18px;
  padding: 1.6rem 1.9rem;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02);
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.threat-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Header */

.threat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.4rem;
  cursor: pointer; /* header is clickable */
}

.threat-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.threat-meta {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

/* Severity badge */

.threat-badge {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* --- Severity badge styles (using your CSS variables) --- */

.threat-badge--critical {
  background: var(--sev-critical-bg);
  color: var(--sev-critical-text);
  border: 1px solid var(--sev-critical-border);
  box-shadow: 0 0 8px currentColor;
}

.threat-badge--high {
  background: var(--sev-high-bg);
  color: var(--sev-high-text);
  border: 1px solid var(--sev-high-border);
  box-shadow: 0 0 8px currentColor;

}

.threat-badge--medium {
  background: var(--sev-medium-bg);
  color: var(--sev-medium-text);
  border: 1px solid var(--sev-medium-border);
  box-shadow: 0 0 8px currentColor;

}

.threat-badge--low {
  background: var(--sev-low-bg);
  color: var(--sev-low-text);
  border: 1px solid var(--sev-low-border);
  box-shadow: 0 0 8px currentColor;
  

}

.threat-badge--informational {
  background: var(--sev-info-bg);
  color: var(--sev-info-text);
  border: 1px solid var(--sev-info-border);
}

/* Toggle button */

.threat-toggle {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
  cursor: pointer;
}

.threat-toggle:hover {
  background: rgba(255,255,255,0.05);
}

.threat-toggle-icon {
  display: inline-block;
  transition: transform 0.15s ease;
}

.threat-card.is-expanded .threat-toggle-icon {
  transform: rotate(180deg);
}

/* Body */

.threat-body {
  margin-top: 0.7rem;
  display: none;              /* collapsed by default */
}

.threat-card.is-expanded .threat-body {
  display: block;             /* show when expanded */
}

.threat-summary {
  margin: 0.3rem 0 0.8rem;
  font-size: 0.95rem;         /* bigger summary */
  line-height: 1.5;
  color: var(--text-muted);
}

/* Pills (tactics / techniques / tags) */

.threat-pills-group {
  margin-top: 0.4rem;
     padding-top: 1rem;
     padding-bottom: -1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  
}

.pill-group {
  margin-bottom: 0.4rem;
}

.pill-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 0.4rem;
}

.pill {
  display: inline-block;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-right: 0.25rem;
  margin-bottom: 0.2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.pill-tactic    { border-color: rgba(70,188,236,0.45); }
.pill-technique { border-color: rgba(168,135,255,0.45); }
.pill-tag       { border-color: rgba(255,140,94,0.45); }

/* IOC list */

.threat-ioc-list {
  margin-top: 0.9rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.threat-ioc-title {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.threat-ioc-items {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.threat-ioc-items li {
  margin-bottom: 0.15rem;
  word-break: break-all; /* long hashes / domains */
}
.threat-severity.active {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 8px currentColor;
}
.threat-severity.threat-severity--active {
  filter: brightness(1.5);
  box-shadow: 0 0 10px currentColor;
  background: rgba(255,255,255,0.1);
  transform: scale(1.05);
}
.brand-logo-wrap {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 48px;     /* Adjust if needed: 42–56px will look good */
  width: auto;
  object-fit: contain;
  display: block;
}
.page-main {
  position: relative;
  z-index: 0;
}

.section,
.section-alt {
  background: transparent;
}

.attack-flow {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);  /* ⬅ SAME as IOC separator */
}

.attack-flow-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-normal);
}

.attack-flow-list {
  margin: 0;
  padding-left: 1.2rem;
  counter-reset: flow-counter;
   list-style: none;  
}

.attack-flow-step {
  margin-bottom: 0.45rem;
  padding-left: 0.4rem;
  position: relative;
  line-height: 1.45;
  color: var(--text-muted);
}

/* number styling */
.attack-flow-step::before {
  counter-increment: flow-counter;
  content: counter(flow-counter);
  position: absolute;
  left: -1.6rem;
  top: 0.1rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: 1px solid #46bcec;      /* neon cyan */
  color: #46bcec;
  font-size: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.85;
}


.ioc-item strong {
  font-weight: 600;
  color: var(--text-bright); /* or your neon blue/purple */
}

.threat-sources {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 1.2rem;
  padding-top: 1rem;
}

.threat-sources-title {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
}



.threat-sources-items {
  list-style: none;
  padding: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.threat-sources-items li + li {
  margin-top: 0.35rem;
}

.threat-sources-items a {
  color: var(--accent, #7db4ff); /* falls back to your neon blue */
  text-decoration: none;
  font-size: 0.9rem;
}

.threat-sources-items a:hover {
  text-decoration: underline;
}
